]> Pileus Git - ~andy/gtk/blob - gtk/gtkhscrollbar.c
Use the correct screen for getting the height. (Fix from Stephen Browne,
[~andy/gtk] / gtk / gtkhscrollbar.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 "gtkhscrollbar.h"
29 #include "gdk/gdkkeysyms.h"
30 #include "gtkintl.h"
31
32 static void     gtk_hscrollbar_class_init       (GtkHScrollbarClass *klass);
33 static void     gtk_hscrollbar_init             (GtkHScrollbar      *hscrollbar);
34
35 GType
36 gtk_hscrollbar_get_type (void)
37 {
38   static GType hscrollbar_type = 0;
39   
40   if (!hscrollbar_type)
41     {
42       static const GTypeInfo hscrollbar_info =
43       {
44         sizeof (GtkHScrollbarClass),
45         NULL,           /* base_init */
46         NULL,           /* base_finalize */
47         (GClassInitFunc) gtk_hscrollbar_class_init,
48         NULL,           /* class_finalize */
49         NULL,           /* class_data */
50         sizeof (GtkHScrollbar),
51         0,              /* n_preallocs */
52         (GInstanceInitFunc) gtk_hscrollbar_init,
53       };
54       
55       hscrollbar_type =
56         g_type_register_static (GTK_TYPE_SCROLLBAR, "GtkHScrollbar",
57                                 &hscrollbar_info, 0);
58     }
59   
60   return hscrollbar_type;
61 }
62
63 static void
64 gtk_hscrollbar_class_init (GtkHScrollbarClass *class)
65 {
66   GTK_RANGE_CLASS (class)->stepper_detail = "hscrollbar";
67 }
68
69 static void
70 gtk_hscrollbar_init (GtkHScrollbar *hscrollbar)
71 {
72   GtkRange *range;
73
74   range = GTK_RANGE (hscrollbar);
75
76   range->orientation = GTK_ORIENTATION_HORIZONTAL;
77 }
78
79 GtkWidget*
80 gtk_hscrollbar_new (GtkAdjustment *adjustment)
81 {
82   GtkWidget *hscrollbar;
83   
84   hscrollbar = g_object_new (GTK_TYPE_HSCROLLBAR,
85                              "adjustment", adjustment,
86                              NULL);
87
88   return hscrollbar;
89 }
90