2012-04-21 10:51:01 +02:00
|
|
|
#ifndef MGUI_Inventory_H
|
|
|
|
#define MGUI_Inventory_H
|
|
|
|
|
|
|
|
#include "container.hpp"
|
|
|
|
namespace MWWorld
|
|
|
|
{
|
|
|
|
class Environment;
|
|
|
|
}
|
|
|
|
|
|
|
|
namespace MyGUI
|
|
|
|
{
|
|
|
|
class Gui;
|
|
|
|
class Widget;
|
|
|
|
}
|
|
|
|
|
|
|
|
namespace MWGui
|
|
|
|
{
|
|
|
|
class WindowManager;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
namespace MWGui
|
|
|
|
{
|
2012-05-12 13:12:37 +02:00
|
|
|
class InventoryWindow : public MWGui::ContainerBase
|
2012-04-21 10:51:01 +02:00
|
|
|
{
|
|
|
|
public:
|
2012-05-11 11:52:07 +02:00
|
|
|
InventoryWindow(WindowManager& parWindowManager,DragAndDrop* dragAndDrop);
|
2012-04-21 11:05:30 +02:00
|
|
|
|
|
|
|
void openInventory();
|
2012-05-12 18:24:47 +02:00
|
|
|
|
|
|
|
protected:
|
|
|
|
void onWindowResize(MyGUI::Window* _sender);
|
2012-04-21 10:51:01 +02:00
|
|
|
};
|
|
|
|
}
|
|
|
|
#endif // Inventory_H
|