1997-11-24 22:37:52 +00:00
|
|
|
/* GTK - The GIMP Toolkit
|
|
|
|
* Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Library General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library 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
|
|
|
|
* Library General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Library General Public
|
1998-04-13 02:02:47 +00:00
|
|
|
* License along with this library; if not, write to the
|
|
|
|
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
|
|
* Boston, MA 02111-1307, USA.
|
1997-11-24 22:37:52 +00:00
|
|
|
*/
|
|
|
|
#include "gtkseparator.h"
|
|
|
|
|
|
|
|
|
|
|
|
static void gtk_separator_class_init (GtkSeparatorClass *klass);
|
|
|
|
static void gtk_separator_init (GtkSeparator *separator);
|
|
|
|
|
|
|
|
|
1998-07-14 16:34:48 +00:00
|
|
|
GtkType
|
1998-05-03 22:41:32 +00:00
|
|
|
gtk_separator_get_type (void)
|
1997-11-24 22:37:52 +00:00
|
|
|
{
|
1998-07-14 16:34:48 +00:00
|
|
|
static GtkType separator_type = 0;
|
1997-11-24 22:37:52 +00:00
|
|
|
|
|
|
|
if (!separator_type)
|
|
|
|
{
|
|
|
|
GtkTypeInfo separator_info =
|
|
|
|
{
|
|
|
|
"GtkSeparator",
|
|
|
|
sizeof (GtkSeparator),
|
|
|
|
sizeof (GtkSeparatorClass),
|
|
|
|
(GtkClassInitFunc) gtk_separator_class_init,
|
|
|
|
(GtkObjectInitFunc) gtk_separator_init,
|
1998-07-04 15:31:30 +00:00
|
|
|
/* reserved_1 */ NULL,
|
|
|
|
/* reserved_2 */ NULL,
|
1998-06-28 07:46:10 +00:00
|
|
|
(GtkClassInitFunc) NULL,
|
1997-11-24 22:37:52 +00:00
|
|
|
};
|
|
|
|
|
1998-07-14 16:34:48 +00:00
|
|
|
separator_type = gtk_type_unique (GTK_TYPE_WIDGET, &separator_info);
|
1997-11-24 22:37:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return separator_type;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gtk_separator_class_init (GtkSeparatorClass *class)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gtk_separator_init (GtkSeparator *separator)
|
|
|
|
{
|
|
|
|
GTK_WIDGET_SET_FLAGS (separator, GTK_NO_WINDOW | GTK_BASIC);
|
|
|
|
}
|