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 gio.DBusSignalInfo;
26 
27 private import gobject.ObjectG;
28 private import gtkc.gio;
29 public  import gtkc.giotypes;
30 
31 
32 /**
33  * Information about a signal on a D-Bus interface.
34  *
35  * Since: 2.26
36  */
37 public class DBusSignalInfo
38 {
39 	/** the main Gtk struct */
40 	protected GDBusSignalInfo* gDBusSignalInfo;
41 
42 	/** Get the main Gtk struct */
43 	public GDBusSignalInfo* getDBusSignalInfoStruct()
44 	{
45 		return gDBusSignalInfo;
46 	}
47 
48 	/** the main Gtk struct as a void* */
49 	protected void* getStruct()
50 	{
51 		return cast(void*)gDBusSignalInfo;
52 	}
53 
54 	/**
55 	 * Sets our main struct and passes it to the parent class.
56 	 */
57 	public this (GDBusSignalInfo* gDBusSignalInfo)
58 	{
59 		this.gDBusSignalInfo = gDBusSignalInfo;
60 	}
61 
62 
63 	/** */
64 	public static GType getType()
65 	{
66 		return g_dbus_signal_info_get_type();
67 	}
68 
69 	/**
70 	 * If @info is statically allocated does nothing. Otherwise increases
71 	 * the reference count.
72 	 *
73 	 * Return: The same @info.
74 	 *
75 	 * Since: 2.26
76 	 */
77 	public DBusSignalInfo doref()
78 	{
79 		auto p = g_dbus_signal_info_ref(gDBusSignalInfo);
80 		
81 		if(p is null)
82 		{
83 			return null;
84 		}
85 		
86 		return ObjectG.getDObject!(DBusSignalInfo)(cast(GDBusSignalInfo*) p);
87 	}
88 
89 	/**
90 	 * If @info is statically allocated, does nothing. Otherwise decreases
91 	 * the reference count of @info. When its reference count drops to 0,
92 	 * the memory used is freed.
93 	 *
94 	 * Since: 2.26
95 	 */
96 	public void unref()
97 	{
98 		g_dbus_signal_info_unref(gDBusSignalInfo);
99 	}
100 }