// -*- c++ -*- // Generated by gtkmmproc -- DO NOT MODIFY! #ifndef _GTKMM_RC_H #define _GTKMM_RC_H #include /* $Id$ */ /* Copyright (C) 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 #ifndef DOXYGEN_SHOULD_SKIP_THIS typedef struct _GtkRcStyle GtkRcStyle; typedef struct _GtkRcStyleClass GtkRcStyleClass; #endif /* DOXYGEN_SHOULD_SKIP_THIS */ namespace Gtk { class RcStyle_Class; } // namespace Gtk namespace Gtk { class Widget; class Settings; class Style; /** @addtogroup gtkmmEnums Enums and Flags */ /** * @ingroup gtkmmEnums * @par Bitwise operators: * %RcFlags operator|(RcFlags, RcFlags)
* %RcFlags operator&(RcFlags, RcFlags)
* %RcFlags operator^(RcFlags, RcFlags)
* %RcFlags operator~(RcFlags)
* %RcFlags& operator|=(RcFlags&, RcFlags)
* %RcFlags& operator&=(RcFlags&, RcFlags)
* %RcFlags& operator^=(RcFlags&, RcFlags)
*/ enum RcFlags { RC_FG = 1 << 0, RC_BG = 1 << 1, RC_TEXT = 1 << 2, RC_BASE = 1 << 3 }; /** @ingroup gtkmmEnums */ inline RcFlags operator|(RcFlags lhs, RcFlags rhs) { return static_cast(static_cast(lhs) | static_cast(rhs)); } /** @ingroup gtkmmEnums */ inline RcFlags operator&(RcFlags lhs, RcFlags rhs) { return static_cast(static_cast(lhs) & static_cast(rhs)); } /** @ingroup gtkmmEnums */ inline RcFlags operator^(RcFlags lhs, RcFlags rhs) { return static_cast(static_cast(lhs) ^ static_cast(rhs)); } /** @ingroup gtkmmEnums */ inline RcFlags operator~(RcFlags flags) { return static_cast(~static_cast(flags)); } /** @ingroup gtkmmEnums */ inline RcFlags& operator|=(RcFlags& lhs, RcFlags rhs) { return (lhs = static_cast(static_cast(lhs) | static_cast(rhs))); } /** @ingroup gtkmmEnums */ inline RcFlags& operator&=(RcFlags& lhs, RcFlags rhs) { return (lhs = static_cast(static_cast(lhs) & static_cast(rhs))); } /** @ingroup gtkmmEnums */ inline RcFlags& operator^=(RcFlags& lhs, RcFlags rhs) { return (lhs = static_cast(static_cast(lhs) ^ static_cast(rhs))); } } // namespace Gtk #ifndef DOXYGEN_SHOULD_SKIP_THIS namespace Glib { template <> class Value : public Glib::Value_Flags { public: static GType value_type() G_GNUC_CONST; }; } // namespace Glib #endif /* DOXYGEN_SHOULD_SKIP_THIS */ namespace Gtk { class RcStyle : public Glib::Object { #ifndef DOXYGEN_SHOULD_SKIP_THIS public: typedef RcStyle CppObjectType; typedef RcStyle_Class CppClassType; typedef GtkRcStyle BaseObjectType; typedef GtkRcStyleClass BaseClassType; private: friend class RcStyle_Class; static CppClassType rcstyle_class_; private: // noncopyable RcStyle(const RcStyle&); RcStyle& operator=(const RcStyle&); protected: explicit RcStyle(const Glib::ConstructParams& construct_params); explicit RcStyle(GtkRcStyle* castitem); #endif /* DOXYGEN_SHOULD_SKIP_THIS */ public: virtual ~RcStyle(); #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. GtkRcStyle* gobj() { return reinterpret_cast(gobject_); } ///Provides access to the underlying C GObject. const GtkRcStyle* gobj() const { return reinterpret_cast(gobject_); } ///Provides access to the underlying C instance. The caller is responsible for unrefing it. Use when directly setting fields in structs. GtkRcStyle* gobj_copy(); private: protected: RcStyle(); public: static Glib::RefPtr create(); /** Makes a copy of the specified Gtk::RcStyle. This function * will correctly copy an RC style that is a member of a class * derived from Gtk::RcStyle. * @return The resulting Gtk::RcStyle. */ Glib::RefPtr copy() const; void set_name(const Glib::ustring& name); Glib::ustring get_name() const; void set_bg_pixmap_name(Gtk::StateType state, const Glib::ustring& name); Glib::ustring get_bg_pixmap_name(Gtk::StateType state) const; void set_font(const Pango::FontDescription& font_desc); Pango::FontDescription get_font() const; void set_color_flags(Gtk::StateType state, RcFlags flags); void unset_color_flags(Gtk::StateType state, RcFlags flags); RcFlags get_color_flags(Gtk::StateType state) const; void set_fg(Gtk::StateType state, const Gdk::Color& color); Gdk::Color get_fg(Gtk::StateType state) const; void set_bg(Gtk::StateType state, const Gdk::Color& color); Gdk::Color get_bg(Gtk::StateType state) const; void set_text(Gtk::StateType state, const Gdk::Color& color); Gdk::Color get_text(Gtk::StateType state) const; void set_base(Gtk::StateType state, const Gdk::Color& color); Gdk::Color get_base(Gtk::StateType state) const; void set_xthickness(int xthickness); int get_xthickness() const; void set_ythickness(int ythickness); int get_ythickness() const; 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 }; class RC { public: explicit RC(const Glib::ustring& filename); /** Finds all matching RC styles for a given widget, * composites them together, and then creates a * Gtk::Style representing the composite appearance. * * @param widget a Gtk::Widget. * @result the resulting style. */ static Glib::RefPtr