alternative to assert
[gtkD.git] / src / gtk / HPaned.d
blobb01eef2ed66facdc1a91ef291d185705d7dd88e4
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 = 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 * local aliases:
51 module gtk.HPaned;
53 private import gtk.gtktypes;
55 private import lib.gtk;
57 private import gtk.Widget;
59 /**
60 * Description
61 * The HPaned widget is a container widget with two
62 * children arranged horizontally. The division between
63 * the two panes is adjustable by the user by dragging
64 * a handle. See GtkPaned for details.
66 private import gtk.Paned;
67 public class HPaned : Paned
70 /** the main Gtk struct */
71 protected GtkHPaned* gtkHPaned;
74 public GtkHPaned* getHPanedStruct()
76 return gtkHPaned;
80 /** the main Gtk struct as a void* */
81 protected void* getStruct()
83 return cast(void*)gtkHPaned;
86 /**
87 * Sets our main struct and passes it to the parent class
89 public this (GtkHPaned* gtkHPaned)
91 super(cast(GtkPaned*)gtkHPaned);
92 this.gtkHPaned = gtkHPaned;
95 /**
96 * Creates a new HPaned and adds two widgets as it's children
97 * @param child1
98 * @param child2
100 this(Widget child1, Widget child2)
102 this();
103 add1(child1);
104 add2(child2);
113 * Create a new GtkHPaned
114 * Returns:
115 * the new GtkHPaned
117 public this ()
119 // GtkWidget* gtk_hpaned_new (void);
120 this(cast(GtkHPaned*)gtk_hpaned_new() );