X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/f6bcfd974ef26faf6f91a62cac09827e09463fd1..2e9760c0ee8b20ea5c85e7cacd016e84957fcebe:/include/wx/font.h diff --git a/include/wx/font.h b/include/wx/font.h index 706aad009f..d38bd307f3 100644 --- a/include/wx/font.h +++ b/include/wx/font.h @@ -72,11 +72,17 @@ enum wxFontWeight // ---------------------------------------------------------------------------- class WXDLLEXPORT wxFontRefData; +struct WXDLLEXPORT wxNativeFontInfo; class WXDLLEXPORT wxFontBase : public wxGDIObject { public: // creator function +#ifdef __WXMAC_X__ + virtual ~wxFontBase() {} // Added min for Mac X +#endif + + // from the font components static wxFont *New( int pointSize, // size of the font in points int family, // see wxFontFamily enum @@ -86,6 +92,12 @@ public: const wxString& face = wxEmptyString, // facename wxFontEncoding encoding = wxFONTENCODING_DEFAULT); // ISO8859-X, ... + // from the (opaque) native font description object + static wxFont *New(const wxNativeFontInfo& nativeFontDesc); + + // from the string representation of wxNativeFontInfo + static wxFont *New(const wxString& strNativeFontDesc); + // was the font successfully created? bool Ok() const { return m_refData != NULL; } @@ -101,6 +113,8 @@ public: virtual bool GetUnderlined() const = 0; virtual wxString GetFaceName() const = 0; virtual wxFontEncoding GetEncoding() const = 0; + virtual wxNativeFontInfo *GetNativeFontInfo() const; + wxString GetNativeFontInfoDesc() const; // change the font characteristics virtual void SetPointSize( int pointSize ) = 0; @@ -110,6 +124,9 @@ public: virtual void SetFaceName( const wxString& faceName ) = 0; virtual void SetUnderlined( bool underlined ) = 0; virtual void SetEncoding(wxFontEncoding encoding) = 0; + virtual void SetNativeFontInfo(const wxNativeFontInfo& info); + + // VZ: there is no void SetNativeFontInfo(const wxString& info), needed? // translate the fonts into human-readable string (i.e. GetStyleString() // will return "wxITALIC" for an italic font, ...)