alternative to assert
[gtkD.git] / gtkD / src / gtk / WindowGroup.d
blob80fae1240a43762f8b2cf7edfd028cf8ce8618aa
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 = GtkWindowGroup.html
26 * outPack = gtk
27 * outFile = WindowGroup
28 * strct = GtkWindowGroup
29 * realStrct=
30 * ctorStrct=
31 * clss = WindowGroup
32 * interf =
33 * class Code: No
34 * interface Code: No
35 * template for:
36 * extend =
37 * implements:
38 * prefixes:
39 * - gtk_window_group_
40 * - gtk_
41 * omit structs:
42 * omit prefixes:
43 * omit code:
44 * imports:
45 * - gtk.Window
46 * structWrap:
47 * - GtkWindow* -> Window
48 * module aliases:
49 * local aliases:
52 module gtk.WindowGroup;
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.Window;
72 /**
73 * Description
75 private import gobject.ObjectG;
76 public class WindowGroup : ObjectG
79 /** the main Gtk struct */
80 protected GtkWindowGroup* gtkWindowGroup;
83 public GtkWindowGroup* getWindowGroupStruct()
85 return gtkWindowGroup;
89 /** the main Gtk struct as a void* */
90 protected void* getStruct()
92 return cast(void*)gtkWindowGroup;
95 /**
96 * Sets our main struct and passes it to the parent class
98 public this (GtkWindowGroup* gtkWindowGroup)
100 version(noAssert)
102 if ( gtkWindowGroup is null )
104 int zero = 0;
105 version(Tango)
107 Stdout("struct gtkWindowGroup is null on constructor").newline;
109 else
111 printf("struct gtkWindowGroup is null on constructor");
113 zero = zero / zero;
116 else
118 assert(gtkWindowGroup !is null, "struct gtkWindowGroup is null on constructor");
120 super(cast(GObject*)gtkWindowGroup);
121 this.gtkWindowGroup = gtkWindowGroup;
129 * Creates a new GtkWindowGroup object. Grabs added with
130 * gtk_grab_add() only affect windows within the same GtkWindowGroup.
131 * Returns:
132 * a new GtkWindowGroup.
134 public this ()
136 // GtkWindowGroup* gtk_window_group_new (void);
137 this(cast(GtkWindowGroup*)gtk_window_group_new() );
141 * Adds a window to a GtkWindowGroup.
142 * window_group:
143 * a GtkWindowGroup
144 * window:
145 * the GtkWindow to add
147 public void addWindow(Window window)
149 // void gtk_window_group_add_window (GtkWindowGroup *window_group, GtkWindow *window);
150 gtk_window_group_add_window(gtkWindowGroup, (window is null) ? null : window.getWindowStruct());
154 * Removes a window from a GtkWindowGroup.
155 * window_group:
156 * a GtkWindowGroup
157 * window:
158 * the GtkWindow to remove
160 public void removeWindow(Window window)
162 // void gtk_window_group_remove_window (GtkWindowGroup *window_group, GtkWindow *window);
163 gtk_window_group_remove_window(gtkWindowGroup, (window is null) ? null : window.getWindowStruct());