2007-12-05 17:08:10 +00:00
|
|
|
/* $Id$ */
|
|
|
|
|
|
|
|
/** @file station_gui.h Contains enums and function declarations connected with stations GUI */
|
|
|
|
|
|
|
|
#ifndef STATION_GUI_H
|
|
|
|
#define STATION_GUI_H
|
|
|
|
|
2009-01-08 16:35:45 +00:00
|
|
|
#include "command_type.h"
|
|
|
|
|
2007-12-05 17:08:10 +00:00
|
|
|
/** Enum for StationView, referring to _station_view_widgets and _station_view_expanded_widgets */
|
|
|
|
enum StationViewWidgets {
|
|
|
|
SVW_CLOSEBOX = 0, ///< Close 'X' button
|
|
|
|
SVW_CAPTION = 1, ///< Caption of the window
|
2009-05-03 10:38:35 +00:00
|
|
|
SVW_STICKYBOX = 2, ///< Sticky button
|
2007-12-05 17:08:10 +00:00
|
|
|
SVW_WAITING = 3, ///< List of waiting cargo
|
2009-05-03 10:38:35 +00:00
|
|
|
SVW_SCROLLBAR = 4, ///< Scrollbar
|
2007-12-05 17:08:10 +00:00
|
|
|
SVW_ACCEPTLIST = 5, ///< List of accepted cargos
|
2008-01-26 22:15:39 +00:00
|
|
|
SVW_RATINGLIST = 5, ///< Ratings of cargos
|
|
|
|
SVW_LOCATION = 6, ///< 'Location' button
|
|
|
|
SVW_RATINGS = 7, ///< 'Ratings' button
|
|
|
|
SVW_ACCEPTS = 7, ///< 'Accepts' button
|
|
|
|
SVW_RENAME = 8, ///< 'Rename' button
|
|
|
|
SVW_TRAINS = 9, ///< List of scheduled trains button
|
2007-12-05 17:08:10 +00:00
|
|
|
SVW_ROADVEHS, ///< List of scheduled road vehs button
|
|
|
|
SVW_PLANES, ///< List of scheduled planes button
|
|
|
|
SVW_SHIPS, ///< List of scheduled ships button
|
2008-01-26 22:15:39 +00:00
|
|
|
SVW_RESIZE, ///< Resize button
|
2007-12-05 17:08:10 +00:00
|
|
|
};
|
|
|
|
|
2007-12-19 20:45:46 +00:00
|
|
|
enum StationCoverageType {
|
|
|
|
SCT_PASSENGERS_ONLY,
|
|
|
|
SCT_NON_PASSENGERS_ONLY,
|
|
|
|
SCT_ALL
|
|
|
|
};
|
|
|
|
|
2009-07-10 22:03:09 +00:00
|
|
|
int DrawStationCoverageAreaText(int left, int right, int top, StationCoverageType sct, int rad, bool supplies);
|
2007-12-19 20:45:46 +00:00
|
|
|
void CheckRedrawStationCoverage(const Window *w);
|
|
|
|
|
2009-01-08 16:35:45 +00:00
|
|
|
void ShowSelectStationIfNeeded(CommandContainer cmd, int w, int h);
|
|
|
|
|
2007-12-05 17:08:10 +00:00
|
|
|
#endif /* STATION_GUI_H */
|