summaryrefslogtreecommitdiff
path: root/src/station_gui.h
diff options
context:
space:
mode:
authoralberth <alberth@openttd.org>2009-12-19 15:04:24 +0000
committeralberth <alberth@openttd.org>2009-12-19 15:04:24 +0000
commitf051ef01e3a8978c832ea60f41b686a4e8a48faf (patch)
tree8b3c5d7cfe98d8b7c88dcd3b2ceab8a6e9763cda /src/station_gui.h
parentb3e3f0b0ee897d74d94528eeacc92a33c8bd8831 (diff)
downloadopenttd-f051ef01e3a8978c832ea60f41b686a4e8a48faf.tar.xz
(svn r18534) -Doc: Add doxy strings to StationCoverageType enum.
Diffstat (limited to 'src/station_gui.h')
-rw-r--r--src/station_gui.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/station_gui.h b/src/station_gui.h
index 55fb173c2..efd6ad166 100644
--- a/src/station_gui.h
+++ b/src/station_gui.h
@@ -32,10 +32,11 @@ enum StationViewWidgets {
SVW_SHIPS, ///< List of scheduled ships button
};
+/** Types of cargo to display for station coverage. */
enum StationCoverageType {
- SCT_PASSENGERS_ONLY,
- SCT_NON_PASSENGERS_ONLY,
- SCT_ALL
+ SCT_PASSENGERS_ONLY, ///< Draw only passenger class cargos.
+ SCT_NON_PASSENGERS_ONLY, ///< Draw all non-passenger class cargos.
+ SCT_ALL, ///< Draw all cargos.
};
int DrawStationCoverageAreaText(int left, int right, int top, StationCoverageType sct, int rad, bool supplies);