]> git.saurik.com Git - wxWidgets.git/blobdiff - wxPython/src/_palette.i
reSWIGged
[wxWidgets.git] / wxPython / src / _palette.i
index ae12eb90cc4f91f3feef4fbd5e4465c92105de94..3070508c9e02d8bbf672819130e070603e211794 100644 (file)
@@ -32,9 +32,13 @@ public:
         bool, GetRGB(int pixel, byte* OUTPUT, byte* OUTPUT, byte* OUTPUT),
         "GetRGB(self, int pixel) -> (R,G,B)");
 
-    bool Ok();
+    int GetColoursCount() const;
+    bool IsOk();
+    %pythoncode { Ok = IsOk }
 
-    %pythoncode { def __nonzero__(self): return self.Ok() }
+    %pythoncode { def __nonzero__(self): return self.IsOk() }
+
+    %property(ColoursCount, GetColoursCount, doc="See `GetColoursCount`");
 };