5 * This file is part of OpenTTD.
6 * 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.
7 * 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.
8 * 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/>.
11 /** @file story_widget.h Types related to the story widgets. */
13 #ifndef WIDGETS_STORY_WIDGET_H
14 #define WIDGETS_STORY_WIDGET_H
16 /** Widgets of the #GoalListWindow class. */
17 enum StoryBookWidgets
{
18 WID_SB_CAPTION
, ///< Caption of the window.
19 WID_SB_SEL_PAGE
, ///< Page selector.
20 WID_SB_PAGE_PANEL
,///< Page body.
21 WID_SB_SCROLLBAR
, ///< Scrollbar of the goal list.
22 WID_SB_PREV_PAGE
, ///< Prev button.
23 WID_SB_NEXT_PAGE
, ///< Next button.
26 #endif /* WIDGETS_STORY_WIDGET_H */