/* Copyright (C) 2012 The giomm Development Team * * 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 2.1 of the License, or (at your option) any later version. * * This library 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 . */ _CONFIGINCLUDE(giommconfig.h) #include _DEFS(giomm,gio) _PINCLUDE(glibmm/private/interface_p.h) _PINCLUDE(gio/gio.h) #ifndef DOXYGEN_SHOULD_SKIP_THIS typedef struct _GDBusObjectIface GDBusObjectIface; #endif /* DOXYGEN_SHOULD_SKIP_THIS */ namespace Gio { namespace DBus { class GIOMM_API Interface; _GMMPROC_EXTRA_NAMESPACE(DBus) /** Object - Base type for D-Bus objects. * The Object type is the base type for D-Bus objects on both the service side * (see ObjectSkeleton) and the client side (see ObjectProxy). It is * essentially just a container of interfaces. * @newin{2,34} */ class GIOMM_API Object : public Glib::Interface { _CLASS_INTERFACE(Object, GDBusObject, G_DBUS_OBJECT, GDBusObjectIface, , , GIOMM_API) public: _WRAP_METHOD(Glib::ustring get_object_path() const, g_dbus_object_get_object_path) #m4 _CONVERSION(`GList*',`std::vector>',`Glib::ListHandler>::list_to_vector($3, Glib::OWNERSHIP_DEEP)') _WRAP_METHOD(std::vector> get_interfaces(), g_dbus_object_get_interfaces) #m4 _CONVERSION(`GList*',`std::vector>',`Glib::ListHandler>::list_to_vector($3, Glib::OWNERSHIP_DEEP)') _WRAP_METHOD(std::vector> get_interfaces() const, g_dbus_object_get_interfaces) _WRAP_METHOD(Glib::RefPtr get_interface(const Glib::ustring& interface_name), g_dbus_object_get_interface) _WRAP_METHOD(Glib::RefPtr get_interface(const Glib::ustring& interface_name) const, g_dbus_object_get_interface, constversion) #m4 _CONVERSION(`GDBusInterface*',`const Glib::RefPtr&',`Glib::wrap($3, true)') // The parameter name 'interface' can cause compilation errors with MinGW. // See https://bugzilla.gnome.org/show_bug.cgi?id=735137 // The parameter name in glib is 'interface_'. _WRAP_SIGNAL(void interface_added(const Glib::RefPtr& iface), "interface_added") _WRAP_SIGNAL(void interface_removed(const Glib::RefPtr& iface), "interface_removed") protected: #m4 _CONVERSION(`Glib::ustring',`const gchar*',`$3.c_str()') _WRAP_VFUNC(Glib::ustring get_object_path() const, "get_object_path", keep_return) #m4 _CONVERSION(`std::vector>',`GList*', #m4 `g_list_copy_deep(Glib::ListHandler>::vector_to_list($3).data(), list_copy_ref, nullptr)') _WRAP_VFUNC(std::vector> get_interfaces() const, "get_interfaces") // Can't use refreturn_ctype here. It generates a call to Glib::unwrap_copy(), which // can't be used for Glib::Interface classes. They have no gobj_copy() method. #m4 _CONVERSION(`Glib::RefPtr',`GDBusInterface*',`local_unwrap_copy($3)') _WRAP_VFUNC(Glib::RefPtr get_interface(const Glib::ustring& interface_name) const, "get_interface") }; } // namespace DBus } // namespace Gio