2012-05-24 13:57:23 +00:00
|
|
|
#ifndef MWGUI_ALCHEMY_H
|
|
|
|
#define MWGUI_ALCHEMY_H
|
|
|
|
|
|
|
|
#include "window_base.hpp"
|
|
|
|
|
|
|
|
namespace MWGui
|
|
|
|
{
|
|
|
|
class AlchemyWindow : public WindowBase
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
AlchemyWindow(WindowManager& parWindowManager);
|
2012-05-25 10:58:28 +00:00
|
|
|
|
|
|
|
protected:
|
|
|
|
MyGUI::Button* mCreateButton;
|
|
|
|
MyGUI::Button* mCancelButton;
|
|
|
|
|
|
|
|
void onCancelButtonClicked(MyGUI::Widget* _sender);
|
|
|
|
void onCreateButtonClicked(MyGUI::Widget* _sender);
|
2012-05-24 13:57:23 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|