]> Pileus Git - ~andy/gtk/blob - gtk/gtkvseparator.c
e3d00249deaf617e460cd4027bd5d22e4615e1de
[~andy/gtk] / gtk / gtkvseparator.c
1 /* GTK - The GIMP Toolkit
2  * Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Lesser General Public
6  * License as published by the Free Software Foundation; either
7  * version 2 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Lesser General Public License for more details.
13  *
14  * You should have received a copy of the GNU Lesser General Public
15  * License along with this library; if not, write to the
16  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17  * Boston, MA 02111-1307, USA.
18  */
19
20 /*
21  * Modified by the GTK+ Team and others 1997-2000.  See the AUTHORS
22  * file for a list of people on the GTK+ Team.  See the ChangeLog
23  * files for a list of changes.  These files are distributed with
24  * GTK+ at ftp://ftp.gtk.org/pub/gtk/. 
25  */
26
27 #include "gtkvseparator.h"
28
29
30 static void gtk_vseparator_class_init (GtkVSeparatorClass *klass);
31 static void gtk_vseparator_init       (GtkVSeparator      *vseparator);
32 static gint gtk_vseparator_expose     (GtkWidget          *widget,
33                                        GdkEventExpose     *event);
34
35
36 GtkType
37 gtk_vseparator_get_type (void)
38 {
39   static GtkType vseparator_type = 0;
40
41   if (!vseparator_type)
42     {
43       static const GtkTypeInfo vseparator_info =
44       {
45         "GtkVSeparator",
46         sizeof (GtkVSeparator),
47         sizeof (GtkVSeparatorClass),
48         (GtkClassInitFunc) gtk_vseparator_class_init,
49         (GtkObjectInitFunc) gtk_vseparator_init,
50         /* reserved_1 */ NULL,
51         /* reserved_2 */ NULL,
52         (GtkClassInitFunc) NULL,
53       };
54
55       vseparator_type = gtk_type_unique (GTK_TYPE_SEPARATOR, &vseparator_info);
56     }
57
58   return vseparator_type;
59 }
60
61 static void
62 gtk_vseparator_class_init (GtkVSeparatorClass *klass)
63 {
64   GtkWidgetClass *widget_class;
65
66   widget_class = (GtkWidgetClass*) klass;
67
68   widget_class->expose_event = gtk_vseparator_expose;
69 }
70
71 static void
72 gtk_vseparator_init (GtkVSeparator *vseparator)
73 {
74   GTK_WIDGET (vseparator)->requisition.width = GTK_WIDGET (vseparator)->style->xthickness;
75   GTK_WIDGET (vseparator)->requisition.height = 1;
76 }
77
78 GtkWidget*
79 gtk_vseparator_new (void)
80 {
81   return GTK_WIDGET (gtk_type_new (GTK_TYPE_VSEPARATOR));
82 }
83
84
85 static gint
86 gtk_vseparator_expose (GtkWidget      *widget,
87                        GdkEventExpose *event)
88 {
89   g_return_val_if_fail (widget != NULL, FALSE);
90   g_return_val_if_fail (GTK_IS_VSEPARATOR (widget), FALSE);
91   g_return_val_if_fail (event != NULL, FALSE);
92
93   if (GTK_WIDGET_DRAWABLE (widget))
94     gtk_paint_vline (widget->style, widget->window, GTK_STATE_NORMAL,
95                      &event->area, widget, "vseparator",
96                      widget->allocation.y,
97                      widget->allocation.y + widget->allocation.height,
98                      widget->allocation.x + (widget->allocation.width -
99                                              widget->style->xthickness) / 2);
100
101   return FALSE;
102 }