X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/30764ab5246a5a9876d6313607da56cf1f1909d2..4178000933f0618d2cc9dc2f80dfed91b0c61464:/include/wx/gtk1/font.h diff --git a/include/wx/gtk1/font.h b/include/wx/gtk1/font.h index a15d5b5dcc..ed7ac95c86 100644 --- a/include/wx/gtk1/font.h +++ b/include/wx/gtk1/font.h @@ -36,11 +36,15 @@ public: // ctors and such wxFont() { Init(); } wxFont(const wxFont& font) { Init(); Ref(font); } - wxFont(const wxString& fontname, const wxFontData& fontdata) { Create(fontname, fontdata); } - wxFont(const wxNativeFontInfo& info); + wxFont(const wxString& fontname, + wxFontEncoding fontenc = wxFONTENCODING_DEFAULT) + { + Init(); - // assignment - wxFont& operator=(const wxFont& font); + Create(fontname, fontenc); + } + + wxFont(const wxNativeFontInfo& info); wxFont(int size, int family, @@ -61,13 +65,18 @@ public: int weight, bool underlined = FALSE, const wxString& face = wxEmptyString, - wxFontEncoding encoding = wxFONTENCODING_DEFAULT, - const wxNativeFontInfo& info = wxNullNativeFontInfo); + wxFontEncoding encoding = wxFONTENCODING_DEFAULT); - bool Create(const wxString& fontname, const wxFontData& fontdata); + // wxGTK-specific + bool Create(const wxString& fontname, + wxFontEncoding fontenc = wxFONTENCODING_DEFAULT); + bool Create(const wxNativeFontInfo& fontinfo); ~wxFont(); + // assignment + wxFont& operator=(const wxFont& font); + // implement base class pure virtuals virtual int GetPointSize() const; virtual int GetFamily() const; @@ -76,7 +85,7 @@ public: virtual wxString GetFaceName() const; virtual bool GetUnderlined() const; virtual wxFontEncoding GetEncoding() const; - virtual wxNativeFontInfo GetNativeFontInfo() const; + virtual wxNativeFontInfo *GetNativeFontInfo() const; virtual void SetPointSize( int pointSize ); virtual void SetFamily( int family );