]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/msw/font.h
use DEFAULT_CHARSET instead of ANSI_CHARSET
[wxWidgets.git] / include / wx / msw / font.h
index 90073aa564f0474fd0feadfdef9d256645dcda50..f1b3c0fb880f797949f91c824998fa55b2b78a22 100644 (file)
@@ -40,11 +40,11 @@ public:
         (void)Create(size, family, style, weight, underlined, face, encoding);
     }
 
-    wxFont(const wxNativeFontInfo& info)
+    wxFont(const wxNativeFontInfo& info, WXHFONT hFont = 0)
     {
         Init();
 
-        Create(info);
+        Create(info, hFont);
     }
 
     wxFont(const wxString& fontDesc);
@@ -57,7 +57,7 @@ public:
                 const wxString& face = wxEmptyString,
                 wxFontEncoding encoding = wxFONTENCODING_DEFAULT);
 
-    bool Create(const wxNativeFontInfo& info);
+    bool Create(const wxNativeFontInfo& info, WXHFONT hFont = 0);
 
     virtual ~wxFont();
 
@@ -86,7 +86,6 @@ public:
     // implementation only from now on
     // -------------------------------
 
-    int GetFontId() const;
     virtual bool IsFree() const;
     virtual bool RealizeResource();
     virtual WXHANDLE GetResourceHandle();