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/>.
8 /** @file game_widget.h Types related to the GS widgets. */
10 #ifndef WIDGETS_GS_WIDGET_H
11 #define WIDGETS_GS_WIDGET_H
13 #include "../textfile_type.h"
15 /** Widgets of the #GSConfigWindow class. */
16 enum GSConfigWidgets
: WidgetID
{
17 WID_GSC_BACKGROUND
, ///< Window background.
18 WID_GSC_GSLIST
, ///< List with current selected Game Script.
19 WID_GSC_SETTINGS
, ///< Panel to draw the Game Script settings on
20 WID_GSC_SCROLLBAR
, ///< Scrollbar to scroll through the selected AIs.
21 WID_GSC_CHANGE
, ///< Select another Game Script button.
22 WID_GSC_OPEN_URL
, ///< Open GS URL.
23 WID_GSC_TEXTFILE
, ///< Open GS readme, changelog (+1) or license (+2).
24 WID_GSC_CONTENT_DOWNLOAD
= WID_GSC_TEXTFILE
+ TFT_CONTENT_END
, ///< Download content button.
25 WID_GSC_RESET
, ///< Reset button.
27 WID_GSC_SETTING_DROPDOWN
= -1, ///< Dynamically created dropdown for changing setting value.
30 #endif /* WIDGETS_GS_WIDGET_H */