alternative to assert
[gtkD.git] / src / gtk / TearoffMenuItem.d
blob9b22d348749a5658e8e06bfe17551831271def2a
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 = GtkTearoffMenuItem.html
26 * outPack = gtk
27 * outFile = TearoffMenuItem
28 * strct = GtkTearoffMenuItem
29 * realStrct=
30 * ctorStrct=
31 * clss = TearoffMenuItem
32 * interf =
33 * class Code: No
34 * interface Code: No
35 * template for:
36 * extend =
37 * implements:
38 * prefixes:
39 * - gtk_tearoff_menu_item_
40 * - gtk_
41 * omit structs:
42 * omit prefixes:
43 * omit code:
44 * imports:
45 * structWrap:
46 * local aliases:
49 module gtk.TearoffMenuItem;
51 private import gtk.gtktypes;
53 private import lib.gtk;
56 /**
57 * Description
58 * A GtkTearoffMenuItem is a special GtkMenuItem which is used to
59 * tear off and reattach its menu.
60 * When its menu is shown normally, the GtkTearoffMenuItem is drawn as a
61 * dotted line indicating that the menu can be torn off. Activating it
62 * causes its menu to be torn off and displayed in its own window
63 * as a tearoff menu.
64 * When its menu is shown as a tearoff menu, the GtkTearoffMenuItem is drawn
65 * as a dotted line which has a left pointing arrow graphic indicating that
66 * the tearoff menu can be reattached. Activating it will erase the tearoff
67 * menu window.
69 private import gtk.MenuItem;
70 public class TearoffMenuItem : MenuItem
73 /** the main Gtk struct */
74 protected GtkTearoffMenuItem* gtkTearoffMenuItem;
77 public GtkTearoffMenuItem* getTearoffMenuItemStruct()
79 return gtkTearoffMenuItem;
83 /** the main Gtk struct as a void* */
84 protected void* getStruct()
86 return cast(void*)gtkTearoffMenuItem;
89 /**
90 * Sets our main struct and passes it to the parent class
92 public this (GtkTearoffMenuItem* gtkTearoffMenuItem)
94 super(cast(GtkMenuItem*)gtkTearoffMenuItem);
95 this.gtkTearoffMenuItem = gtkTearoffMenuItem;
98 /**
103 * Creates a new GtkTearoffMenuItem.
104 * Returns:
105 * a new GtkTearoffMenuItem.
106 * See Also
107 * GtkMenu
108 * for further discussion of menus in GTK.
110 public this ()
112 // GtkWidget* gtk_tearoff_menu_item_new (void);
113 this(cast(GtkTearoffMenuItem*)gtk_tearoff_menu_item_new() );