From a14d80f83aebe75241bf63b4f3ffca3a5d952577 Mon Sep 17 00:00:00 2001 From: Stijn Buys Date: Mon, 6 Oct 2008 18:22:32 +0000 Subject: libui updates, support menu .ini files --- src/ui/bitmap.h | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 src/ui/bitmap.h (limited to 'src/ui/bitmap.h') 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__ + -- cgit v1.2.3