Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStijn Buys <ingar@osirion.org>2009-01-27 18:53:24 +0000
committerStijn Buys <ingar@osirion.org>2009-01-27 18:53:24 +0000
commit9c2d1a1c867bbd7eea083dbc03c0acf1edace8c2 (patch)
tree51b0f6e52d4dc368fc8358aa86cca395b6d2506b /src/client/entitymenu.h
parent76a49efdf62a53a54e2deeb559422f11c1e955dd (diff)
moves docking menus from ui to client,
allow map and chat window while docked
Diffstat (limited to 'src/client/entitymenu.h')
-rw-r--r--src/client/entitymenu.h42
1 files changed, 42 insertions, 0 deletions
diff --git a/src/client/entitymenu.h b/src/client/entitymenu.h
new file mode 100644
index 0000000..ac5a793
--- /dev/null
+++ b/src/client/entitymenu.h
@@ -0,0 +1,42 @@
+/*
+ client/entitymenu.h
+ This file is part of the Osirion project and is distributed under
+ the terms of the GNU General Public License version 2
+*/
+
+#ifndef __INCLUDED_CLIENT_ENTITYMENU_H__
+#define __INCLUDED_CLIENT_ENTITYMENU_H__
+
+#include "core/entity.h"
+#include "ui/container.h"
+#include "ui/label.h"
+#include "ui/window.h"
+
+namespace client
+{
+
+/// entity menus
+class EntityMenu : public ui::Window
+{
+public:
+ /// create a new menu
+ EntityMenu(ui::Widget *parent, const char * label = 0);
+ ~EntityMenu();
+
+ /// generate a menu from menu descriptions
+ void generate(core::Entity *entity, const char *menulabel);
+
+ /// clear the current menu
+ void clear();
+
+protected:
+ /// resize event
+ virtual void resize();
+
+private:
+ ui::Container *menu_container;
+};
+
+}
+
+#endif // __INCLUDED_CLIENT_ENTITYMENU_H__