X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/11c7d5b6d1cb54d5ffdc11d8ff092b41e225bfb6..c077ee943391930e0a7550f7ce810cb72a6d5820:/include/wx/msw/font.h?ds=sidebyside diff --git a/include/wx/msw/font.h b/include/wx/msw/font.h index 1ab10844bc..13674e03c5 100644 --- a/include/wx/msw/font.h +++ b/include/wx/msw/font.h @@ -12,7 +12,7 @@ #ifndef _WX_FONT_H_ #define _WX_FONT_H_ -#ifdef __GNUG__ +#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) #pragma interface "font.h" #endif @@ -40,6 +40,15 @@ public: (void)Create(size, family, style, weight, underlined, face, encoding); } + wxFont(const wxNativeFontInfo& info, WXHFONT hFont = 0) + { + Init(); + + Create(info, hFont); + } + + wxFont(const wxString& fontDesc); + bool Create(int size, int family, int style, @@ -48,6 +57,8 @@ public: const wxString& face = wxEmptyString, wxFontEncoding encoding = wxFONTENCODING_DEFAULT); + bool Create(const wxNativeFontInfo& info, WXHFONT hFont = 0); + virtual ~wxFont(); // assignment @@ -61,6 +72,7 @@ public: virtual bool GetUnderlined() const; virtual wxString GetFaceName() const; virtual wxFontEncoding GetEncoding() const; + virtual const wxNativeFontInfo *GetNativeFontInfo() const; virtual void SetPointSize(int pointSize); virtual void SetFamily(int family); @@ -70,20 +82,27 @@ public: virtual void SetUnderlined(bool underlined); virtual void SetEncoding(wxFontEncoding encoding); + virtual bool IsFixedWidth() const; + // implementation only from now on // ------------------------------- - int GetFontId() const; virtual bool IsFree() const; virtual bool RealizeResource(); - virtual WXHANDLE GetResourceHandle(); + virtual WXHANDLE GetResourceHandle() const; virtual bool FreeResource(bool force = FALSE); + + // for consistency with other wxMSW classes + WXHFONT GetHFONT() const; + /* virtual bool UseResource(); virtual bool ReleaseResource(); */ protected: + virtual void DoSetNativeFontInfo(const wxNativeFontInfo& info); + // common part of all ctors void Init();