alternative to assert
[gtkD.git] / src / gtk / WindowGroup.d
blob8db3fe2a33eab40e2cfc6fa49582130d65456dd7
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 = 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 * local aliases:
51 module gtk.WindowGroup;
53 private import gtk.gtktypes;
55 private import lib.gtk;
57 private import gtk.Window;
59 /**
60 * Description
62 private import gobject.ObjectG;
63 public class WindowGroup : ObjectG
66 /** the main Gtk struct */
67 protected GtkWindowGroup* gtkWindowGroup;
70 public GtkWindowGroup* getWindowGroupStruct()
72 return gtkWindowGroup;
76 /** the main Gtk struct as a void* */
77 protected void* getStruct()
79 return cast(void*)gtkWindowGroup;
82 /**
83 * Sets our main struct and passes it to the parent class
85 public this (GtkWindowGroup* gtkWindowGroup)
87 super(cast(GObject*)gtkWindowGroup);
88 this.gtkWindowGroup = gtkWindowGroup;
91 /**
95 /**
96 * Creates a new GtkWindowGroup object. Grabs added with
97 * gtk_grab_add() only affect windows within the same GtkWindowGroup.
98 * Returns:
99 * a new GtkWindowGroup.
101 public this ()
103 // GtkWindowGroup* gtk_window_group_new (void);
104 this(cast(GtkWindowGroup*)gtk_window_group_new() );
108 * Adds a window to a GtkWindowGroup.
109 * window_group:
110 * a GtkWindowGroup
111 * window:
112 * the GtkWindow to add
114 public void addWindow(Window window)
116 // void gtk_window_group_add_window (GtkWindowGroup *window_group, GtkWindow *window);
117 gtk_window_group_add_window(gtkWindowGroup, (window is null) ? null : window.getWindowStruct());
121 * Removes a window from a GtkWindowGroup.
122 * window_group:
123 * a GtkWindowGroup
124 * window:
125 * the GtkWindow to remove
127 public void removeWindow(Window window)
129 // void gtk_window_group_remove_window (GtkWindowGroup *window_group, GtkWindow *window);
130 gtk_window_group_remove_window(gtkWindowGroup, (window is null) ? null : window.getWindowStruct());