alternative to assert
[gtkD.git] / gtkD / src / gtk / HPaned.d
blob7b5baf163be28e01c4fc696642649b4c01d2b588
1 /*
2 * This file is part of gtkD.
4 * gtkD 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 * gtkD 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 gtkD; 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 = GtkHPaned.html
26 * outPack = gtk
27 * outFile = HPaned
28 * strct = GtkHPaned
29 * realStrct=
30 * ctorStrct=
31 * clss = HPaned
32 * interf =
33 * class Code: Yes
34 * interface Code: No
35 * template for:
36 * extend =
37 * implements:
38 * prefixes:
39 * - gtk_hpaned_
40 * - gtk_
41 * omit structs:
42 * omit prefixes:
43 * omit code:
44 * imports:
45 * - gtk.Widget
46 * structWrap:
47 * - GtkWidget* -> Widget
48 * module aliases:
49 * local aliases:
52 module gtk.HPaned;
54 version(noAssert)
56 version(Tango)
58 import tango.io.Stdout; // use the tango loging?
62 private import gtkc.gtktypes;
64 private import gtkc.gtk;
67 private import gtk.Widget;
72 /**
73 * Description
74 * The HPaned widget is a container widget with two
75 * children arranged horizontally. The division between
76 * the two panes is adjustable by the user by dragging
77 * a handle. See GtkPaned for details.
79 private import gtk.Paned;
80 public class HPaned : Paned
83 /** the main Gtk struct */
84 protected GtkHPaned* gtkHPaned;
87 public GtkHPaned* getHPanedStruct()
89 return gtkHPaned;
93 /** the main Gtk struct as a void* */
94 protected void* getStruct()
96 return cast(void*)gtkHPaned;
99 /**
100 * Sets our main struct and passes it to the parent class
102 public this (GtkHPaned* gtkHPaned)
104 version(noAssert)
106 if ( gtkHPaned is null )
108 int zero = 0;
109 version(Tango)
111 Stdout("struct gtkHPaned is null on constructor").newline;
113 else
115 printf("struct gtkHPaned is null on constructor");
117 zero = zero / zero;
120 else
122 assert(gtkHPaned !is null, "struct gtkHPaned is null on constructor");
124 super(cast(GtkPaned*)gtkHPaned);
125 this.gtkHPaned = gtkHPaned;
129 * Creates a new HPaned and adds two widgets as it's children
130 * @param child1
131 * @param child2
133 this(Widget child1, Widget child2)
135 this();
136 add1(child1);
137 add2(child2);
146 * Create a new GtkHPaned
147 * Returns:
148 * the new GtkHPaned
150 public this ()
152 // GtkWidget* gtk_hpaned_new (void);
153 this(cast(GtkHPaned*)gtk_hpaned_new() );