tilehighlight_func.h
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00012 #ifndef TILEHIGHLIGHT_FUNC_H
00013 #define TILEHIGHLIGHT_FUNC_H
00014
00015 #include "gfx_type.h"
00016 #include "tilehighlight_type.h"
00017
00018 void PlaceProc_DemolishArea(TileIndex tile);
00019 bool GUIPlaceProcDragXY(ViewportDragDropSelectionProcess proc, TileIndex start_tile, TileIndex end_tile);
00020
00021 bool HandlePlacePushButton(Window *w, int widget, CursorID cursor, HighLightStyle mode);
00022 void SetObjectToPlaceWnd(CursorID icon, PaletteID pal, HighLightStyle mode, Window *w);
00023 void SetObjectToPlace(CursorID icon, PaletteID pal, HighLightStyle mode, WindowClass window_class, WindowNumber window_num);
00024 void ResetObjectToPlace();
00025
00026 void VpSelectTilesWithMethod(int x, int y, ViewportPlaceMethod method);
00027 void VpStartPlaceSizing(TileIndex tile, ViewportPlaceMethod method, ViewportDragDropSelectionProcess process);
00028 void VpSetPresizeRange(TileIndex from, TileIndex to);
00029 void VpSetPlaceSizingLimit(int limit);
00030
00031 void UpdateTileSelection();
00032
00033 extern TileHighlightData _thd;
00034
00035 #endif