2012-09-14 17:44:00 +00:00
|
|
|
#ifndef MWGUI_LEVELUPDIALOG_H
|
|
|
|
#define MWGUI_LEVELUPDIALOG_H
|
|
|
|
|
2013-04-10 04:32:05 +00:00
|
|
|
#include "windowbase.hpp"
|
2012-09-14 17:44:00 +00:00
|
|
|
|
|
|
|
namespace MWGui
|
|
|
|
{
|
|
|
|
|
|
|
|
class LevelupDialog : public WindowBase
|
|
|
|
{
|
|
|
|
public:
|
2013-04-10 18:46:21 +00:00
|
|
|
LevelupDialog();
|
2012-09-14 17:44:00 +00:00
|
|
|
|
|
|
|
virtual void open();
|
|
|
|
|
|
|
|
private:
|
|
|
|
MyGUI::Button* mOkButton;
|
|
|
|
MyGUI::ImageBox* mClassImage;
|
|
|
|
MyGUI::TextBox* mLevelText;
|
2013-03-12 16:18:47 +00:00
|
|
|
MyGUI::EditBox* mLevelDescription;
|
|
|
|
|
|
|
|
MyGUI::Widget* mCoinBox;
|
2014-09-03 01:03:03 +00:00
|
|
|
MyGUI::Widget* mAssignWidget;
|
2012-09-14 17:44:00 +00:00
|
|
|
|
2012-09-15 15:12:42 +00:00
|
|
|
std::vector<MyGUI::Button*> mAttributes;
|
2012-09-14 17:44:00 +00:00
|
|
|
std::vector<MyGUI::TextBox*> mAttributeValues;
|
|
|
|
std::vector<MyGUI::TextBox*> mAttributeMultipliers;
|
2012-09-15 15:12:42 +00:00
|
|
|
std::vector<MyGUI::ImageBox*> mCoins;
|
|
|
|
|
|
|
|
std::vector<int> mSpentAttributes;
|
2012-09-14 17:44:00 +00:00
|
|
|
|
2014-07-21 18:56:02 +00:00
|
|
|
unsigned int mCoinCount;
|
|
|
|
static const unsigned int sMaxCoins;
|
|
|
|
|
|
|
|
void onOkButtonClicked(MyGUI::Widget* sender);
|
|
|
|
void onAttributeClicked(MyGUI::Widget* sender);
|
2012-09-15 15:12:42 +00:00
|
|
|
|
|
|
|
void assignCoins();
|
|
|
|
void resetCoins();
|
|
|
|
|
|
|
|
void setAttributeValues();
|
2012-09-14 17:44:00 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|