X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/3d5f724f8ee159b52458384c1eeebca0e9a2bebe..d8f2f99ff72b7aa656765799936f0a1038cf3a8b:/include/wx/univ/theme.h diff --git a/include/wx/univ/theme.h b/include/wx/univ/theme.h index abc19d6631..a386a2cca8 100644 --- a/include/wx/univ/theme.h +++ b/include/wx/univ/theme.h @@ -76,6 +76,34 @@ private: friend struct WXDLLEXPORT wxThemeInfo; }; +// ---------------------------------------------------------------------------- +// wxDelegateTheme: it is impossible to inherit from any of standard +// themes as their declarations are in private code, but you can use this +// class to override only some of their functions - all the other ones +// will be left to the original theme +// ---------------------------------------------------------------------------- + +class wxDelegateTheme : public wxTheme +{ +public: + wxDelegateTheme(const wxChar *theme); + virtual ~wxDelegateTheme(); + + virtual wxRenderer *GetRenderer(); + virtual wxArtProvider *GetArtProvider(); + virtual wxInputHandler *GetInputHandler(const wxString& control, + wxInputConsumer *consumer); + virtual wxColourScheme *GetColourScheme(); + +protected: + // gets or creates theme and sets m_theme to point to it, + // returns true on success + bool GetOrCreateTheme(); + + wxString m_themeName; + wxTheme *m_theme; +}; + // ---------------------------------------------------------------------------- // dynamic theme creation helpers // ----------------------------------------------------------------------------