X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/544229d1069a20ca4c81fac6059aa4d92d8559ef..d8fd7acb8b877599b410e07a4c26dde92a676a82:/include/wx/msw/font.h?ds=sidebyside diff --git a/include/wx/msw/font.h b/include/wx/msw/font.h index 01e7a41c76..249fcf549a 100644 --- a/include/wx/msw/font.h +++ b/include/wx/msw/font.h @@ -12,9 +12,7 @@ #ifndef _WX_FONT_H_ #define _WX_FONT_H_ -#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) - #pragma interface "font.h" -#endif +#include // ---------------------------------------------------------------------------- // wxFont @@ -37,8 +35,7 @@ public: { Init(); - (void)Create(size, wxSize(0, 0), FALSE, family, style, weight, - underlined, face, encoding); + (void)Create(size, family, style, weight, underlined, face, encoding); } wxFont(const wxSize& pixelSize, @@ -51,8 +48,8 @@ public: { Init(); - (void)Create(0, pixelSize, TRUE, family, style, weight, underlined, - face, encoding); + (void)Create(pixelSize, family, style, weight, + underlined, face, encoding); } wxFont(const wxNativeFontInfo& info, WXHFONT hFont = 0) @@ -65,14 +62,28 @@ public: wxFont(const wxString& fontDesc); bool Create(int size, - const wxSize& pixelSize, - bool sizeUsingPixels, int family, int style, int weight, bool underlined = false, const wxString& face = wxEmptyString, - wxFontEncoding encoding = wxFONTENCODING_DEFAULT); + wxFontEncoding encoding = wxFONTENCODING_DEFAULT) + { + return DoCreate(size, wxDefaultSize, false, family, style, + weight, underlined, face, encoding); + } + + bool Create(const wxSize& pixelSize, + int family, + int style, + int weight, + bool underlined = false, + const wxString& face = wxEmptyString, + wxFontEncoding encoding = wxFONTENCODING_DEFAULT) + { + return DoCreate(-1, pixelSize, true, family, style, + weight, underlined, face, encoding); + } bool Create(const wxNativeFontInfo& info, WXHFONT hFont = 0); @@ -121,6 +132,17 @@ public: */ protected: + // real font creation function, used in all cases + bool DoCreate(int size, + const wxSize& pixelSize, + bool sizeUsingPixels, + int family, + int style, + int weight, + bool underlined = false, + const wxString& face = wxEmptyString, + wxFontEncoding encoding = wxFONTENCODING_DEFAULT); + virtual void DoSetNativeFontInfo(const wxNativeFontInfo& info); // common part of all ctors