diff options
author | truebrain <truebrain@openttd.org> | 2012-01-03 16:36:24 +0000 |
---|---|---|
committer | truebrain <truebrain@openttd.org> | 2012-01-03 16:36:24 +0000 |
commit | 34d90da509a27c4abe35c11d7f034b1e386cd968 (patch) | |
tree | 552a11c264ee5b26ad849818f50f45bf9927735c /src/widgets | |
parent | 18ac3f2bd89aa11fefa64bdada287a72937ab8d5 (diff) | |
download | openttd-34d90da509a27c4abe35c11d7f034b1e386cd968.tar.xz |
(svn r23731) -Add: add GSGoal::Question(), to ask a question to a(ll) company(ies). It can contain random text, and at most 3 buttons from a collection of 17
Diffstat (limited to 'src/widgets')
-rw-r--r-- | src/widgets/goal_widget.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/widgets/goal_widget.h b/src/widgets/goal_widget.h index aaa91acc3..bacdcc55c 100644 --- a/src/widgets/goal_widget.h +++ b/src/widgets/goal_widget.h @@ -19,4 +19,13 @@ enum GoalListWidgets { WID_GL_SCROLLBAR, ///< Scrollbar of the panel. }; +/** Widgets of the #GoalQuestionWindow class. */ +enum GoalQuestionWidgets { + WID_GQ_QUESTION, ///< Question text. + WID_GQ_BUTTONS, ///< Buttons selection (between 2 or 3). + WID_GQ_BUTTON_1, ///< First button. + WID_GQ_BUTTON_2, ///< Second button. + WID_GQ_BUTTON_3, ///< Third button. +}; + #endif /* WIDGETS_GOAL_WIDGET_H */ |