OpenTTD Source  1.11.0-beta2
road_gui.h
Go to the documentation of this file.
1 /*
2  * This file is part of OpenTTD.
3  * 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.
4  * 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.
5  * 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/>.
6  */
7 
10 #ifndef ROAD_GUI_H
11 #define ROAD_GUI_H
12 
13 #include "road_type.h"
14 #include "tile_type.h"
15 #include "direction_type.h"
16 #include "widgets/dropdown_type.h"
17 
18 struct Window *ShowBuildRoadToolbar(RoadType roadtype);
19 struct Window *ShowBuildRoadScenToolbar(RoadType roadtype);
20 void ConnectRoadToStructure(TileIndex tile, DiagDirection direction);
21 DropDownList GetRoadTypeDropDownList(RoadTramTypes rtts, bool for_replacement = false, bool all_option = false);
22 DropDownList GetScenRoadTypeDropDownList(RoadTramTypes rtts);
23 void InitializeRoadGUI();
24 
25 #endif /* ROAD_GUI_H */
TileIndex
uint32 TileIndex
The index/ID of a Tile.
Definition: tile_type.h:78
direction_type.h
InitializeRoadGUI
void InitializeRoadGUI()
I really don't know why rail_gui.cpp has this too, shouldn't be included in the other one?
Definition: road_gui.cpp:1283
DropDownList
std::vector< std::unique_ptr< const DropDownListItem > > DropDownList
A drop down list is a collection of drop down list items.
Definition: dropdown_type.h:99
ShowBuildRoadScenToolbar
struct Window * ShowBuildRoadScenToolbar(RoadType roadtype)
Show the road building toolbar in the scenario editor.
Definition: road_gui.cpp:975
dropdown_type.h
ConnectRoadToStructure
void ConnectRoadToStructure(TileIndex tile, DiagDirection direction)
If required, connects a new structure to an existing road or tram by building the missing roadbit.
Definition: road_gui.cpp:121
DiagDirection
DiagDirection
Enumeration for diagonal directions.
Definition: direction_type.h:77
RoadType
RoadType
The different roadtypes we support.
Definition: road_type.h:22
tile_type.h
road_type.h
Window
Data structure for an opened window.
Definition: window_gui.h:276
ShowBuildRoadToolbar
struct Window * ShowBuildRoadToolbar(RoadType roadtype)
Open the build road toolbar window.
Definition: road_gui.cpp:888