]> git.saurik.com Git - wxWidgets.git/blobdiff - wxPython/src/_palette.i
Respect the REUSEADDR flag to allow rebinding; bind to local port prior to connecting...
[wxWidgets.git] / wxPython / src / _palette.i
index 6dafe16272ba014f190e6c8a46cbaf79ca51c3e6..1ce21e1b3cd51c40d0386b6e154e717c7e2d5c19 100644 (file)
 
 //---------------------------------------------------------------------------
 
+MustHaveApp(wxPalette);
+
 class wxPalette : public wxGDIObject {
 public:
     wxPalette(int n, const unsigned char *red, const unsigned char *green, const unsigned char *blue);
     ~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(self, int pixel) -> (R,G,B)");
+
+    int GetColoursCount() const;
     bool Ok();
 
-    %pragma(python) addtoclass = "def __nonzero__(self): return self.Ok()"
+    %pythoncode { def __nonzero__(self): return self.Ok() }
 };