From 3032acedd104dccd6755d942671e25d2a7ba358f Mon Sep 17 00:00:00 2001 From: Alexander Sulfrian Date: Fri, 7 Sep 2012 01:28:18 +0200 Subject: base/config: add debug.boxes config option if debug.boxes is true in configuration file, a red border is drawn around all controls --- src/menu/drawable_control.cpp | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'src/menu') diff --git a/src/menu/drawable_control.cpp b/src/menu/drawable_control.cpp index 298abdfe..864855f8 100644 --- a/src/menu/drawable_control.cpp +++ b/src/menu/drawable_control.cpp @@ -27,6 +27,8 @@ #include "drawable_control.hpp" #include "container.hpp" #include "clipping_helper.hpp" +#include "static_rectangle.hpp" +#include "application.hpp" #include "modelview_matrix_cache.hpp" namespace usdx @@ -105,6 +107,14 @@ namespace usdx Drawable::repaint(); } } + + if (Application::get_config()->get_debug_boxes()) + { + boost::shared_lock lock(size_mutex); + StaticRectangle s(RgbColor(255, 0, 0), size); + s.set_stroke_width(2.0f); + s.repaint(); + } } void DrawableControl::set_position(const Point& position) -- cgit v1.2.3