{
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,
{
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)
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);
*/
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
/* Constructor for a font. Note that the real construction is done
* in wxDC::SetFont, when information is available about scaling etc.
*/
-bool wxFont::Create(int pointSize,
- const wxSize& pixelSize,
- bool sizeUsingPixels,
- int family,
- int style,
- int weight,
- bool underlined,
- const wxString& faceName,
- wxFontEncoding encoding)
+bool wxFont::DoCreate(int pointSize,
+ const wxSize& pixelSize,
+ bool sizeUsingPixels,
+ int family,
+ int style,
+ int weight,
+ bool underlined,
+ const wxString& faceName,
+ wxFontEncoding encoding)
{
UnRef();