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

#undef GTK_DISABLE_DEPRECATED
#define GDK_DISABLE_DEPRECATION_WARNINGS 1
 

#ifndef GTKMM_DISABLE_DEPRECATED


#include <glibmm.h>

#include <gtkmm/hvbuttonbox.h>
#include <gtkmm/private/hvbuttonbox_p.h>


/* Copyright 1998-2011 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, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
 */

#include <gtk/gtk.h>

namespace Gtk
{

VButtonBox::VButtonBox(ButtonBoxStyle layout, int spacing)
:
  // Mark this class as non-derived to allow C++ vfuncs to be skipped.
  Glib::ObjectBase(nullptr),
  ButtonBox(Glib::ConstructParams(vbuttonbox_class_.init()))
{
  set_layout(layout);
  set_spacing(spacing);
}

HButtonBox::HButtonBox(ButtonBoxStyle layout, int spacing)
:
  // Mark this class as non-derived to allow C++ vfuncs to be skipped.
  Glib::ObjectBase(nullptr),
  ButtonBox(Glib::ConstructParams(hbuttonbox_class_.init()))
{
  set_layout(layout);
  set_spacing(spacing);
}

} // namespace Gtk

namespace
{
} // anonymous namespace


namespace Glib
{

Gtk::VButtonBox* wrap(GtkVButtonBox* object, bool take_copy)
{
  return dynamic_cast<Gtk::VButtonBox *> (Glib::wrap_auto ((GObject*)(object), take_copy));
}

} /* namespace Glib */

namespace Gtk
{


/* The *_Class implementation: */

const Glib::Class& VButtonBox_Class::init()
{
  if(!gtype_) // create the GType if necessary
  {
    // Glib::Class has to know the class init function to clone custom types.
    class_init_func_ = &VButtonBox_Class::class_init_function;

    // This is actually just optimized away, apparently with no harm.
    // Make sure that the parent type has been created.
    //CppClassParent::CppObjectType::get_type();

    // Create the wrapper type, with the same class/instance size as the base type.
    register_derived_type(gtk_vbutton_box_get_type());

    // Add derived versions of interfaces, if the C type implements any interfaces:

  }

  return *this;
}


void VButtonBox_Class::class_init_function(void* g_class, void* class_data)
{
  const auto klass = static_cast<BaseClassType*>(g_class);
  CppClassParent::class_init_function(klass, class_data);


}


Glib::ObjectBase* VButtonBox_Class::wrap_new(GObject* o)
{
  return manage(new VButtonBox((GtkVButtonBox*)(o)));

}


/* The implementation: */

VButtonBox::VButtonBox(const Glib::ConstructParams& construct_params)
:
  Gtk::ButtonBox(construct_params)
{
  }

VButtonBox::VButtonBox(GtkVButtonBox* castitem)
:
  Gtk::ButtonBox((GtkButtonBox*)(castitem))
{
  }


VButtonBox::VButtonBox(VButtonBox&& src) noexcept
: Gtk::ButtonBox(std::move(src))
{}

VButtonBox& VButtonBox::operator=(VButtonBox&& src) noexcept
{
  Gtk::ButtonBox::operator=(std::move(src));
  return *this;
}

VButtonBox::~VButtonBox() noexcept
{
  destroy_();
}

VButtonBox::CppClassType VButtonBox::vbuttonbox_class_; // initialize static member

GType VButtonBox::get_type()
{
  return vbuttonbox_class_.init().get_type();
}


GType VButtonBox::get_base_type()
{
  return gtk_vbutton_box_get_type();
}


} // namespace Gtk


namespace Glib
{

Gtk::HButtonBox* wrap(GtkHButtonBox* object, bool take_copy)
{
  return dynamic_cast<Gtk::HButtonBox *> (Glib::wrap_auto ((GObject*)(object), take_copy));
}

} /* namespace Glib */

namespace Gtk
{


/* The *_Class implementation: */

const Glib::Class& HButtonBox_Class::init()
{
  if(!gtype_) // create the GType if necessary
  {
    // Glib::Class has to know the class init function to clone custom types.
    class_init_func_ = &HButtonBox_Class::class_init_function;

    // This is actually just optimized away, apparently with no harm.
    // Make sure that the parent type has been created.
    //CppClassParent::CppObjectType::get_type();

    // Create the wrapper type, with the same class/instance size as the base type.
    register_derived_type(gtk_hbutton_box_get_type());

    // Add derived versions of interfaces, if the C type implements any interfaces:

  }

  return *this;
}


void HButtonBox_Class::class_init_function(void* g_class, void* class_data)
{
  const auto klass = static_cast<BaseClassType*>(g_class);
  CppClassParent::class_init_function(klass, class_data);


}


Glib::ObjectBase* HButtonBox_Class::wrap_new(GObject* o)
{
  return manage(new HButtonBox((GtkHButtonBox*)(o)));

}


/* The implementation: */

HButtonBox::HButtonBox(const Glib::ConstructParams& construct_params)
:
  Gtk::ButtonBox(construct_params)
{
  }

HButtonBox::HButtonBox(GtkHButtonBox* castitem)
:
  Gtk::ButtonBox((GtkButtonBox*)(castitem))
{
  }


HButtonBox::HButtonBox(HButtonBox&& src) noexcept
: Gtk::ButtonBox(std::move(src))
{}

HButtonBox& HButtonBox::operator=(HButtonBox&& src) noexcept
{
  Gtk::ButtonBox::operator=(std::move(src));
  return *this;
}

HButtonBox::~HButtonBox() noexcept
{
  destroy_();
}

HButtonBox::CppClassType HButtonBox::hbuttonbox_class_; // initialize static member

GType HButtonBox::get_type()
{
  return hbuttonbox_class_.init().get_type();
}


GType HButtonBox::get_base_type()
{
  return gtk_hbutton_box_get_type();
}


} // namespace Gtk

#endif // GTKMM_DISABLE_DEPRECATED