1
0
Fork 0

Fix #6974: Add save-load filter widget to api

pull/7010/head
Joan Josep 2018-12-27 09:53:55 +01:00 committed by Niels Martin Hansen
parent 65bc7123d1
commit 8890926b0d
2 changed files with 3 additions and 1 deletions

View File

@ -438,6 +438,7 @@ void SQGSWindow_Register(Squirrel *engine)
SQGSWindow.DefSQConst(engine, ScriptWindow::WID_SL_CAPTION, "WID_SL_CAPTION"); SQGSWindow.DefSQConst(engine, ScriptWindow::WID_SL_CAPTION, "WID_SL_CAPTION");
SQGSWindow.DefSQConst(engine, ScriptWindow::WID_SL_SORT_BYNAME, "WID_SL_SORT_BYNAME"); SQGSWindow.DefSQConst(engine, ScriptWindow::WID_SL_SORT_BYNAME, "WID_SL_SORT_BYNAME");
SQGSWindow.DefSQConst(engine, ScriptWindow::WID_SL_SORT_BYDATE, "WID_SL_SORT_BYDATE"); SQGSWindow.DefSQConst(engine, ScriptWindow::WID_SL_SORT_BYDATE, "WID_SL_SORT_BYDATE");
SQGSWindow.DefSQConst(engine, ScriptWindow::WID_SL_FILTER, "WID_SL_FILTER");
SQGSWindow.DefSQConst(engine, ScriptWindow::WID_SL_BACKGROUND, "WID_SL_BACKGROUND"); SQGSWindow.DefSQConst(engine, ScriptWindow::WID_SL_BACKGROUND, "WID_SL_BACKGROUND");
SQGSWindow.DefSQConst(engine, ScriptWindow::WID_SL_FILE_BACKGROUND, "WID_SL_FILE_BACKGROUND"); SQGSWindow.DefSQConst(engine, ScriptWindow::WID_SL_FILE_BACKGROUND, "WID_SL_FILE_BACKGROUND");
SQGSWindow.DefSQConst(engine, ScriptWindow::WID_SL_HOME_BUTTON, "WID_SL_HOME_BUTTON"); SQGSWindow.DefSQConst(engine, ScriptWindow::WID_SL_HOME_BUTTON, "WID_SL_HOME_BUTTON");

View File

@ -1001,7 +1001,7 @@ public:
}; };
/* automatically generated from ../../widgets/cheat_widget.h */ /* automatically generated from ../../widgets/cheat_widget.h */
/** Widgets of the #CheatWindow class.. */ /** Widgets of the #CheatWindow class. */
enum CheatWidgets { enum CheatWidgets {
WID_C_PANEL = ::WID_C_PANEL, ///< Panel where all cheats are shown in. WID_C_PANEL = ::WID_C_PANEL, ///< Panel where all cheats are shown in.
}; };
@ -1272,6 +1272,7 @@ public:
WID_SL_CAPTION = ::WID_SL_CAPTION, ///< Caption of the window. WID_SL_CAPTION = ::WID_SL_CAPTION, ///< Caption of the window.
WID_SL_SORT_BYNAME = ::WID_SL_SORT_BYNAME, ///< Sort by name button. WID_SL_SORT_BYNAME = ::WID_SL_SORT_BYNAME, ///< Sort by name button.
WID_SL_SORT_BYDATE = ::WID_SL_SORT_BYDATE, ///< Sort by date button. WID_SL_SORT_BYDATE = ::WID_SL_SORT_BYDATE, ///< Sort by date button.
WID_SL_FILTER = ::WID_SL_FILTER, ///< Filter list of files
WID_SL_BACKGROUND = ::WID_SL_BACKGROUND, ///< Background of window. WID_SL_BACKGROUND = ::WID_SL_BACKGROUND, ///< Background of window.
WID_SL_FILE_BACKGROUND = ::WID_SL_FILE_BACKGROUND, ///< Background of file selection. WID_SL_FILE_BACKGROUND = ::WID_SL_FILE_BACKGROUND, ///< Background of file selection.
WID_SL_HOME_BUTTON = ::WID_SL_HOME_BUTTON, ///< Home button. WID_SL_HOME_BUTTON = ::WID_SL_HOME_BUTTON, ///< Home button.