/* * 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.DBusPropertyInfo; private import gio.c.functions; public import gio.c.types; private import gobject.ObjectG; /** * Information about a D-Bus property on a D-Bus interface. * * Since: 2.26 */ public class DBusPropertyInfo { /** the main Gtk struct */ protected GDBusPropertyInfo* gDBusPropertyInfo; protected bool ownedRef; /** Get the main Gtk struct */ public GDBusPropertyInfo* getDBusPropertyInfoStruct(bool transferOwnership = false) { if (transferOwnership) ownedRef = false; return gDBusPropertyInfo; } /** the main Gtk struct as a void* */ protected void* getStruct() { return cast(void*)gDBusPropertyInfo; } /** * Sets our main struct and passes it to the parent class. */ public this (GDBusPropertyInfo* gDBusPropertyInfo, bool ownedRef = false) { this.gDBusPropertyInfo = gDBusPropertyInfo; this.ownedRef = ownedRef; } ~this () { if ( ownedRef ) g_dbus_property_info_unref(gDBusPropertyInfo); } /** */ public static GType getType() { return g_dbus_property_info_get_type(); } /** * If @info is statically allocated does nothing. Otherwise increases * the reference count. * * Returns: The same @info. * * Since: 2.26 */ public DBusPropertyInfo doref() { auto p = g_dbus_property_info_ref(gDBusPropertyInfo); if(p is null) { return null; } return ObjectG.getDObject!(DBusPropertyInfo)(cast(GDBusPropertyInfo*) 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_property_info_unref(gDBusPropertyInfo); } }