Files
@ r13191:af1540e675da
Branch filter:
Location: cpp/openttd-patchpack/source/src/engine_gui.h - annotation
r13191:af1540e675da
1.3 KiB
text/x-c
(svn r17708) -Feature [FS#2053]: [OSX] Implement clipboard support for OS X.
r9380:6b24883f64de r9380:6b24883f64de r12768:980ae0491352 r12768:980ae0491352 r12768:980ae0491352 r12768:980ae0491352 r12768:980ae0491352 r12768:980ae0491352 r12768:980ae0491352 r9380:6b24883f64de r9380:6b24883f64de r9380:6b24883f64de r9380:6b24883f64de r9380:6b24883f64de r9403:e5bffa930a63 r9380:6b24883f64de r11657:8035a6ada5a3 r9380:6b24883f64de r13022:11b36960dd16 r13022:11b36960dd16 r13022:11b36960dd16 r9380:6b24883f64de r12827:19af93950884 r12828:1411e13c41d0 r12825:b76c82800d1a r12825:b76c82800d1a r9380:6b24883f64de | /* $Id$ */
/*
* 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 engine_gui.h Engine GUI functions, used by build_vehicle_gui and autoreplace_gui */
#ifndef ENGINE_GUI_H
#define ENGINE_GUI_H
#include "sortlist_type.h"
typedef GUIList<EngineID, CargoID> GUIEngineList;
typedef int CDECL EngList_SortTypeFunction(const EngineID*, const EngineID*); ///< argument type for EngList_Sort()
void EngList_Sort(GUIEngineList *el, EngList_SortTypeFunction compare); ///< sort of the engine list
void EngList_SortPartial(GUIEngineList *el, EngList_SortTypeFunction compare, uint begin, uint num_items); ///< sort of specified portion of the engine list
StringID GetEngineCategoryName(EngineID engine);
StringID GetEngineInfoString(EngineID engine);
void DrawVehicleEngine(int x, int y, EngineID engine, SpriteID pal);
#endif /* ENGINE_GUI_H */
|