// Generated by gtkmmproc -- DO NOT MODIFY! #include #include // -*- c++ -*- /* $Id$ */ /* * * Copyright 1998-2002 The gtkmm Development Team * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Library General Public * License as published by the Free Software Foundation; either * version 2 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 * Library General Public License for more details. * * You should have received a copy of the GNU Library General Public * License along with this library; if not, write to the Free * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ #include #include #include #include #include #include namespace Gtk { int Scale::calc_digits_(double step) const { int digits = 0; //Copied from gtk_[h|v]scale_new_with_range(): if (fabs (step) >= 1.0 || step == 0.0) digits = 0; else { digits = abs ((int) floor (log10 (fabs (step)))); if (digits > 5) digits = 5; } return digits; } VScale::VScale(double min, double max, double step) : // Mark this class as non-derived to allow C++ vfuncs to be skipped. Glib::ObjectBase(0), Scale(Glib::ConstructParams(vscale_class_.init())) { Adjustment* adjustment = manage(new Adjustment(min, min, max, step, 10 * step, step)); // The adjustment will be destroyed along with the object set_adjustment(*adjustment); set_digits( calc_digits_(step) ); } VScale::VScale(Adjustment& adjustment) : // Mark this class as non-derived to allow C++ vfuncs to be skipped. Glib::ObjectBase(0), Scale(Glib::ConstructParams(vscale_class_.init())) { set_adjustment(adjustment); } VScale::VScale() : // Mark this class as non-derived to allow C++ vfuncs to be skipped. Glib::ObjectBase(0), Scale(Glib::ConstructParams(vscale_class_.init())) { Adjustment* adjustment = manage(new Adjustment(0.0, 0.0, 0.0, 0.0, 0.0, 0.0)); // The adjustment will be destroyed along with the object set_adjustment(*adjustment); } HScale::HScale(double min, double max, double step) : // Mark this class as non-derived to allow C++ vfuncs to be skipped. Glib::ObjectBase(0), Scale(Glib::ConstructParams(hscale_class_.init())) { Adjustment* adjustment = manage(new Adjustment(min, min, max, step, 10 * step, step)); // The adjustment will be destroyed along with the object set_adjustment(*adjustment); set_digits( calc_digits_(step) ); } HScale::HScale() : // Mark this class as non-derived to allow C++ vfuncs to be skipped. Glib::ObjectBase(0), Scale(Glib::ConstructParams(hscale_class_.init())) { Adjustment* adjustment = manage(new Adjustment(0.0, 0.0, 0.0, 0.0, 0.0, 0.0)); // The adjustment will be destroyed along with the object set_adjustment(*adjustment); } HScale::HScale(Adjustment& adjustment) : // Mark this class as non-derived to allow C++ vfuncs to be skipped. Glib::ObjectBase(0), Scale(Glib::ConstructParams(hscale_class_.init())) { set_adjustment(adjustment); } } // namespace Gtk namespace { static gchar* Scale_signal_format_value_callback(GtkScale* self, gdouble p0,void* data) { using namespace Gtk; typedef sigc::slot< Glib::ustring,double > SlotType; // Do not try to call a signal on a disassociated wrapper. if(Glib::ObjectBase::_get_current_wrapper((GObject*) self)) { #ifdef GLIBMM_EXCEPTIONS_ENABLED try { #endif //GLIBMM_EXCEPTIONS_ENABLED if(sigc::slot_base *const slot = Glib::SignalProxyNormal::data_to_slot(data)) return (strlen((*static_cast(slot))(p0 ).c_str()) ? g_strdup((*static_cast(slot))(p0 ).c_str()) : 0); #ifdef GLIBMM_EXCEPTIONS_ENABLED } catch(...) { Glib::exception_handlers_invoke(); } #endif //GLIBMM_EXCEPTIONS_ENABLED } typedef gchar* RType; return RType(); } static gchar* Scale_signal_format_value_notify_callback(GtkScale* self, gdouble p0, void* data) { using namespace Gtk; typedef sigc::slot< void,double > SlotType; // Do not try to call a signal on a disassociated wrapper. if(Glib::ObjectBase::_get_current_wrapper((GObject*) self)) { #ifdef GLIBMM_EXCEPTIONS_ENABLED try { #endif //GLIBMM_EXCEPTIONS_ENABLED if(sigc::slot_base *const slot = Glib::SignalProxyNormal::data_to_slot(data)) (*static_cast(slot))(p0 ); #ifdef GLIBMM_EXCEPTIONS_ENABLED } catch(...) { Glib::exception_handlers_invoke(); } #endif //GLIBMM_EXCEPTIONS_ENABLED } typedef gchar* RType; return RType(); } static const Glib::SignalProxyInfo Scale_signal_format_value_info = { "format_value", (GCallback) &Scale_signal_format_value_callback, (GCallback) &Scale_signal_format_value_notify_callback }; } // anonymous namespace namespace Glib { Gtk::Scale* wrap(GtkScale* object, bool take_copy) { return dynamic_cast (Glib::wrap_auto ((GObject*)(object), take_copy)); } } /* namespace Glib */ namespace Gtk { /* The *_Class implementation: */ const Glib::Class& Scale_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_ = &Scale_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_scale_get_type()); // Add derived versions of interfaces, if the C type implements any interfaces: } return *this; } void Scale_Class::class_init_function(void* g_class, void* class_data) { BaseClassType *const klass = static_cast(g_class); CppClassParent::class_init_function(klass, class_data); #ifdef GLIBMM_VFUNCS_ENABLED klass->draw_value = &draw_value_vfunc_callback; #endif //GLIBMM_VFUNCS_ENABLED #ifdef GLIBMM_DEFAULT_SIGNAL_HANDLERS_ENABLED klass->format_value = &format_value_callback; #endif //GLIBMM_DEFAULT_SIGNAL_HANDLERS_ENABLED } #ifdef GLIBMM_VFUNCS_ENABLED void Scale_Class::draw_value_vfunc_callback(GtkScale* self) { Glib::ObjectBase *const obj_base = static_cast( Glib::ObjectBase::_get_current_wrapper((GObject*)self)); // Non-gtkmmproc-generated custom classes implicitly call the default // Glib::ObjectBase constructor, which sets is_derived_. But gtkmmproc- // generated classes can use this optimisation, which avoids the unnecessary // parameter conversions if there is no possibility of the virtual function // being overridden: if(obj_base && obj_base->is_derived_()) { CppObjectType *const obj = dynamic_cast(obj_base); if(obj) // This can be NULL during destruction. { #ifdef GLIBMM_EXCEPTIONS_ENABLED try // Trap C++ exceptions which would normally be lost because this is a C callback. { #endif //GLIBMM_EXCEPTIONS_ENABLED // Call the virtual member method, which derived classes might override. obj->draw_value_vfunc(); return; #ifdef GLIBMM_EXCEPTIONS_ENABLED } catch(...) { Glib::exception_handlers_invoke(); } #endif //GLIBMM_EXCEPTIONS_ENABLED } } BaseClassType *const base = static_cast( g_type_class_peek_parent(G_OBJECT_GET_CLASS(self)) // Get the parent class of the object class (The original underlying C class). ); // Call the original underlying C function: if(base && base->draw_value) (*base->draw_value)(self); } #endif //GLIBMM_VFUNCS_ENABLED #ifdef GLIBMM_DEFAULT_SIGNAL_HANDLERS_ENABLED gchar* Scale_Class::format_value_callback(GtkScale* self, gdouble p0) { Glib::ObjectBase *const obj_base = static_cast( Glib::ObjectBase::_get_current_wrapper((GObject*)self)); // Non-gtkmmproc-generated custom classes implicitly call the default // Glib::ObjectBase constructor, which sets is_derived_. But gtkmmproc- // generated classes can use this optimisation, which avoids the unnecessary // parameter conversions if there is no possibility of the virtual function // being overridden: if(obj_base && obj_base->is_derived_()) { CppObjectType *const obj = dynamic_cast(obj_base); if(obj) // This can be NULL during destruction. { #ifdef GLIBMM_EXCEPTIONS_ENABLED try // Trap C++ exceptions which would normally be lost because this is a C callback. { #endif //GLIBMM_EXCEPTIONS_ENABLED // Call the virtual member method, which derived classes might override. return (strlen(obj->on_format_value(p0 ).c_str()) ? g_strdup(obj->on_format_value(p0 ).c_str()) : 0); #ifdef GLIBMM_EXCEPTIONS_ENABLED } catch(...) { Glib::exception_handlers_invoke(); } #endif //GLIBMM_EXCEPTIONS_ENABLED } } BaseClassType *const base = static_cast( g_type_class_peek_parent(G_OBJECT_GET_CLASS(self)) // Get the parent class of the object class (The original underlying C class). ); // Call the original underlying C function: if(base && base->format_value) return (*base->format_value)(self, p0); typedef gchar* RType; return RType(); } #endif //GLIBMM_DEFAULT_SIGNAL_HANDLERS_ENABLED Glib::ObjectBase* Scale_Class::wrap_new(GObject* o) { return manage(new Scale((GtkScale*)(o))); } /* The implementation: */ Scale::Scale(const Glib::ConstructParams& construct_params) : Gtk::Range(construct_params) { } Scale::Scale(GtkScale* castitem) : Gtk::Range((GtkRange*)(castitem)) { } Scale::~Scale() { destroy_(); } Scale::CppClassType Scale::scale_class_; // initialize static member GType Scale::get_type() { return scale_class_.init().get_type(); } GType Scale::get_base_type() { return gtk_scale_get_type(); } Scale::Scale() : // Mark this class as non-derived to allow C++ vfuncs to be skipped. Glib::ObjectBase(0), Gtk::Range(Glib::ConstructParams(scale_class_.init())) { } void Scale::set_digits(int digits) { gtk_scale_set_digits(gobj(), digits); } int Scale::get_digits() const { return gtk_scale_get_digits(const_cast(gobj())); } void Scale::set_draw_value(bool draw_value) { gtk_scale_set_draw_value(gobj(), static_cast(draw_value)); } bool Scale::get_draw_value() const { return gtk_scale_get_draw_value(const_cast(gobj())); } void Scale::set_value_pos(PositionType pos) { gtk_scale_set_value_pos(gobj(), ((GtkPositionType)(pos))); } PositionType Scale::get_value_pos() const { return ((PositionType)(gtk_scale_get_value_pos(const_cast(gobj())))); } Glib::RefPtr Scale::get_layout() { Glib::RefPtr retvalue = Glib::wrap(gtk_scale_get_layout(gobj())); if(retvalue) retvalue->reference(); //The function does not do a ref for us. return retvalue; } Glib::RefPtr Scale::get_layout() const { return const_cast(this)->get_layout(); } void Scale::get_layout_offsets(int& x, int& y) const { gtk_scale_get_layout_offsets(const_cast(gobj()), &x, &y); } Glib::SignalProxy1< Glib::ustring,double > Scale::signal_format_value() { return Glib::SignalProxy1< Glib::ustring,double >(this, &Scale_signal_format_value_info); } #ifdef GLIBMM_PROPERTIES_ENABLED Glib::PropertyProxy Scale::property_digits() { return Glib::PropertyProxy(this, "digits"); } #endif //GLIBMM_PROPERTIES_ENABLED #ifdef GLIBMM_PROPERTIES_ENABLED Glib::PropertyProxy_ReadOnly Scale::property_digits() const { return Glib::PropertyProxy_ReadOnly(this, "digits"); } #endif //GLIBMM_PROPERTIES_ENABLED #ifdef GLIBMM_PROPERTIES_ENABLED Glib::PropertyProxy Scale::property_draw_value() { return Glib::PropertyProxy(this, "draw-value"); } #endif //GLIBMM_PROPERTIES_ENABLED #ifdef GLIBMM_PROPERTIES_ENABLED Glib::PropertyProxy_ReadOnly Scale::property_draw_value() const { return Glib::PropertyProxy_ReadOnly(this, "draw-value"); } #endif //GLIBMM_PROPERTIES_ENABLED #ifdef GLIBMM_PROPERTIES_ENABLED Glib::PropertyProxy Scale::property_value_pos() { return Glib::PropertyProxy(this, "value-pos"); } #endif //GLIBMM_PROPERTIES_ENABLED #ifdef GLIBMM_PROPERTIES_ENABLED Glib::PropertyProxy_ReadOnly Scale::property_value_pos() const { return Glib::PropertyProxy_ReadOnly(this, "value-pos"); } #endif //GLIBMM_PROPERTIES_ENABLED #ifdef GLIBMM_DEFAULT_SIGNAL_HANDLERS_ENABLED Glib::ustring Gtk::Scale::on_format_value(double value) { BaseClassType *const base = static_cast( g_type_class_peek_parent(G_OBJECT_GET_CLASS(gobject_)) // Get the parent class of the object class (The original underlying C class). ); if(base && base->format_value) return Glib::convert_const_gchar_ptr_to_ustring((*base->format_value)(gobj(),value)); typedef Glib::ustring RType; return RType(); } #endif //GLIBMM_DEFAULT_SIGNAL_HANDLERS_ENABLED #ifdef GLIBMM_VFUNCS_ENABLED void Gtk::Scale::draw_value_vfunc() { BaseClassType *const base = static_cast( g_type_class_peek_parent(G_OBJECT_GET_CLASS(gobject_)) // Get the parent class of the object class (The original underlying C class). ); if(base && base->draw_value) (*base->draw_value)(gobj()); } #endif //GLIBMM_VFUNCS_ENABLED } // namespace Gtk namespace Glib { Gtk::VScale* wrap(GtkVScale* object, bool take_copy) { return dynamic_cast (Glib::wrap_auto ((GObject*)(object), take_copy)); } } /* namespace Glib */ namespace Gtk { /* The *_Class implementation: */ const Glib::Class& VScale_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_ = &VScale_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_vscale_get_type()); // Add derived versions of interfaces, if the C type implements any interfaces: } return *this; } void VScale_Class::class_init_function(void* g_class, void* class_data) { BaseClassType *const klass = static_cast(g_class); CppClassParent::class_init_function(klass, class_data); #ifdef GLIBMM_VFUNCS_ENABLED #endif //GLIBMM_VFUNCS_ENABLED #ifdef GLIBMM_DEFAULT_SIGNAL_HANDLERS_ENABLED #endif //GLIBMM_DEFAULT_SIGNAL_HANDLERS_ENABLED } #ifdef GLIBMM_VFUNCS_ENABLED #endif //GLIBMM_VFUNCS_ENABLED #ifdef GLIBMM_DEFAULT_SIGNAL_HANDLERS_ENABLED #endif //GLIBMM_DEFAULT_SIGNAL_HANDLERS_ENABLED Glib::ObjectBase* VScale_Class::wrap_new(GObject* o) { return manage(new VScale((GtkVScale*)(o))); } /* The implementation: */ VScale::VScale(const Glib::ConstructParams& construct_params) : Gtk::Scale(construct_params) { } VScale::VScale(GtkVScale* castitem) : Gtk::Scale((GtkScale*)(castitem)) { } VScale::~VScale() { destroy_(); } VScale::CppClassType VScale::vscale_class_; // initialize static member GType VScale::get_type() { return vscale_class_.init().get_type(); } GType VScale::get_base_type() { return gtk_vscale_get_type(); } #ifdef GLIBMM_DEFAULT_SIGNAL_HANDLERS_ENABLED #endif //GLIBMM_DEFAULT_SIGNAL_HANDLERS_ENABLED #ifdef GLIBMM_VFUNCS_ENABLED #endif //GLIBMM_VFUNCS_ENABLED } // namespace Gtk namespace Glib { Gtk::HScale* wrap(GtkHScale* object, bool take_copy) { return dynamic_cast (Glib::wrap_auto ((GObject*)(object), take_copy)); } } /* namespace Glib */ namespace Gtk { /* The *_Class implementation: */ const Glib::Class& HScale_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_ = &HScale_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_hscale_get_type()); // Add derived versions of interfaces, if the C type implements any interfaces: } return *this; } void HScale_Class::class_init_function(void* g_class, void* class_data) { BaseClassType *const klass = static_cast(g_class); CppClassParent::class_init_function(klass, class_data); #ifdef GLIBMM_VFUNCS_ENABLED #endif //GLIBMM_VFUNCS_ENABLED #ifdef GLIBMM_DEFAULT_SIGNAL_HANDLERS_ENABLED #endif //GLIBMM_DEFAULT_SIGNAL_HANDLERS_ENABLED } #ifdef GLIBMM_VFUNCS_ENABLED #endif //GLIBMM_VFUNCS_ENABLED #ifdef GLIBMM_DEFAULT_SIGNAL_HANDLERS_ENABLED #endif //GLIBMM_DEFAULT_SIGNAL_HANDLERS_ENABLED Glib::ObjectBase* HScale_Class::wrap_new(GObject* o) { return manage(new HScale((GtkHScale*)(o))); } /* The implementation: */ HScale::HScale(const Glib::ConstructParams& construct_params) : Gtk::Scale(construct_params) { } HScale::HScale(GtkHScale* castitem) : Gtk::Scale((GtkScale*)(castitem)) { } HScale::~HScale() { destroy_(); } HScale::CppClassType HScale::hscale_class_; // initialize static member GType HScale::get_type() { return hscale_class_.init().get_type(); } GType HScale::get_base_type() { return gtk_hscale_get_type(); } #ifdef GLIBMM_DEFAULT_SIGNAL_HANDLERS_ENABLED #endif //GLIBMM_DEFAULT_SIGNAL_HANDLERS_ENABLED #ifdef GLIBMM_VFUNCS_ENABLED #endif //GLIBMM_VFUNCS_ENABLED } // namespace Gtk