summaryrefslogtreecommitdiff
path: root/src/window_gui.h
diff options
context:
space:
mode:
authorpeter1138 <peter1138@openttd.org>2008-01-17 18:09:15 +0000
committerpeter1138 <peter1138@openttd.org>2008-01-17 18:09:15 +0000
commitc313676c66c580318f6534cbedeb1dd95cfad979 (patch)
treefa083ad3eb559492f9ce334358aedfc49ec5d130 /src/window_gui.h
parentc74cf439fa22a7c8e0517b0773dc6800e4ee7bb5 (diff)
downloadopenttd-c313676c66c580318f6534cbedeb1dd95cfad979.tar.xz
(svn r11901) -Add: add two widgets for dropdowns, one raised and one inset, to eventually replace use of two widgets for each dropdown control.
Diffstat (limited to 'src/window_gui.h')
-rw-r--r--src/window_gui.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/window_gui.h b/src/window_gui.h
index df825e6d1..70deb5512 100644
--- a/src/window_gui.h
+++ b/src/window_gui.h
@@ -492,6 +492,8 @@ enum WindowWidgetTypes {
WWT_SCROLL2BAR, ///< 2nd vertical scrollbar
WWT_RESIZEBOX,
WWT_CLOSEBOX,
+ WWT_DROPDOWN, ///< Raised drop down list (regular)
+ WWT_DROPDOWNIN, ///< Inset drop down list (used on game options only)
WWT_LAST, ///< Last Item. use WIDGETS_END to fill up padding!!
WWT_MASK = 0x1F,