]> git.saurik.com Git - wxWidgets.git/blobdiff - wxPython/src/_pen.i
Fix GBSpan and GBPosition typemaps
[wxWidgets.git] / wxPython / src / _pen.i
index 3c0677b5fb977a32466ea5f737c84dc0ceefcf39..757872a251e2c8a5e8e86d9517f8570533f499c3 100644 (file)
@@ -62,7 +62,17 @@ public:
             return retval;
         }
     }
+    
+    %extend {
+        bool __eq__(const wxPen* other) { return other ? (*self == *other) : False; }
+        bool __ne__(const wxPen* other) { return other ? (*self != *other) : True;  }
+    }
 
+#ifndef __WXMAC__
+//  wxDash* GetDash() const;
+    int GetDashCount() const;
+#endif
+    
 #ifdef __WXMSW__
     wxBitmap* GetStipple();
     void SetStipple(wxBitmap& stipple);