mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-07 03:54:40 +00:00
31 lines
634 B
C++
31 lines
634 B
C++
|
#ifndef MWGUI_LEVELUPDIALOG_H
|
||
|
#define MWGUI_LEVELUPDIALOG_H
|
||
|
|
||
|
#include "window_base.hpp"
|
||
|
|
||
|
namespace MWGui
|
||
|
{
|
||
|
|
||
|
class LevelupDialog : public WindowBase
|
||
|
{
|
||
|
public:
|
||
|
LevelupDialog(MWBase::WindowManager& parWindowManager);
|
||
|
|
||
|
virtual void open();
|
||
|
|
||
|
private:
|
||
|
MyGUI::Button* mOkButton;
|
||
|
MyGUI::ImageBox* mClassImage;
|
||
|
MyGUI::TextBox* mLevelText;
|
||
|
|
||
|
std::vector<MyGUI::TextBox*> mAttributeValues;
|
||
|
std::vector<MyGUI::TextBox*> mAttributeMultipliers;
|
||
|
|
||
|
void onOkButtonClicked (MyGUI::Widget* sender);
|
||
|
void onAttributeClicked (MyGUI::Widget* sender);
|
||
|
};
|
||
|
|
||
|
}
|
||
|
|
||
|
#endif
|