summaryrefslogtreecommitdiff
path: root/src/window_gui.h
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2008-03-26 10:08:17 +0000
committerrubidium <rubidium@openttd.org>2008-03-26 10:08:17 +0000
commita606fe961020486a5810ff29bc0255a8c83b310c (patch)
tree6f0a8507b3787ee4fc264a975c90db6c455c39a1 /src/window_gui.h
parentb05919cc5a07ef01e18db2a22f339fb8a5665526 (diff)
downloadopenttd-a606fe961020486a5810ff29bc0255a8c83b310c.tar.xz
(svn r12425) -Feature [FS#1846]: On Screen Keyboard for input fields so someone without a keyboard can enter text too. Patch by Dominik.
Diffstat (limited to 'src/window_gui.h')
-rw-r--r--src/window_gui.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/window_gui.h b/src/window_gui.h
index e59b5e9b4..ce1efe256 100644
--- a/src/window_gui.h
+++ b/src/window_gui.h
@@ -499,6 +499,7 @@ enum WindowWidgetTypes {
WWT_CLOSEBOX,
WWT_DROPDOWN, ///< Raised drop down list (regular)
WWT_DROPDOWNIN, ///< Inset drop down list (used on game options only)
+ WWT_EDITBOX, ///< a textbox for typing (don't forget to call ShowOnScreenKeyboard() when clicked)
WWT_LAST, ///< Last Item. use WIDGETS_END to fill up padding!!
WWT_MASK = 0x1F,