1 /*
2  * This file is part of gtkD.
3  *
4  * gtkD is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU Lesser General Public License
6  * as published by the Free Software Foundation; either version 3
7  * of the License, or (at your option) any later version, with
8  * some exceptions, please read the COPYING file.
9  *
10  * gtkD 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
13  * GNU Lesser General Public License for more details.
14  *
15  * You should have received a copy of the GNU Lesser General Public License
16  * along with gtkD; if not, write to the Free Software
17  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110, USA
18  */
19 
20 // generated automatically - do not change
21 // find conversion definition on APILookup.txt
22 // implement new conversion functionalities on the wrap.utils pakage
23 
24 
25 module gtk.VBox;
26 
27 private import glib.ConstructionException;
28 private import gobject.ObjectG;
29 private import gtk.Box;
30 private import gtk.Widget;
31 private import gtkc.gtk;
32 public  import gtkc.gtktypes;
33 
34 
35 /**
36  * A #GtkVBox is a container that organizes child widgets into a single column.
37  * 
38  * Use the #GtkBox packing interface to determine the arrangement,
39  * spacing, height, and alignment of #GtkVBox children.
40  * 
41  * All children are allocated the same width.
42  * 
43  * GtkVBox has been deprecated. You can use #GtkBox instead, which is a
44  * very quick and easy change. If you have derived your own classes from
45  * GtkVBox, you can simply change the inheritance to derive directly
46  * from #GtkBox, and set the #GtkOrientable:orientation property to
47  * %GTK_ORIENTATION_VERTICAL in your instance init function, with a
48  * call like:
49  * |[<!-- language="C" -->
50  * gtk_orientable_set_orientation (GTK_ORIENTABLE (object),
51  * GTK_ORIENTATION_VERTICAL);
52  * ]|
53  * If you don’t need first-child or last-child styling and want your code
54  * to be future-proof, the recommendation is to switch to #GtkGrid instead
55  * of nested boxes. For more information about migrating to #GtkGrid,
56  * see [Migrating from other containers to GtkGrid][gtk-migrating-GtkGrid].
57  */
58 public class VBox : Box
59 {
60 	/** the main Gtk struct */
61 	protected GtkVBox* gtkVBox;
62 
63 	/** Get the main Gtk struct */
64 	public GtkVBox* getVBoxStruct(bool transferOwnership = false)
65 	{
66 		if (transferOwnership)
67 			ownedRef = false;
68 		return gtkVBox;
69 	}
70 
71 	/** the main Gtk struct as a void* */
72 	protected override void* getStruct()
73 	{
74 		return cast(void*)gtkVBox;
75 	}
76 
77 	protected override void setStruct(GObject* obj)
78 	{
79 		gtkVBox = cast(GtkVBox*)obj;
80 		super.setStruct(obj);
81 	}
82 
83 	/**
84 	 * Sets our main struct and passes it to the parent class.
85 	 */
86 	public this (GtkVBox* gtkVBox, bool ownedRef = false)
87 	{
88 		this.gtkVBox = gtkVBox;
89 		super(cast(GtkBox*)gtkVBox, ownedRef);
90 	}
91 
92 
93 	/** */
94 	public static GType getType()
95 	{
96 		return gtk_vbox_get_type();
97 	}
98 
99 	/**
100 	 * Creates a new #GtkVBox.
101 	 *
102 	 * Deprecated: You can use gtk_box_new() with %GTK_ORIENTATION_VERTICAL instead,
103 	 * which is a quick and easy change. But the recommendation is to switch to
104 	 * #GtkGrid, since #GtkBox is going to go away eventually.
105 	 * See [Migrating from other containers to GtkGrid][gtk-migrating-GtkGrid].
106 	 *
107 	 * Params:
108 	 *     homogeneous = %TRUE if all children are to be given equal space allotments.
109 	 *     spacing = the number of pixels to place by default between children.
110 	 *
111 	 * Returns: a new #GtkVBox.
112 	 *
113 	 * Throws: ConstructionException GTK+ fails to create the object.
114 	 */
115 	public this(bool homogeneous, int spacing)
116 	{
117 		auto p = gtk_vbox_new(homogeneous, spacing);
118 		
119 		if(p is null)
120 		{
121 			throw new ConstructionException("null returned by new");
122 		}
123 		
124 		this(cast(GtkVBox*) p);
125 	}
126 }