mirror of
https://github.com/OpenTTD/OpenTTD.git
synced 2025-03-08 23:19:40 +00:00
(svn r16211) -Codechange: Moving StationListWidgets out of the window class, completing StationViewWidgets.
This commit is contained in:
parent
99ce97b7f3
commit
58a2d5aa94
@ -79,39 +79,39 @@ static void StationsWndShowStationRating(int left, int right, int y, CargoID typ
|
|||||||
|
|
||||||
typedef GUIList<const Station*> GUIStationList;
|
typedef GUIList<const Station*> GUIStationList;
|
||||||
|
|
||||||
|
/** Enum for CompanyStations, referring to _company_stations_widgets */
|
||||||
|
enum StationListWidgets {
|
||||||
|
SLW_CLOSEBOX = 0, ///< Close window button
|
||||||
|
SLW_CAPTION, ///< Window caption
|
||||||
|
SLW_STICKY, ///< Sticky button
|
||||||
|
SLW_LIST, ///< The main panel, list of stations
|
||||||
|
SLW_SCROLLBAR, ///< Scrollbar next to the main panel
|
||||||
|
SLW_RESIZE, ///< Resize button
|
||||||
|
|
||||||
|
SLW_TRAIN, ///< 'TRAIN' button - list only facilities where is a railroad station
|
||||||
|
SLW_TRUCK, ///< 'TRUCK' button - list only facilities where is a truck stop
|
||||||
|
SLW_BUS, ///< 'BUS' button - list only facilities where is a bus stop
|
||||||
|
SLW_AIRPLANE, ///< 'AIRPLANE' button - list only facilities where is an airport
|
||||||
|
SLW_SHIP, ///< 'SHIP' button - list only facilities where is a dock
|
||||||
|
SLW_FACILALL, ///< 'ALL' button - list all facilities
|
||||||
|
|
||||||
|
SLW_PAN_BETWEEN, ///< Small panel between list of types of ficilities and list of cargo types
|
||||||
|
SLW_NOCARGOWAITING, ///< 'NO' button - list stations where no cargo is waiting
|
||||||
|
SLW_CARGOALL, ///< 'ALL' button - list all stations
|
||||||
|
SLW_PAN_RIGHT, ///< Panel right of list of cargo types
|
||||||
|
|
||||||
|
SLW_SORTBY, ///< 'Sort by' button - reverse sort direction
|
||||||
|
SLW_SORTDROPBTN, ///< Dropdown button
|
||||||
|
SLW_PAN_SORT_RIGHT, ///< Panel right of sorting options
|
||||||
|
|
||||||
|
SLW_CARGOSTART, ///< Widget numbers used for list of cargo types (not present in _company_stations_widgets)
|
||||||
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The list of stations per company.
|
* The list of stations per company.
|
||||||
*/
|
*/
|
||||||
class CompanyStationsWindow : public Window
|
class CompanyStationsWindow : public Window
|
||||||
{
|
{
|
||||||
/** Enum for CompanyStations, referring to _company_stations_widgets */
|
|
||||||
enum StationListWidgets {
|
|
||||||
SLW_CLOSEBOX = 0, ///< Close window button
|
|
||||||
SLW_CAPTION, ///< Window caption
|
|
||||||
SLW_STICKY, ///< Sticky button
|
|
||||||
SLW_LIST, ///< The main panel, list of stations
|
|
||||||
SLW_SCROLLBAR, ///< Scrollbar next to the main panel
|
|
||||||
SLW_RESIZE, ///< Resize button
|
|
||||||
|
|
||||||
SLW_TRAIN, ///< 'TRAIN' button - list only facilities where is a railroad station
|
|
||||||
SLW_TRUCK, ///< 'TRUCK' button - list only facilities where is a truck stop
|
|
||||||
SLW_BUS, ///< 'BUS' button - list only facilities where is a bus stop
|
|
||||||
SLW_AIRPLANE, ///< 'AIRPLANE' button - list only facilities where is an airport
|
|
||||||
SLW_SHIP, ///< 'SHIP' button - list only facilities where is a dock
|
|
||||||
SLW_FACILALL, ///< 'ALL' button - list all facilities
|
|
||||||
|
|
||||||
SLW_PAN_BETWEEN, ///< Small panel between list of types of ficilities and list of cargo types
|
|
||||||
SLW_NOCARGOWAITING, ///< 'NO' button - list stations where no cargo is waiting
|
|
||||||
SLW_CARGOALL, ///< 'ALL' button - list all stations
|
|
||||||
SLW_PAN_RIGHT, ///< Panel right of list of cargo types
|
|
||||||
|
|
||||||
SLW_SORTBY, ///< 'Sort by' button - reverse sort direction
|
|
||||||
SLW_SORTDROPBTN, ///< Dropdown button
|
|
||||||
SLW_PAN_SORT_RIGHT, ///< Panel right of sorting options
|
|
||||||
|
|
||||||
SLW_CARGOSTART, ///< Widget numbers used for list of cargo types (not present in _company_stations_widgets)
|
|
||||||
};
|
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
/* Runtime saved values */
|
/* Runtime saved values */
|
||||||
static Listing last_sorting;
|
static Listing last_sorting;
|
||||||
|
@ -11,7 +11,9 @@
|
|||||||
enum StationViewWidgets {
|
enum StationViewWidgets {
|
||||||
SVW_CLOSEBOX = 0, ///< Close 'X' button
|
SVW_CLOSEBOX = 0, ///< Close 'X' button
|
||||||
SVW_CAPTION = 1, ///< Caption of the window
|
SVW_CAPTION = 1, ///< Caption of the window
|
||||||
|
SVW_STICKYBOX = 2, ///< Sticky button
|
||||||
SVW_WAITING = 3, ///< List of waiting cargo
|
SVW_WAITING = 3, ///< List of waiting cargo
|
||||||
|
SVW_SCROLLBAR = 4, ///< Scrollbar
|
||||||
SVW_ACCEPTLIST = 5, ///< List of accepted cargos
|
SVW_ACCEPTLIST = 5, ///< List of accepted cargos
|
||||||
SVW_RATINGLIST = 5, ///< Ratings of cargos
|
SVW_RATINGLIST = 5, ///< Ratings of cargos
|
||||||
SVW_LOCATION = 6, ///< 'Location' button
|
SVW_LOCATION = 6, ///< 'Location' button
|
||||||
|
Loading…
Reference in New Issue
Block a user