X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/e99762c031bf2c71af7f856c1d713bce0422acaa..60e2e6c0ffe4d400e63f8567e815dcf7aa0dd06e:/include/wx/os2/font.h diff --git a/include/wx/os2/font.h b/include/wx/os2/font.h index 410e0bc200..a306601251 100644 --- a/include/wx/os2/font.h +++ b/include/wx/os2/font.h @@ -14,6 +14,7 @@ #include "wx/gdiobj.h" #include "wx/os2/private.h" +#include "wx/fontutil.h" WXDLLEXPORT_DATA(extern const wxChar*) wxEmptyString; @@ -39,9 +40,30 @@ public: { Init(); - (void)Create(nSize, nFamily, nStyle, nWeight, bUnderlined, rsFace, vEncoding); + (void)Create( nSize + ,nFamily + ,nStyle + ,nWeight + ,bUnderlined + ,rsFace + ,vEncoding + ); } + wxFont( const wxNativeFontInfo& rInfo + ,WXHFONT hFont = 0 + ) + + { + Init(); + + (void)Create( rInfo + ,hFont + ); + } + + wxFont(const wxString& rsFontDesc); + bool Create( int nSize ,int nFamily ,int nStyle @@ -50,6 +72,9 @@ public: ,const wxString& rsFace = wxEmptyString ,wxFontEncoding vEncoding = wxFONTENCODING_DEFAULT ); + bool Create( const wxNativeFontInfo& rInfo + ,WXHFONT hFont = 0 + ); virtual ~wxFont(); @@ -61,14 +86,14 @@ public: // // Implement base class pure virtuals // - virtual int GetPointSize(void) const; - virtual int GetFamily(void) const; - virtual int GetStyle(void) const; - virtual int GetWeight(void) const; - virtual bool GetUnderlined(void) const; - virtual wxString GetFaceName(void) const; - virtual wxFontEncoding GetEncoding(void) const; - virtual HPS GetPS(void) const; + virtual int GetPointSize(void) const; + virtual int GetFamily(void) const; + virtual int GetStyle(void) const; + virtual int GetWeight(void) const; + virtual bool GetUnderlined(void) const; + virtual wxString GetFaceName(void) const; + virtual wxFontEncoding GetEncoding(void) const; + virtual wxNativeFontInfo* GetNativeFontInfo() const; virtual void SetPointSize(int nPointSize); virtual void SetFamily(int nFamily); @@ -77,21 +102,25 @@ public: virtual void SetFaceName(const wxString& rsFaceName); virtual void SetUnderlined(bool bUnderlined); virtual void SetEncoding(wxFontEncoding vEncoding); - virtual void SetPS(HPS hPS); - virtual void SetFM( PFONTMETRICS pFM - ,int nNumFonts - ); + virtual void SetNativeFontInfo(const wxNativeFontInfo& rInfo); + // + // For internal use only! + // + void SetPS(HPS hPS); + void SetFM( PFONTMETRICS pFM + ,int nNumFonts + ); // // Implementation only from now on // ------------------------------- // - int GetFontId(void) const; virtual bool IsFree(void) const; virtual bool RealizeResource(void); virtual WXHANDLE GetResourceHandle(void); virtual bool FreeResource(bool bForce = FALSE); + WXHFONT GetHFONT(void) const; protected: // // Common part of all ctors @@ -100,8 +129,6 @@ protected: void Unshare(void); private: - void OS2SelectMatchingFontByName(void); - DECLARE_DYNAMIC_CLASS(wxFont) }; // end of wxFont