ai_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_AI_WIDGET_H
00013 #define WIDGETS_AI_WIDGET_H
00014 
00015 #include "../company_type.h"
00016 
00018 enum AIListWidgets {
00019   WID_AIL_CAPTION,   
00020   WID_AIL_LIST,      
00021   WID_AIL_SCROLLBAR, 
00022   WID_AIL_INFO_BG,   
00023   WID_AIL_ACCEPT,    
00024   WID_AIL_CANCEL,    
00025 };
00026 
00028 enum AISettingsWidgets {
00029   WID_AIS_CAPTION,    
00030   WID_AIS_BACKGROUND, 
00031   WID_AIS_SCROLLBAR,  
00032   WID_AIS_ACCEPT,     
00033   WID_AIS_RESET,      
00034 };
00035 
00037 enum AIConfigWidgets {
00038   WID_AIC_BACKGROUND,       
00039   WID_AIC_DECREASE,         
00040   WID_AIC_INCREASE,         
00041   WID_AIC_NUMBER,           
00042   WID_AIC_GAMELIST,         
00043   WID_AIC_LIST,             
00044   WID_AIC_SCROLLBAR,        
00045   WID_AIC_MOVE_UP,          
00046   WID_AIC_MOVE_DOWN,        
00047   WID_AIC_CHANGE,           
00048   WID_AIC_CONFIGURE,        
00049   WID_AIC_CLOSE,            
00050   WID_AIC_CONTENT_DOWNLOAD, 
00051 };
00052 
00054 enum AIDebugWidgets {
00055   WID_AID_VIEW,                 
00056   WID_AID_NAME_TEXT,            
00057   WID_AID_SETTINGS,             
00058   WID_AID_SCRIPT_GAME,          
00059   WID_AID_RELOAD_TOGGLE,        
00060   WID_AID_LOG_PANEL,            
00061   WID_AID_SCROLLBAR,            
00062   WID_AID_COMPANY_BUTTON_START, 
00063   WID_AID_COMPANY_BUTTON_END = WID_AID_COMPANY_BUTTON_START + MAX_COMPANIES - 1, 
00064   WID_AID_BREAK_STRING_WIDGETS, 
00065   WID_AID_BREAK_STR_ON_OFF_BTN, 
00066   WID_AID_BREAK_STR_EDIT_BOX,   
00067   WID_AID_MATCH_CASE_BTN,       
00068   WID_AID_CONTINUE_BTN,         
00069 };
00070 
00071 #endif /* WIDGETS_AI_WIDGET_H */