#ifndef MWGUI_BIRTH_H #define MWGUI_BIRTH_H #include "window_base.hpp" /* This file contains the dialog for choosing a birth sign. Layout is defined by resources/mygui/openmw_chargen_race_layout.xml. */ namespace MWGui { using namespace MyGUI; class WindowManager; class BirthDialog : public WindowBase { public: BirthDialog(WindowManager& parWindowManager); enum Gender { GM_Male, GM_Female }; const std::string &getBirthId() const { return currentBirthId; } void setBirthId(const std::string &raceId); void setNextButtonShow(bool shown); void open(); // Events typedef delegates::CDelegate0 EventHandle_Void; /** Event : Back button clicked.\n signature : void method()\n */ EventHandle_Void eventBack; protected: void onSelectBirth(MyGUI::List* _sender, size_t _index); void onOkClicked(MyGUI::Widget* _sender); void onBackClicked(MyGUI::Widget* _sender); private: void updateBirths(); void updateSpells(); MyGUI::ListPtr birthList; MyGUI::WidgetPtr spellArea; MyGUI::StaticImagePtr birthImage; std::vector spellItems; std::string currentBirthId; }; } #endif