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
commit9fdb9a82a2b0e7696c47a07de99c50b392eb19ac (patch)
treefa083ad3eb559492f9ce334358aedfc49ec5d130 /src/window_gui.h
parent2c38d3066f409209bff6ac716a7446426c2b723c (diff)
downloadopenttd-9fdb9a82a2b0e7696c47a07de99c50b392eb19ac.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,