#ifndef _GLIBMM_INTERFACE_H
#define _GLIBMM_INTERFACE_H
/* Copyright 2002 The gtkmm 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 .
*/
#include
namespace Glib
{
#ifndef DOXYGEN_SHOULD_SKIP_THIS
class GLIBMM_API Interface_Class;
#endif
// There is no base GInterface struct in Glib, though there is G_TYPE_INTERFACE enum value.
class GLIBMM_API Interface : virtual public Glib::ObjectBase
{
public:
#ifndef DOXYGEN_SHOULD_SKIP_THIS
using CppObjectType = Interface;
using CppClassType = Interface_Class;
using BaseClassType = GTypeInterface;
#endif /* DOXYGEN_SHOULD_SKIP_THIS */
/** A Default constructor.
*/
Interface();
Interface(Interface&& src) noexcept;
Interface& operator=(Interface&& src) noexcept;
/** Called by constructors of derived classes. Provide the result of
* the Class object's init() function to ensure that it is properly
* initialized.
*
* @param interface_class The Class object for the derived type.
*/
explicit Interface(const Glib::Interface_Class& interface_class);
/** Called by constructors of derived classes.
*
* @param castitem A C instance that will be wrapped by the new
* C++ instance. This does not take a reference, so call reference()
* if necessary.
*/
explicit Interface(GObject* castitem);
~Interface() noexcept override;
// noncopyable
Interface(const Interface&) = delete;
Interface& operator=(const Interface&) = delete;
// void add_interface(GType gtype_implementer);
// Hook for translating API
// static Glib::Interface* wrap_new(GTypeInterface*);
#ifndef DOXYGEN_SHOULD_SKIP_THIS
static GType get_type() G_GNUC_CONST;
static GType get_base_type() G_GNUC_CONST;
#endif
inline GObject* gobj() { return gobject_; }
inline const GObject* gobj() const { return gobject_; }
};
RefPtr wrap_interface(GObject* object, bool take_copy = false);
} // namespace Glib
#endif /* _GLIBMM_INTERFACE_H */