diff options
author | Andrei Karas <akaras@inbox.ru> | 2012-07-24 21:37:03 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2012-07-29 16:12:41 +0300 |
commit | 9234bf25b145995d5395f98a1f5dd030783d25d6 (patch) | |
tree | 3f679edc308488057dc5d044698c053de6b4e36c /src/gui/questswindow.h | |
parent | 2f351b828f4155f93566d685eb99416e32cba7d0 (diff) | |
download | plus-9234bf25b145995d5395f98a1f5dd030783d25d6.tar.gz plus-9234bf25b145995d5395f98a1f5dd030783d25d6.tar.bz2 plus-9234bf25b145995d5395f98a1f5dd030783d25d6.tar.xz plus-9234bf25b145995d5395f98a1f5dd030783d25d6.zip |
Add quests netcode and quests window.
Diffstat (limited to 'src/gui/questswindow.h')
-rw-r--r-- | src/gui/questswindow.h | 81 |
1 files changed, 81 insertions, 0 deletions
diff --git a/src/gui/questswindow.h b/src/gui/questswindow.h new file mode 100644 index 000000000..c35e395bd --- /dev/null +++ b/src/gui/questswindow.h @@ -0,0 +1,81 @@ +/* + * The ManaPlus Client + * Copyright (C) 2012 The ManaPlus developers + * + * This file is part of The ManaPlus Client. + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + */ + +#ifndef QUESTS_WINDOW_H +#define QUESTS_WINDOW_H + +#include "localconsts.h" + +#include "gui/widgets/window.h" + +#include "utils/xml.h" + +#include <guichan/actionlistener.hpp> + +#include <map> + +class Button; +class BrowserBox; +class ExtendedListBox; +class ScrollArea; +class QuestsModel; + +struct QuestItem; + +class QuestsWindow : public Window, public gcn::ActionListener +{ + public: + /** + * Constructor. + * + * @see Window::Window + */ + QuestsWindow(); + + /** + * Called when receiving actions from the widgets. + */ + void action(const gcn::ActionEvent &event); + + void updateQuest(int var, int val); + + void rebuild(); + + void showQuest(QuestItem *quest); + + private: + void loadXml(); + + void loadQuest(int var, XmlNodePtr node); + + QuestsModel *mQuestsModel; + ExtendedListBox *mQuestsListBox; + ScrollArea *mQuestScrollArea; + BrowserBox *mText; + ScrollArea *mTextScrollArea; + Button *mCloseButton; + std::map<int, int> mVars; + std::map<int, std::vector<QuestItem*>> mQuests; + std::vector<QuestItem*> mQuestLinks; +}; + +extern QuestsWindow *questsWindow; + +#endif |