Commit d81ef7e3 authored by fallenstardust's avatar fallenstardust

添加主要功能窗口背景

parent 6dbde56b
This diff is collapsed.
......@@ -271,6 +271,7 @@ public:
//Settings
irr::gui::CGUIImageButton* imgSettings;
irr::gui::IGUIWindow* wSettings;
irr::gui::IGUIImage* bgSettings;
irr::gui::IGUIButton* btnCloseSettings;
//hint text
irr::gui::IGUIStaticText* stHintMsg;
......@@ -322,6 +323,7 @@ public:
irr::gui::IGUIStaticText* textModeExit;
//lan
irr::gui::IGUIWindow* wLanWindow;
irr::gui::IGUIImage* bgLanWindow;
irr::gui::IGUIEditBox* ebNickName;
irr::gui::IGUIListBox* lstHostList;
irr::gui::IGUIButton* btnLanRefresh;
......@@ -333,6 +335,7 @@ public:
irr::gui::IGUIButton* btnCreateHost;
//create host
irr::gui::IGUIWindow* wCreateHost;
irr::gui::IGUIImage* bgCreateHost;
irr::gui::IGUIComboBox* cbLFlist;
irr::gui::IGUIComboBox* cbMatchMode;
irr::gui::IGUIComboBox* cbRule;
......@@ -349,6 +352,7 @@ public:
irr::gui::IGUIButton* btnHostCancel;
//host panel
irr::gui::IGUIWindow* wHostPrepare;
irr::gui::IGUIImage* bgHostPrepare;
irr::gui::IGUIButton* btnHostPrepDuelist;
irr::gui::IGUIButton* btnHostPrepOB;
irr::gui::IGUIStaticText* stHostPrepDuelist[4];
......@@ -364,6 +368,7 @@ public:
irr::gui::IGUIButton* btnHostPrepCancel;
//replay
irr::gui::IGUIWindow* wReplay;
irr::gui::IGUIImage* bgReplay;
irr::gui::IGUIListBox* lstReplayList;
irr::gui::IGUIStaticText* stReplayInfo;
irr::gui::IGUIButton* btnLoadReplay;
......@@ -374,6 +379,7 @@ public:
irr::gui::IGUIEditBox* ebRepStartTurn;
//single play
irr::gui::IGUIWindow* wSinglePlay;
irr::gui::IGUIImage* bgSinglePlay;
//TEST BOT MODE
irr::gui::IGUIListBox* lstBotList;
irr::gui::IGUIStaticText* stBotInfo;
......
......@@ -42,6 +42,7 @@ bool ImageManager::Initial(const path dir) {
tTalk = driver->getTexture((dir + path("/textures/extra/ttalk.png")).c_str());
tShut = driver->getTexture((dir + path("/textures/extra/tshut.png")).c_str());
tTitleBar = driver->getTexture((dir + path("/textures/extra/stitlebar.png")).c_str());
tWindow = driver->getTexture((dir + path("/textures/extra/sWindow.png")).c_str());
if(!tBackGround_menu)
tBackGround_menu = tBackGround;
tBackGround_deck = driver->getTexture((dir + path("/textures/bg_deck.jpg")).c_str());
......
......@@ -64,6 +64,7 @@ public:
irr::video::ITexture* tTalk;
irr::video::ITexture* tShut;
irr::video::ITexture* tTitleBar;
irr::video::ITexture* tWindow;
std::list<std::string> support_types;
};
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment