Blob Blame History Raw
// Generated by gmmproc 2.54.1 -- DO NOT MODIFY!


#include <glibmm.h>

#include <giomm/settingsschemasource.h>
#include <giomm/private/settingsschemasource_p.h>


/* Copyright (C) 2015 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 <http://www.gnu.org/licenses/>.
 */

#include <gio/gio.h>

namespace Gio
{

} // namespace Gio

namespace
{
} // anonymous namespace


/* Why reinterpret_cast<SettingsSchemaSource*>(gobject) is needed:
 *
 * A SettingsSchemaSource instance is in fact always a GSettingsSchemaSource instance.
 * Unfortunately, GSettingsSchemaSource cannot be a member of SettingsSchemaSource,
 * because it is an opaque struct.  Also, the C interface does not provide
 * any hooks to install a destroy notification handler, thus we cannot
 * wrap it dynamically either.
 *
 * The cast works because SettingsSchemaSource does not have any member data, and
 * it is impossible to derive from it.  This is ensured by using final on the
 * class and by using = delete on the default constructor.
 */

namespace Glib
{

Glib::RefPtr<Gio::SettingsSchemaSource> wrap(GSettingsSchemaSource* object, bool take_copy)
{
  if(take_copy && object)
    g_settings_schema_source_ref(object);

  // See the comment at the top of this file, if you want to know why the cast works.
  return Glib::RefPtr<Gio::SettingsSchemaSource>(reinterpret_cast<Gio::SettingsSchemaSource*>(object));
}

} // namespace Glib


namespace Gio
{


void SettingsSchemaSource::reference() const
{
  // See the comment at the top of this file, if you want to know why the cast works.
  g_settings_schema_source_ref(reinterpret_cast<GSettingsSchemaSource*>(const_cast<SettingsSchemaSource*>(this)));
}

void SettingsSchemaSource::unreference() const
{
  // See the comment at the top of this file, if you want to know why the cast works.
  g_settings_schema_source_unref(reinterpret_cast<GSettingsSchemaSource*>(const_cast<SettingsSchemaSource*>(this)));
}

GSettingsSchemaSource* SettingsSchemaSource::gobj()
{
  // See the comment at the top of this file, if you want to know why the cast works.
  return reinterpret_cast<GSettingsSchemaSource*>(this);
}

const GSettingsSchemaSource* SettingsSchemaSource::gobj() const
{
  // See the comment at the top of this file, if you want to know why the cast works.
  return reinterpret_cast<const GSettingsSchemaSource*>(this);
}

GSettingsSchemaSource* SettingsSchemaSource::gobj_copy() const
{
  // See the comment at the top of this file, if you want to know why the cast works.
  const auto gobject = reinterpret_cast<GSettingsSchemaSource*>(const_cast<SettingsSchemaSource*>(this));
  g_settings_schema_source_ref(gobject);
  return gobject;
}


Glib::RefPtr<SettingsSchemaSource> SettingsSchemaSource::get_default()
{

  Glib::RefPtr<SettingsSchemaSource> retvalue = Glib::wrap(g_settings_schema_source_get_default());
  if(retvalue)
    retvalue->reference(); //The function does not do a ref for us
  return retvalue;
}

Glib::RefPtr<SettingsSchema> SettingsSchemaSource::lookup(const Glib::ustring& schema_id, bool recursive)
{
  return Glib::wrap(g_settings_schema_source_lookup(gobj(), schema_id.c_str(), static_cast<int>(recursive)));
}

Glib::RefPtr<const SettingsSchema> SettingsSchemaSource::lookup(const Glib::ustring& schema_id, bool recursive) const
{
  return Glib::wrap(g_settings_schema_source_lookup(const_cast<GSettingsSchemaSource*>(gobj()), schema_id.c_str(), static_cast<int>(recursive)));
}


} // namespace Gio