]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/font.h
Implemented wxToggleButton under Motif.
[wxWidgets.git] / include / wx / font.h
index e519bad84d2ca5a72a6b115d529b283159d08071..44758313e018f968ce8b7daff4ec1533d02eea23 100644 (file)
@@ -171,7 +171,8 @@ public:
     virtual void SetFaceName( const wxString& faceName ) = 0;
     virtual void SetUnderlined( bool underlined ) = 0;
     virtual void SetEncoding(wxFontEncoding encoding) = 0;
-    virtual void SetNativeFontInfo(const wxNativeFontInfo& info);
+    void SetNativeFontInfo(const wxNativeFontInfo& info)
+        { DoSetNativeFontInfo(info); }
 
     void SetNativeFontInfo(const wxString& info);
     void SetNativeFontInfoUserDesc(const wxString& info);
@@ -182,6 +183,10 @@ public:
     wxString GetStyleString() const;
     wxString GetWeightString() const;
 
+    // Unofficial API, don't use
+    virtual void SetNoAntiAliasing( bool WXUNUSED(no) = TRUE ) {  }
+    virtual bool GetNoAntiAliasing() { return FALSE; }
+
     // the default encoding is used for creating all fonts with default
     // encoding parameter
     static wxFontEncoding GetDefaultEncoding() { return ms_encodingDefault; }
@@ -192,6 +197,9 @@ protected:
     wxFontRefData *GetFontData() const
         { return (wxFontRefData *)m_refData; }
 
+    // the function called by both overloads of SetNativeFontInfo()
+    virtual void DoSetNativeFontInfo(const wxNativeFontInfo& info);
+
 private:
     // the currently default encoding: by default, it's the default system
     // encoding, but may be changed by the application using
@@ -215,8 +223,6 @@ private:
     #include "wx/mac/font.h"
 #elif defined(__WXPM__)
     #include "wx/os2/font.h"
-#elif defined(__WXSTUBS__)
-    #include "wx/stubs/font.h"
 #endif
 
 // ----------------------------------------------------------------------------