summaryrefslogtreecommitdiff
path: root/src/console_gui.cpp
diff options
context:
space:
mode:
authoralberth <alberth@openttd.org>2009-08-01 12:42:58 +0000
committeralberth <alberth@openttd.org>2009-08-01 12:42:58 +0000
commit9e682bb2f7d09e9b3c2380cd730322937e027e35 (patch)
tree06f997f3c68d54fbddc5cafe84ba69f2901a7bb9 /src/console_gui.cpp
parent9734c0922c810b1be8f4acbfcfa6c959b1234653 (diff)
downloadopenttd-9e682bb2f7d09e9b3c2380cd730322937e027e35.tar.xz
(svn r17022) -Codechange: Use nested widgets for the console window.
Diffstat (limited to 'src/console_gui.cpp')
-rw-r--r--src/console_gui.cpp22
1 files changed, 20 insertions, 2 deletions
diff --git a/src/console_gui.cpp b/src/console_gui.cpp
index 6ca976d0a..db862500d 100644
--- a/src/console_gui.cpp
+++ b/src/console_gui.cpp
@@ -143,18 +143,36 @@ static inline void IConsoleResetHistoryPos() {_iconsole_historypos = ICON_HISTOR
static void IConsoleHistoryAdd(const char *cmd);
static void IConsoleHistoryNavigate(int direction);
+/** Widgets of the console window. */
+enum ConsoleWidgets {
+ CW_BACKGROUND, ///< Background of the console
+};
+
+static const struct NWidgetPart _nested_console_window_widgets[] = {
+ NWidget(WWT_EMPTY, INVALID_COLOUR, CW_BACKGROUND), SetResize(1, 1),
+};
+
+static const WindowDesc _console_window_desc(
+ 0, 0, 0, 0, 0, 0,
+ WC_CONSOLE, WC_NONE,
+ 0,
+ NULL, _nested_console_window_widgets, lengthof(_nested_console_window_widgets)
+);
+
struct IConsoleWindow : Window
{
static int scroll;
int line_height;
int line_offset;
- IConsoleWindow() : Window(0, 0, _screen.width, _screen.height / 3, WC_CONSOLE, NULL)
+ IConsoleWindow() : Window()
{
_iconsole_mode = ICONSOLE_OPENED;
-
this->line_height = FONT_HEIGHT_NORMAL + ICON_LINE_SPACING;
this->line_offset = GetStringBoundingBox("] ").width + 5;
+
+ this->InitNested(&_console_window_desc, 0);
+ ResizeWindow(this, _screen.width, _screen.height / 3);
}
~IConsoleWindow()