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 63 64 private import gtk.Box; 65 66 /** 67 * GtkHBox is a container that organizes child widgets into a single row. 68 * 69 * Use the GtkBox packing interface to determine the arrangement, 70 * spacing, width, and alignment of GtkHBox children. 71 * 72 * All children are allocated the same height. 73 * 74 * GtkHBox has been deprecated. You can use GtkBox instead, which is a 75 * very quick and easy change. If you have derived your own classes from 76 * GtkHBox, you can simply change the inheritance to derive directly 77 * from GtkBox. No further changes are needed, since the default 78 * value of the "orientation" property is 79 * GTK_ORIENTATION_HORIZONTAL. 80 * If you don't need first-child or last-child styling, and want your code 81 * to be future-proof, the recommendation is to switch to GtkGrid instead 82 * of nested boxes. For more information about migrating to GtkGrid, 83 * see Migrating from other containers to GtkGrid 84 */ 85 public class HBox : Box 86 { 87 88 /** the main Gtk struct */ 89 protected GtkHBox* gtkHBox; 90 91 92 public GtkHBox* getHBoxStruct() 93 { 94 return gtkHBox; 95 } 96 97 98 /** the main Gtk struct as a void* */ 99 protected override void* getStruct() 100 { 101 return cast(void*)gtkHBox; 102 } 103 104 /** 105 * Sets our main struct and passes it to the parent class 106 */ 107 public this (GtkHBox* gtkHBox) 108 { 109 super(cast(GtkBox*)gtkHBox); 110 this.gtkHBox = gtkHBox; 111 } 112 113 protected override void setStruct(GObject* obj) 114 { 115 super.setStruct(obj); 116 gtkHBox = cast(GtkHBox*)obj; 117 } 118 119 /** 120 */ 121 122 /** 123 * Warning 124 * 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, 125 * which is a quick and easy change. But the recommendation is to switch to 126 * GtkGrid, since GtkBox is going to go away eventually. 127 * See Migrating from other containers to GtkGrid. 128 * Creates a new GtkHBox. 129 * Params: 130 * homogeneous = TRUE if all children are to be given equal space allotments. 131 * spacing = the number of pixels to place by default between children. 132 * Throws: ConstructionException GTK+ fails to create the object. 133 */ 134 public this (int homogeneous, int spacing) 135 { 136 // GtkWidget * gtk_hbox_new (gboolean homogeneous, gint spacing); 137 auto p = gtk_hbox_new(homogeneous, spacing); 138 if(p is null) 139 { 140 throw new ConstructionException("null returned by gtk_hbox_new(homogeneous, spacing)"); 141 } 142 this(cast(GtkHBox*) p); 143 } 144 }