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>2008-10-06 18:22:32 +0000
committerStijn Buys <ingar@osirion.org>2008-10-06 18:22:32 +0000
commita14d80f83aebe75241bf63b4f3ffca3a5d952577 (patch)
treefea36faedd17a0aa620f6d7e781a352327d6065d /src/ui/bitmap.h
parent343b0b4298e2d084d5544d3d40a8b7dcb586ce8e (diff)
libui updates, support menu .ini files
Diffstat (limited to 'src/ui/bitmap.h')
-rw-r--r--src/ui/bitmap.h36
1 files changed, 36 insertions, 0 deletions
diff --git a/src/ui/bitmap.h b/src/ui/bitmap.h
new file mode 100644
index 0000000..1f60ef9
--- /dev/null
+++ b/src/ui/bitmap.h
@@ -0,0 +1,36 @@
+/*
+ ui/bitmap.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_BITMAP_H__
+#define __INCLUDED_UI_BITMAP_H__
+
+#include "ui/widget.h"
+
+namespace ui {
+
+class Bitmap : public Widget {
+public:
+ Bitmap (Widget *parent, const char *texture=0);
+ ~Bitmap();
+
+ inline std::string const &texture() const { return bitmap_texture; }
+ void set_texture(std::string const & texture);
+ void set_texture(const char *texture);
+
+ /// print bitmap description
+ virtual void print(size_t indent);
+
+protected:
+ virtual void draw_background();
+
+private:
+ std::string bitmap_texture;
+};
+
+}
+
+#endif // __INCLUDED_UI_BITMAP_H__
+