mirror of
https://github.com/JGRennison/OpenTTD-patches.git
synced 2024-11-17 21:25:40 +00:00
(svn r23555) -Fix (r23554): save before commit
This commit is contained in:
parent
2d56468fca
commit
f30444c68c
@ -18,7 +18,7 @@ enum NetworkContentDownloadStatusWidgets {
|
||||
WID_NCDS_CANCELOK, ///< (Optional) Cancel/OK button.
|
||||
};
|
||||
|
||||
/** Widgets of the WC_NETWORK_WINDOW (WC_NETWORK_WINDOW is also used in NetworkGameWindowWidgets, NetworkStartServerWidgets, and NetworkLobbyWindowWidgets). */
|
||||
/** Widgets of the WC_NETWORK_WINDOW (WC_NETWORK_WINDOW is also used in NetworkGameWidgets, NetworkStartServerWidgets, and NetworkLobbyWidgets). */
|
||||
enum NetworkContentListWidgets {
|
||||
WID_NCL_BACKGROUND, ///< Resize button.
|
||||
|
||||
|
@ -14,27 +14,27 @@
|
||||
|
||||
/** Widgets of the WC_NEWGRF_INSPECT. */
|
||||
enum NewGRFInspectWidgets {
|
||||
WID_NGRFI_CAPTION, ///< The caption bar of course
|
||||
WID_NGRFI_PARENT, ///< Inspect the parent
|
||||
WID_NGRFI_MAINPANEL, ///< Panel widget containing the actual data
|
||||
WID_NGRFI_SCROLLBAR, ///< Scrollbar
|
||||
WID_NGRFI_CAPTION, ///< The caption bar of course.
|
||||
WID_NGRFI_PARENT, ///< Inspect the parent.
|
||||
WID_NGRFI_MAINPANEL, ///< Panel widget containing the actual data.
|
||||
WID_NGRFI_SCROLLBAR, ///< Scrollbar.
|
||||
};
|
||||
|
||||
/** Widgets of the WC_SPRITE_ALIGNER. */
|
||||
enum SpriteAlignerWidgets {
|
||||
WID_SA_CAPTION, ///< Caption of the window
|
||||
WID_SA_PREVIOUS, ///< Skip to the previous sprite
|
||||
WID_SA_GOTO, ///< Go to a given sprite
|
||||
WID_SA_NEXT, ///< Skip to the next sprite
|
||||
WID_SA_UP, ///< Move the sprite up
|
||||
WID_SA_LEFT, ///< Move the sprite to the left
|
||||
WID_SA_RIGHT, ///< Move the sprite to the right
|
||||
WID_SA_DOWN, ///< Move the sprite down
|
||||
WID_SA_SPRITE, ///< The actual sprite
|
||||
WID_SA_OFFSETS, ///< The sprite offsets
|
||||
WID_SA_PICKER, ///< Sprite picker
|
||||
WID_SA_LIST, ///< Queried sprite list
|
||||
WID_SA_SCROLLBAR,///< Scrollbar for sprite list
|
||||
WID_SA_CAPTION, ///< Caption of the window.
|
||||
WID_SA_PREVIOUS, ///< Skip to the previous sprite.
|
||||
WID_SA_GOTO, ///< Go to a given sprite.
|
||||
WID_SA_NEXT, ///< Skip to the next sprite.
|
||||
WID_SA_UP, ///< Move the sprite up.
|
||||
WID_SA_LEFT, ///< Move the sprite to the left.
|
||||
WID_SA_RIGHT, ///< Move the sprite to the right.
|
||||
WID_SA_DOWN, ///< Move the sprite down.
|
||||
WID_SA_SPRITE, ///< The actual sprite.
|
||||
WID_SA_OFFSETS, ///< The sprite offsets.
|
||||
WID_SA_PICKER, ///< Sprite picker.
|
||||
WID_SA_LIST, ///< Queried sprite list.
|
||||
WID_SA_SCROLLBAR, ///< Scrollbar for sprite list.
|
||||
};
|
||||
|
||||
#endif /* WIDGETS_NEWGRF_DEBUG_WIDGET_H */
|
||||
|
@ -16,17 +16,17 @@
|
||||
|
||||
/** Widgets of the WC_GRF_PARAMETERS. */
|
||||
enum NewGRFParametersWidgets {
|
||||
WID_NP_SHOW_NUMPAR, ///< #NWID_SELECTION to optionally display #WID_NP_NUMPAR
|
||||
WID_NP_NUMPAR_DEC, ///< Button to decrease number of parameters
|
||||
WID_NP_NUMPAR_INC, ///< Button to increase number of parameters
|
||||
WID_NP_NUMPAR, ///< Optional number of parameters
|
||||
WID_NP_NUMPAR_TEXT, ///< Text description
|
||||
WID_NP_BACKGROUND, ///< Panel to draw the settings on
|
||||
WID_NP_SCROLLBAR, ///< Scrollbar to scroll through all settings
|
||||
WID_NP_ACCEPT, ///< Accept button
|
||||
WID_NP_RESET, ///< Reset button
|
||||
WID_NP_SHOW_DESCRIPTION, ///< #NWID_SELECTION to optionally display parameter descriptions
|
||||
WID_NP_DESCRIPTION, ///< Multi-line description of a parameter
|
||||
WID_NP_SHOW_NUMPAR, ///< #NWID_SELECTION to optionally display #WID_NP_NUMPAR.
|
||||
WID_NP_NUMPAR_DEC, ///< Button to decrease number of parameters.
|
||||
WID_NP_NUMPAR_INC, ///< Button to increase number of parameters.
|
||||
WID_NP_NUMPAR, ///< Optional number of parameters.
|
||||
WID_NP_NUMPAR_TEXT, ///< Text description.
|
||||
WID_NP_BACKGROUND, ///< Panel to draw the settings on.
|
||||
WID_NP_SCROLLBAR, ///< Scrollbar to scroll through all settings.
|
||||
WID_NP_ACCEPT, ///< Accept button.
|
||||
WID_NP_RESET, ///< Reset button.
|
||||
WID_NP_SHOW_DESCRIPTION, ///< #NWID_SELECTION to optionally display parameter descriptions.
|
||||
WID_NP_DESCRIPTION, ///< Multi-line description of a parameter.
|
||||
};
|
||||
|
||||
/** Widgets of the WC_NEWGRF_TEXTFILE. */
|
||||
@ -66,7 +66,7 @@ enum NewGRFStateWidgets {
|
||||
WID_NS_SHOW_APPLY, ///< Select display of the buttons below the 'details'.
|
||||
};
|
||||
|
||||
/** Widgets of the WC_MODAL_PROGRESS (WC_MODAL_PROGRESS is also used in GenerationProgressWindowWidgets). */
|
||||
/** Widgets of the WC_MODAL_PROGRESS (WC_MODAL_PROGRESS is also used in GenerationProgressWidgets). */
|
||||
enum ScanProgressWidgets {
|
||||
WID_SP_PROGRESS_BAR, ///< Simple progress bar.
|
||||
WID_SP_PROGRESS_TEXT, ///< Text explaining what is happening.
|
||||
|
@ -14,7 +14,7 @@
|
||||
|
||||
/** Widgets of the WC_SIGN_LIST. */
|
||||
enum SignListWidgets {
|
||||
/* Name starts with SI instead of S, because of collision with StationListWidgets */
|
||||
/* Name starts with SI instead of S, because of collision with SaveLoadWidgets */
|
||||
WID_SIL_CAPTION, ///< Caption of the window.
|
||||
WID_SIL_LIST, ///< List of signs.
|
||||
WID_SIL_SCROLLBAR, ///< Scrollbar of list.
|
||||
|
Loading…
Reference in New Issue
Block a user