
# Conflicts: # .github/workflows/ci-build.yml # .github/workflows/release-linux.yml # .github/workflows/release-macos.yml # .github/workflows/release-windows.yml # .gitignore # COMPILING.md # src/company_gui.cpp # src/date_gui.cpp # src/engine.cpp # src/engine_func.h # src/fileio.cpp # src/linkgraph/linkgraph_gui.h # src/newgrf_debug_gui.cpp # src/newgrf_gui.cpp # src/order_gui.cpp # src/osk_gui.cpp # src/rail_gui.cpp # src/road_gui.cpp # src/script/api/script_event_types.hpp # src/sl/oldloader_sl.cpp # src/smallmap_gui.cpp # src/station_cmd.cpp # src/toolbar_gui.cpp # src/town_gui.cpp # src/transparency_gui.cpp # src/vehicle_gui.cpp # src/widget.cpp # src/widget_type.h # src/widgets/dropdown.cpp # src/widgets/dropdown_func.h # src/widgets/dropdown_type.h # src/widgets/group_widget.h # src/widgets/vehicle_widget.h # src/window.cpp # src/window_gui.h # src/window_type.h
27 lines
1.3 KiB
C
27 lines
1.3 KiB
C
/*
|
|
* 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/>.
|
|
*/
|
|
|
|
/** @file waypoint_widget.h Types related to the waypoint widgets. */
|
|
|
|
#ifndef WIDGETS_WAYPOINT_WIDGET_H
|
|
#define WIDGETS_WAYPOINT_WIDGET_H
|
|
|
|
/** Widgets of the #WaypointWindow class. */
|
|
enum WaypointWidgets : WidgetID {
|
|
WID_W_CAPTION, ///< Caption of window.
|
|
WID_W_VIEWPORT, ///< The viewport on this waypoint.
|
|
WID_W_CENTER_VIEW, ///< Center the main view on this waypoint.
|
|
WID_W_RENAME, ///< Rename this waypoint.
|
|
WID_W_SHOW_VEHICLES, ///< Show the vehicles visiting this waypoint.
|
|
WID_W_DEPARTURES, ///< Departures button.
|
|
WID_W_CATCHMENT, ///< Coverage button.
|
|
WID_W_TOGGLE_HIDDEN, ///< Toggle label hidden.
|
|
WID_W_TOGGLE_HIDDEN_SEL, ///< Toggle label hidden selector.
|
|
};
|
|
|
|
#endif /* WIDGETS_WAYPOINT_WIDGET_H */
|