]> Pileus Git - ~andy/gtk/blob - gtk/gtkhscrollbar.c
Deprecate h/v subclasses of GtkScrollbar
[~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 "config.h"
29
30 #include "gtkscrollbar.h"
31 #undef GTK_DISABLE_DEPRECATED
32 #include "gtkhscrollbar.h"
33 #include "gtkorientable.h"
34 #include "gtkintl.h"
35
36
37 /**
38  * SECTION:gtkhscrollbar
39  * @Short_description: A horizontal scrollbar
40  * @Title: GtkHScrollbar
41  * @See_also: #GtkScrollbar, #GtkScrolledWindow
42  *
43  * The #GtkHScrollbar widget is a widget arranged horizontally creating a
44  * scrollbar. See #GtkScrollbar for details on
45  * scrollbars. #GtkAdjustment pointers may be added to handle the
46  * adjustment of the scrollbar or it may be left %NULL in which case one
47  * will be created for you. See #GtkScrollbar for a description of what the
48  * fields in an adjustment represent for a scrollbar.
49  *
50  * GtkHScrollbar has been deprecated, use #GtkScrollbar instead.
51  */
52
53
54 G_DEFINE_TYPE (GtkHScrollbar, gtk_hscrollbar, GTK_TYPE_SCROLLBAR)
55
56 static void
57 gtk_hscrollbar_class_init (GtkHScrollbarClass *class)
58 {
59   GTK_RANGE_CLASS (class)->stepper_detail = "hscrollbar";
60 }
61
62 static void
63 gtk_hscrollbar_init (GtkHScrollbar *hscrollbar)
64 {
65   gtk_orientable_set_orientation (GTK_ORIENTABLE (hscrollbar),
66                                   GTK_ORIENTATION_HORIZONTAL);
67 }
68
69 /**
70  * gtk_hscrollbar_new:
71  * @adjustment: (allow-none): the #GtkAdjustment to use, or %NULL to create a new adjustment
72  *
73  * Creates a new horizontal scrollbar.
74  *
75  * Returns: the new #GtkHScrollbar
76  *
77  * Deprecated: 3.2: Use gtk_scrollbar_new() with %GTK_ORIENTATION_HORIZONTAL instead
78  */
79 GtkWidget *
80 gtk_hscrollbar_new (GtkAdjustment *adjustment)
81 {
82   g_return_val_if_fail (adjustment == NULL || GTK_IS_ADJUSTMENT (adjustment),
83                         NULL);
84
85   return g_object_new (GTK_TYPE_HSCROLLBAR,
86                        "adjustment", adjustment,
87                        NULL);
88 }