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  = GtkHBox.html
27  * outPack = gtk
28  * outFile = HBox
29  * strct   = GtkHBox
30  * realStrct=
31  * ctorStrct=
32  * clss    = HBox
33  * interf  = 
34  * class Code: No
35  * interface Code: No
36  * template for:
37  * extend  = 
38  * implements:
39  * prefixes:
40  * 	- gtk_hbox_
41  * omit structs:
42  * omit prefixes:
43  * omit code:
44  * omit signals:
45  * imports:
46  * structWrap:
47  * module aliases:
48  * local aliases:
49  * overrides:
50  */
51 
52 module gtk.HBox;
53 
54 public  import gtkc.gtktypes;
55 
56 private import gtkc.gtk;
57 private import glib.ConstructionException;
58 private import gobject.ObjectG;
59 
60 
61 
62 private import gtk.Box;
63 
64 /**
65  * GtkHBox is a container that organizes child widgets into a single row.
66  *
67  * Use the GtkBox packing interface to determine the arrangement,
68  * spacing, width, and alignment of GtkHBox children.
69  *
70  * All children are allocated the same height.
71  *
72  * GtkHBox has been deprecated. You can use GtkBox instead, which is a
73  * very quick and easy change. If you have derived your own classes from
74  * GtkHBox, you can simply change the inheritance to derive directly
75  * from GtkBox. No further changes are needed, since the default
76  * value of the "orientation" property is
77  * GTK_ORIENTATION_HORIZONTAL.
78  * If you don't need first-child or last-child styling, and want your code
79  * to be future-proof, the recommendation is to switch to GtkGrid instead
80  * of nested boxes. For more information about migrating to GtkGrid,
81  * see Migrating from other containers to GtkGrid
82  */
83 public class HBox : Box
84 {
85 	
86 	/** the main Gtk struct */
87 	protected GtkHBox* gtkHBox;
88 	
89 	
90 	/** Get the main Gtk struct */
91 	public GtkHBox* getHBoxStruct()
92 	{
93 		return gtkHBox;
94 	}
95 	
96 	
97 	/** the main Gtk struct as a void* */
98 	protected override void* getStruct()
99 	{
100 		return cast(void*)gtkHBox;
101 	}
102 	
103 	/**
104 	 * Sets our main struct and passes it to the parent class
105 	 */
106 	public this (GtkHBox* gtkHBox)
107 	{
108 		super(cast(GtkBox*)gtkHBox);
109 		this.gtkHBox = gtkHBox;
110 	}
111 	
112 	protected override void setStruct(GObject* obj)
113 	{
114 		super.setStruct(obj);
115 		gtkHBox = cast(GtkHBox*)obj;
116 	}
117 	
118 	/**
119 	 */
120 	
121 	/**
122 	 * Warning
123 	 * gtk_hbox_new has been deprecated since version 3.2 and should not be used in newly-written code. You can use gtk_box_new() with GTK_ORIENTATION_HORIZONTAL instead,
124 	 *  which is a quick and easy change. But the recommendation is to switch to
125 	 *  GtkGrid, since GtkBox is going to go away eventually.
126 	 *  See Migrating from other containers to GtkGrid.
127 	 * Creates a new GtkHBox.
128 	 * Params:
129 	 * homogeneous = TRUE if all children are to be given equal space allotments.
130 	 * spacing = the number of pixels to place by default between children.
131 	 * Throws: ConstructionException GTK+ fails to create the object.
132 	 */
133 	public this (int homogeneous, int spacing)
134 	{
135 		// GtkWidget * gtk_hbox_new (gboolean homogeneous,  gint spacing);
136 		auto p = gtk_hbox_new(homogeneous, spacing);
137 		if(p is null)
138 		{
139 			throw new ConstructionException("null returned by gtk_hbox_new(homogeneous, spacing)");
140 		}
141 		this(cast(GtkHBox*) p);
142 	}
143 }