grim/guifications1

why in the hell am i working so much on this file when it's going to be cut to shit in the next couple of days?!?!?!?!?
/*
Guifications - The notification plugin to end all notification plugins!
Copyright (C) 2003 Gary Kramlich
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 GF_THEME_H
#define GF_THEME_H
typedef enum _gf_theme_type {
gf_theme_type_basic = 0,
gf_theme_type_advanced
} gf_theme_type;
typedef enum _gf_theme_info {
gf_theme_info_name = 0,
gf_theme_info_version,
gf_theme_info_description,
gf_theme_info_author,
gf_theme_info_website
} gf_theme_info;
typedef struct _gf_basic_theme {
gchar *image;
gboolean text_custom_font;
gchar *text_font;
gboolean text_custom_color;
gchar *text_color;
gint text_clipping;
gint text_position;
gint text_horz_offset;
gint text_vert_offset;
gint proto_position;
gint proto_size;
gint proto_horz_offset;
gint proto_vert_offset;
gchar *messages[6];
} gf_basic_theme;
typedef struct _gf_advanced_theme {
} gf_advanced_theme;
typedef struct _gf_theme {
gf_theme_type type;
gchar *info[5];
union {
gf_basic_theme basic;
gf_advanced_theme advanced;
} data;
} gf_theme;
#endif