X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/e2478fde622a16d25c66690af353dfdc37e7b582..f6840be66eb772c08f0cbb43de677509d5d132bb:/include/wx/fontmap.h diff --git a/include/wx/fontmap.h b/include/wx/fontmap.h index a997e952ef..d7555d3b57 100644 --- a/include/wx/fontmap.h +++ b/include/wx/fontmap.h @@ -12,10 +12,6 @@ #ifndef _WX_FONTMAPPER_H_ #define _WX_FONTMAPPER_H_ -#if defined(__GNUG__) && !defined(__APPLE__) - #pragma interface "fontmap.h" -#endif - // ---------------------------------------------------------------------------- // headers // ---------------------------------------------------------------------------- @@ -28,18 +24,18 @@ #include "wx/fontutil.h" // for wxNativeEncodingInfo #endif // wxUSE_GUI -#if wxUSE_CONFIG - class WXDLLEXPORT wxConfigBase; +#if wxUSE_CONFIG && wxUSE_FILECONFIG + class WXDLLIMPEXP_BASE wxConfigBase; #endif // wxUSE_CONFIG -class WXDLLEXPORT wxFontMapper; +class WXDLLIMPEXP_CORE wxFontMapper; #if wxUSE_GUI - class WXDLLEXPORT wxWindow; + class WXDLLIMPEXP_CORE wxWindow; #endif // wxUSE_GUI // ============================================================================ -// wxFontMapper manages user-definable correspondence between wxWindows font +// wxFontMapper manages user-definable correspondence between wxWidgets font // encodings and the fonts present on the machine. // // This is a singleton class, font mapper objects can only be accessed using @@ -51,8 +47,10 @@ class WXDLLEXPORT wxFontMapper; // in knowledge of the encodings equivalence // ---------------------------------------------------------------------------- -class WXDLLEXPORT wxFontMapperBase +class WXDLLIMPEXP_BASE wxFontMapperBase { + // For IsWxFontMapper() + friend class WXDLLIMPEXP_CORE wxFontMapper; public: // constructtor and such // --------------------- @@ -64,12 +62,14 @@ public: virtual ~wxFontMapperBase(); // return instance of the wxFontMapper singleton - static wxFontMapper *Get(); + // wxBase code only cares that it's a wxFontMapperBase + // In wxBase, wxFontMapper is only forward declared + // so one cannot implicitly cast from it to wxFontMapperBase. + static wxFontMapperBase *Get(); - // set the sigleton to 'mapper' instance and return previous one + // set the singleton to 'mapper' instance and return previous one static wxFontMapper *Set(wxFontMapper *mapper); - // translates charset strings to encoding // -------------------------------------- @@ -81,7 +81,6 @@ public: virtual wxFontEncoding CharsetToEncoding(const wxString& charset, bool interactive = true); - // information about supported encodings // ------------------------------------- @@ -100,6 +99,12 @@ public: // NB: hard-coded now, but might change later (read it from config?) static wxString GetEncodingDescription(wxFontEncoding encoding); + // find the encoding corresponding to the given name, inverse of + // GetEncodingName() and less general than CharsetToEncoding() + // + // returns wxFONTENCODING_MAX if the name is not a supported encoding + static wxFontEncoding GetEncodingFromName(const wxString& name); + // functions which allow to configure the config object used: by default, // the global one (from wxConfigBase::Get() will be used) and the default @@ -107,7 +112,7 @@ public: // GetDefaultConfigPath() // ---------------------------------------------------------------------- -#if wxUSE_CONFIG +#if wxUSE_CONFIG && wxUSE_FILECONFIG // set the config object to use (may be NULL to use default) void SetConfig(wxConfigBase *config) { m_config = config; } @@ -120,7 +125,7 @@ public: protected: -#if wxUSE_CONFIG +#if wxUSE_CONFIG && wxUSE_FILECONFIG // get the config object we're using -- if it wasn't set explicitly, this // function will use wxConfig::Get() to get the global one wxConfigBase *GetConfig(); @@ -147,7 +152,17 @@ protected: wxString m_configRootPath; #endif // wxUSE_CONFIG + // the real implementation of the base class version of CharsetToEncoding() + // + // returns wxFONTENCODING_UNKNOWN if encoding is unknown and we shouldn't + // ask the user about it, wxFONTENCODING_SYSTEM if it is unknown but we + // should/could ask the user + int NonInteractiveCharsetToEncoding(const wxString& charset); + private: + // pseudo-RTTI since we aren't a wxObject. + virtual bool IsWxFontMapper(); + // the global fontmapper object or NULL static wxFontMapper *sm_instance; @@ -171,7 +186,7 @@ private: #if wxUSE_GUI -class WXDLLEXPORT wxFontMapper : public wxFontMapperBase +class WXDLLIMPEXP_CORE wxFontMapper : public wxFontMapperBase { public: // default ctor @@ -205,7 +220,9 @@ public: bool interactive = true); // checks whether given encoding is available in given face or not. - // If no facename is given, + // + // if no facename is given (default), return true if it's available in any + // facename at alll. virtual bool IsEncodingAvailable(wxFontEncoding encoding, const wxString& facename = wxEmptyString); @@ -219,6 +236,9 @@ public: // the title for the dialogs (note that default is quite reasonable) void SetDialogTitle(const wxString& title) { m_titleDialog = title; } + // GUI code needs to know it's a wxFontMapper because there + // are additional methods in the subclass. + static wxFontMapper *Get(); protected: // GetAltForEncoding() helper: tests for the existence of the given @@ -239,22 +259,19 @@ protected: wxWindow *m_windowParent; private: - DECLARE_NO_COPY_CLASS(wxFontMapper) -}; + // pseudo-RTTI since we aren't a wxObject. + virtual bool IsWxFontMapper(); -#else // !wxUSE_GUI - -class WXDLLEXPORT wxFontMapper : public wxFontMapperBase -{ + DECLARE_NO_COPY_CLASS(wxFontMapper) }; -#endif // wxUSE_GUI/!wxUSE_GUI +#endif // wxUSE_GUI // ---------------------------------------------------------------------------- // global variables // ---------------------------------------------------------------------------- -// the default font mapper for wxWindows programs do NOT use! This is for +// the default font mapper for wxWidgets programs do NOT use! This is for // backward compatibility, use wxFontMapper::Get() instead #define wxTheFontMapper (wxFontMapper::Get())