// -*- c++ -*- // Generated by gtkmmproc -- DO NOT MODIFY! #ifndef _GIOMM_ICON_H #define _GIOMM_ICON_H #include // -*- Mode: C++; indent-tabs-mode: nil; c-basic-offset: 2 -*- /* Copyright (C) 2007 The giomm 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 #ifndef DOXYGEN_SHOULD_SKIP_THIS typedef struct _GIconIface GIconIface; #endif /* DOXYGEN_SHOULD_SKIP_THIS */ #ifndef DOXYGEN_SHOULD_SKIP_THIS typedef struct _GIcon GIcon; typedef struct _GIconClass GIconClass; #endif /* DOXYGEN_SHOULD_SKIP_THIS */ namespace Gio { class Icon_Class; } // namespace Gio namespace Gio { /** This is a very minimal interface for icons. It provides functions for checking the equality of two icons and hashing of icons. * Glib::Icon does not provide the actual pixmap for the icon as this is out of GIO's scope. However implementations of Icon may contain the name of an * icon (see ThemedIcon), or the path to an icon (see LoadableIcon). * * To obtain a hash of an Icon instance, see hash(). * * To check if two Icon instances are equal, see equal(). * * @newin2p16 */ class Icon : public Glib::Interface { #ifndef DOXYGEN_SHOULD_SKIP_THIS public: typedef Icon CppObjectType; typedef Icon_Class CppClassType; typedef GIcon BaseObjectType; typedef GIconIface BaseClassType; private: friend class Icon_Class; static CppClassType icon_class_; // noncopyable Icon(const Icon&); Icon& operator=(const Icon&); protected: Icon(); // you must derive from this class /** Called by constructors of derived classes. Provide the result of * the Class init() function to ensure that it is properly * initialized. * * @param interface_class The Class object for the derived type. */ explicit Icon(const Glib::Interface_Class& interface_class); public: // This is public so that C++ wrapper instances can be // created for C instances of unwrapped types. // For instance, if an unexpected C type implements the C interface. explicit Icon(GIcon* castitem); protected: #endif /* DOXYGEN_SHOULD_SKIP_THIS */ public: virtual ~Icon(); static void add_interface(GType gtype_implementer); #ifndef DOXYGEN_SHOULD_SKIP_THIS static GType get_type() G_GNUC_CONST; static GType get_base_type() G_GNUC_CONST; #endif ///Provides access to the underlying C GObject. GIcon* gobj() { return reinterpret_cast(gobject_); } ///Provides access to the underlying C GObject. const GIcon* gobj() const { return reinterpret_cast(gobject_); } private: public: /** Gets a hash for an icon. * @param icon #gconstpointer to an icon object. * @return A unsigned int containing a hash for the @a icon, suitable for * use in a HashTable or similar data structure. */ guint hash() const; // TODO: should this, and File's equal(), be virtual, in order to // be available to derived classes? bool equal(const Glib::RefPtr& other) const; //_WRAP_VFUNC(guint hash() const, "hash") // TODO: also kind of related to equal() being virtual or not, // do we need to have equal_vfunc()? Or rather, why would we want // to have it generally... public: public: //C++ methods used to invoke GTK+ virtual functions: #ifdef GLIBMM_VFUNCS_ENABLED #endif //GLIBMM_VFUNCS_ENABLED protected: //GTK+ Virtual Functions (override these to change behaviour): #ifdef GLIBMM_VFUNCS_ENABLED #endif //GLIBMM_VFUNCS_ENABLED //Default Signal Handlers:: #ifdef GLIBMM_DEFAULT_SIGNAL_HANDLERS_ENABLED #endif //GLIBMM_DEFAULT_SIGNAL_HANDLERS_ENABLED }; } // namespace Gio namespace Glib { /** A Glib::wrap() method for this object. * * @param object The C instance. * @param take_copy False if the result should take ownership of the C instance. True if it should take a new copy or ref. * @result A C++ instance that wraps this C instance. * * @relates Gio::Icon */ Glib::RefPtr wrap(GIcon* object, bool take_copy = false); } // namespace Glib #endif /* _GIOMM_ICON_H */