mirror of https://github.com/OpenTTD/OpenTTD
(svn r23554) -Codechange: some minor consistency fixes
parent
bcf00dbb8f
commit
7b80b821ff
|
@ -57,7 +57,7 @@ enum MessageHistoryWidgets {
|
||||||
|
|
||||||
/** Widgets of the WC_GAME_OPTIONS (WC_GAME_OPTIONS is also used in others). */
|
/** Widgets of the WC_GAME_OPTIONS (WC_GAME_OPTIONS is also used in others). */
|
||||||
enum MessageOptionWidgets {
|
enum MessageOptionWidgets {
|
||||||
WID_MO_BACKGROUND, ///< Background of the widget.
|
WID_MO_BACKGROUND, ///< Background of the window.
|
||||||
WID_MO_LABEL, ///< Top label.
|
WID_MO_LABEL, ///< Top label.
|
||||||
WID_MO_DROP_SUMMARY, ///< Dropdown that adjusts at once the level for all settings.
|
WID_MO_DROP_SUMMARY, ///< Dropdown that adjusts at once the level for all settings.
|
||||||
WID_MO_LABEL_SUMMARY, ///< Label of the summary drop down.
|
WID_MO_LABEL_SUMMARY, ///< Label of the summary drop down.
|
||||||
|
|
|
@ -14,7 +14,7 @@
|
||||||
|
|
||||||
/** Widgets of the WC_VEHICLE_ORDERS. */
|
/** Widgets of the WC_VEHICLE_ORDERS. */
|
||||||
enum OrderWidgets {
|
enum OrderWidgets {
|
||||||
WID_O_CAPTION, ///< Window caption.
|
WID_O_CAPTION, ///< Caption of the window.
|
||||||
WID_O_TIMETABLE_VIEW, ///< Toggle timetable view.
|
WID_O_TIMETABLE_VIEW, ///< Toggle timetable view.
|
||||||
WID_O_ORDER_LIST, ///< Order list panel.
|
WID_O_ORDER_LIST, ///< Order list panel.
|
||||||
WID_O_SCROLLBAR, ///< Order list scrollbar.
|
WID_O_SCROLLBAR, ///< Order list scrollbar.
|
||||||
|
|
|
@ -29,6 +29,7 @@ enum StationViewWidgets {
|
||||||
|
|
||||||
/** Widgets of the WC_STATION_LIST. */
|
/** Widgets of the WC_STATION_LIST. */
|
||||||
enum StationListWidgets {
|
enum StationListWidgets {
|
||||||
|
/* Name starts with ST instead of S, because of collision with SaveLoadWidgets */
|
||||||
WID_STL_CAPTION, ///< Caption of the window.
|
WID_STL_CAPTION, ///< Caption of the window.
|
||||||
WID_STL_LIST, ///< The main panel, list of stations.
|
WID_STL_LIST, ///< The main panel, list of stations.
|
||||||
WID_STL_SCROLLBAR, ///< Scrollbar next to the main panel.
|
WID_STL_SCROLLBAR, ///< Scrollbar next to the main panel.
|
||||||
|
|
|
@ -14,7 +14,7 @@
|
||||||
|
|
||||||
/** Widgets of the WC_SUBSIDIES_LIST. */
|
/** Widgets of the WC_SUBSIDIES_LIST. */
|
||||||
enum SubsidyListWidgets {
|
enum SubsidyListWidgets {
|
||||||
/* Name starts with SU instead of S, because of collision with StationListWidgets */
|
/* Name starts with SU instead of S, because of collision with SaveLoadWidgets. */
|
||||||
WID_SUL_PANEL, ///< Main panel of window.
|
WID_SUL_PANEL, ///< Main panel of window.
|
||||||
WID_SUL_SCROLLBAR, ///< Scrollbar of panel.
|
WID_SUL_SCROLLBAR, ///< Scrollbar of panel.
|
||||||
};
|
};
|
||||||
|
|
|
@ -14,20 +14,20 @@
|
||||||
|
|
||||||
/** Widgets of the WC_BUILD_TREES. */
|
/** Widgets of the WC_BUILD_TREES. */
|
||||||
enum BuildTreesWidgets {
|
enum BuildTreesWidgets {
|
||||||
WID_BT_TYPE_11, ///< tree 1st column 1st row
|
WID_BT_TYPE_11, ///< Tree 1st column 1st row.
|
||||||
WID_BT_TYPE_12, ///< tree 1st column 2nd row
|
WID_BT_TYPE_12, ///< Tree 1st column 2nd row.
|
||||||
WID_BT_TYPE_13, ///< tree 1st column 3rd row
|
WID_BT_TYPE_13, ///< Tree 1st column 3rd row.
|
||||||
WID_BT_TYPE_14, ///< tree 1st column 4th row
|
WID_BT_TYPE_14, ///< Tree 1st column 4th row.
|
||||||
WID_BT_TYPE_21, ///< tree 1st column 1st row
|
WID_BT_TYPE_21, ///< Tree 1st column 1st row.
|
||||||
WID_BT_TYPE_22, ///< tree 1st column 2nd row
|
WID_BT_TYPE_22, ///< Tree 1st column 2nd row.
|
||||||
WID_BT_TYPE_23, ///< tree 1st column 3rd row
|
WID_BT_TYPE_23, ///< Tree 1st column 3rd row.
|
||||||
WID_BT_TYPE_24, ///< tree 1st column 4th row
|
WID_BT_TYPE_24, ///< Tree 1st column 4th row.
|
||||||
WID_BT_TYPE_31, ///< tree 1st column 1st row
|
WID_BT_TYPE_31, ///< Tree 1st column 1st row.
|
||||||
WID_BT_TYPE_32, ///< tree 1st column 2nd row
|
WID_BT_TYPE_32, ///< Tree 1st column 2nd row.
|
||||||
WID_BT_TYPE_33, ///< tree 1st column 3rd row
|
WID_BT_TYPE_33, ///< Tree 1st column 3rd row.
|
||||||
WID_BT_TYPE_34, ///< tree 1st column 4th row
|
WID_BT_TYPE_34, ///< Tree 1st column 4th row.
|
||||||
WID_BT_TYPE_RANDOM, ///< button to build random type of tree
|
WID_BT_TYPE_RANDOM, ///< Button to build random type of tree.
|
||||||
WID_BT_MANY_RANDOM, ///< button to build many random trees
|
WID_BT_MANY_RANDOM, ///< Button to build many random trees.
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif /* WIDGETS_TREE_WIDGET_H */
|
#endif /* WIDGETS_TREE_WIDGET_H */
|
||||||
|
|
Loading…
Reference in New Issue