+
+
+class WXDLLEXPORT wxFontRefData: public wxGDIRefData
+{
+ friend class wxFont;
+
+public:
+ wxFontRefData()
+ {
+ Init(10, wxDEFAULT, wxNORMAL, wxNORMAL,
+ false, wxT("applicationfont"), wxFONTENCODING_DEFAULT);
+ }
+
+ wxFontRefData(const wxFontRefData& data)
+ {
+ Init(data.m_pointSize, data.m_family, data.m_style, data.m_weight,
+ data.m_underlined, data.m_faceName, data.m_encoding);
+ }
+
+ wxFontRefData(int size,
+ int family,
+ int style,
+ int weight,
+ bool underlined,
+ const wxString& faceName,
+ wxFontEncoding encoding)
+ {
+ Init(size, family, style, weight, underlined, faceName, encoding);
+ }
+
+ virtual ~wxFontRefData();
+
+ void SetNoAntiAliasing( bool no = true )
+ { m_noAA = no; }
+
+ bool GetNoAntiAliasing() const
+ { return m_noAA; }
+
+ void MacFindFont();
+
+protected:
+ // common part of all ctors
+ void Init(int size,
+ int family,
+ int style,
+ int weight,
+ bool underlined,
+ const wxString& faceName,
+ wxFontEncoding encoding);
+
+ // font characterstics
+ int m_pointSize;
+ int m_family;
+ int m_style;
+ int m_weight;
+ bool m_underlined;
+ wxString m_faceName;
+ wxFontEncoding m_encoding;
+ bool m_noAA; // No anti-aliasing
+
+public:
+#if wxMAC_USE_ATSU_TEXT
+ FMFontFamily m_macFontFamily;
+ FMFontSize m_macFontSize;
+ FMFontStyle m_macFontStyle;
+
+ // ATSU Font Information
+
+ // this is split into an ATSU font id that may
+ // contain some styles (special bold fonts etc) and
+ // these are the additional qd styles that are not
+ // included in the ATSU font id
+ ATSUFontID m_macATSUFontID;
+ FMFontStyle m_macATSUAdditionalQDStyles ;
+
+ // for true themeing support we must store the correct font
+ // information here, as this speeds up and optimizes rendering
+ ThemeFontID m_macThemeFontID ;
+ ATSUStyle m_macATSUStyle ;
+#endif
+#if wxMAC_USE_CORE_TEXT
+ wxCFRef<CTFontRef> m_ctFont;
+ CTFontUIFontType m_macUIFontType;