]> git.saurik.com Git - wxWidgets.git/blobdiff - wxPython/src/_palette.i
wxToggleButton on wxMac has these methods now
[wxWidgets.git] / wxPython / src / _palette.i
index 6dafe16272ba014f190e6c8a46cbaf79ca51c3e6..e2fdbe4b69770454c99cc95cacb89c34c731b906 100644 (file)
@@ -25,10 +25,14 @@ public:
     ~wxPalette();
 
     int GetPixel(byte red, byte green, byte blue);
-    bool GetRGB(int pixel, byte* OUTPUT, byte* OUTPUT, byte* OUTPUT);
+    
+    DocDeclA(
+        bool, GetRGB(int pixel, byte* OUTPUT, byte* OUTPUT, byte* OUTPUT),
+        "GetRGB(int pixel) -> (R,G,B)");
+
     bool Ok();
 
-    %pragma(python) addtoclass = "def __nonzero__(self): return self.Ok()"
+    %pythoncode { def __nonzero__(self): return self.Ok() }
 };