1 /*
2  * This file is part of gtkD.
3  *
4  * gtkD is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU Lesser General Public License
6  * as published by the Free Software Foundation; either version 3
7  * of the License, or (at your option) any later version, with
8  * some exceptions, please read the COPYING file.
9  *
10  * gtkD is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU Lesser General Public License for more details.
14  *
15  * You should have received a copy of the GNU Lesser General Public License
16  * along with gtkD; if not, write to the Free Software
17  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110, USA
18  */
19 
20 // generated automatically - do not change
21 // find conversion definition on APILookup.txt
22 // implement new conversion functionalities on the wrap.utils pakage
23 
24 
25 module gtk.Separator;
26 
27 private import glib.ConstructionException;
28 private import gobject.ObjectG;
29 private import gtk.OrientableIF;
30 private import gtk.OrientableT;
31 private import gtk.Widget;
32 private import gtk.c.functions;
33 public  import gtk.c.types;
34 
35 
36 /**
37  * `GtkSeparator` is a horizontal or vertical separator widget.
38  * 
39  * ![An example GtkSeparator](separators.png)
40  * 
41  * A `GtkSeparator` can be used to group the widgets within a window.
42  * It displays a line with a shadow to make it appear sunken into the
43  * interface.
44  * 
45  * # CSS nodes
46  * 
47  * `GtkSeparator` has a single CSS node with name separator. The node
48  * gets one of the .horizontal or .vertical style classes.
49  * 
50  * # Accessibility
51  * 
52  * `GtkSeparator` uses the #GTK_ACCESSIBLE_ROLE_SEPARATOR role.
53  */
54 public class Separator : Widget, OrientableIF
55 {
56 	/** the main Gtk struct */
57 	protected GtkSeparator* gtkSeparator;
58 
59 	/** Get the main Gtk struct */
60 	public GtkSeparator* getSeparatorStruct(bool transferOwnership = false)
61 	{
62 		if (transferOwnership)
63 			ownedRef = false;
64 		return gtkSeparator;
65 	}
66 
67 	/** the main Gtk struct as a void* */
68 	protected override void* getStruct()
69 	{
70 		return cast(void*)gtkSeparator;
71 	}
72 
73 	/**
74 	 * Sets our main struct and passes it to the parent class.
75 	 */
76 	public this (GtkSeparator* gtkSeparator, bool ownedRef = false)
77 	{
78 		this.gtkSeparator = gtkSeparator;
79 		super(cast(GtkWidget*)gtkSeparator, ownedRef);
80 	}
81 
82 	// add the Orientable capabilities
83 	mixin OrientableT!(GtkSeparator);
84 
85 
86 	/** */
87 	public static GType getType()
88 	{
89 		return gtk_separator_get_type();
90 	}
91 
92 	/**
93 	 * Creates a new `GtkSeparator` with the given orientation.
94 	 *
95 	 * Params:
96 	 *     orientation = the separator’s orientation.
97 	 *
98 	 * Returns: a new `GtkSeparator`.
99 	 *
100 	 * Throws: ConstructionException GTK+ fails to create the object.
101 	 */
102 	public this(GtkOrientation orientation)
103 	{
104 		auto __p = gtk_separator_new(orientation);
105 
106 		if(__p is null)
107 		{
108 			throw new ConstructionException("null returned by new");
109 		}
110 
111 		this(cast(GtkSeparator*) __p);
112 	}
113 }