]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/gtk/font.h
added (and documented) trivial but useful IsSingleLine() and IsMultiLine() text contr...
[wxWidgets.git] / include / wx / gtk / font.h
index de17523e9f6191c5b7d7f3fb091d54a69e1dfaa8..90448b370483a4684b636693f0172efc6441d2f9 100644 (file)
@@ -36,12 +36,13 @@ public:
     // ctors and such
     wxFont() { Init(); }
     wxFont(const wxFont& font) : wxFontBase() { Init(); Ref(font); }
-    wxFont(const wxString& fontname,
-           wxFontEncoding fontenc = wxFONTENCODING_DEFAULT)
+
+    // wxGTK-specific
+    wxFont(const wxString& fontname)
     {
         Init();
 
-        Create(fontname, fontenc);
+        Create(fontname);
     }
 
     wxFont(const wxNativeFontInfo& info);
@@ -68,9 +69,7 @@ public:
                 wxFontEncoding encoding = wxFONTENCODING_DEFAULT);
 
     // wxGTK-specific
-    bool Create(const wxString& fontname,
-                wxFontEncoding fontenc = wxFONTENCODING_DEFAULT);
-    bool Create(const wxNativeFontInfo& fontinfo);
+    bool Create(const wxString& fontname);
 
     ~wxFont();
 
@@ -108,9 +107,6 @@ protected:
     // common part of all ctors
     void Init();
 
-    // do we have the XFLD for this font (or just wxWin description)?
-    inline bool HasNativeFont() const;
-
 private:
     DECLARE_DYNAMIC_CLASS(wxFont)
 };