]> Pileus Git - ~andy/gtk/blob - gtk/gtkvscrollbar.c
Fixes #136082 and #135265, patch by Morten Welinder.
[~andy/gtk] / gtk / gtkvscrollbar.c
1 /* GTK - The GIMP Toolkit
2  * Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald
3  * Copyright (C) 2001 Red Hat, Inc.
4  *
5  * This library is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU Lesser General Public
7  * License as published by the Free Software Foundation; either
8  * version 2 of the License, or (at your option) any later version.
9  *
10  * This library is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * Lesser General Public License for more details.
14  *
15  * You should have received a copy of the GNU Lesser General Public
16  * License along with this library; if not, write to the
17  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18  * Boston, MA 02111-1307, USA.
19  */
20
21 /*
22  * Modified by the GTK+ Team and others 1997-2000.  See the AUTHORS
23  * file for a list of people on the GTK+ Team.  See the ChangeLog
24  * files for a list of changes.  These files are distributed with
25  * GTK+ at ftp://ftp.gtk.org/pub/gtk/. 
26  */
27
28 #include <config.h>
29 #include "gtkvscrollbar.h"
30 #include "gdk/gdkkeysyms.h"
31 #include "gtkintl.h"
32
33 static void     gtk_vscrollbar_class_init       (GtkVScrollbarClass *klass);
34 static void     gtk_vscrollbar_init             (GtkVScrollbar      *vscrollbar);
35
36 GType
37 gtk_vscrollbar_get_type (void)
38 {
39   static GType vscrollbar_type = 0;
40   
41   if (!vscrollbar_type)
42     {
43       static const GTypeInfo vscrollbar_info =
44       {
45         sizeof (GtkVScrollbarClass),
46         NULL,           /* base_init */
47         NULL,           /* base_finalize */
48         (GClassInitFunc) gtk_vscrollbar_class_init,
49         NULL,           /* class_finalize */
50         NULL,           /* class_data */
51         sizeof (GtkVScrollbar),
52         0,              /* n_preallocs */
53         (GInstanceInitFunc) gtk_vscrollbar_init,
54       };
55       
56       vscrollbar_type =
57         g_type_register_static (GTK_TYPE_SCROLLBAR, "GtkVScrollbar",
58                                 &vscrollbar_info, 0);
59     }
60   
61   return vscrollbar_type;
62 }
63
64 static void
65 gtk_vscrollbar_class_init (GtkVScrollbarClass *class)
66 {
67   GTK_RANGE_CLASS (class)->stepper_detail = "vscrollbar";
68 }
69
70 static void
71 gtk_vscrollbar_init (GtkVScrollbar *vscrollbar)
72 {
73   GtkRange *range;
74
75   range = GTK_RANGE (vscrollbar);
76
77   range->orientation = GTK_ORIENTATION_VERTICAL;
78 }
79
80 GtkWidget*
81 gtk_vscrollbar_new (GtkAdjustment *adjustment)
82 {
83   GtkWidget *vscrollbar;
84   
85   vscrollbar = g_object_new (GTK_TYPE_VSCROLLBAR,
86                              "adjustment", adjustment,
87                              NULL);
88   
89   return vscrollbar;
90 }