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