road_widget.h

Go to the documentation of this file.
00001 /* $Id$ */
00002 
00003 /*
00004  * This file is part of OpenTTD.
00005  * 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.
00006  * 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.
00007  * 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/>.
00008  */
00009 
00012 #ifndef WIDGETS_ROAD_WIDGET_H
00013 #define WIDGETS_ROAD_WIDGET_H
00014 
00016 enum RoadToolbarWidgets {
00017   /* Name starts with RO instead of R, because of collision with RailToolbarWidgets */
00018   WID_ROT_ROAD_X,         
00019   WID_ROT_ROAD_Y,         
00020   WID_ROT_AUTOROAD,       
00021   WID_ROT_DEMOLISH,       
00022   WID_ROT_DEPOT,          
00023   WID_ROT_BUS_STATION,    
00024   WID_ROT_TRUCK_STATION,  
00025   WID_ROT_ONE_WAY,        
00026   WID_ROT_BUILD_BRIDGE,   
00027   WID_ROT_BUILD_TUNNEL,   
00028   WID_ROT_REMOVE,         
00029 };
00030 
00032 enum BuildRoadDepotWidgets {
00033   /* Name starts with BRO instead of BR, because of collision with BuildRailDepotWidgets */
00034   WID_BROD_CAPTION,   
00035   WID_BROD_DEPOT_NE,  
00036   WID_BROD_DEPOT_SE,  
00037   WID_BROD_DEPOT_SW,  
00038   WID_BROD_DEPOT_NW,  
00039 };
00040 
00042 enum BuildRoadStationWidgets {
00043   /* Name starts with BRO instead of BR, because of collision with BuildRailStationWidgets */
00044   WID_BROS_CAPTION,       
00045   WID_BROS_BACKGROUND,    
00046   WID_BROS_STATION_NE,    
00047   WID_BROS_STATION_SE,    
00048   WID_BROS_STATION_SW,    
00049   WID_BROS_STATION_NW,    
00050   WID_BROS_STATION_X,     
00051   WID_BROS_STATION_Y,     
00052   WID_BROS_LT_OFF,        
00053   WID_BROS_LT_ON,         
00054   WID_BROS_INFO,          
00055 };
00056 
00057 #endif /* WIDGETS_ROAD_WIDGET_H */