You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
816 B
C++
42 lines
816 B
C++
13 years ago
|
#ifndef MWGUI_TRADEWINDOW_H
|
||
|
#define MWGUI_TRADEWINDOW_H
|
||
|
|
||
|
#include "container.hpp"
|
||
|
#include "window_base.hpp"
|
||
|
|
||
|
namespace MyGUI
|
||
|
{
|
||
|
class Gui;
|
||
|
class Widget;
|
||
|
}
|
||
|
|
||
|
namespace MWGui
|
||
|
{
|
||
|
class WindowManager;
|
||
|
}
|
||
|
|
||
|
|
||
|
namespace MWGui
|
||
|
{
|
||
|
class TradeWindow : public ContainerBase, public WindowBase
|
||
|
{
|
||
|
public:
|
||
|
TradeWindow(WindowManager& parWindowManager);
|
||
|
|
||
|
//virtual void Update();
|
||
|
//virtual void notifyContentChanged();
|
||
|
|
||
|
protected:
|
||
|
MyGUI::Button* mFilterAll;
|
||
|
MyGUI::Button* mFilterWeapon;
|
||
|
MyGUI::Button* mFilterApparel;
|
||
|
MyGUI::Button* mFilterMagic;
|
||
|
MyGUI::Button* mFilterMisc;
|
||
|
|
||
|
void onWindowResize(MyGUI::Window* _sender);
|
||
|
void onFilterChanged(MyGUI::Widget* _sender);
|
||
|
};
|
||
|
}
|
||
|
|
||
|
#endif
|