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  * Conversion parameters:
26  * inFile  = GtkVBox.html
27  * outPack = gtk
28  * outFile = VBox
29  * strct   = GtkVBox
30  * realStrct=
31  * ctorStrct=
32  * clss    = VBox
33  * interf  = 
34  * class Code: No
35  * interface Code: No
36  * template for:
37  * extend  = 
38  * implements:
39  * prefixes:
40  * 	- gtk_vbox_
41  * 	- gtk_
42  * omit structs:
43  * omit prefixes:
44  * omit code:
45  * omit signals:
46  * imports:
47  * structWrap:
48  * module aliases:
49  * local aliases:
50  * overrides:
51  */
52 
53 module gtk.VBox;
54 
55 public  import gtkc.gtktypes;
56 
57 private import gtkc.gtk;
58 private import glib.ConstructionException;
59 private import gobject.ObjectG;
60 
61 
62 
63 
64 
65 private import gtk.Box;
66 
67 /**
68  * Description
69  * A GtkVBox is a container that organizes child widgets into a single column.
70  * Use the GtkBox packing interface to determine the arrangement,
71  * spacing, height, and alignment of GtkVBox children.
72  * All children are allocated the same width.
73  */
74 public class VBox : Box
75 {
76 	
77 	/** the main Gtk struct */
78 	protected GtkVBox* gtkVBox;
79 	
80 	
81 	public GtkVBox* getVBoxStruct()
82 	{
83 		return gtkVBox;
84 	}
85 	
86 	
87 	/** the main Gtk struct as a void* */
88 	protected override void* getStruct()
89 	{
90 		return cast(void*)gtkVBox;
91 	}
92 	
93 	/**
94 	 * Sets our main struct and passes it to the parent class
95 	 */
96 	public this (GtkVBox* gtkVBox)
97 	{
98 		super(cast(GtkBox*)gtkVBox);
99 		this.gtkVBox = gtkVBox;
100 	}
101 	
102 	protected override void setStruct(GObject* obj)
103 	{
104 		super.setStruct(obj);
105 		gtkVBox = cast(GtkVBox*)obj;
106 	}
107 	
108 	/**
109 	 */
110 	
111 	/**
112 	 * Creates a new GtkVBox.
113 	 * Params:
114 	 * homogeneous = TRUE if all children are to be given equal space allotments.
115 	 * spacing = the number of pixels to place by default between children.
116 	 * Throws: ConstructionException GTK+ fails to create the object.
117 	 */
118 	public this (int homogeneous, int spacing)
119 	{
120 		// GtkWidget * gtk_vbox_new (gboolean homogeneous,  gint spacing);
121 		auto p = gtk_vbox_new(homogeneous, spacing);
122 		if(p is null)
123 		{
124 			throw new ConstructionException("null returned by gtk_vbox_new(homogeneous, spacing)");
125 		}
126 		this(cast(GtkVBox*) p);
127 	}
128 }