station_gui.h
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 "station_type.h"
00017
00019 enum StationViewWidgets {
00020 SVW_CAPTION = 0,
00021 SVW_WAITING = 1,
00022 SVW_SCROLLBAR = 2,
00023 SVW_ACCEPTLIST = 3,
00024 SVW_RATINGLIST = 3,
00025 SVW_LOCATION = 4,
00026 SVW_RATINGS = 5,
00027 SVW_ACCEPTS = 5,
00028 SVW_RENAME = 6,
00029 SVW_TRAINS = 7,
00030 SVW_ROADVEHS,
00031 SVW_PLANES,
00032 SVW_SHIPS,
00033 };
00034
00036 enum StationCoverageType {
00037 SCT_PASSENGERS_ONLY,
00038 SCT_NON_PASSENGERS_ONLY,
00039 SCT_ALL,
00040 };
00041
00042
00043 int DrawCargoListText(uint32 cargo_mask, const Rect &r, StringID prefix);
00044 int DrawStationCoverageAreaText(int left, int right, int top, StationCoverageType sct, int rad, bool supplies);
00045 void CheckRedrawStationCoverage(const Window *w);
00046
00047 void ShowSelectStationIfNeeded(CommandContainer cmd, TileArea ta);
00048 void ShowSelectWaypointIfNeeded(CommandContainer cmd, TileArea ta);
00049
00050 #endif