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