alternative to assert
[gtkD.git] / src / gtk / VPaned.d
blobc4782470dfd3193980759edb41fd14e2973b5800
1 /*
2 * This file is part of duit.
4 * duit is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU Lesser General Public License as published by
6 * the Free Software Foundation; either version 2.1 of the License, or
7 * (at your option) any later version.
9 * duit is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU Lesser General Public License for more details.
14 * You should have received a copy of the GNU Lesser General Public License
15 * along with duit; if not, write to the Free Software
16 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19 // generated automatically - do not change
20 // find conversion definition on APILookup.txt
21 // implement new conversion functionalities on the wrap.utils pakage
24 * Conversion parameters:
25 * inFile = GtkVPaned.html
26 * outPack = gtk
27 * outFile = VPaned
28 * strct = GtkVPaned
29 * realStrct=
30 * ctorStrct=
31 * clss = VPaned
32 * interf =
33 * class Code: Yes
34 * interface Code: No
35 * template for:
36 * extend =
37 * implements:
38 * prefixes:
39 * - gtk_vpaned_
40 * - gtk_
41 * omit structs:
42 * omit prefixes:
43 * omit code:
44 * imports:
45 * - gtk.Widget
46 * structWrap:
47 * local aliases:
50 module gtk.VPaned;
52 private import gtk.gtktypes;
54 private import lib.gtk;
56 private import gtk.Widget;
58 /**
59 * Description
60 * The VPaned widget is a container widget with two
61 * children arranged vertically. The division between
62 * the two panes is adjustable by the user by dragging
63 * a handle. See GtkPaned for details.
65 private import gtk.Paned;
66 public class VPaned : Paned
69 /** the main Gtk struct */
70 protected GtkVPaned* gtkVPaned;
73 public GtkVPaned* getVPanedStruct()
75 return gtkVPaned;
79 /** the main Gtk struct as a void* */
80 protected void* getStruct()
82 return cast(void*)gtkVPaned;
85 /**
86 * Sets our main struct and passes it to the parent class
88 public this (GtkVPaned* gtkVPaned)
90 super(cast(GtkPaned*)gtkVPaned);
91 this.gtkVPaned = gtkVPaned;
94 /**
95 * Creates a new HPaned and adds two widgets as it's children
96 * @param child1
97 * @param child2
99 this(Widget child1, Widget child2)
101 this();
102 add1(child1);
103 add2(child2);
112 * Create a new GtkVPaned
113 * Returns:
114 * the new GtkVPaned
116 public this ()
118 // GtkWidget* gtk_vpaned_new (void);
119 this(cast(GtkVPaned*)gtk_vpaned_new() );