grim/guifications1

This should fix the Mdk 9.1 RPM building bug reported on the forums a while ago
/*
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_TYPES_H
#define GF_TYPES_H
typedef enum _gf_event {
gf_event_signon = 0,
gf_event_signoff,
gf_event_away,
gf_event_back,
gf_event_idle,
gf_event_unidle,
gf_event_rcv_msg,
gf_event_custom
} gf_event;
typedef enum _gf_window_position {
window_position_nw = 0,
window_position_ne,
window_position_sw,
window_position_se
} gf_window_position;
typedef enum _gf_window_mouse {
window_mouse_destroy = 0,
window_mouse_info,
window_mouse_conversation,
window_mouse_log,
window_mouse_context,
} gf_window_mouse;
typedef enum _gf_window_zoom {
window_zoom_200 = 0,
window_zoom_175,
window_zoom_150,
window_zoom_125,
window_zoom_100,
window_zoom_75,
window_zoom_50,
window_zoom_25
} gf_window_zoom;
typedef enum _gf_item_position {
item_position_nw = 0,
item_position_n,
item_position_ne,
item_position_w,
item_position_c,
item_position_e,
item_position_sw,
item_position_s,
item_position_se
} gf_item_position;
typedef enum _gf_text_clipping {
text_clipping_truncate = 0,
text_clipping_ellipsis_start,
text_clipping_ellipsis_middle,
text_clipping_ellipsis_end
} gf_text_clipping;
typedef enum _gf_icon_size {
icon_size_tiny = 0,
icon_size_small,
icon_size_normal,
icon_size_large,
icon_size_huge
} gf_icon_size;
#endif