
# Conflicts: # cmake/CompileFlags.cmake # src/crashlog.cpp # src/fileio.cpp # src/fileio_func.h # src/fios_gui.cpp # src/ini_load.cpp # src/ini_type.h # src/lang/english.txt # src/lang/german.txt # src/lang/korean.txt # src/network/network_client.cpp # src/order_base.h # src/order_cmd.cpp # src/os/windows/win32.cpp # src/road_cmd.cpp # src/saveload/saveload.cpp # src/saveload/saveload.h # src/settings.cpp # src/station_cmd.cpp # src/stdafx.h # src/table/settings.ini # src/tree_cmd.cpp # src/tree_gui.cpp # src/vehicle_base.h # src/video/cocoa/cocoa_v.mm # src/video/cocoa/event.mm # src/video/cocoa/wnd_quartz.mm # src/viewport.cpp # src/widgets/tree_widget.h
40 lines
1.9 KiB
C
40 lines
1.9 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 tilehighlight_func.h Functions related to tile highlights. */
|
|
|
|
#ifndef TILEHIGHLIGHT_FUNC_H
|
|
#define TILEHIGHLIGHT_FUNC_H
|
|
|
|
#include "gfx_type.h"
|
|
#include "tilehighlight_type.h"
|
|
#include "track_type.h"
|
|
|
|
void PlaceProc_DemolishArea(TileIndex tile);
|
|
bool GUIPlaceProcDragXY(ViewportDragDropSelectionProcess proc, TileIndex start_tile, TileIndex end_tile);
|
|
|
|
bool HandlePlacePushButton(Window *w, int widget, CursorID cursor, HighLightStyle mode);
|
|
void SetObjectToPlaceWnd(CursorID icon, PaletteID pal, HighLightStyle mode, Window *w);
|
|
void SetObjectToPlace(CursorID icon, PaletteID pal, HighLightStyle mode, WindowClass window_class, WindowNumber window_num);
|
|
void ResetObjectToPlace();
|
|
|
|
void VpSelectTilesWithMethod(int x, int y, ViewportPlaceMethod method);
|
|
void VpStartDragging(ViewportDragDropSelectionProcess process);
|
|
void VpStartPlaceSizing(TileIndex tile, ViewportPlaceMethod method, ViewportDragDropSelectionProcess process);
|
|
void VpSetPresizeRange(TileIndex from, TileIndex to);
|
|
void VpSetPlaceSizingLimit(int limit);
|
|
|
|
void UpdateTileSelection();
|
|
|
|
void StoreRailPlacementEndpoints(TileIndex start_tile, TileIndex end_tile, Track start_track, bool bidirectional = true);
|
|
void ResetRailPlacementSnapping();
|
|
bool CurrentlySnappingRailPlacement();
|
|
|
|
extern TileHighlightData _thd;
|
|
|
|
#endif /* TILEHIGHLIGHT_FUNC_H */
|