diff options
author | José Ávila <linux@javila.net> | 2005-06-17 07:14:23 +0000 |
---|---|---|
committer | José Ávila <linux@javila.net> | 2005-06-17 07:14:23 +0000 |
commit | 50b0f0e7ea4508e1ee30f0a0ea8741af6d3212d4 (patch) | |
tree | 846a6272b9c40e7a1fde02c52ad399f34e31124b /src/gui/popupmenu.h | |
parent | 4e031f6dba55f4793247f8603e6260a380a109f7 (diff) | |
download | mana-50b0f0e7ea4508e1ee30f0a0ea8741af6d3212d4.tar.gz mana-50b0f0e7ea4508e1ee30f0a0ea8741af6d3212d4.tar.bz2 mana-50b0f0e7ea4508e1ee30f0a0ea8741af6d3212d4.tar.xz mana-50b0f0e7ea4508e1ee30f0a0ea8741af6d3212d4.zip |
new BrowserBox widget with colors/links support
Diffstat (limited to 'src/gui/popupmenu.h')
-rw-r--r-- | src/gui/popupmenu.h | 78 |
1 files changed, 78 insertions, 0 deletions
diff --git a/src/gui/popupmenu.h b/src/gui/popupmenu.h new file mode 100644 index 00000000..77c8931a --- /dev/null +++ b/src/gui/popupmenu.h @@ -0,0 +1,78 @@ +/* + * The Mana World + * Copyright 2004 The Mana World Development Team + * + * This file is part of The Mana World. + * + * The Mana World 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. + * + * The Mana World 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 The Mana World; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + * + * $Id$ + */ + +#ifndef _TMW_POPUP_MENU_H +#define _TMW_POPUP_MENU_H + +#include <guichan.hpp> +#include "window.h" +#include "linkhandler.h" +#include "browserbox.h" +#include "../being.h" +#include "../floor_item.h" + +/** + * Window showing popup menu. + */ +class PopupMenu : public Window, public LinkHandler +{ + public: + /** + * Constructor. + */ + PopupMenu(); + + /** + * Destructor. + */ + ~PopupMenu(); + + /** + * Sets the visibility of popup + */ + void setVisible(bool visible); + + /** + * Shows the related popup menu specifies by the mouse click coords. + */ + void showPopup(int mx, int my); + + /** + * Draws updated popup menu + */ + void draw(gcn::Graphics* graphics); + + /** + * Handles link action. + */ + void handleLink(const std::string& link); + + private: + BrowserBox* browserBox; + int mX, mY; + + Being* being; + FloorItem* floorItem; +}; + +#endif |