X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/f6bcfd974ef26faf6f91a62cac09827e09463fd1..36195a44c32bcd2b14cd819ed675bc80fb2255bd:/include/wx/font.h diff --git a/include/wx/font.h b/include/wx/font.h index 706aad009f..b5d1650c3b 100644 --- a/include/wx/font.h +++ b/include/wx/font.h @@ -72,11 +72,14 @@ enum wxFontWeight // ---------------------------------------------------------------------------- class WXDLLEXPORT wxFontRefData; +struct WXDLLEXPORT wxNativeFontInfo; class WXDLLEXPORT wxFontBase : public wxGDIObject { public: // creator function + + // from the font components static wxFont *New( int pointSize, // size of the font in points int family, // see wxFontFamily enum @@ -86,6 +89,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 +110,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 +121,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, ...)