/* Hey EMACS -*- linux-c -*- */ /* * Emu-TIGCC SkinEdit - a skin editor for Emu-TIGCC * Copyright (C) 2002 Julien BLACHE * * This program 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; either version 2 of the License, or * (at your option) any later version. * * This program 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 this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ #ifndef __STRUCT_H__ #define __STRUCT_H__ #include #include "defs.h" struct RECT { uint32_t left; uint32_t top; uint32_t right; uint32_t bottom; }; struct skinInfos { char *jpeg_path; char *skin_path; int type; int changed; GdkPixbuf *img_orig; unsigned int width; unsigned int height; char calc[9]; unsigned int keymap; uint32_t colortype; uint32_t lcd_black; uint32_t lcd_white; char *name; char *author; struct RECT lcd_pos; struct RECT keys_pos[SKIN_KEYS]; }; extern struct skinInfos skin_infos; // Same as GtkRectangle but more convenient (w = width) typedef struct { gint x; gint y; gint w; gint h; } GdkRect; #endif /* !__STRUCT_H__ */