summaryrefslogtreecommitdiff
path: root/src/widget.cpp
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2010-04-24 13:27:22 +0000
committerrubidium <rubidium@openttd.org>2010-04-24 13:27:22 +0000
commite75e2648fc5a9c741629ef1efc8a097c655ed035 (patch)
tree37af684212bbdd39ab92860c5e0adb3e68f9fb87 /src/widget.cpp
parentfef77ca53e2d3a381889aecc6739053f1582143b (diff)
downloadopenttd-e75e2648fc5a9c741629ef1efc8a097c655ed035.tar.xz
(svn r19706) -Add: support for the (NewGRF) debug box
Diffstat (limited to 'src/widget.cpp')
-rw-r--r--src/widget.cpp45
1 files changed, 44 insertions, 1 deletions
diff --git a/src/widget.cpp b/src/widget.cpp
index de89bf263..377ef0667 100644
--- a/src/widget.cpp
+++ b/src/widget.cpp
@@ -17,6 +17,7 @@
#include "strings_func.h"
#include "transparency.h"
#include "core/geometry_func.hpp"
+#include "settings_type.h"
#include "table/sprites.h"
#include "table/strings.h"
@@ -477,6 +478,18 @@ static inline void DrawStickyBox(const Rect &r, Colours colour, bool clicked)
}
/**
+ * Draw a NewGRF debug box.
+ * @param r Rectangle of the box.
+ * @param colour Colour of the debug box.
+ * @param clicked Box is lowered.
+ */
+static inline void DrawDebugBox(const Rect &r, Colours colour, bool clicked)
+{
+ DrawFrameRect(r.left, r.top, r.right, r.bottom, colour, (clicked) ? FR_LOWERED : FR_NONE);
+ DrawSprite(SPR_WINDOW_DEBUG, PAL_NONE, r.left + WD_DEBUGBOX_LEFT + clicked, r.top + WD_DEBUGBOX_TOP + clicked);
+}
+
+/**
* Draw a resize box.
* @param r Rectangle of the box.
* @param colour Colour of the resize box.
@@ -1690,12 +1703,14 @@ void NWidgetViewport::UpdateViewportCoordinates(Window *w)
/* static */ void NWidgetLeaf::InvalidateDimensionCache()
{
shadebox_dimension.width = shadebox_dimension.height = 0;
+ debugbox_dimension.width = debugbox_dimension.height = 0;
stickybox_dimension.width = stickybox_dimension.height = 0;
resizebox_dimension.width = resizebox_dimension.height = 0;
closebox_dimension.width = closebox_dimension.height = 0;
}
Dimension NWidgetLeaf::shadebox_dimension = {0, 0};
+Dimension NWidgetLeaf::debugbox_dimension = {0, 0};
Dimension NWidgetLeaf::stickybox_dimension = {0, 0};
Dimension NWidgetLeaf::resizebox_dimension = {0, 0};
Dimension NWidgetLeaf::closebox_dimension = {0, 0};
@@ -1710,7 +1725,7 @@ Dimension NWidgetLeaf::closebox_dimension = {0, 0};
*/
NWidgetLeaf::NWidgetLeaf(WidgetType tp, Colours colour, int index, uint16 data, StringID tip) : NWidgetCore(tp, colour, 1, 1, data, tip)
{
- assert(index >= 0 || tp == WWT_LABEL || tp == WWT_TEXT || tp == WWT_CAPTION || tp == WWT_RESIZEBOX || tp == WWT_SHADEBOX || tp == WWT_STICKYBOX || tp == WWT_CLOSEBOX);
+ assert(index >= 0 || tp == WWT_LABEL || tp == WWT_TEXT || tp == WWT_CAPTION || tp == WWT_RESIZEBOX || tp == WWT_SHADEBOX || tp == WWT_DEBUGBOX || tp == WWT_STICKYBOX || tp == WWT_CLOSEBOX);
if (index >= 0) this->SetIndex(index);
this->SetMinimalSize(0, 0);
this->SetResize(0, 0);
@@ -1775,6 +1790,12 @@ NWidgetLeaf::NWidgetLeaf(WidgetType tp, Colours colour, int index, uint16 data,
this->SetDataTip(STR_NULL, STR_TOOLTIP_SHADE);
break;
+ case WWT_DEBUGBOX:
+ this->SetFill(0, 0);
+ this->SetMinimalSize(WD_DEBUGBOX_TOP, 14);
+ this->SetDataTip(STR_NULL, STR_TOOLTIP_DEBUG);
+ break;
+
case WWT_RESIZEBOX:
this->SetFill(0, 0);
this->SetMinimalSize(WD_RESIZEBOX_WIDTH, 12);
@@ -1834,6 +1855,24 @@ void NWidgetLeaf::SetupSmallestSize(Window *w, bool init_array)
size = maxdim(size, NWidgetLeaf::shadebox_dimension);
break;
}
+ case WWT_DEBUGBOX:
+ if (_settings_client.gui.newgrf_developer_tools && w->IsNewGRFInspectable()) {
+ static const Dimension extra = {WD_DEBUGBOX_LEFT + WD_DEBUGBOX_RIGHT, WD_DEBUGBOX_TOP + WD_DEBUGBOX_BOTTOM};
+ padding = &extra;
+ if (NWidgetLeaf::debugbox_dimension.width == 0) {
+ NWidgetLeaf::debugbox_dimension = GetSpriteSize(SPR_WINDOW_DEBUG);
+ NWidgetLeaf::debugbox_dimension.width += extra.width;
+ NWidgetLeaf::debugbox_dimension.height += extra.height;
+ }
+ size = maxdim(size, NWidgetLeaf::debugbox_dimension);
+ } else {
+ /* If the setting is disabled we don't want to see it! */
+ size.width = 0;
+ fill.width = 0;
+ resize.width = 0;
+ }
+ break;
+
case WWT_STICKYBOX: {
static const Dimension extra = {WD_STICKYBOX_LEFT + WD_STICKYBOX_RIGHT, WD_STICKYBOX_TOP + WD_STICKYBOX_BOTTOM};
padding = &extra;
@@ -2050,6 +2089,10 @@ void NWidgetLeaf::Draw(const Window *w)
DrawShadeBox(r, this->colour, w->IsShaded());
break;
+ case WWT_DEBUGBOX:
+ DrawDebugBox(r, this->colour, clicked);
+ break;
+
case WWT_STICKYBOX:
assert(this->widget_data == 0);
DrawStickyBox(r, this->colour, !!(w->flags4 & WF_STICKY));