]> git.saurik.com Git - wxWidgets.git/blob - wxPython/src/_bitmap.i
don't set cursor for not realized (and not only hidden) windows
[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`,
112 `wx.BitmapFromBits`
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
217 DocDeclStr(
218 virtual wxMask* , GetMask() const,
219 "Gets the associated mask (if any) which may have been loaded from a
220 file or explpicitly set for the bitmap.
221
222 :see: `SetMask`, `wx.Mask`
223 ", "");
224
225 // MSW only? wxBitmap GetMaskBitmap() const;
226
227 %disownarg(wxMask*);
228 DocDeclStr(
229 virtual void , SetMask(wxMask* mask),
230 "Sets the mask for this bitmap.
231
232 :see: `GetMask`, `wx.Mask`
233 ", "");
234 %cleardisown(wxMask*);
235
236 %extend {
237 DocStr(SetMaskColour,
238 "Create a Mask based on a specified colour in the Bitmap.", "");
239 void SetMaskColour(const wxColour& colour) {
240 wxMask *mask = new wxMask(*self, colour);
241 self->SetMask(mask);
242 }
243 }
244
245
246 DocDeclStr(
247 virtual wxBitmap , GetSubBitmap(const wxRect& rect) const,
248 "Returns a sub-bitmap of the current one as long as the rect belongs
249 entirely to the bitmap. This function preserves bit depth and mask
250 information.", "");
251
252
253 DocDeclStr(
254 virtual bool , SaveFile(const wxString &name, wxBitmapType type,
255 wxPalette *palette = NULL),
256 "Saves a bitmap in the named file. See `__init__` for a description of
257 the ``type`` parameter.", "");
258
259
260 DocDeclStr(
261 virtual bool , LoadFile(const wxString &name, wxBitmapType type),
262 "Loads a bitmap from a file. See `__init__` for a description of the
263 ``type`` parameter.", "");
264
265
266
267 virtual wxPalette *GetPalette() const;
268 #ifdef __WXMSW__
269 virtual void SetPalette(const wxPalette& palette);
270 #endif
271
272
273 virtual bool CopyFromIcon(const wxIcon& icon);
274
275 DocDeclStr(
276 virtual void , SetHeight(int height),
277 "Set the height property (does not affect the existing bitmap data).", "");
278
279
280 DocDeclStr(
281 virtual void , SetWidth(int width),
282 "Set the width property (does not affect the existing bitmap data).", "");
283
284
285 DocDeclStr(
286 virtual void , SetDepth(int depth),
287 "Set the depth property (does not affect the existing bitmap data).", "");
288
289
290 %extend {
291 DocStr(SetSize, "Set the bitmap size (does not affect the existing bitmap data).", "");
292 void SetSize(const wxSize& size) {
293 self->SetWidth(size.x);
294 self->SetHeight(size.y);
295 }
296 }
297
298 #ifdef __WXMSW__
299 bool CopyFromCursor(const wxCursor& cursor);
300
301 // WXWIN_COMPATIBILITY_2_4
302 #if 0
303 int GetQuality();
304 void SetQuality(int q);
305 %pythoncode { GetQuality = wx._deprecated(GetQuality) }
306 %pythoncode { SetQuality = wx._deprecated(SetQuality) }
307 #endif
308 #endif
309
310 %pythoncode { def __nonzero__(self): return self.Ok() }
311
312 %extend {
313 bool __eq__(const wxBitmap* other) { return other ? (*self == *other) : false; }
314 bool __ne__(const wxBitmap* other) { return other ? (*self != *other) : true; }
315 }
316 };
317
318
319 //---------------------------------------------------------------------------
320 // Factory functions for creating wxBitmaps from Python buffer objects. They
321 // use the Abstract Pixel API to be able to set RGB and A bytes directly into
322 // the wxBitmap's pixel buffer.
323
324 %{
325 // See http://tinyurl.com/e5adr for what premultiplying alpha means. It
326 // appears to me that the other platforms are already doing it, so I'll just
327 // automatically do it for wxMSW here.
328 #ifdef __WXMSW__
329 #define wxPy_premultiply(p, a) ((p) * (a) / 256)
330 #else
331 #define wxPy_premultiply(p, a) (p)
332 #endif
333 %}
334
335
336 %newobject _BitmapFromBufferAlpha;
337 %newobject _BitmapFromBuffer;
338 %inline %{
339 wxBitmap* _BitmapFromBufferAlpha(int width, int height,
340 buffer data, int DATASIZE,
341 buffer alpha, int ALPHASIZE)
342 {
343 if (DATASIZE != width*height*3) {
344 wxPyErr_SetString(PyExc_ValueError, "Invalid data buffer size.");
345 return NULL;
346 }
347
348 if (ALPHASIZE != width*height) {
349 wxPyErr_SetString(PyExc_ValueError, "Invalid alpha buffer size.");
350 return NULL;
351 }
352
353 wxBitmap* bmp = new wxBitmap(width, height, 32);
354 wxAlphaPixelData pixels(*bmp, wxPoint(0,0), wxSize(width,height));
355 if (! pixels) {
356 // raise an exception...
357 wxPyErr_SetString(PyExc_RuntimeError,
358 "Failed to gain raw access to bitmap data.");
359 return NULL;
360 }
361
362 pixels.UseAlpha();
363 wxAlphaPixelData::Iterator p(pixels);
364 for (int y=0; y<height; y++) {
365 wxAlphaPixelData::Iterator rowStart = p;
366 for (int x=0; x<width; x++) {
367 byte a = *(alpha++);
368 p.Red() = wxPy_premultiply(*(data++), a);
369 p.Green() = wxPy_premultiply(*(data++), a);
370 p.Blue() = wxPy_premultiply(*(data++), a);
371 p.Alpha() = a;
372 ++p;
373 }
374 p = rowStart;
375 p.OffsetY(pixels, 1);
376 }
377 return bmp;
378 }
379
380 wxBitmap* _BitmapFromBuffer(int width, int height, buffer data, int DATASIZE)
381 {
382 if (DATASIZE != width*height*3) {
383 wxPyErr_SetString(PyExc_ValueError, "Invalid data buffer size.");
384 return NULL;
385 }
386
387 wxBitmap* bmp = new wxBitmap(width, height, 24);
388 wxNativePixelData pixels(*bmp, wxPoint(0,0), wxSize(width,height));
389 if (! pixels) {
390 // raise an exception...
391 wxPyErr_SetString(PyExc_RuntimeError,
392 "Failed to gain raw access to bitmap data.");
393 return NULL;
394 }
395
396 wxNativePixelData::Iterator p(pixels);
397 for (int y=0; y<height; y++) {
398 wxNativePixelData::Iterator rowStart = p;
399 for (int x=0; x<width; x++) {
400 p.Red() = *(data++);
401 p.Green() = *(data++);
402 p.Blue() = *(data++);
403 ++p;
404 }
405 p = rowStart;
406 p.OffsetY(pixels, 1);
407 }
408 return bmp;
409 }
410 %}
411
412
413 %pythoncode {
414 def BitmapFromBuffer(width, height, dataBuffer, alphaBuffer=None):
415 """
416 Creates a `wx.Bitmap` from the data in dataBuffer. The dataBuffer
417 parameter must be a Python object that implements the buffer interface, or
418 is convertable to a buffer object, such as a string, array, etc. The
419 dataBuffer object is expected to contain a series of RGB bytes and be
420 width*height*3 bytes long. A buffer object can optionally be supplied for
421 the image's alpha channel data, and it is expected to be width*height
422 bytes long. On Windows the RGB values are 'premultiplied' by the alpha
423 values. (The other platforms appear to already be premultiplying the
424 alpha.)
425
426 Unlike `wx.ImageFromBuffer` the bitmap created with this function does not
427 share the memory buffer with the buffer object. This is because the
428 native pixel buffer format varies on different platforms, and so instead
429 an efficient as possible copy of the data is made from the buffer objects
430 to the bitmap's native pixel buffer. For direct access to a bitmap's
431 pixel buffer see `wx.NativePixelData` and `wx.AlphaPixelData`.
432
433 :see: `wx.Bitmap`, `wx.BitmapFromBufferRGBA`, `wx.NativePixelData`,
434 `wx.AlphaPixelData`, `wx.ImageFromBuffer`
435 """
436 if not isinstance(dataBuffer, buffer):
437 dataBuffer = buffer(dataBuffer)
438 if alphaBuffer is not None and not isinstance(alphaBuffer, buffer):
439 alphaBuffer = buffer(alphaBuffer)
440 if alphaBuffer is not None:
441 return _gdi_._BitmapFromBufferAlpha(width, height, dataBuffer, alphaBuffer)
442 else:
443 return _gdi_._BitmapFromBuffer(width, height, dataBuffer)
444 }
445
446
447
448 %newobject _BitmapFromBufferRGBA;
449 %inline %{
450 wxBitmap* _BitmapFromBufferRGBA(int width, int height, buffer data, int DATASIZE)
451 {
452 if (DATASIZE != width*height*4) {
453 wxPyErr_SetString(PyExc_ValueError, "Invalid data buffer size.");
454 return NULL;
455 }
456
457 wxBitmap* bmp = new wxBitmap(width, height, 32);
458 wxAlphaPixelData pixels(*bmp, wxPoint(0,0), wxSize(width,height));
459 if (! pixels) {
460 // raise an exception...
461 wxPyErr_SetString(PyExc_RuntimeError,
462 "Failed to gain raw access to bitmap data.");
463 return NULL;
464 }
465
466 pixels.UseAlpha();
467 wxAlphaPixelData::Iterator p(pixels);
468 for (int y=0; y<height; y++) {
469 wxAlphaPixelData::Iterator rowStart = p;
470 for (int x=0; x<width; x++) {
471 byte a = data[3];
472 p.Red() = wxPy_premultiply(*(data++), a);
473 p.Green() = wxPy_premultiply(*(data++), a);
474 p.Blue() = wxPy_premultiply(*(data++), a);
475 p.Alpha() = a; data++;
476 ++p;
477 }
478 p = rowStart;
479 p.OffsetY(pixels, 1);
480 }
481 return bmp;
482 }
483 %}
484
485 %pythoncode {
486 def BitmapFromBufferRGBA(width, height, dataBuffer):
487 """
488 Creates a `wx.Bitmap` from the data in dataBuffer. The dataBuffer
489 parameter must be a Python object that implements the buffer interface, or
490 is convertable to a buffer object, such as a string, array, etc. The
491 dataBuffer object is expected to contain a series of RGBA bytes (red,
492 green, blue and alpha) and be width*height*4 bytes long. On Windows the
493 RGB values are 'premultiplied' by the alpha values. (The other platforms
494 appear to already be premultiplying the alpha.)
495
496 Unlike `wx.ImageFromBuffer` the bitmap created with this function does not
497 share the memory buffer with the buffer object. This is because the
498 native pixel buffer format varies on different platforms, and so instead
499 an efficient as possible copy of the data is made from the buffer object
500 to the bitmap's native pixel buffer. For direct access to a bitmap's
501 pixel buffer see `wx.NativePixelData` and `wx.AlphaPixelData`.
502
503 :see: `wx.Bitmap`, `wx.BitmapFromBuffer`, `wx.NativePixelData`,
504 `wx.AlphaPixelData`, `wx.ImageFromBuffer`
505 """
506 if not isinstance(dataBuffer, buffer):
507 dataBuffer = buffer(dataBuffer)
508 return _gdi_._BitmapFromBufferRGBA(width, height, dataBuffer)
509 }
510
511
512 //---------------------------------------------------------------------------
513
514 class wxPixelDataBase
515 {
516 public:
517 // origin of the rectangular region we represent
518 wxPoint GetOrigin() const { return m_ptOrigin; }
519
520 // width and height of the region we represent
521 int GetWidth() const { return m_width; }
522 int GetHeight() const { return m_height; }
523
524 wxSize GetSize() const { return wxSize(m_width, m_height); }
525
526 // the distance between two rows
527 int GetRowStride() const { return m_stride; }
528
529 };
530
531
532
533 %define PIXELDATA(PixelData)
534 %{
535 typedef PixelData##::Iterator PixelData##_Iterator;
536 %}
537 class PixelData##_Iterator;
538 class PixelData : public wxPixelDataBase
539 {
540 public:
541 %nokwargs PixelData;
542
543 PixelData(wxBitmap& bmp);
544 PixelData(wxBitmap& bmp, const wxRect& rect);
545 PixelData(wxBitmap& bmp, const wxPoint& pt, const wxSize& sz);
546
547 ~PixelData();
548
549 %extend {
550 bool __nonzero__() { return self->operator bool(); }
551 }
552
553 PixelData##_Iterator GetPixels() const;
554 void UseAlpha();
555 };
556
557
558 class PixelData##_Iterator
559 {
560 public:
561 %nokwargs PixelData##_Iterator;
562
563 PixelData##_Iterator(PixelData& data);
564 PixelData##_Iterator(wxBitmap& bmp, PixelData& data);
565 PixelData##_Iterator();
566
567 ~PixelData##_Iterator();
568
569 void Reset(const PixelData& data);
570 bool IsOk() const;
571
572 %extend {
573 // PixelData##_Iterator& nextPixel() { return ++(*self); }
574 void nextPixel() { ++(*self); }
575 }
576
577 void Offset(const PixelData& data, int x, int y);
578 void OffsetX(const PixelData& data, int x);
579 void OffsetY(const PixelData& data, int y);
580 void MoveTo(const PixelData& data, int x, int y);
581
582 %extend {
583 byte _get_Red() { return self->Red(); }
584 byte _get_Green() { return self->Green(); }
585 byte _get_Blue() { return self->Blue(); }
586
587 void _set_Red(byte val) { self->Red() = val; }
588 void _set_Green(byte val) { self->Green() = val; }
589 void _set_Blue(byte val) { self->Blue() = val; }
590 }
591
592 %pythoncode {
593 Red = property(_get_Red, _set_Red)
594 Green = property(_get_Green, _set_Green)
595 Blue = property(_get_Blue, _set_Blue)
596 }
597
598 };
599 %enddef
600
601
602 PIXELDATA(wxNativePixelData)
603 PIXELDATA(wxAlphaPixelData)
604
605
606 // Add in a few things that are different between the wxNativePixelData and
607 // wxAlphaPixelData iterators and so are not included in our macro...
608
609 %extend wxNativePixelData_Iterator {
610 void Set(byte red, byte green, byte blue) {
611 self->Red() = red;
612 self->Green() = green;
613 self->Blue() = blue;
614 }
615
616 PyObject* Get() {
617 PyObject* rv = PyTuple_New(3);
618 PyTuple_SetItem(rv, 0, PyInt_FromLong(self->Red()));
619 PyTuple_SetItem(rv, 1, PyInt_FromLong(self->Green()));
620 PyTuple_SetItem(rv, 2, PyInt_FromLong(self->Blue()));
621 return rv;
622 }
623 }
624
625 %extend wxAlphaPixelData_Iterator {
626 byte _get_Alpha() { return self->Alpha(); }
627 void _set_Alpha(byte val) { self->Alpha() = val; }
628
629 %pythoncode {
630 Alpha = property(_get_Alpha, _set_Alpha)
631 }
632
633 void Set(byte red, byte green, byte blue, byte alpha) {
634 self->Red() = red;
635 self->Green() = green;
636 self->Blue() = blue;
637 self->Alpha() = alpha;
638 }
639
640 PyObject* Get() {
641 PyObject* rv = PyTuple_New(4);
642 PyTuple_SetItem(rv, 0, PyInt_FromLong(self->Red()));
643 PyTuple_SetItem(rv, 1, PyInt_FromLong(self->Green()));
644 PyTuple_SetItem(rv, 2, PyInt_FromLong(self->Blue()));
645 PyTuple_SetItem(rv, 3, PyInt_FromLong(self->Alpha()));
646 return rv;
647 }
648 }
649
650 //---------------------------------------------------------------------------
651
652 DocStr(wxMask,
653 "This class encapsulates a monochrome mask bitmap, where the masked
654 area is black and the unmasked area is white. When associated with a
655 bitmap and drawn in a device context, the unmasked area of the bitmap
656 will be drawn, and the masked area will not be drawn.
657
658 A mask may be associated with a `wx.Bitmap`. It is used in
659 `wx.DC.DrawBitmap` or `wx.DC.Blit` when the source device context is a
660 `wx.MemoryDC` with a `wx.Bitmap` selected into it that contains a
661 mask.", "");
662
663 MustHaveApp(wxMask);
664
665 class wxMask : public wxObject {
666 public:
667
668 DocStr(wxMask,
669 "Constructs a mask from a `wx.Bitmap` and a `wx.Colour` in that bitmap
670 that indicates the transparent portions of the mask. In other words,
671 the pixels in ``bitmap`` that match ``colour`` will be the transparent
672 portions of the mask. If no ``colour`` or an invalid ``colour`` is
673 passed then BLACK is used.
674
675 :see: `wx.Bitmap`, `wx.Colour`", "");
676
677 %extend {
678 wxMask(const wxBitmap& bitmap, const wxColour& colour = wxNullColour) {
679 if ( !colour.Ok() )
680 return new wxMask(bitmap, *wxBLACK);
681 else
682 return new wxMask(bitmap, colour);
683 }
684 }
685
686 ~wxMask();
687 };
688
689 %pythoncode { MaskColour = wx._deprecated(Mask, "wx.MaskColour is deprecated, use `wx.Mask` instead.") }
690
691 //---------------------------------------------------------------------------
692 //---------------------------------------------------------------------------
693 %threadWrapperOn