summaryrefslogtreecommitdiff
path: root/src/engine_gui.cpp
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2009-03-21 20:39:37 +0000
committerrubidium <rubidium@openttd.org>2009-03-21 20:39:37 +0000
commit5c8906bff7550101979e4d5bf7e47564df7d0ff1 (patch)
treea95919a9e4e5711fb05f090d56964459c39e0a81 /src/engine_gui.cpp
parent45f189fdcaedd5f95dcbb3ce9a60f746603859e1 (diff)
downloadopenttd-5c8906bff7550101979e4d5bf7e47564df7d0ff1.tar.xz
(svn r15786) -Codechange: enumify the engine preview widgets (and use them)
Diffstat (limited to 'src/engine_gui.cpp')
-rw-r--r--src/engine_gui.cpp25
1 files changed, 17 insertions, 8 deletions
diff --git a/src/engine_gui.cpp b/src/engine_gui.cpp
index 2a5d0f1d5..91f7dd89a 100644
--- a/src/engine_gui.cpp
+++ b/src/engine_gui.cpp
@@ -30,12 +30,21 @@ StringID GetEngineCategoryName(EngineID engine)
}
}
+/** Widgets used for the engine preview window */
+enum EnginePreviewWidgets {
+ EPW_CLOSE, ///< Close button
+ EPW_CAPTION, ///< Title bar/caption
+ EPW_BACKGROUND, ///< Background
+ EPW_NO, ///< No button
+ EPW_YES, ///< Yes button
+};
+
static const Widget _engine_preview_widgets[] = {
-{ WWT_CLOSEBOX, RESIZE_NONE, COLOUR_LIGHT_BLUE, 0, 10, 0, 13, STR_00C5, STR_018B_CLOSE_WINDOW},
-{ WWT_CAPTION, RESIZE_NONE, COLOUR_LIGHT_BLUE, 11, 299, 0, 13, STR_8100_MESSAGE_FROM_VEHICLE_MANUFACTURE, STR_018C_WINDOW_TITLE_DRAG_THIS},
-{ WWT_PANEL, RESIZE_NONE, COLOUR_LIGHT_BLUE, 0, 299, 14, 191, 0x0, STR_NULL},
-{ WWT_PUSHTXTBTN, RESIZE_NONE, COLOUR_LIGHT_BLUE, 85, 144, 172, 183, STR_00C9_NO, STR_NULL},
-{ WWT_PUSHTXTBTN, RESIZE_NONE, COLOUR_LIGHT_BLUE, 155, 214, 172, 183, STR_00C8_YES, STR_NULL},
+{ WWT_CLOSEBOX, RESIZE_NONE, COLOUR_LIGHT_BLUE, 0, 10, 0, 13, STR_00C5, STR_018B_CLOSE_WINDOW}, // EPW_CLOSE
+{ WWT_CAPTION, RESIZE_NONE, COLOUR_LIGHT_BLUE, 11, 299, 0, 13, STR_8100_MESSAGE_FROM_VEHICLE_MANUFACTURE, STR_018C_WINDOW_TITLE_DRAG_THIS}, // EPW_CAPTION
+{ WWT_PANEL, RESIZE_NONE, COLOUR_LIGHT_BLUE, 0, 299, 14, 191, 0x0, STR_NULL}, // EPW_BACKGROUND
+{ WWT_PUSHTXTBTN, RESIZE_NONE, COLOUR_LIGHT_BLUE, 85, 144, 172, 183, STR_00C9_NO, STR_NULL}, // EPW_NO
+{ WWT_PUSHTXTBTN, RESIZE_NONE, COLOUR_LIGHT_BLUE, 155, 214, 172, 183, STR_00C8_YES, STR_NULL}, // EPW_YES
{ WIDGETS_END},
};
@@ -74,7 +83,7 @@ struct EnginePreviewWindow : Window {
DrawStringMultiCenter(150, 44, STR_8101_WE_HAVE_JUST_DESIGNED_A, 296);
SetDParam(0, engine);
- DrawStringCentered(this->width >> 1, 80, STR_ENGINE_NAME, TC_BLACK);
+ DrawString(this->widget[EPW_BACKGROUND].left + 2, this->widget[EPW_BACKGROUND].right - 2, 80, STR_ENGINE_NAME, TC_BLACK);
const DrawEngineInfo *dei = &_draw_engine_list[GetEngine(engine)->type];
@@ -86,10 +95,10 @@ struct EnginePreviewWindow : Window {
virtual void OnClick(Point pt, int widget)
{
switch (widget) {
- case 4:
+ case EPW_YES:
DoCommandP(0, this->window_number, 0, CMD_WANT_ENGINE_PREVIEW);
/* Fallthrough */
- case 3:
+ case EPW_NO:
delete this;
break;
}