diff options
author | frosch <frosch@openttd.org> | 2012-11-27 21:35:52 +0000 |
---|---|---|
committer | frosch <frosch@openttd.org> | 2012-11-27 21:35:52 +0000 |
commit | 507de921c2441190e07c7a785f50e99ad0417641 (patch) | |
tree | ae581d94e41c5623212b1f72e1d0221a2f2ee132 /src/script | |
parent | b88419540040e07e931696e0984595b3a64766c1 (diff) | |
download | openttd-507de921c2441190e07c7a785f50e99ad0417641.tar.xz |
(svn r24769) -Feature [FS#3852]: Add a string filter to the server list. (Eagle_rainbow)
Diffstat (limited to 'src/script')
-rw-r--r-- | src/script/api/game/game_window.hpp.sq | 2 | ||||
-rw-r--r-- | src/script/api/script_window.hpp | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/src/script/api/game/game_window.hpp.sq b/src/script/api/game/game_window.hpp.sq index c175fda6b..1ba8dc44b 100644 --- a/src/script/api/game/game_window.hpp.sq +++ b/src/script/api/game/game_window.hpp.sq @@ -662,6 +662,8 @@ void SQGSWindow_Register(Squirrel *engine) SQGSWindow.DefSQConst(engine, ScriptWindow::WID_NG_CONN_BTN, "WID_NG_CONN_BTN"); SQGSWindow.DefSQConst(engine, ScriptWindow::WID_NG_CLIENT_LABEL, "WID_NG_CLIENT_LABEL"); SQGSWindow.DefSQConst(engine, ScriptWindow::WID_NG_CLIENT, "WID_NG_CLIENT"); + SQGSWindow.DefSQConst(engine, ScriptWindow::WID_NG_FILTER_LABEL, "WID_NG_FILTER_LABEL"); + SQGSWindow.DefSQConst(engine, ScriptWindow::WID_NG_FILTER, "WID_NG_FILTER"); SQGSWindow.DefSQConst(engine, ScriptWindow::WID_NG_HEADER, "WID_NG_HEADER"); SQGSWindow.DefSQConst(engine, ScriptWindow::WID_NG_NAME, "WID_NG_NAME"); SQGSWindow.DefSQConst(engine, ScriptWindow::WID_NG_CLIENTS, "WID_NG_CLIENTS"); diff --git a/src/script/api/script_window.hpp b/src/script/api/script_window.hpp index bfe0f81e8..67c4ce3c0 100644 --- a/src/script/api/script_window.hpp +++ b/src/script/api/script_window.hpp @@ -1626,6 +1626,8 @@ public: WID_NG_CONN_BTN = ::WID_NG_CONN_BTN, ///< 'Connection' droplist button. WID_NG_CLIENT_LABEL = ::WID_NG_CLIENT_LABEL, ///< Label in front of client name edit box. WID_NG_CLIENT = ::WID_NG_CLIENT, ///< Panel with editbox to set client name. + WID_NG_FILTER_LABEL = ::WID_NG_FILTER_LABEL, ///< Label in front of the filter/search edit box. + WID_NG_FILTER = ::WID_NG_FILTER, ///< Panel with the edit box to enter the search text. WID_NG_HEADER = ::WID_NG_HEADER, ///< Header container of the matrix. WID_NG_NAME = ::WID_NG_NAME, ///< 'Name' button. |