(svn r28004) -Update from Eints:
[openttd.git] / src / widgets / goal_widget.h
blob388930a1021d01e4d124abf7922b8e2368563783
2 /* $Id$ */
4 /*
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/>.
9 */
11 /** @file goal_widget.h Types related to the goal widgets. */
13 #ifndef WIDGETS_GOAL_WIDGET_H
14 #define WIDGETS_GOAL_WIDGET_H
16 /** Widgets of the #GoalListWindow class. */
17 enum GoalListWidgets {
18 WID_GOAL_CAPTION, ///< Caption of the window.
19 WID_GOAL_LIST, ///< Goal list.
20 WID_GOAL_SCROLLBAR, ///< Scrollbar of the goal list.
23 /** Widgets of the #GoalQuestionWindow class. */
24 enum GoalQuestionWidgets {
25 WID_GQ_CAPTION, ///< Caption of the window.
26 WID_GQ_QUESTION, ///< Question text.
27 WID_GQ_BUTTONS, ///< Buttons selection (between 1, 2 or 3).
28 WID_GQ_BUTTON_1, ///< First button.
29 WID_GQ_BUTTON_2, ///< Second button.
30 WID_GQ_BUTTON_3, ///< Third button.
33 #endif /* WIDGETS_GOAL_WIDGET_H */