/* * Licensed under the GNU Lesser General Public License Version 3 * * This library is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation, either version 3 of the license, or * (at your option) any later version. * * This software is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this library. If not, see . */ // generated automatically - do not change module gio.DBusSignalInfo; private import gio.c.functions; public import gio.c.types; private import gobject.ObjectG; /** * Information about a signal on a D-Bus interface. * * Since: 2.26 */ public class DBusSignalInfo { /** the main Gtk struct */ protected GDBusSignalInfo* gDBusSignalInfo; protected bool ownedRef; /** Get the main Gtk struct */ public GDBusSignalInfo* getDBusSignalInfoStruct(bool transferOwnership = false) { if (transferOwnership) ownedRef = false; return gDBusSignalInfo; } /** the main Gtk struct as a void* */ protected void* getStruct() { return cast(void*)gDBusSignalInfo; } /** * Sets our main struct and passes it to the parent class. */ public this (GDBusSignalInfo* gDBusSignalInfo, bool ownedRef = false) { this.gDBusSignalInfo = gDBusSignalInfo; this.ownedRef = ownedRef; } ~this () { if ( ownedRef ) g_dbus_signal_info_unref(gDBusSignalInfo); } /** */ public static GType getType() { return g_dbus_signal_info_get_type(); } /** * If @info is statically allocated does nothing. Otherwise increases * the reference count. * * Returns: The same @info. * * Since: 2.26 */ public DBusSignalInfo doref() { auto p = g_dbus_signal_info_ref(gDBusSignalInfo); if(p is null) { return null; } return ObjectG.getDObject!(DBusSignalInfo)(cast(GDBusSignalInfo*) p, true); } /** * If @info is statically allocated, does nothing. Otherwise decreases * the reference count of @info. When its reference count drops to 0, * the memory used is freed. * * Since: 2.26 */ public void unref() { g_dbus_signal_info_unref(gDBusSignalInfo); } }