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 gtkc.gtk;
33 public  import gtkc.gtktypes;
34 
35 
36 /**
37  * GtkSeparator is a horizontal or vertical separator widget, depending on the
38  * value of the #GtkOrientable:orientation property, used to group the widgets
39  * within a window. It displays a line with a shadow to make it appear sunken
40  * into the interface.
41  * 
42  * # CSS nodes
43  * 
44  * GtkSeparator has a single CSS node with name separator. The node
45  * gets one of the .horizontal or .vertical style classes.
46  */
47 public class Separator : Widget, OrientableIF
48 {
49 	/** the main Gtk struct */
50 	protected GtkSeparator* gtkSeparator;
51 
52 	/** Get the main Gtk struct */
53 	public GtkSeparator* getSeparatorStruct()
54 	{
55 		return gtkSeparator;
56 	}
57 
58 	/** the main Gtk struct as a void* */
59 	protected override void* getStruct()
60 	{
61 		return cast(void*)gtkSeparator;
62 	}
63 
64 	protected override void setStruct(GObject* obj)
65 	{
66 		gtkSeparator = cast(GtkSeparator*)obj;
67 		super.setStruct(obj);
68 	}
69 
70 	/**
71 	 * Sets our main struct and passes it to the parent class.
72 	 */
73 	public this (GtkSeparator* gtkSeparator, bool ownedRef = false)
74 	{
75 		this.gtkSeparator = gtkSeparator;
76 		super(cast(GtkWidget*)gtkSeparator, ownedRef);
77 	}
78 
79 	// add the Orientable capabilities
80 	mixin OrientableT!(GtkSeparator);
81 
82 
83 	/** */
84 	public static GType getType()
85 	{
86 		return gtk_separator_get_type();
87 	}
88 
89 	/**
90 	 * Creates a new #GtkSeparator with the given orientation.
91 	 *
92 	 * Params:
93 	 *     orientation = the separator’s orientation.
94 	 *
95 	 * Return: a new #GtkSeparator.
96 	 *
97 	 * Since: 3.0
98 	 *
99 	 * Throws: ConstructionException GTK+ fails to create the object.
100 	 */
101 	public this(GtkOrientation orientation)
102 	{
103 		auto p = gtk_separator_new(orientation);
104 		
105 		if(p is null)
106 		{
107 			throw new ConstructionException("null returned by new");
108 		}
109 		
110 		this(cast(GtkSeparator*) p);
111 	}
112 }