X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/d14a1e28567de23c586bc80017073d0c39f8d18f..b4b426fe865087eba1a3ba268bd1f294ac423a96:/wxPython/src/_palette.i diff --git a/wxPython/src/_palette.i b/wxPython/src/_palette.i index 6dafe16272..1ce21e1b3c 100644 --- a/wxPython/src/_palette.i +++ b/wxPython/src/_palette.i @@ -19,16 +19,23 @@ //--------------------------------------------------------------------------- +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() } };