settings_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_SETTINGS_WIDGET_H
00013 #define WIDGETS_SETTINGS_WIDGET_H
00014 
00016 enum GameOptionsWidgets {
00017   WID_GO_BACKGROUND,             
00018   WID_GO_CURRENCY_DROPDOWN,      
00019   WID_GO_DISTANCE_DROPDOWN,      
00020   WID_GO_ROADSIDE_DROPDOWN,      
00021   WID_GO_TOWNNAME_DROPDOWN,      
00022   WID_GO_AUTOSAVE_DROPDOWN,      
00023   WID_GO_LANG_DROPDOWN,          
00024   WID_GO_RESOLUTION_DROPDOWN,    
00025   WID_GO_FULLSCREEN_BUTTON,      
00026   WID_GO_SCREENSHOT_DROPDOWN,    
00027   WID_GO_BASE_GRF_DROPDOWN,      
00028   WID_GO_BASE_GRF_STATUS,        
00029   WID_GO_BASE_GRF_DESCRIPTION,   
00030   WID_GO_BASE_SFX_DROPDOWN,      
00031   WID_GO_BASE_SFX_DESCRIPTION,   
00032   WID_GO_BASE_MUSIC_DROPDOWN,    
00033   WID_GO_BASE_MUSIC_STATUS,      
00034   WID_GO_BASE_MUSIC_DESCRIPTION, 
00035 };
00036 
00038 enum GameDifficultyWidgets {
00039   WID_GD_LVL_EASY,      
00040   WID_GD_LVL_MEDIUM,    
00041   WID_GD_LVL_HARD,      
00042   WID_GD_LVL_CUSTOM,    
00043   WID_GD_HIGHSCORE,     
00044   WID_GD_ACCEPT,        
00045   WID_GD_CANCEL,        
00046 
00047   WID_GD_OPTIONS_START, 
00048 };
00049 
00051 enum GameSettingsWidgets {
00052   WID_GS_OPTIONSPANEL, 
00053   WID_GS_SCROLLBAR,    
00054 };
00055 
00057 enum CustomCurrencyWidgets {
00058   WID_CC_RATE_DOWN,      
00059   WID_CC_RATE_UP,        
00060   WID_CC_RATE,           
00061   WID_CC_SEPARATOR_EDIT, 
00062   WID_CC_SEPARATOR,      
00063   WID_CC_PREFIX_EDIT,    
00064   WID_CC_PREFIX,         
00065   WID_CC_SUFFIX_EDIT,    
00066   WID_CC_SUFFIX,         
00067   WID_CC_YEAR_DOWN,      
00068   WID_CC_YEAR_UP,        
00069   WID_CC_YEAR,           
00070   WID_CC_PREVIEW,        
00071 };
00072 
00073 #endif /* WIDGETS_SETTINGS_WIDGET_H */