2007-12-05 17:08:10 +00:00
|
|
|
/* $Id$ */
|
|
|
|
|
2009-08-21 20:21:05 +00:00
|
|
|
/*
|
|
|
|
* This file is part of OpenTTD.
|
|
|
|
* OpenTTD is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, version 2.
|
|
|
|
* OpenTTD is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
* See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with OpenTTD. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2007-12-05 17:08:10 +00:00
|
|
|
/** @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"
|
2009-07-26 21:07:03 +00:00
|
|
|
#include "station_type.h"
|
2009-01-08 16:35:45 +00:00
|
|
|
|
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-07-26 21:07:03 +00:00
|
|
|
void ShowSelectStationIfNeeded(CommandContainer cmd, TileArea ta);
|
2009-07-31 16:28:28 +00:00
|
|
|
void ShowSelectWaypointIfNeeded(CommandContainer cmd, TileArea ta);
|
2009-01-08 16:35:45 +00:00
|
|
|
|
2007-12-05 17:08:10 +00:00
|
|
|
#endif /* STATION_GUI_H */
|