Update readme and changelog for v1.26.0
[openttd-joker.git] / src / widgets / departures_widget.h
blob95fedaec5de3a7d04fdfda1e37ade6ed444224b3
1 /* $Id$ */
3 /*
4 * This file is part of OpenTTD.
5 * 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.
6 * 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.
7 * 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/>.
8 */
10 /** @file waypoint_widget.h Types related to the waypoint widgets. */
12 #ifndef WIDGETS_DEPARTURES_WIDGET_H
13 #define WIDGETS_DEPARTURES_WIDGET_H
15 /** Widgets of the WC_DEPARTURES_BOARD. */
16 enum DeparturesWindowWidgets {
17 WID_DB_CAPTION, ///< Window caption
18 WID_DB_LIST, ///< List of departures
19 WID_DB_SCROLLBAR, ///< List scrollbar
20 WID_DB_SHOW_PAX, ///< Toggle passenger departures button
21 WID_DB_SHOW_FREIGHT, ///< Toggle freight button
22 WID_DB_SHOW_DEPS, ///< Toggle departures button
23 WID_DB_SHOW_ARRS, ///< Toggle arrivals button
24 WID_DB_SHOW_VIA, ///< Toggle via button
25 WID_DB_SHOW_TRAINS, ///< Toggle trains button
26 WID_DB_SHOW_ROADVEHS, ///< Toggle road vehicles button
27 WID_DB_SHOW_SHIPS, ///< Toggle ships button
28 WID_DB_SHOW_PLANES, ///< Toggle planes button
31 #endif /* WIDGETS_DEPARTURES_WIDGET_H */