OpenTTD Source  1.11.2
signs_func.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 SIGNS_FUNC_H
11 #define SIGNS_FUNC_H
12 
13 #include "signs_type.h"
14 #include "tile_type.h"
15 
16 struct Window;
17 extern SignID _new_sign_id;
18 
20 void PlaceProc_Sign(TileIndex tile);
21 
22 /* signs_gui.cpp */
23 void ShowRenameSignWindow(const Sign *si);
24 void HandleClickOnSign(const Sign *si);
26 
28 
29 #endif /* SIGNS_FUNC_H */
TileIndex
uint32 TileIndex
The index/ID of a Tile.
Definition: tile_type.h:83
_new_sign_id
SignID _new_sign_id
The last built sign.
Definition: signs_cmd.cpp:26
HandleClickOnSign
void HandleClickOnSign(const Sign *si)
Handle clicking on a sign.
Definition: signs_gui.cpp:564
ShowSignList
Window * ShowSignList()
Open the sign list window.
Definition: signs_gui.cpp:400
PlaceProc_Sign
void PlaceProc_Sign(TileIndex tile)
PlaceProc function, called when someone pressed the button if the sign-tool is selected.
Definition: signs_cmd.cpp:131
UpdateAllSignVirtCoords
void UpdateAllSignVirtCoords()
Update the coordinates of all signs.
Definition: signs.cpp:58
tile_type.h
Sign
Definition: signs_base.h:22
ShowRenameSignWindow
void ShowRenameSignWindow(const Sign *si)
Show the window to change the text of a sign.
Definition: signs_gui.cpp:577
DeleteRenameSignWindow
void DeleteRenameSignWindow(SignID sign)
Close the sign window associated with the given sign.
Definition: signs_gui.cpp:589
Window
Data structure for an opened window.
Definition: window_gui.h:277
signs_type.h
SignID
uint16 SignID
The type of the IDs of signs.
Definition: signs_type.h:14