// Generated by gtkmmproc -- DO NOT MODIFY! #include #include /* Copyright 2003 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 //For gtk_icon_theme_error_get_type(). namespace Gtk { void IconTheme::set_search_path(const Glib::ArrayHandle& path) { gtk_icon_theme_set_search_path(gobj(), const_cast(path.data()), path.size()); } Glib::ArrayHandle IconTheme::get_search_path() const { int temp_int = 0; gchar** temp_path = 0; gtk_icon_theme_get_search_path(const_cast(gobj()), &temp_path, &temp_int); return Glib::ArrayHandle((const char**) temp_path, temp_int, Glib::OWNERSHIP_DEEP); } Glib::ArrayHandle IconTheme::get_icon_sizes(const Glib::ustring& icon_name) const { int* pArrayInts = gtk_icon_theme_get_icon_sizes(const_cast(gobj()), icon_name.c_str()); //pArrayInts is null-terminated. return Glib::ArrayHandle(pArrayInts, Glib::OWNERSHIP_SHALLOW); } Glib::ListHandle IconTheme::list_icons() const { return Glib::ListHandle(gtk_icon_theme_list_icons(const_cast(gobj()), 0 /* means all icons according to the C documentation. */ ), Glib::OWNERSHIP_SHALLOW); } } // namespace Gtk namespace { static const Glib::SignalProxyInfo IconTheme_signal_changed_info = { "changed", (GCallback) &Glib::SignalProxyNormal::slot0_void_callback, (GCallback) &Glib::SignalProxyNormal::slot0_void_callback }; } // anonymous namespace Gtk::IconThemeError::IconThemeError(Gtk::IconThemeError::Code error_code, const Glib::ustring& error_message) : Glib::Error (GTK_ICON_THEME_ERROR, error_code, error_message) {} Gtk::IconThemeError::IconThemeError(GError* gobject) : Glib::Error (gobject) {} Gtk::IconThemeError::Code Gtk::IconThemeError::code() const { return static_cast(Glib::Error::code()); } #ifdef GLIBMM_EXCEPTIONS_ENABLED void Gtk::IconThemeError::throw_func(GError* gobject) { throw Gtk::IconThemeError(gobject); } #else //When not using exceptions, we just pass the Exception object around without throwing it: std::auto_ptr Gtk::IconThemeError::throw_func(GError* gobject) { return std::auto_ptr(new Gtk::IconThemeError(gobject)); } #endif //GLIBMM_EXCEPTIONS_ENABLED // static GType Glib::Value::value_type() { return gtk_icon_theme_error_get_type(); } namespace Glib { Glib::RefPtr wrap(GtkIconTheme* object, bool take_copy) { return Glib::RefPtr( dynamic_cast (Glib::wrap_auto ((GObject*)(object), take_copy)) ); //We use dynamic_cast<> in case of multiple inheritance. } } /* namespace Glib */ namespace Gtk { /* The *_Class implementation: */ const Glib::Class& IconTheme_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_ = &IconTheme_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_icon_theme_get_type()); // Add derived versions of interfaces, if the C type implements any interfaces: } return *this; } void IconTheme_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 klass->changed = &changed_callback; #endif //GLIBMM_DEFAULT_SIGNAL_HANDLERS_ENABLED } #ifdef GLIBMM_VFUNCS_ENABLED #endif //GLIBMM_VFUNCS_ENABLED #ifdef GLIBMM_DEFAULT_SIGNAL_HANDLERS_ENABLED void IconTheme_Class::changed_callback(GtkIconTheme* 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->on_changed(); 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->changed) (*base->changed)(self); } #endif //GLIBMM_DEFAULT_SIGNAL_HANDLERS_ENABLED Glib::ObjectBase* IconTheme_Class::wrap_new(GObject* object) { return new IconTheme((GtkIconTheme*)object); } /* The implementation: */ GtkIconTheme* IconTheme::gobj_copy() { reference(); return gobj(); } IconTheme::IconTheme(const Glib::ConstructParams& construct_params) : Glib::Object(construct_params) {} IconTheme::IconTheme(GtkIconTheme* castitem) : Glib::Object((GObject*)(castitem)) {} IconTheme::~IconTheme() {} IconTheme::CppClassType IconTheme::icontheme_class_; // initialize static member GType IconTheme::get_type() { return icontheme_class_.init().get_type(); } GType IconTheme::get_base_type() { return gtk_icon_theme_get_type(); } IconTheme::IconTheme() : // Mark this class as non-derived to allow C++ vfuncs to be skipped. Glib::ObjectBase(0), Glib::Object(Glib::ConstructParams(icontheme_class_.init())) { } Glib::RefPtr IconTheme::create() { return Glib::RefPtr( new IconTheme() ); } Glib::RefPtr IconTheme::get_default() { Glib::RefPtr retvalue = Glib::wrap(gtk_icon_theme_get_default()); if(retvalue) retvalue->reference(); //The function does not do a ref for us. return retvalue; } Glib::RefPtr IconTheme::get_for_screen(const Glib::RefPtr& screen) { Glib::RefPtr retvalue = Glib::wrap(gtk_icon_theme_get_for_screen(Glib::unwrap(screen))); if(retvalue) retvalue->reference(); //The function does not do a ref for us. return retvalue; } void IconTheme::set_screen(const Glib::RefPtr& screen) { gtk_icon_theme_set_screen(gobj(), Glib::unwrap(screen)); } void IconTheme::append_search_path(const Glib::ustring& path) { gtk_icon_theme_append_search_path(gobj(), path.c_str()); } void IconTheme::prepend_search_path(const Glib::ustring& path) { gtk_icon_theme_prepend_search_path(gobj(), path.c_str()); } void IconTheme::set_custom_theme(const Glib::ustring& theme_name) { gtk_icon_theme_set_custom_theme(gobj(), theme_name.c_str()); } bool IconTheme::has_icon(const Glib::ustring& icon_name) const { return gtk_icon_theme_has_icon(const_cast(gobj()), icon_name.c_str()); } IconInfo IconTheme::lookup_icon(const Glib::ustring& icon_name, int size, IconLookupFlags flags) const { return Glib::wrap(gtk_icon_theme_lookup_icon(const_cast(gobj()), icon_name.c_str(), size, ((GtkIconLookupFlags)(flags)))); } IconInfo IconTheme::choose_icon(const Glib::StringArrayHandle& icon_names, int size, IconLookupFlags flags) { return Glib::wrap(gtk_icon_theme_choose_icon(gobj(), const_cast((icon_names).data()), size, ((GtkIconLookupFlags)(flags)))); } #ifdef GLIBMM_EXCEPTIONS_ENABLED Glib::RefPtr IconTheme::load_icon(const Glib::ustring& icon_name, int size, IconLookupFlags flags) const #else Glib::RefPtr IconTheme::load_icon(const Glib::ustring& icon_name, int size, IconLookupFlags flags, std::auto_ptr& error) const #endif //GLIBMM_EXCEPTIONS_ENABLED { GError* gerror = 0; Glib::RefPtr retvalue = Glib::wrap(gtk_icon_theme_load_icon(const_cast(gobj()), icon_name.c_str(), size, ((GtkIconLookupFlags)(flags)), &(gerror))); #ifdef GLIBMM_EXCEPTIONS_ENABLED if(gerror) ::Glib::Error::throw_exception(gerror); #else if(gerror) error = ::Glib::Error::throw_exception(gerror); #endif //GLIBMM_EXCEPTIONS_ENABLED return retvalue; } Glib::ListHandle IconTheme::list_icons(const Glib::ustring& context) const { return Glib::ListHandle(gtk_icon_theme_list_icons(const_cast(gobj()), context.c_str()), Glib::OWNERSHIP_SHALLOW); } Glib::ListHandle IconTheme::list_contexts() const { return Glib::ListHandle(gtk_icon_theme_list_contexts(const_cast(gobj())), Glib::OWNERSHIP_SHALLOW); } Glib::ustring IconTheme::get_example_icon_name() const { return Glib::convert_return_gchar_ptr_to_ustring(gtk_icon_theme_get_example_icon_name(const_cast(gobj()))); } bool IconTheme::rescan_if_needed() { return gtk_icon_theme_rescan_if_needed(gobj()); } void IconTheme::add_builtin_icon(const Glib::ustring& icon_name, int size, const Glib::RefPtr& pixbuf) { gtk_icon_theme_add_builtin_icon(icon_name.c_str(), size, Glib::unwrap(pixbuf)); } Glib::SignalProxy0< void > IconTheme::signal_changed() { return Glib::SignalProxy0< void >(this, &IconTheme_signal_changed_info); } #ifdef GLIBMM_DEFAULT_SIGNAL_HANDLERS_ENABLED void Gtk::IconTheme::on_changed() { 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->changed) (*base->changed)(gobj()); } #endif //GLIBMM_DEFAULT_SIGNAL_HANDLERS_ENABLED #ifdef GLIBMM_VFUNCS_ENABLED #endif //GLIBMM_VFUNCS_ENABLED } // namespace Gtk