]> Pileus Git - ~andy/gtk/blob - gtk/deprecated/gtkvscrollbar.c
filechooserbutton: Test that the expected filename is shown
[~andy/gtk] / gtk / deprecated / 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, see <http://www.gnu.org/licenses/>.
17  */
18
19 /*
20  * Modified by the GTK+ Team and others 1997-2000.  See the AUTHORS
21  * file for a list of people on the GTK+ Team.  See the ChangeLog
22  * files for a list of changes.  These files are distributed with
23  * GTK+ at ftp://ftp.gtk.org/pub/gtk/.
24  */
25
26 #include "config.h"
27
28 #include "gtkvscrollbar.h"
29
30 #include "gtkadjustment.h"
31 #include "gtkintl.h"
32 #include "gtkorientable.h"
33 #include "gtkscrollbar.h"
34
35
36 /**
37  * SECTION:gtkvscrollbar
38  * @Short_description: A vertical scrollbar
39  * @Title: GtkVScrollbar
40  * @See_also:#GtkScrollbar, #GtkScrolledWindow
41  *
42  * The #GtkVScrollbar widget is a widget arranged vertically creating a
43  * scrollbar. See #GtkScrollbar for details on
44  * scrollbars. #GtkAdjustment pointers may be added to handle the
45  * adjustment of the scrollbar or it may be left %NULL in which case one
46  * will be created for you. See #GtkScrollbar for a description of what the
47  * fields in an adjustment represent for a scrollbar.
48  *
49  * GtkVScrollbar has been deprecated, use #GtkScrollbar instead.
50  */
51
52 G_DEFINE_TYPE (GtkVScrollbar, gtk_vscrollbar, GTK_TYPE_SCROLLBAR)
53
54 static void
55 gtk_vscrollbar_class_init (GtkVScrollbarClass *class)
56 {
57   GTK_RANGE_CLASS (class)->stepper_detail = "vscrollbar";
58 }
59
60 static void
61 gtk_vscrollbar_init (GtkVScrollbar *vscrollbar)
62 {
63   gtk_orientable_set_orientation (GTK_ORIENTABLE (vscrollbar),
64                                   GTK_ORIENTATION_VERTICAL);
65 }
66
67 /**
68  * gtk_vscrollbar_new:
69  * @adjustment: (allow-none): the #GtkAdjustment to use, or %NULL to create a new adjustment
70  *
71  * Creates a new vertical scrollbar.
72  *
73  * Returns: the new #GtkVScrollbar
74  *
75  * Deprecated: 3.2: Use gtk_scrollbar_new() with %GTK_ORIENTATION_VERTICAL instead
76  */
77 GtkWidget *
78 gtk_vscrollbar_new (GtkAdjustment *adjustment)
79 {
80   g_return_val_if_fail (adjustment == NULL || GTK_IS_ADJUSTMENT (adjustment),
81                         NULL);
82
83   return g_object_new (GTK_TYPE_VSCROLLBAR,
84                        "adjustment", adjustment,
85                        NULL);
86 }