- wxFont();
- wxFont(int pointSize, int family, int style, int weight, bool underlined = FALSE, const wxString& faceName = wxEmptyString);
- inline wxFont(const wxFont& font) { Ref(font); }
-
- ~wxFont();
-
- bool Create(int pointSize, int family, int style, int weight, bool underlined = FALSE, const wxString& faceName = wxEmptyString);
-
- virtual bool Ok() const { return (m_refData != NULL) ; }
-
- inline int GetPointSize() const { return M_FONTDATA->m_pointSize; }
- inline int GetFamily() const { return M_FONTDATA->m_family; }
- inline int GetStyle() const { return M_FONTDATA->m_style; }
- inline int GetWeight() const { return M_FONTDATA->m_weight; }
- wxString GetFamilyString() const ;
- wxString GetFaceName() const ;
- wxString GetStyleString() const ;
- wxString GetWeightString() const ;
- inline bool GetUnderlined() const { return M_FONTDATA->m_underlined; }
-
- void SetPointSize(int pointSize);
- void SetFamily(int family);
- void SetStyle(int style);
- void SetWeight(int weight);
- void SetFaceName(const wxString& faceName);
- void SetUnderlined(bool underlined);
-
- inline wxFont& operator = (const wxFont& font) { if (*this == font) return (*this); Ref(font); return *this; }
- inline bool operator == (const wxFont& font) { return m_refData == font.m_refData; }
- inline bool operator != (const wxFont& font) { return m_refData != font.m_refData; }
-
- // Implementation
+ // ctors and such
+ wxFont() { }
+
+#if FUTURE_WXWIN_COMPATIBILITY_3_0
+ wxFont(int size,
+ int family,
+ int style,
+ int weight,
+ bool underlined = false,
+ const wxString& face = wxEmptyString,
+ wxFontEncoding encoding = wxFONTENCODING_DEFAULT)
+ {
+ (void)Create(size, (wxFontFamily)family, (wxFontStyle)style, (wxFontWeight)weight, underlined, face, encoding);
+ }
+#endif
+
+ wxFont(int size,
+ wxFontFamily family,
+ wxFontStyle style,
+ wxFontWeight weight,
+ bool underlined = false,
+ const wxString& face = wxEmptyString,
+ wxFontEncoding encoding = wxFONTENCODING_DEFAULT)
+ {
+ Create(size, family, style, weight, underlined, face, encoding);
+ }
+
+ wxFont(const wxSize& pixelSize,
+ wxFontFamily family,
+ wxFontStyle style,
+ wxFontWeight weight,
+ bool underlined = false,
+ const wxString& face = wxEmptyString,
+ wxFontEncoding encoding = wxFONTENCODING_DEFAULT)
+ {
+ Create(10, family, style, weight, underlined, face, encoding);
+ SetPixelSize(pixelSize);
+ }
+
+ bool Create(int size,
+ wxFontFamily family,
+ wxFontStyle style,
+ wxFontWeight weight,
+ bool underlined = false,
+ const wxString& face = wxEmptyString,
+ wxFontEncoding encoding = wxFONTENCODING_DEFAULT);
+
+ wxFont( const wxNativeFontInfo& rInfo
+ ,WXHFONT hFont = 0
+ )
+
+ {
+ (void)Create( rInfo
+ ,hFont
+ );
+ }
+
+ wxFont(const wxString& rsFontDesc);
+
+ bool Create( const wxNativeFontInfo& rInfo
+ ,WXHFONT hFont = 0
+ );
+
+ virtual ~wxFont();
+
+ //
+ // Implement base class pure virtuals
+ //
+ virtual int GetPointSize(void) const;
+ virtual wxFontStyle GetStyle() const;
+ virtual wxFontWeight GetWeight() const;
+ virtual bool GetUnderlined(void) const;
+ virtual wxString GetFaceName(void) const;
+ virtual wxFontEncoding GetEncoding(void) const;
+ virtual const wxNativeFontInfo* GetNativeFontInfo() const;
+
+ virtual void SetPointSize(int nPointSize);
+ virtual void SetFamily(wxFontFamily family);
+ virtual void SetStyle(wxFontStyle style);
+ virtual void SetWeight(wxFontWeight weight);
+ virtual bool SetFaceName(const wxString& rsFaceName);
+ virtual void SetUnderlined(bool bUnderlined);
+ virtual void SetEncoding(wxFontEncoding vEncoding);
+
+ wxDECLARE_COMMON_FONT_METHODS();
+
+ //
+ // For internal use only!
+ //
+ void SetPS(HPS hPS);
+ void SetFM( PFONTMETRICS pFM
+ ,int nNumFonts
+ );
+ //
+ // Implementation only from now on
+ // -------------------------------
+ //
+ virtual bool IsFree(void) const;
+ virtual bool RealizeResource(void);
+ virtual WXHANDLE GetResourceHandle(void) const;
+ virtual bool FreeResource(bool bForce = false);
+
+ WXHFONT GetHFONT(void) const;
+