diff options
Diffstat (limited to 'src/ui/bitmap.h')
| -rw-r--r-- | src/ui/bitmap.h | 16 | 
1 files changed, 8 insertions, 8 deletions
diff --git a/src/ui/bitmap.h b/src/ui/bitmap.h index 9bc1776..4838ea2 100644 --- a/src/ui/bitmap.h +++ b/src/ui/bitmap.h @@ -15,29 +15,29 @@ namespace ui  class Bitmap : public Widget  {  public: -	Bitmap(Widget *parent, const char *texture=0); +	Bitmap(Widget *parent, const char *texture = 0);  	~Bitmap(); -	 +  	inline std::string const &texture() const {  		return bitmap_texture;  	} -	 +  	inline math::Color const &color() const {  		return bitmap_color;  	} -	 +  	void set_texture(const std::string & texture);  	void set_texture(const char *texture); -	 +  	void set_color(const math::Color &color); -	 +  	/// print bitmap description  	virtual void print(const size_t indent) const; -	 +  protected:  	/// draw the bitmap as background  	virtual void draw_background(); -	 +  private:  	std::string	bitmap_texture;  	math::Color	bitmap_color;  | 
