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-2004 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_GTKUTILS_H
#define GF_GTKUTILS_H
#include <gtk/gtk.h>
#include "gf_types.h"
GtkWidget *gf_make_hig_frame(GtkWidget *parent, const gchar *title);
GtkWidget *gf_make_label(gchar *text, GtkSizeGroup *sg);
GtkWidget *gf_make_check_button(gboolean on, const gchar *text, GtkSizeGroup *sg);
GtkWidget *gf_make_spin_button(gdouble value, gdouble min, gdouble max, gboolean numeric);
GtkWidget *gf_make_window_position_option_menu(gf_window_position position);
GtkWidget *gf_make_window_zoom_option_menu(gf_window_zoom zoom);
GtkWidget *gf_make_window_mouse_option_menu(gf_window_mouse mouse);
GtkWidget *gf_make_item_position_option_menu(gf_item_position position);
GtkWidget *gf_make_text_clipping_option_menu(gf_text_clipping clipping);
GtkWidget *gf_make_icon_size_option_menu(gf_icon_size size);
GtkWidget *gf_add_label(GtkWidget *widget, gchar *text, GtkSizeGroup *sg);
GtkWidget *gf_add_page(GtkNotebook *parent, gchar *text, gint position);
#endif