Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00012 #ifndef STATION_GUI_H
00013 #define STATION_GUI_H
00014
00015 #include "command_type.h"
00016 #include "tilearea_type.h"
00017 #include "window_type.h"
00018
00019 #include "widgets/station_widget.h"
00020
00022 enum StationCoverageType {
00023 SCT_PASSENGERS_ONLY,
00024 SCT_NON_PASSENGERS_ONLY,
00025 SCT_ALL,
00026 };
00027
00028 int DrawStationCoverageAreaText(int left, int right, int top, StationCoverageType sct, int rad, bool supplies);
00029 void CheckRedrawStationCoverage(const Window *w);
00030
00031 void ShowSelectStationIfNeeded(CommandContainer cmd, TileArea ta);
00032 void ShowSelectWaypointIfNeeded(CommandContainer cmd, TileArea ta);
00033
00034 #endif