]> git.saurik.com Git - wxWidgets.git/blob - wxPython/src/_bitmap.i
don't use static buffer needing a critical section to protect it for logging; this...
[wxWidgets.git] / wxPython / src / _bitmap.i
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: _bitmap.i
3 // Purpose: SWIG interface for wxBitmap and wxMask
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 #include <wx/rawbmp.h>
17 %}
18
19
20 // Turn off the aquisition of the Global Interpreter Lock for this file
21 %threadWrapperOff
22
23 //---------------------------------------------------------------------------
24
25 %{
26 #include <wx/image.h>
27
28 static char** ConvertListOfStrings(PyObject* listOfStrings) {
29 char** cArray = NULL;
30 int count;
31
32 if (!PyList_Check(listOfStrings)) {
33 PyErr_SetString(PyExc_TypeError, "Expected a list of strings.");
34 return NULL;
35 }
36 count = PyList_Size(listOfStrings);
37 cArray = new char*[count];
38
39 for(int x=0; x<count; x++) {
40 // TODO: Need some validation and error checking here
41 cArray[x] = PyString_AsString(PyList_GET_ITEM(listOfStrings, x));
42 }
43 return cArray;
44 }
45
46 %}
47
48 //---------------------------------------------------------------------------
49
50 // TODO: When the API stabalizes and is available on other platforms, add
51 // wrappers for the new wxBitmap, wxRawBitmap, wxDIB stuff...
52
53 DocStr(wxBitmap,
54 "The wx.Bitmap class encapsulates the concept of a platform-dependent
55 bitmap. It can be either monochrome or colour, and either loaded from
56 a file or created dynamically. A bitmap can be selected into a memory
57 device context (instance of `wx.MemoryDC`). This enables the bitmap to
58 be copied to a window or memory device context using `wx.DC.Blit`, or
59 to be used as a drawing surface.", "
60
61 The BMP and XMP image file formats are supported on all platforms by
62 wx.Bitmap. Other formats are automatically loaded by `wx.Image` and
63 converted to a wx.Bitmap, so any image file format supported by
64 `wx.Image` can be used.
65
66 :todo: Add wrappers and support for raw bitmap data access. Can this
67 be be put into Python without losing the speed benefits of the
68 teplates and iterators in rawbmp.h?
69
70 :todo: Find a way to do very efficient PIL Image <--> wx.Bitmap
71 converstions.
72
73 :see: `wx.EmptyBitmap`, `wx.BitmapFromIcon`, `wx.BitmapFromImage`,
74 `wx.BitmapFromXPMData`, `wx.BitmapFromBits`, `wx.BitmapFromBuffer`,
75 `wx.BitmapFromBufferRGBA`, `wx.Image`
76 ");
77
78
79 MustHaveApp(wxBitmap);
80
81 class wxBitmap : public wxGDIObject
82 {
83 public:
84 DocCtorStr(
85 wxBitmap(const wxString& name, wxBitmapType type=wxBITMAP_TYPE_ANY),
86 "Loads a bitmap from a file.",
87 "
88 :param name: Name of the file to load the bitmap from.
89 :param type: The type of image to expect. Can be one of the following
90 constants (assuming that the neccessary `wx.Image` handlers are
91 loaded):
92
93 * wx.BITMAP_TYPE_ANY
94 * wx.BITMAP_TYPE_BMP
95 * wx.BITMAP_TYPE_ICO
96 * wx.BITMAP_TYPE_CUR
97 * wx.BITMAP_TYPE_XBM
98 * wx.BITMAP_TYPE_XPM
99 * wx.BITMAP_TYPE_TIF
100 * wx.BITMAP_TYPE_GIF
101 * wx.BITMAP_TYPE_PNG
102 * wx.BITMAP_TYPE_JPEG
103 * wx.BITMAP_TYPE_PNM
104 * wx.BITMAP_TYPE_PCX
105 * wx.BITMAP_TYPE_PICT
106 * wx.BITMAP_TYPE_ICON
107 * wx.BITMAP_TYPE_ANI
108 * wx.BITMAP_TYPE_IFF
109
110 :see: Alternate constructors `wx.EmptyBitmap`, `wx.BitmapFromIcon`,
111 `wx.BitmapFromImage`, `wx.BitmapFromXPMData`, `wx.BitmapFromBits`,
112 `wx.BitmapFromBuffer`, `wx.BitmapFromBufferRGBA`,
113 ");
114
115 ~wxBitmap();
116
117 DocCtorStrName(
118 wxBitmap(int width, int height, int depth=-1),
119 "Creates a new bitmap of the given size. A depth of -1 indicates the
120 depth of the current screen or visual. Some platforms only support 1
121 for monochrome and -1 for the current display depth.", "",
122 EmptyBitmap);
123
124 DocCtorStrName(
125 wxBitmap(const wxIcon& icon),
126 "Create a new bitmap from a `wx.Icon` object.", "",
127 BitmapFromIcon);
128
129 DocCtorStrName(
130 wxBitmap(const wxImage& image, int depth=-1),
131 "Creates bitmap object from a `wx.Image`. This has to be done to
132 actually display a `wx.Image` as you cannot draw an image directly on
133 a window. The resulting bitmap will use the provided colour depth (or
134 that of the current screen colour depth if depth is -1) which entails
135 that a colour reduction may have to take place.", "",
136 BitmapFromImage);
137
138
139 %extend {
140 %RenameDocCtor(
141 BitmapFromXPMData,
142 "Construct a Bitmap from a list of strings formatted as XPM data.", "",
143 wxBitmap(PyObject* listOfStrings))
144 {
145 char** cArray = NULL;
146 wxBitmap* bmp;
147
148 cArray = ConvertListOfStrings(listOfStrings);
149 if (! cArray)
150 return NULL;
151 bmp = new wxBitmap(cArray);
152 delete [] cArray;
153 return bmp;
154 }
155
156
157 %RenameDocCtor(
158 BitmapFromBits,
159 "Creates a bitmap from an array of bits. You should only use this
160 function for monochrome bitmaps (depth 1) in portable programs: in
161 this case the bits parameter should contain an XBM image. For other
162 bit depths, the behaviour is platform dependent.", "",
163 wxBitmap(PyObject* bits, int width, int height, int depth=1 ))
164 {
165 char* buf;
166 Py_ssize_t length;
167 PyString_AsStringAndSize(bits, &buf, &length);
168 return new wxBitmap(buf, width, height, depth);
169 }
170 }
171
172
173 // wxGDIImage methods
174 #ifdef __WXMSW__
175 long GetHandle();
176 %extend {
177 void SetHandle(long handle) { self->SetHandle((WXHANDLE)handle); }
178 }
179 #endif
180
181 bool Ok();
182
183 DocDeclStr(
184 int , GetWidth(),
185 "Gets the width of the bitmap in pixels.", "");
186
187
188 DocDeclStr(
189 int , GetHeight(),
190 "Gets the height of the bitmap in pixels.", "");
191
192
193 DocDeclStr(
194 int , GetDepth(),
195 "Gets the colour depth of the bitmap. A value of 1 indicates a
196 monochrome bitmap.", "");
197
198
199
200 %extend {
201 DocStr(GetSize, "Get the size of the bitmap.", "");
202 wxSize GetSize() {
203 wxSize size(self->GetWidth(), self->GetHeight());
204 return size;
205 }
206 }
207
208
209 DocDeclStr(
210 virtual wxImage , ConvertToImage() const,
211 "Creates a platform-independent image from a platform-dependent
212 bitmap. This preserves mask information so that bitmaps and images can
213 be converted back and forth without loss in that respect.", "");
214
215
216 DocDeclStr(
217 virtual wxMask* , GetMask() const,
218 "Gets the associated mask (if any) which may have been loaded from a
219 file or explpicitly set for the bitmap.
220
221 :see: `SetMask`, `wx.Mask`
222 ", "");
223
224 // MSW only? wxBitmap GetMaskBitmap() const;
225
226 %disownarg(wxMask*);
227 DocDeclStr(
228 virtual void , SetMask(wxMask* mask),
229 "Sets the mask for this bitmap.
230
231 :see: `GetMask`, `wx.Mask`
232 ", "");
233 %cleardisown(wxMask*);
234
235 %extend {
236 DocStr(SetMaskColour,
237 "Create a Mask based on a specified colour in the Bitmap.", "");
238 void SetMaskColour(const wxColour& colour) {
239 wxMask *mask = new wxMask(*self, colour);
240 self->SetMask(mask);
241 }
242 }
243
244
245 DocDeclStr(
246 virtual wxBitmap , GetSubBitmap(const wxRect& rect) const,
247 "Returns a sub-bitmap of the current one as long as the rect belongs
248 entirely to the bitmap. This function preserves bit depth and mask
249 information.", "");
250
251
252 DocDeclStr(
253 virtual bool , SaveFile(const wxString &name, wxBitmapType type,
254 wxPalette *palette = NULL),
255 "Saves a bitmap in the named file. See `__init__` for a description of
256 the ``type`` parameter.", "");
257
258
259 DocDeclStr(
260 virtual bool , LoadFile(const wxString &name, wxBitmapType type),
261 "Loads a bitmap from a file. See `__init__` for a description of the
262 ``type`` parameter.", "");
263
264
265
266 virtual wxPalette *GetPalette() const;
267 #ifdef __WXMSW__
268 virtual void SetPalette(const wxPalette& palette);
269 #endif
270
271
272 virtual bool CopyFromIcon(const wxIcon& icon);
273
274 DocDeclStr(
275 virtual void , SetHeight(int height),
276 "Set the height property (does not affect the existing bitmap data).", "");
277
278
279 DocDeclStr(
280 virtual void , SetWidth(int width),
281 "Set the width property (does not affect the existing bitmap data).", "");
282
283
284 DocDeclStr(
285 virtual void , SetDepth(int depth),
286 "Set the depth property (does not affect the existing bitmap data).", "");
287
288
289 %extend {
290 DocStr(SetSize, "Set the bitmap size (does not affect the existing bitmap data).", "");
291 void SetSize(const wxSize& size) {
292 self->SetWidth(size.x);
293 self->SetHeight(size.y);
294 }
295 }
296
297 #ifdef __WXMSW__
298 bool CopyFromCursor(const wxCursor& cursor);
299
300 // WXWIN_COMPATIBILITY_2_4
301 #if 0
302 int GetQuality();
303 void SetQuality(int q);
304 %pythoncode { GetQuality = wx._deprecated(GetQuality) }
305 %pythoncode { SetQuality = wx._deprecated(SetQuality) }
306 #endif
307 #endif
308
309 %pythoncode { def __nonzero__(self): return self.Ok() }
310
311 %extend {
312 bool __eq__(const wxBitmap* other) { return other ? (*self == *other) : false; }
313 bool __ne__(const wxBitmap* other) { return other ? (*self != *other) : true; }
314 }
315 };
316
317
318 //---------------------------------------------------------------------------
319 // Factory functions for creating wxBitmaps from Python buffer objects. They
320 // use the Abstract Pixel API to be able to set RGB and A bytes directly into
321 // the wxBitmap's pixel buffer.
322
323 %{
324 // See http://tinyurl.com/e5adr for what premultiplying alpha means. It
325 // appears to me that the other platforms are already doing it, so I'll just
326 // automatically do it for wxMSW here.
327 #ifdef __WXMSW__
328 #define wxPy_premultiply(p, a) ((p) * (a) / 0xff)
329 #define wxPy_unpremultiply(p, a) ((a) ? ((p) * 0xff / (a)) : (p))
330 #else
331 #define wxPy_premultiply(p, a) (p)
332 #define wxPy_unpremultiply(p, a) (p)
333 #endif
334 %}
335
336
337 %newobject _BitmapFromBufferAlpha;
338 %newobject _BitmapFromBuffer;
339 %inline %{
340 wxBitmap* _BitmapFromBufferAlpha(int width, int height,
341 buffer data, int DATASIZE,
342 buffer alpha, int ALPHASIZE)
343 {
344 if (DATASIZE != width*height*3) {
345 wxPyErr_SetString(PyExc_ValueError, "Invalid data buffer size.");
346 return NULL;
347 }
348
349 if (ALPHASIZE != width*height) {
350 wxPyErr_SetString(PyExc_ValueError, "Invalid alpha buffer size.");
351 return NULL;
352 }
353
354 wxBitmap* bmp = new wxBitmap(width, height, 32);
355 wxAlphaPixelData pixData(*bmp, wxPoint(0,0), wxSize(width,height));
356 if (! pixData) {
357 // raise an exception...
358 wxPyErr_SetString(PyExc_RuntimeError,
359 "Failed to gain raw access to bitmap data.");
360 return NULL;
361 }
362
363 pixData.UseAlpha();
364 wxAlphaPixelData::Iterator p(pixData);
365 for (int y=0; y<height; y++) {
366 wxAlphaPixelData::Iterator rowStart = p;
367 for (int x=0; x<width; x++) {
368 byte a = *(alpha++);
369 p.Red() = wxPy_premultiply(*(data++), a);
370 p.Green() = wxPy_premultiply(*(data++), a);
371 p.Blue() = wxPy_premultiply(*(data++), a);
372 p.Alpha() = a;
373 ++p;
374 }
375 p = rowStart;
376 p.OffsetY(pixData, 1);
377 }
378 return bmp;
379 }
380
381 wxBitmap* _BitmapFromBuffer(int width, int height, buffer data, int DATASIZE)
382 {
383 if (DATASIZE != width*height*3) {
384 wxPyErr_SetString(PyExc_ValueError, "Invalid data buffer size.");
385 return NULL;
386 }
387
388 wxBitmap* bmp = new wxBitmap(width, height, 24);
389 wxNativePixelData pixData(*bmp, wxPoint(0,0), wxSize(width,height));
390 if (! pixData) {
391 // raise an exception...
392 wxPyErr_SetString(PyExc_RuntimeError,
393 "Failed to gain raw access to bitmap data.");
394 return NULL;
395 }
396
397 wxNativePixelData::Iterator p(pixData);
398 for (int y=0; y<height; y++) {
399 wxNativePixelData::Iterator rowStart = p;
400 for (int x=0; x<width; x++) {
401 p.Red() = *(data++);
402 p.Green() = *(data++);
403 p.Blue() = *(data++);
404 ++p;
405 }
406 p = rowStart;
407 p.OffsetY(pixData, 1);
408 }
409 return bmp;
410 }
411 %}
412
413
414 %pythoncode {
415 def BitmapFromBuffer(width, height, dataBuffer, alphaBuffer=None):
416 """
417 Creates a `wx.Bitmap` from the data in dataBuffer. The dataBuffer
418 parameter must be a Python object that implements the buffer
419 interface, such as a string, array, etc. The dataBuffer object is
420 expected to contain a series of RGB bytes and be width*height*3
421 bytes long. A buffer object can optionally be supplied for the
422 image's alpha channel data, and it is expected to be width*height
423 bytes long. On Windows the RGB values are 'premultiplied' by the
424 alpha values. (The other platforms do the multiplication
425 themselves.)
426
427 Unlike `wx.ImageFromBuffer` the bitmap created with this function
428 does not share the memory buffer with the buffer object. This is
429 because the native pixel buffer format varies on different
430 platforms, and so instead an efficient as possible copy of the
431 data is made from the buffer objects to the bitmap's native pixel
432 buffer. For direct access to a bitmap's pixel buffer see
433 `wx.NativePixelData` and `wx.AlphaPixelData`.
434
435 :see: `wx.Bitmap`, `wx.BitmapFromBufferRGBA`, `wx.NativePixelData`,
436 `wx.AlphaPixelData`, `wx.ImageFromBuffer`
437 """
438 if alphaBuffer is not None:
439 return _gdi_._BitmapFromBufferAlpha(width, height, dataBuffer, alphaBuffer)
440 else:
441 return _gdi_._BitmapFromBuffer(width, height, dataBuffer)
442 }
443
444
445
446 %newobject _BitmapFromBufferRGBA;
447 %inline %{
448 wxBitmap* _BitmapFromBufferRGBA(int width, int height, buffer data, int DATASIZE)
449 {
450 if (DATASIZE != width*height*4) {
451 wxPyErr_SetString(PyExc_ValueError, "Invalid data buffer size.");
452 return NULL;
453 }
454
455 wxBitmap* bmp = new wxBitmap(width, height, 32);
456 wxAlphaPixelData pixData(*bmp, wxPoint(0,0), wxSize(width,height));
457 if (! pixData) {
458 // raise an exception...
459 wxPyErr_SetString(PyExc_RuntimeError,
460 "Failed to gain raw access to bitmap data.");
461 return NULL;
462 }
463
464 pixData.UseAlpha();
465 wxAlphaPixelData::Iterator p(pixData);
466 for (int y=0; y<height; y++) {
467 wxAlphaPixelData::Iterator rowStart = p;
468 for (int x=0; x<width; x++) {
469 byte a = data[3];
470 p.Red() = wxPy_premultiply(*(data++), a);
471 p.Green() = wxPy_premultiply(*(data++), a);
472 p.Blue() = wxPy_premultiply(*(data++), a);
473 p.Alpha() = a; data++;
474 ++p;
475 }
476 p = rowStart;
477 p.OffsetY(pixData, 1);
478 }
479 return bmp;
480 }
481 %}
482
483 %pythoncode {
484 def BitmapFromBufferRGBA(width, height, dataBuffer):
485 """
486 Creates a `wx.Bitmap` from the data in dataBuffer. The dataBuffer
487 parameter must be a Python object that implements the buffer
488 interface, such as a string, array, etc. The dataBuffer object is
489 expected to contain a series of RGBA bytes (red, green, blue and
490 alpha) and be width*height*4 bytes long. On Windows the RGB
491 values are 'premultiplied' by the alpha values. (The other
492 platforms do the multiplication themselves.)
493
494 Unlike `wx.ImageFromBuffer` the bitmap created with this function
495 does not share the memory buffer with the buffer object. This is
496 because the native pixel buffer format varies on different
497 platforms, and so instead an efficient as possible copy of the
498 data is made from the buffer object to the bitmap's native pixel
499 buffer. For direct access to a bitmap's pixel buffer see
500 `wx.NativePixelData` and `wx.AlphaPixelData`.
501
502 :see: `wx.Bitmap`, `wx.BitmapFromBuffer`, `wx.NativePixelData`,
503 `wx.AlphaPixelData`, `wx.ImageFromBuffer`
504 """
505 return _gdi_._BitmapFromBufferRGBA(width, height, dataBuffer)
506 }
507
508
509 //---------------------------------------------------------------------------
510
511 class wxPixelDataBase
512 {
513 public:
514 // origin of the rectangular region we represent
515 wxPoint GetOrigin() const { return m_ptOrigin; }
516
517 // width and height of the region we represent
518 int GetWidth() const { return m_width; }
519 int GetHeight() const { return m_height; }
520
521 wxSize GetSize() const { return wxSize(m_width, m_height); }
522
523 // the distance between two rows
524 int GetRowStride() const { return m_stride; }
525
526 };
527
528
529 // Both wxNativePixelData and wxAlphaPixelData have the same interface, so
530 // make a macro to declare them both.
531
532 %define PIXELDATA(PixelData)
533 %{
534 typedef PixelData##::Iterator PixelData##_Accessor;
535 %}
536 class PixelData##_Accessor;
537 class PixelData : public wxPixelDataBase
538 {
539 public:
540 %nokwargs PixelData;
541
542 PixelData(wxBitmap& bmp);
543 PixelData(wxBitmap& bmp, const wxRect& rect);
544 PixelData(wxBitmap& bmp, const wxPoint& pt, const wxSize& sz);
545
546 ~PixelData();
547
548 PixelData##_Accessor GetPixels() const;
549 void UseAlpha();
550
551 %extend {
552 bool __nonzero__() { return self->operator bool(); }
553 }
554
555 %pythoncode {
556 def __iter__(self):
557 """
558 Create and return an iterator object for this pixel data
559 object. (It's really a generator but I won't tell if you
560 don't tell.)
561 """
562 width = self.GetWidth()
563 height = self.GetHeight()
564 pixels = self.GetPixels()
565
566 # This class is a facade over the pixels object (using the one
567 # in the enclosing scope) that only allows Get() and Set() to
568 # be called.
569 class PixelFacade(object):
570 def Get(self):
571 return pixels.Get()
572 def Set(self, *args, **kw):
573 return pixels.Set(*args, **kw)
574 def __str__(self):
575 return str(self.Get())
576 def __repr__(self):
577 return 'pixel(%d,%d): %s' % (x,y,self.Get())
578 X = property(lambda self: x)
579 Y = property(lambda self: y)
580
581 pf = PixelFacade()
582 for y in xrange(height):
583 for x in xrange(width):
584 # We always generate the same pf instance, but it
585 # accesses the pixels object which we use to iterate
586 # over the pixel buffer.
587 yield pf
588 pixels.nextPixel()
589 pixels.MoveTo(self, 0, y)
590 }
591 };
592
593
594
595 class PixelData##_Accessor
596 {
597 public:
598 %nokwargs PixelData##_Accessor;
599
600 PixelData##_Accessor(PixelData& data);
601 PixelData##_Accessor(wxBitmap& bmp, PixelData& data);
602 PixelData##_Accessor();
603
604 ~PixelData##_Accessor();
605
606 void Reset(const PixelData& data);
607 bool IsOk() const;
608
609 %extend {
610 // PixelData##_Accessor& nextPixel() { return ++(*self); }
611 void nextPixel() { ++(*self); }
612 }
613
614 void Offset(const PixelData& data, int x, int y);
615 void OffsetX(const PixelData& data, int x);
616 void OffsetY(const PixelData& data, int y);
617 void MoveTo(const PixelData& data, int x, int y);
618
619 // NOTE: For now I'm not wrapping the Red, Green, Blue and Alpha
620 // functions because I can't hide the premultiplying needed on wxMSW
621 // if only the individual components are wrapped, plus it would mean 3
622 // or 4 trips per pixel from Python to C++ instead of just one.
623 // Instead I've added the Set and Get functions and put the
624 // premultiplying in there.
625
626 // %extend {
627 // byte _get_Red() { return self->Red(); }
628 // byte _get_Green() { return self->Green(); }
629 // byte _get_Blue() { return self->Blue(); }
630
631 // void _set_Red(byte val) { self->Red() = val; }
632 // void _set_Green(byte val) { self->Green() = val; }
633 // void _set_Blue(byte val) { self->Blue() = val; }
634 // }
635
636 // %pythoncode {
637 // Red = property(_get_Red, _set_Red)
638 // Green = property(_get_Green, _set_Green)
639 // Blue = property(_get_Blue, _set_Blue)
640 // }
641 };
642 %enddef
643
644
645 %pythonAppend wxAlphaPixelData::wxAlphaPixelData "self.UseAlpha()"
646
647 // Make the classes
648 PIXELDATA(wxNativePixelData)
649 PIXELDATA(wxAlphaPixelData)
650
651
652 // Add in a few things that are different between the wxNativePixelData and
653 // wxAlphaPixelData and the iterator classes and so are not included in our
654 // macro...
655
656 %extend wxNativePixelData_Accessor {
657 void Set(byte red, byte green, byte blue) {
658 self->Red() = red;
659 self->Green() = green;
660 self->Blue() = blue;
661 }
662
663 PyObject* Get() {
664 PyObject* rv = PyTuple_New(3);
665 PyTuple_SetItem(rv, 0, PyInt_FromLong(self->Red()));
666 PyTuple_SetItem(rv, 1, PyInt_FromLong(self->Green()));
667 PyTuple_SetItem(rv, 2, PyInt_FromLong(self->Blue()));
668 return rv;
669 }
670 }
671
672 %extend wxAlphaPixelData_Accessor {
673 // byte _get_Alpha() { return self->Alpha(); }
674 // void _set_Alpha(byte val) { self->Alpha() = val; }
675
676 // %pythoncode {
677 // Alpha = property(_get_Alpha, _set_Alpha)
678 // }
679
680 void Set(byte red, byte green, byte blue, byte alpha) {
681 self->Red() = wxPy_premultiply(red, alpha);
682 self->Green() = wxPy_premultiply(green, alpha);
683 self->Blue() = wxPy_premultiply(blue, alpha);
684 self->Alpha() = alpha;
685 }
686
687 PyObject* Get() {
688 PyObject* rv = PyTuple_New(4);
689 int red = self->Red();
690 int green = self->Green();
691 int blue = self->Blue();
692 int alpha = self->Alpha();
693
694 PyTuple_SetItem(rv, 0, PyInt_FromLong( wxPy_unpremultiply(red, alpha) ));
695 PyTuple_SetItem(rv, 1, PyInt_FromLong( wxPy_unpremultiply(green, alpha) ));
696 PyTuple_SetItem(rv, 2, PyInt_FromLong( wxPy_unpremultiply(blue, alpha) ));
697 PyTuple_SetItem(rv, 3, PyInt_FromLong( alpha ));
698 return rv;
699 }
700 }
701
702
703 //---------------------------------------------------------------------------
704
705 DocStr(wxMask,
706 "This class encapsulates a monochrome mask bitmap, where the masked
707 area is black and the unmasked area is white. When associated with a
708 bitmap and drawn in a device context, the unmasked area of the bitmap
709 will be drawn, and the masked area will not be drawn.
710
711 A mask may be associated with a `wx.Bitmap`. It is used in
712 `wx.DC.DrawBitmap` or `wx.DC.Blit` when the source device context is a
713 `wx.MemoryDC` with a `wx.Bitmap` selected into it that contains a
714 mask.", "");
715
716 MustHaveApp(wxMask);
717
718 class wxMask : public wxObject {
719 public:
720
721 DocStr(wxMask,
722 "Constructs a mask from a `wx.Bitmap` and a `wx.Colour` in that bitmap
723 that indicates the transparent portions of the mask. In other words,
724 the pixels in ``bitmap`` that match ``colour`` will be the transparent
725 portions of the mask. If no ``colour`` or an invalid ``colour`` is
726 passed then BLACK is used.
727
728 :see: `wx.Bitmap`, `wx.Colour`", "");
729
730 %extend {
731 wxMask(const wxBitmap& bitmap, const wxColour& colour = wxNullColour) {
732 if ( !colour.Ok() )
733 return new wxMask(bitmap, *wxBLACK);
734 else
735 return new wxMask(bitmap, colour);
736 }
737 }
738
739 ~wxMask();
740 };
741
742 %pythoncode { MaskColour = wx._deprecated(Mask, "wx.MaskColour is deprecated, use `wx.Mask` instead.") }
743
744 //---------------------------------------------------------------------------
745 //---------------------------------------------------------------------------
746 %threadWrapperOn