]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/mac/font.h
added and documented wxDirTraverser::OnOpenError
[wxWidgets.git] / include / wx / mac / font.h
index 09d7797a06e56ffebaf0200f7ca0917806e11956..2c3c17e84e13e899f3fbf815903883e70e634364 100644 (file)
@@ -12,7 +12,7 @@
 #ifndef _WX_FONT_H_
 #define _WX_FONT_H_
 
-#ifdef __GNUG__
+#if defined(__GNUG__) && !defined(__APPLE__)
     #pragma interface "font.h"
 #endif
 
@@ -81,6 +81,9 @@ public:
     }
 
     virtual ~wxFontRefData();
+    void SetNoAntiAliasing( bool no = TRUE ) { m_noAA = no; }
+    bool GetNoAntiAliasing() { return m_noAA; }
+    
 protected:
     // common part of all ctors
     void Init(int size,
@@ -100,6 +103,7 @@ protected:
     bool           m_underlined;
     wxString       m_faceName;
     wxFontEncoding m_encoding;
+    bool            m_noAA;      // No anti-aliasing
     
 public:
     short         m_macFontNum;
@@ -184,6 +188,9 @@ public:
 
     virtual bool RealizeResource();
 
+    // Unofficial API, don't use
+    virtual void SetNoAntiAliasing( bool noAA = TRUE ) ;
+    virtual bool GetNoAntiAliasing() ;
 protected:
     // common part of all ctors
     void Init();