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
00021 enum StationCoverageType {
00022 SCT_PASSENGERS_ONLY,
00023 SCT_NON_PASSENGERS_ONLY,
00024 SCT_ALL,
00025 };
00026
00027 int DrawStationCoverageAreaText(int left, int right, int top, StationCoverageType sct, int rad, bool supplies);
00028 void CheckRedrawStationCoverage(const Window *w);
00029
00030 void ShowSelectStationIfNeeded(CommandContainer cmd, TileArea ta);
00031 void ShowSelectWaypointIfNeeded(CommandContainer cmd, TileArea ta);
00032
00033 #endif