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>2010-09-17 20:36:41 +0000
committerStijn Buys <ingar@osirion.org>2010-09-17 20:36:41 +0000
commit417eeaa34b8374de18358cc64511d7298bc33756 (patch)
tree1ae37b97f317d8d02890dc769cf595ac62401be8 /src/ui/listitem.h
parent66ce015e5927c30801110acd289310fdff181792 (diff)
addid ui::ListItem
Diffstat (limited to 'src/ui/listitem.h')
-rw-r--r--src/ui/listitem.h44
1 files changed, 44 insertions, 0 deletions
diff --git a/src/ui/listitem.h b/src/ui/listitem.h
new file mode 100644
index 0000000..a107ed5
--- /dev/null
+++ b/src/ui/listitem.h
@@ -0,0 +1,44 @@
+/*
+ ui/listitem.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_UI_LISTITEM_H__
+#define __INCLUDED_UI_LISTITEM_H__
+
+#include <string>
+
+#include "core/info.h"
+#include "ui/label.h"
+#include "ui/listview.h"
+
+namespace ui
+{
+class ListItem : public Label {
+public:
+ ListItem(ListView *parent, const char * text);
+ ~ListItem();
+
+ inline const core::Info *info() const {
+ return listitem_info;
+ }
+
+ inline void set_info(const core::Info *info) {
+ listitem_info = info;
+ }
+
+protected:
+ /// keypress event handler
+ virtual bool on_keypress(const int key, const unsigned int modifier);
+
+ /// draw the button border
+ virtual void draw_border();
+
+private:
+ const core::Info *listitem_info;
+};
+
+} // namespace ui
+
+#endif // __INCLUDED_UI_LISTITEM_H__