00001 /* Copyright 2009 (c) ENSI de Bourges 00002 * 88 boulevard Lahitolle, 18020 Bourges Cedex, France 00003 * 00004 * This program is free software: you can redistribute it and/or modify 00005 * it under the terms of the GNU General Public License as published by 00006 * the Free Software Foundation, either version 3 of the License, or 00007 * (at your option) any later version. 00008 * 00009 * This program is distributed in the hope that it will be useful, 00010 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00011 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00012 * GNU General Public License for more details. 00013 * 00014 * You should have received a copy of the GNU General Public License 00015 * along with this program. If not, see <http://www.gnu.org/licenses/>. 00016 */ 00027 #ifndef __DATA_TYPES_H 00028 #define __DATA_TYPES_H 00029 #ifdef __cplusplus 00030 extern "C" { 00031 #endif 00032 00033 #include <gtk/gtk.h> 00034 00035 #include "constants.h" 00036 00037 00038 00045 typedef enum { 00046 NORMAL=0, 00047 LARGE=1, 00048 FULL=2, 00049 LAST_SIZE_RATIO_T // DO NOT USE THIS - FOR LOOP PURPOSE ONLY 00050 } size_ratio_t; 00051 00052 00053 00060 typedef int refresh_freq_t; 00061 #ifdef __cplusplus 00062 } 00063 #endif 00064 #endif