]> git.saurik.com Git - wxWidgets.git/blame - wxPython/src/_colour.i
Fixed problem in wx.lib.splitter when used on 64-bit platforms. Used
[wxWidgets.git] / wxPython / src / _colour.i
CommitLineData
d14a1e28
RD
1/////////////////////////////////////////////////////////////////////////////
2// Name: _colour.i
3// Purpose: SWIG interface for wxColour
4//
5// Author: Robin Dunn
6//
7// Created: 7-July-1997
8// RCS-ID: $Id$
9// Copyright: (c) 2003 by Total Control Software
10// Licence: wxWindows license
11/////////////////////////////////////////////////////////////////////////////
12
13// Not a %module
14
15
16//---------------------------------------------------------------------------
17%newgroup;
18
d14a1e28 19
6ad421ae 20DocStr(wxColour,
d07d2bc9
RD
21"A colour is an object representing a combination of Red, Green, and
22Blue (RGB) intensity values, and is used to determine drawing colours,
23window colours, etc. Valid RGB values are in the range 0 to 255.
6ad421ae 24
d07d2bc9 25In wxPython there are typemaps that will automatically convert from a
4617be08
RD
26colour name, from a '#RRGGBB' colour hex value string, or from a 3
27integer tuple to a wx.Colour object when calling C++ methods that
28expect a wxColour. This means that the following are all
29equivallent::
6ad421ae
RD
30
31 win.SetBackgroundColour(wxColour(0,0,255))
2b619822
RD
32 win.SetBackgroundColour('BLUE')
33 win.SetBackgroundColour('#0000FF')
4617be08 34 win.SetBackgroundColour((0,0,255))
6ad421ae 35
d07d2bc9
RD
36Additional colour names and their coresponding values can be added
37using `wx.ColourDatabase`. Various system colours (as set in the
38user's system preferences) can be retrieved with
39`wx.SystemSettings.GetColour`.
40", "");
6ad421ae
RD
41
42
e5156e15
RD
43MustHaveApp( wxColour(const wxString& colorName) );
44
d14a1e28
RD
45class wxColour : public wxObject {
46public:
6ad421ae
RD
47
48 DocCtorStr(
d07d2bc9
RD
49 wxColour(byte red=0, byte green=0, byte blue=0),
50 "Constructs a colour from red, green and blue values.
51
52:see: Alternate constructors `wx.NamedColour` and `wx.ColourRGB`.
53", "");
6ad421ae
RD
54
55 DocCtorStrName(
56 wxColour( const wxString& colorName),
d07d2bc9
RD
57 "Constructs a colour object using a colour name listed in
58``wx.TheColourDatabase``.", "",
6ad421ae
RD
59 NamedColour);
60
61 DocCtorStrName(
62 wxColour( unsigned long colRGB ),
d07d2bc9 63 "Constructs a colour from a packed RGB value.", "",
6ad421ae
RD
64 ColourRGB);
65
d14a1e28
RD
66 ~wxColour();
67
6ad421ae
RD
68
69 DocDeclStr(
d07d2bc9
RD
70 byte , Red(),
71 "Returns the red intensity.", "");
6ad421ae
RD
72
73 DocDeclStr(
d07d2bc9
RD
74 byte , Green(),
75 "Returns the green intensity.", "");
6ad421ae
RD
76
77 DocDeclStr(
d07d2bc9
RD
78 byte , Blue(),
79 "Returns the blue intensity.", "");
6ad421ae
RD
80
81 DocDeclStr(
82 bool , Ok(),
d07d2bc9
RD
83 "Returns True if the colour object is valid (the colour has been
84initialised with RGB values).", "");
6ad421ae
RD
85
86 DocDeclStr(
d07d2bc9
RD
87 void , Set(byte red, byte green, byte blue),
88 "Sets the RGB intensity values.", "");
d14a1e28 89
6ad421ae
RD
90 DocDeclStrName(
91 void , Set(unsigned long colRGB),
d07d2bc9 92 "Sets the RGB intensity values from a packed RGB value.", "",
6ad421ae 93 SetRGB);
d14a1e28 94
6ad421ae
RD
95 DocDeclStrName(
96 void , InitFromName(const wxString& colourName),
d07d2bc9
RD
97 "Sets the RGB intensity values using a colour name listed in
98``wx.TheColourDatabase``.", "",
6ad421ae
RD
99 SetFromName);
100
101
102 DocDeclStr(
103 long , GetPixel() const,
d07d2bc9
RD
104 "Returns a pixel value which is platform-dependent. On Windows, a
105COLORREF is returned. On X, an allocated pixel value is returned. -1
106is returned if the pixel is invalid (on X, unallocated).", "");
6ad421ae
RD
107
108
109 DocDeclStr(
110 bool , operator==(const wxColour& colour) const,
d07d2bc9 111 "Compare colours for equality", "");
6ad421ae
RD
112
113 DocDeclStr(
114 bool , operator!=(const wxColour& colour) const,
d07d2bc9 115 "Compare colours for inequality", "");
6ad421ae 116
d14a1e28 117
3f0ff538 118
d14a1e28 119 %extend {
6ad421ae
RD
120 DocAStr(Get,
121 "Get() -> (r, g, b)",
d07d2bc9 122 "Returns the RGB intensity values as a tuple.", "");
d14a1e28
RD
123 PyObject* Get() {
124 PyObject* rv = PyTuple_New(3);
125 int red = -1;
126 int green = -1;
127 int blue = -1;
128 if (self->Ok()) {
129 red = self->Red();
130 green = self->Green();
131 blue = self->Blue();
132 }
133 PyTuple_SetItem(rv, 0, PyInt_FromLong(red));
134 PyTuple_SetItem(rv, 1, PyInt_FromLong(green));
135 PyTuple_SetItem(rv, 2, PyInt_FromLong(blue));
136 return rv;
137 }
6ad421ae
RD
138
139 DocStr(GetRGB,
d07d2bc9 140 "Return the colour as a packed RGB value", "");
6ad421ae
RD
141 unsigned long GetRGB() {
142 return self->Red() | (self->Green() << 8) | (self->Blue() << 16);
143 }
d14a1e28
RD
144 }
145
146
147 %pythoncode {
d07d2bc9
RD
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())
d14a1e28 151 def __nonzero__(self): return self.Ok()
02376d73
RD
152 __safe_for_unpickling__ = True
153 def __reduce__(self): return (Colour, self.Get())
d14a1e28
RD
154 }
155};
156
2b9048c5
RD
157%pythoncode {
158 Color = Colour
159 NamedColor = NamedColour
160 ColorRGB = ColourRGB
161}
cf763f5b 162
d14a1e28
RD
163//---------------------------------------------------------------------------
164