1 /* $Id: fios_widget.h 23600 2011-12-19 20:46:17Z truebrain $ */
4 * This file is part of OpenTTD.
5 * 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.
6 * 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.
7 * 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/>.
10 /** @file fios_widget.h Types related to the fios widgets. */
12 #ifndef WIDGETS_FIOS_WIDGET_H
13 #define WIDGETS_FIOS_WIDGET_H
15 /** Widgets of the #SaveLoadWindow class. */
16 enum SaveLoadWidgets
{
17 WID_SL_CAPTION
, ///< Caption of the window.
18 WID_SL_SORT_BYNAME
, ///< Sort by name button.
19 WID_SL_SORT_BYDATE
, ///< Sort by date button.
20 WID_SL_BACKGROUND
, ///< Background of window.
21 WID_SL_FILE_BACKGROUND
, ///< Background of file selection.
22 WID_SL_HOME_BUTTON
, ///< Home button.
23 WID_SL_DRIVES_DIRECTORIES_LIST
, ///< Drives list.
24 WID_SL_SCROLLBAR
, ///< Scrollbar of the file list.
25 WID_SL_CONTENT_DOWNLOAD
, ///< Content download button, only available for play scenario/heightmap.
26 WID_SL_SAVE_OSK_TITLE
, ///< Title textbox, only available for save operations.
27 WID_SL_DELETE_SELECTION
, ///< Delete button, only available for save operations.
28 WID_SL_SAVE_GAME
, ///< Save button, only available for save operations.
29 WID_SL_CONTENT_DOWNLOAD_SEL
, ///< Selection 'stack' to 'hide' the content download.
30 WID_SL_DETAILS
, ///< Panel with game details.
31 WID_SL_NEWGRF_INFO
, ///< Button to open NewGgrf configuration.
32 WID_SL_LOAD_BUTTON
, ///< Button to load game/scenario.
33 WID_SL_MISSING_NEWGRFS
, ///< Button to find missing NewGRFs online.
36 #endif /* WIDGETS_FIOS_WIDGET_H */