diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-09-06 18:04:43 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-09-06 18:04:43 +0300 |
commit | 6d57a376b3f676b79280d4109dbe5d9bb7147821 (patch) | |
tree | 8dd2388471917977328e7e550c860f61f5fc3a88 /src/gui/popups/skillpopup.h | |
parent | 06232c58e97bd465e0149ef6a73633da306dd891 (diff) | |
download | mv-6d57a376b3f676b79280d4109dbe5d9bb7147821.tar.gz mv-6d57a376b3f676b79280d4109dbe5d9bb7147821.tar.bz2 mv-6d57a376b3f676b79280d4109dbe5d9bb7147821.tar.xz mv-6d57a376b3f676b79280d4109dbe5d9bb7147821.zip |
Add skillpopup object.
Diffstat (limited to 'src/gui/popups/skillpopup.h')
-rw-r--r-- | src/gui/popups/skillpopup.h | 70 |
1 files changed, 70 insertions, 0 deletions
diff --git a/src/gui/popups/skillpopup.h b/src/gui/popups/skillpopup.h new file mode 100644 index 000000000..fc6c47835 --- /dev/null +++ b/src/gui/popups/skillpopup.h @@ -0,0 +1,70 @@ +/* + * The ManaPlus Client + * Copyright (C) 2008 The Legend of Mazzeroth Development Team + * Copyright (C) 2008-2009 The Mana World Development Team + * Copyright (C) 2009-2010 The Mana Developers + * Copyright (C) 2011-2014 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 GUI_POPUPS_SKILLPOPUP_H +#define GUI_POPUPS_SKILLPOPUP_H + +#include "gui/widgets/popup.h" + +class Label; +class TextBox; + +struct SkillInfo; + +/** + * A popup that displays information about an item. + */ +class SkillPopup final : public Popup +{ + public: + /** + * Constructor. Initializes the skill popup. + */ + SkillPopup(); + + A_DELETE_COPY(SkillPopup) + + /** + * Destructor. Cleans up the skill popup on deletion. + */ + ~SkillPopup(); + + void postInit() override final; + + /** + * Sets the info to be displayed given a particular item. + */ + void show(const SkillInfo *const skill); + + void mouseMoved(MouseEvent &event) override final; + + private: + Label *mSkillName; + TextBox *mSkillDesc; + TextBox *mSkillEffect; + unsigned int mLastId; +}; + +extern SkillPopup *skillPopup; + +#endif // GUI_POPUPS_ITEMPOPUP_H |