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/>.
10 /** @file build_vehicle_widget.h Types related to the build_vehicle widgets. */
12 #ifndef WIDGETS_BUILD_VEHICLE_WIDGET_H
13 #define WIDGETS_BUILD_VEHICLE_WIDGET_H
15 /** Widgets of the #BuildVehicleWindow class. */
16 enum BuildVehicleWidgets
{
17 WID_BV_CAPTION
, ///< Caption of window.
18 WID_BV_SORT_ASCENDING_DESCENDING
, ///< Sort direction.
19 WID_BV_SORT_DROPDOWN
, ///< Criteria of sorting dropdown.
20 WID_BV_CARGO_FILTER_DROPDOWN
, ///< Cargo filter dropdown.
21 WID_BV_SHOW_HIDDEN_ENGINES
, ///< Toggle whether to display the hidden vehicles.
22 WID_BV_LIST
, ///< List of vehicles.
23 WID_BV_SCROLLBAR
, ///< Scrollbar of list.
24 WID_BV_PANEL
, ///< Button panel.
25 WID_BV_BUILD
, ///< Build panel.
26 WID_BV_SHOW_HIDE
, ///< Button to hide or show the selected engine.
27 WID_BV_BUILD_SEL
, ///< Build button.
28 WID_BV_RENAME
, ///< Rename button.
31 #endif /* WIDGETS_BUILD_VEHICLE_WIDGET_H */