From b492615fb68e5c97fce87bcc946e92f115cfc3a2 Mon Sep 17 00:00:00 2001 From: Stijn Buys Date: Sat, 30 Jul 2011 13:36:45 +0000 Subject: Added support for tiled ui materials, changed default widget backgrounds to use ui materials. --- src/ui/paint.h | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) (limited to 'src/ui/paint.h') diff --git a/src/ui/paint.h b/src/ui/paint.h index 2c48a35..d21aaa0 100644 --- a/src/ui/paint.h +++ b/src/ui/paint.h @@ -37,8 +37,17 @@ public: /// draw a rectangle static void draw_rectangle(const math::Vector2f &global_location, const math::Vector2f &size); - /// draw a rectangular bitmap + /** + * @brief draw a rectangular bitmap + * @param texture the name of material to be used + **/ static void draw_bitmap(const math::Vector2f &global_location, const math::Vector2f &size, const std::string &texture); + + /// draw a rectangular bitmap and overrride material color + static void draw_bitmap(const math::Vector2f &global_location, const math::Vector2f &size, const math::Color & color, const std::string &texture); + + /// draw a tiled bitmap + static void draw_material(const math::Vector2f &global_location, const math::Vector2f &size, const std::string &texture); /// draw unaligned text static void draw_text(const math::Vector2f &global_location, const Font *font, const std::string &text); -- cgit v1.2.3