]> Pileus Git - ~andy/gtk/blob - gtk/deprecated/gtkvbbox.c
5e92f73a6cc0cac3e5ba63987d0fb4e5a905b198
[~andy/gtk] / gtk / deprecated / gtkvbbox.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 "config.h"
28
29 #include "gtkvbbox.h"
30 #include "gtkorientable.h"
31 #include "gtkintl.h"
32
33
34 /**
35  * SECTION:gtkvbbox
36  * @Short_description: A container for arranging buttons vertically
37  * @Title: GtkVButtonBox
38  * @See_also: #GtkBox, #GtkButtonBox, #GtkHButtonBox
39  *
40  * A button box should be used to provide a consistent layout of buttons
41  * throughout your application. The layout/spacing can be altered by the
42  * programmer, or if desired, by the user to alter the 'feel' of a
43  * program to a small degree.
44  *
45  * A #GtkVButtonBox is created with gtk_vbutton_box_new(). Buttons are
46  * packed into a button box the same way widgets are added to any other
47  * container, using gtk_container_add(). You can also use
48  * gtk_box_pack_start() or gtk_box_pack_end(), but for button boxes both
49  * these functions work just like gtk_container_add(), ie., they pack the
50  * button in a way that depends on the current layout style and on
51  * whether the button has had gtk_button_box_set_child_secondary() called
52  * on it.
53  *
54  * The spacing between buttons can be set with gtk_box_set_spacing(). The
55  * arrangement and layout of the buttons can be changed with
56  * gtk_button_box_set_layout().
57  *
58  * GtkVButtonBox has been deprecated, use #GtkButtonBox instead.
59  */
60
61 G_DEFINE_TYPE (GtkVButtonBox, gtk_vbutton_box, GTK_TYPE_BUTTON_BOX)
62
63 static void
64 gtk_vbutton_box_class_init (GtkVButtonBoxClass *class)
65 {
66 }
67
68 static void
69 gtk_vbutton_box_init (GtkVButtonBox *vbutton_box)
70 {
71   gtk_orientable_set_orientation (GTK_ORIENTABLE (vbutton_box),
72                                   GTK_ORIENTATION_VERTICAL);
73 }
74
75 /**
76  * gtk_vbutton_box_new:
77  *
78  * Creates a new vertical button box.
79  *
80  * Returns: a new button box #GtkWidget.
81  *
82  * Deprecated: 3.2: Use gtk_button_box_new() with %GTK_ORIENTATION_VERTICAL instead
83  */
84 GtkWidget *
85 gtk_vbutton_box_new (void)
86 {
87   return g_object_new (GTK_TYPE_VBUTTON_BOX, NULL);
88 }