1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: SWIG interface for wxColour
7 // Created: 7-July-1997
9 // Copyright: (c) 2003 by Total Control Software
10 // Licence: wxWindows license
11 /////////////////////////////////////////////////////////////////////////////
16 //---------------------------------------------------------------------------
21 "A colour is an object representing a combination of Red, Green, and
22 Blue (RGB) intensity values, and is used to determine drawing colours,
23 window colours, etc. Valid RGB values are in the range 0 to 255.
25 In wxPython there are typemaps that will automatically convert from a
26 colour name, from a '#RRGGBB' colour hex value string, or from a 3
27 integer tuple to a wx.Colour object when calling C++ methods that
28 expect a wxColour. This means that the following are all
31 win.SetBackgroundColour(wxColour(0,0,255))
32 win.SetBackgroundColour('BLUE')
33 win.SetBackgroundColour('#0000FF')
34 win.SetBackgroundColour((0,0,255))
36 Additional colour names and their coresponding values can be added
37 using `wx.ColourDatabase`. Various system colours (as set in the
38 user's system preferences) can be retrieved with
39 `wx.SystemSettings.GetColour`.
43 MustHaveApp( wxColour(const wxString& colorName) );
45 class wxColour : public wxObject {
49 wxColour(byte red=0, byte green=0, byte blue=0),
50 "Constructs a colour from red, green and blue values.
52 :see: Alternate constructors `wx.NamedColour` and `wx.ColourRGB`.
56 wxColour( const wxString& colorName),
57 "Constructs a colour object using a colour name listed in
58 ``wx.TheColourDatabase``.", "",
62 wxColour( unsigned long colRGB ),
63 "Constructs a colour from a packed RGB value.", "",
71 "Returns the red intensity.", "");
75 "Returns the green intensity.", "");
79 "Returns the blue intensity.", "");
83 "Returns True if the colour object is valid (the colour has been
84 initialised with RGB values).", "");
87 void , Set(byte red, byte green, byte blue),
88 "Sets the RGB intensity values.", "");
91 void , Set(unsigned long colRGB),
92 "Sets the RGB intensity values from a packed RGB value.", "",
96 void , InitFromName(const wxString& colourName),
97 "Sets the RGB intensity values using a colour name listed in
98 ``wx.TheColourDatabase``.", "",
103 long , GetPixel() const,
104 "Returns a pixel value which is platform-dependent. On Windows, a
105 COLORREF is returned. On X, an allocated pixel value is returned. -1
106 is returned if the pixel is invalid (on X, unallocated).", "");
110 bool , operator==(const wxColour& colour) const,
111 "Compare colours for equality", "");
114 bool , operator!=(const wxColour& colour) const,
115 "Compare colours for inequality", "");
121 "Get() -> (r, g, b)",
122 "Returns the RGB intensity values as a tuple.", "");
124 PyObject* rv = PyTuple_New(3);
130 green = self->Green();
133 PyTuple_SetItem(rv, 0, PyInt_FromLong(red));
134 PyTuple_SetItem(rv, 1, PyInt_FromLong(green));
135 PyTuple_SetItem(rv, 2, PyInt_FromLong(blue));
140 "Return the colour as a packed RGB value", "");
141 unsigned long GetRGB() {
142 return self->Red() | (self->Green() << 8) | (self->Blue() << 16);
148 asTuple = wx._deprecated(Get, "asTuple is deprecated, use `Get` instead")
149 def __str__(self): return str(self.Get())
150 def __repr__(self): return 'wx.Colour' + str(self.Get())
151 def __nonzero__(self): return self.Ok()
152 __safe_for_unpickling__ = True
153 def __reduce__(self): return (Colour, self.Get())
159 NamedColor = NamedColour
163 //---------------------------------------------------------------------------