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_GTKUTILS_H
#define GF_GTKUTILS_H
#include <gtk/gtk.h>
#include "gf_types.h"
GtkWidget *make_label(gchar *text, GtkSizeGroup *sg);
GtkWidget *make_window_position_option_menu(gf_window_position position);
GtkWidget *make_window_zoom_option_menu(gf_window_zoom zoom);
GtkWidget *make_window_mouse_option_menu(gf_window_mouse mouse);
GtkWidget *make_item_position_option_menu(gf_item_position position);
GtkWidget *make_text_clipping_option_menu(gf_text_clipping clipping);
GtkWidget *make_icon_size_option_menu(gf_icon_size size);
GtkWidget *add_label(GtkWidget *widget, gchar *text, GtkSizeGroup *sg);
#endif