Fix #10490: Allow ships to exit depots if another is not moving at the exit point...
[openttd-github.git] / src / widgets / fios_widget.h
blob0d8e72384882f12011224c5dab6182374405e620
1 /*
2 * This file is part of OpenTTD.
3 * OpenTTD is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, version 2.
4 * OpenTTD is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
5 * See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with OpenTTD. If not, see <http://www.gnu.org/licenses/>.
6 */
8 /** @file fios_widget.h Types related to the fios widgets. */
10 #ifndef WIDGETS_FIOS_WIDGET_H
11 #define WIDGETS_FIOS_WIDGET_H
13 /** Widgets of the #SaveLoadWindow class. */
14 enum SaveLoadWidgets : WidgetID {
15 WID_SL_CAPTION, ///< Caption of the window.
16 WID_SL_SORT_BYNAME, ///< Sort by name button.
17 WID_SL_SORT_BYDATE, ///< Sort by date button.
18 WID_SL_FILTER, ///< Filter list of files
19 WID_SL_BACKGROUND, ///< Background of window.
20 WID_SL_FILE_BACKGROUND, ///< Background of file selection.
21 WID_SL_HOME_BUTTON, ///< Home button.
22 WID_SL_DRIVES_DIRECTORIES_LIST, ///< Drives list.
23 WID_SL_SCROLLBAR, ///< Scrollbar of the file list.
24 WID_SL_CONTENT_DOWNLOAD, ///< Content download button, only available for play scenario/heightmap.
25 WID_SL_SAVE_OSK_TITLE, ///< Title textbox, only available for save operations.
26 WID_SL_DELETE_SELECTION, ///< Delete button, only available for save operations.
27 WID_SL_SAVE_GAME, ///< Save button, only available for save operations.
28 WID_SL_CONTENT_DOWNLOAD_SEL, ///< Selection 'stack' to 'hide' the content download.
29 WID_SL_DETAILS, ///< Panel with game details.
30 WID_SL_NEWGRF_INFO, ///< Button to open NewGgrf configuration.
31 WID_SL_LOAD_BUTTON, ///< Button to load game/scenario.
32 WID_SL_MISSING_NEWGRFS, ///< Button to find missing NewGRFs online.
35 #endif /* WIDGETS_FIOS_WIDGET_H */