|
|
@ -23,6 +23,8 @@ namespace MWGui
|
|
|
|
|
|
|
|
|
|
|
|
virtual void onOpen();
|
|
|
|
virtual void onOpen();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
bool exit() { return false; }
|
|
|
|
|
|
|
|
|
|
|
|
// Events
|
|
|
|
// Events
|
|
|
|
typedef MyGUI::delegates::CMultiDelegate1<int> EventHandle_Int;
|
|
|
|
typedef MyGUI::delegates::CMultiDelegate1<int> EventHandle_Int;
|
|
|
|
|
|
|
|
|
|
|
@ -67,6 +69,8 @@ namespace MWGui
|
|
|
|
std::string getClassId() const;
|
|
|
|
std::string getClassId() const;
|
|
|
|
void setClassId(const std::string &classId);
|
|
|
|
void setClassId(const std::string &classId);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
bool exit() { return false; }
|
|
|
|
|
|
|
|
|
|
|
|
// Events
|
|
|
|
// Events
|
|
|
|
typedef MyGUI::delegates::CMultiDelegate0 EventHandle_Void;
|
|
|
|
typedef MyGUI::delegates::CMultiDelegate0 EventHandle_Void;
|
|
|
|
|
|
|
|
|
|
|
@ -102,6 +106,8 @@ namespace MWGui
|
|
|
|
void setNextButtonShow(bool shown);
|
|
|
|
void setNextButtonShow(bool shown);
|
|
|
|
virtual void onOpen();
|
|
|
|
virtual void onOpen();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
bool exit() { return false; }
|
|
|
|
|
|
|
|
|
|
|
|
// Events
|
|
|
|
// Events
|
|
|
|
typedef MyGUI::delegates::CMultiDelegate0 EventHandle_Void;
|
|
|
|
typedef MyGUI::delegates::CMultiDelegate0 EventHandle_Void;
|
|
|
|
|
|
|
|
|
|
|
@ -142,7 +148,7 @@ namespace MWGui
|
|
|
|
SelectSpecializationDialog();
|
|
|
|
SelectSpecializationDialog();
|
|
|
|
~SelectSpecializationDialog();
|
|
|
|
~SelectSpecializationDialog();
|
|
|
|
|
|
|
|
|
|
|
|
virtual void exit();
|
|
|
|
virtual bool exit();
|
|
|
|
|
|
|
|
|
|
|
|
ESM::Class::Specialization getSpecializationId() const { return mSpecializationId; }
|
|
|
|
ESM::Class::Specialization getSpecializationId() const { return mSpecializationId; }
|
|
|
|
|
|
|
|
|
|
|
@ -175,7 +181,7 @@ namespace MWGui
|
|
|
|
SelectAttributeDialog();
|
|
|
|
SelectAttributeDialog();
|
|
|
|
~SelectAttributeDialog();
|
|
|
|
~SelectAttributeDialog();
|
|
|
|
|
|
|
|
|
|
|
|
virtual void exit();
|
|
|
|
virtual bool exit();
|
|
|
|
|
|
|
|
|
|
|
|
ESM::Attribute::AttributeID getAttributeId() const { return mAttributeId; }
|
|
|
|
ESM::Attribute::AttributeID getAttributeId() const { return mAttributeId; }
|
|
|
|
|
|
|
|
|
|
|
@ -206,7 +212,7 @@ namespace MWGui
|
|
|
|
SelectSkillDialog();
|
|
|
|
SelectSkillDialog();
|
|
|
|
~SelectSkillDialog();
|
|
|
|
~SelectSkillDialog();
|
|
|
|
|
|
|
|
|
|
|
|
virtual void exit();
|
|
|
|
virtual bool exit();
|
|
|
|
|
|
|
|
|
|
|
|
ESM::Skill::SkillEnum getSkillId() const { return mSkillId; }
|
|
|
|
ESM::Skill::SkillEnum getSkillId() const { return mSkillId; }
|
|
|
|
|
|
|
|
|
|
|
@ -262,6 +268,8 @@ namespace MWGui
|
|
|
|
CreateClassDialog();
|
|
|
|
CreateClassDialog();
|
|
|
|
virtual ~CreateClassDialog();
|
|
|
|
virtual ~CreateClassDialog();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
bool exit() { return false; }
|
|
|
|
|
|
|
|
|
|
|
|
std::string getName() const;
|
|
|
|
std::string getName() const;
|
|
|
|
std::string getDescription() const;
|
|
|
|
std::string getDescription() const;
|
|
|
|
ESM::Class::Specialization getSpecializationId() const;
|
|
|
|
ESM::Class::Specialization getSpecializationId() const;
|
|
|
|