X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/30764ab5246a5a9876d6313607da56cf1f1909d2..d062e17fca1a1fc0b82b269da4a7ad271075ba2b:/include/wx/gtk1/font.h diff --git a/include/wx/gtk1/font.h b/include/wx/gtk1/font.h index a15d5b5dcc..0a2bfbb095 100644 --- a/include/wx/gtk1/font.h +++ b/include/wx/gtk1/font.h @@ -35,12 +35,16 @@ class wxFont : public wxFontBase 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 wxFont& font) : wxFontBase() { Init(); Ref(font); } + 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 );