alternative to assert
[gtkD.git] / src / gtk / VScrollbar.d
blob1b1b27667e41ce91336ca479105c3a5ce408fd4a
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 = GtkVScrollbar.html
26 * outPack = gtk
27 * outFile = VScrollbar
28 * strct = GtkVScrollbar
29 * realStrct=
30 * ctorStrct=
31 * clss = VScrollbar
32 * interf =
33 * class Code: No
34 * interface Code: No
35 * template for:
36 * extend =
37 * implements:
38 * prefixes:
39 * - gtk_vscrollbar_
40 * - gtk_
41 * omit structs:
42 * omit prefixes:
43 * omit code:
44 * imports:
45 * - gtk.Adjustment
46 * structWrap:
47 * - GtkAdjustment* -> Adjustment
48 * local aliases:
51 module gtk.VScrollbar;
53 private import gtk.gtktypes;
55 private import lib.gtk;
57 private import gtk.Adjustment;
59 /**
60 * Description
61 * The GtkVScrollbar widget is a widget arranged vertically creating a scrollbar.
62 * See GtkScrollbar for details on scrollbars. GtkAdjustment pointers may be
63 * added to handle the adjustment of the scrollbar or it may be left NULL in which
64 * case one will be created for you. See GtkAdjustment for details.
66 private import gtk.Scrollbar;
67 public class VScrollbar : Scrollbar
70 /** the main Gtk struct */
71 protected GtkVScrollbar* gtkVScrollbar;
74 public GtkVScrollbar* getVScrollbarStruct()
76 return gtkVScrollbar;
80 /** the main Gtk struct as a void* */
81 protected void* getStruct()
83 return cast(void*)gtkVScrollbar;
86 /**
87 * Sets our main struct and passes it to the parent class
89 public this (GtkVScrollbar* gtkVScrollbar)
91 super(cast(GtkScrollbar*)gtkVScrollbar);
92 this.gtkVScrollbar = gtkVScrollbar;
95 /**
99 /**
100 * Creates a new vertical scrollbar.
101 * adjustment:
102 * the GtkAdjustment to use, or NULL to create a new adjustment.
103 * Returns:
104 * the new GtkVScrollbar
105 * See Also
106 * GtkScrollbar, GtkScrolledWindow
108 public this (Adjustment adjustment)
110 // GtkWidget* gtk_vscrollbar_new (GtkAdjustment *adjustment);
111 this(cast(GtkVScrollbar*)gtk_vscrollbar_new((adjustment is null) ? null : adjustment.getAdjustmentStruct()) );