// Generated by gtkmmproc -- DO NOT MODIFY! #include #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 namespace Gtk { Image::Image(const Gtk::StockID& stock_id, IconSize size) : // Mark this class as non-derived to allow C++ vfuncs to be skipped. Glib::ObjectBase(0), Gtk::Misc(Glib::ConstructParams(image_class_.init(), "stock",stock_id.get_c_str(),"icon-size",(GtkIconSize) int(size), static_cast(0))) {} Image::Image(IconSet& icon_set, IconSize size) : // Mark this class as non-derived to allow C++ vfuncs to be skipped. Glib::ObjectBase(0), Gtk::Misc(Glib::ConstructParams(image_class_.init(), "icon-set",icon_set.gobj(),"icon-size",(GtkIconSize) int(size), static_cast(0))) {} Image::Image(const Glib::RefPtr& animation) : // Mark this class as non-derived to allow C++ vfuncs to be skipped. Glib::ObjectBase(0), Gtk::Misc(Glib::ConstructParams(image_class_.init(), "pixbuf-animation",Glib::unwrap(animation), static_cast(0))) {} void Image::get_pixmap(Glib::RefPtr& pixmap, Glib::RefPtr& mask) const { GdkPixmap* pPixmap = 0; GdkBitmap* pBitmap = 0; gtk_image_get_pixmap(const_cast(gobj()), &pPixmap, &pBitmap); pixmap = Glib::wrap((GdkPixmapObject*) pPixmap, true); mask = Glib::RefPtr::cast_dynamic(Glib::wrap((GdkPixmapObject*) pBitmap, true)); } void Image::get_image(Glib::RefPtr& gdk_image, Glib::RefPtr& mask) const { GdkImage* pImage = 0; GdkBitmap* pBitmap = 0; gtk_image_get_image(const_cast(gobj()), &pImage, &pBitmap); gdk_image = Glib::wrap(pImage, true); mask = Glib::RefPtr::cast_dynamic(Glib::wrap((GdkPixmapObject*) pBitmap, true)); } void Image::get_stock(Gtk::StockID& stock_id, IconSize& size) const { char* pStockID = 0; // GTK+ iconsistency: although not const, it should not be freed. GtkIconSize icon_size = GTK_ICON_SIZE_INVALID; gtk_image_get_stock(const_cast(gobj()), &pStockID, &icon_size); size = IconSize(static_cast(icon_size)); stock_id = Gtk::StockID(pStockID); // the StockID ctor checks for 0 } void Image::get_icon_set(IconSet& icon_set, IconSize& size) const { GtkIconSet* pIconSet = 0; GtkIconSize icon_size = GTK_ICON_SIZE_INVALID; gtk_image_get_icon_set(const_cast(gobj()), &pIconSet, &icon_size); size = IconSize(static_cast(icon_size)); icon_set = Glib::wrap(pIconSet, true); //true = take_copy. } Glib::ustring Image::get_icon_name() const { const gchar* pchIconName = 0; gtk_image_get_icon_name(const_cast(gobj()), &pchIconName, 0); return Glib::convert_const_gchar_ptr_to_ustring(pchIconName); } Glib::ustring Image::get_icon_name(IconSize& size) { const gchar* pchIconName = 0; GtkIconSize cIconSize = GTK_ICON_SIZE_INVALID; gtk_image_get_icon_name(const_cast(gobj()), &pchIconName, &cIconSize); size = (IconSize)cIconSize; return Glib::convert_const_gchar_ptr_to_ustring(pchIconName); } } // namespace Gtk namespace { } // anonymous namespace // static GType Glib::Value::value_type() { return gtk_image_type_get_type(); } namespace Glib { Gtk::Image* wrap(GtkImage* object, bool take_copy) { return dynamic_cast (Glib::wrap_auto ((GObject*)(object), take_copy)); } } /* namespace Glib */ namespace Gtk { /* The *_Class implementation: */ const Glib::Class& Image_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_ = &Image_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_image_get_type()); // Add derived versions of interfaces, if the C type implements any interfaces: } return *this; } void Image_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* Image_Class::wrap_new(GObject* o) { return manage(new Image((GtkImage*)(o))); } /* The implementation: */ Image::Image(const Glib::ConstructParams& construct_params) : Gtk::Misc(construct_params) { } Image::Image(GtkImage* castitem) : Gtk::Misc((GtkMisc*)(castitem)) { } Image::~Image() { destroy_(); } Image::CppClassType Image::image_class_; // initialize static member GType Image::get_type() { return image_class_.init().get_type(); } GType Image::get_base_type() { return gtk_image_get_type(); } Image::Image() : // Mark this class as non-derived to allow C++ vfuncs to be skipped. Glib::ObjectBase(0), Gtk::Misc(Glib::ConstructParams(image_class_.init())) { } Image::Image(const Glib::RefPtr& pixmap, const Glib::RefPtr& mask) : // Mark this class as non-derived to allow C++ vfuncs to be skipped. Glib::ObjectBase(0), Gtk::Misc(Glib::ConstructParams(image_class_.init(), "pixmap", Glib::unwrap(pixmap), "mask", Glib::unwrap(mask), static_cast(0))) { } Image::Image(const Glib::RefPtr& image, const Glib::RefPtr& mask) : // Mark this class as non-derived to allow C++ vfuncs to be skipped. Glib::ObjectBase(0), Gtk::Misc(Glib::ConstructParams(image_class_.init(), "image", Glib::unwrap(image), "mask", Glib::unwrap(mask), static_cast(0))) { } Image::Image(const std::string& file) : // Mark this class as non-derived to allow C++ vfuncs to be skipped. Glib::ObjectBase(0), Gtk::Misc(Glib::ConstructParams(image_class_.init(), "file", file.c_str(), static_cast(0))) { } Image::Image(const Glib::RefPtr& pixbuf) : // Mark this class as non-derived to allow C++ vfuncs to be skipped. Glib::ObjectBase(0), Gtk::Misc(Glib::ConstructParams(image_class_.init(), "pixbuf", Glib::unwrap(pixbuf), static_cast(0))) { } void Image::set(const Glib::RefPtr& pixmap, const Glib::RefPtr& mask) { gtk_image_set_from_pixmap(gobj(), Glib::unwrap(pixmap), Glib::unwrap(mask)); } void Image::set(const Glib::RefPtr& gdk_image, const Glib::RefPtr& mask) { gtk_image_set_from_image(gobj(), Glib::unwrap(gdk_image), Glib::unwrap(mask)); } void Image::set(const std::string& filename) { gtk_image_set_from_file(gobj(), filename.c_str()); } void Image::set(const Glib::RefPtr& pixbuf) { gtk_image_set_from_pixbuf(gobj(), Glib::unwrap(pixbuf)); } void Image::set(const Gtk::StockID& stock_id, IconSize size) { gtk_image_set_from_stock(gobj(), (stock_id).get_c_str(), static_cast(int(size))); } void Image::set(IconSet& icon_set, IconSize size) { gtk_image_set_from_icon_set(gobj(), (icon_set).gobj(), static_cast(int(size))); } void Image::set(const Glib::RefPtr& animation) { gtk_image_set_from_animation(gobj(), Glib::unwrap(animation)); } void Image::set_from_icon_name(const Glib::ustring& icon_name, IconSize size) { gtk_image_set_from_icon_name(gobj(), icon_name.c_str(), static_cast(int(size))); } void Image::clear() { gtk_image_clear(gobj()); } ImageType Image::get_storage_type() const { return ((ImageType)(gtk_image_get_storage_type(const_cast(gobj())))); } Glib::RefPtr Image::get_pixbuf() { Glib::RefPtr retvalue = Glib::wrap(gtk_image_get_pixbuf(gobj())); if(retvalue) retvalue->reference(); //The function does not do a ref for us. return retvalue; } Glib::RefPtr Image::get_pixbuf() const { return const_cast(this)->get_pixbuf(); } Glib::RefPtr Image::get_animation() { Glib::RefPtr retvalue = Glib::wrap(gtk_image_get_animation(gobj())); if(retvalue) retvalue->reference(); //The function does not do a ref for us. return retvalue; } Glib::RefPtr Image::get_animation() const { return const_cast(this)->get_animation(); } int Image::get_pixel_size() const { return gtk_image_get_pixel_size(const_cast(gobj())); } void Image::set_pixel_size(int pixel_size) { gtk_image_set_pixel_size(gobj(), pixel_size); } #ifdef GLIBMM_PROPERTIES_ENABLED Glib::PropertyProxy< Glib::RefPtr > Image::property_pixbuf() { return Glib::PropertyProxy< Glib::RefPtr >(this, "pixbuf"); } #endif //GLIBMM_PROPERTIES_ENABLED #ifdef GLIBMM_PROPERTIES_ENABLED Glib::PropertyProxy_ReadOnly< Glib::RefPtr > Image::property_pixbuf() const { return Glib::PropertyProxy_ReadOnly< Glib::RefPtr >(this, "pixbuf"); } #endif //GLIBMM_PROPERTIES_ENABLED #ifdef GLIBMM_PROPERTIES_ENABLED Glib::PropertyProxy< Glib::RefPtr > Image::property_pixmap() { return Glib::PropertyProxy< Glib::RefPtr >(this, "pixmap"); } #endif //GLIBMM_PROPERTIES_ENABLED #ifdef GLIBMM_PROPERTIES_ENABLED Glib::PropertyProxy_ReadOnly< Glib::RefPtr > Image::property_pixmap() const { return Glib::PropertyProxy_ReadOnly< Glib::RefPtr >(this, "pixmap"); } #endif //GLIBMM_PROPERTIES_ENABLED #ifdef GLIBMM_PROPERTIES_ENABLED Glib::PropertyProxy< Glib::RefPtr > Image::property_image() { return Glib::PropertyProxy< Glib::RefPtr >(this, "image"); } #endif //GLIBMM_PROPERTIES_ENABLED #ifdef GLIBMM_PROPERTIES_ENABLED Glib::PropertyProxy_ReadOnly< Glib::RefPtr > Image::property_image() const { return Glib::PropertyProxy_ReadOnly< Glib::RefPtr >(this, "image"); } #endif //GLIBMM_PROPERTIES_ENABLED #ifdef GLIBMM_PROPERTIES_ENABLED Glib::PropertyProxy< Glib::RefPtr > Image::property_mask() { return Glib::PropertyProxy< Glib::RefPtr >(this, "mask"); } #endif //GLIBMM_PROPERTIES_ENABLED #ifdef GLIBMM_PROPERTIES_ENABLED Glib::PropertyProxy_ReadOnly< Glib::RefPtr > Image::property_mask() const { return Glib::PropertyProxy_ReadOnly< Glib::RefPtr >(this, "mask"); } #endif //GLIBMM_PROPERTIES_ENABLED #ifdef GLIBMM_PROPERTIES_ENABLED Glib::PropertyProxy Image::property_file() { return Glib::PropertyProxy(this, "file"); } #endif //GLIBMM_PROPERTIES_ENABLED #ifdef GLIBMM_PROPERTIES_ENABLED Glib::PropertyProxy_ReadOnly Image::property_file() const { return Glib::PropertyProxy_ReadOnly(this, "file"); } #endif //GLIBMM_PROPERTIES_ENABLED #ifdef GLIBMM_PROPERTIES_ENABLED Glib::PropertyProxy Image::property_stock() { return Glib::PropertyProxy(this, "stock"); } #endif //GLIBMM_PROPERTIES_ENABLED #ifdef GLIBMM_PROPERTIES_ENABLED Glib::PropertyProxy_ReadOnly Image::property_stock() const { return Glib::PropertyProxy_ReadOnly(this, "stock"); } #endif //GLIBMM_PROPERTIES_ENABLED #ifdef GLIBMM_PROPERTIES_ENABLED Glib::PropertyProxy Image::property_icon_set() { return Glib::PropertyProxy(this, "icon-set"); } #endif //GLIBMM_PROPERTIES_ENABLED #ifdef GLIBMM_PROPERTIES_ENABLED Glib::PropertyProxy_ReadOnly Image::property_icon_set() const { return Glib::PropertyProxy_ReadOnly(this, "icon-set"); } #endif //GLIBMM_PROPERTIES_ENABLED #ifdef GLIBMM_PROPERTIES_ENABLED Glib::PropertyProxy Image::property_icon_size() { return Glib::PropertyProxy(this, "icon-size"); } #endif //GLIBMM_PROPERTIES_ENABLED #ifdef GLIBMM_PROPERTIES_ENABLED Glib::PropertyProxy_ReadOnly Image::property_icon_size() const { return Glib::PropertyProxy_ReadOnly(this, "icon-size"); } #endif //GLIBMM_PROPERTIES_ENABLED #ifdef GLIBMM_PROPERTIES_ENABLED Glib::PropertyProxy< Glib::RefPtr > Image::property_pixbuf_animation() { return Glib::PropertyProxy< Glib::RefPtr >(this, "pixbuf-animation"); } #endif //GLIBMM_PROPERTIES_ENABLED #ifdef GLIBMM_PROPERTIES_ENABLED Glib::PropertyProxy_ReadOnly< Glib::RefPtr > Image::property_pixbuf_animation() const { return Glib::PropertyProxy_ReadOnly< Glib::RefPtr >(this, "pixbuf-animation"); } #endif //GLIBMM_PROPERTIES_ENABLED #ifdef GLIBMM_PROPERTIES_ENABLED Glib::PropertyProxy_ReadOnly Image::property_storage_type() const { return Glib::PropertyProxy_ReadOnly(this, "storage-type"); } #endif //GLIBMM_PROPERTIES_ENABLED #ifdef GLIBMM_DEFAULT_SIGNAL_HANDLERS_ENABLED #endif //GLIBMM_DEFAULT_SIGNAL_HANDLERS_ENABLED #ifdef GLIBMM_VFUNCS_ENABLED #endif //GLIBMM_VFUNCS_ENABLED } // namespace Gtk