1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: SWIG interface file for wxDC, wxBrush, wxPen, etc.
9 // Copyright: (c) 1998 by Total Control Software
10 // Licence: wxWindows license
11 /////////////////////////////////////////////////////////////////////////////
18 #include <wx/imaglist.h>
19 #include <wx/fontmap.h>
20 #include <wx/fontenc.h>
21 #include <wx/fontmap.h>
22 #include <wx/fontutil.h>
23 #include <wx/dcbuffer.h>
24 #include <wx/dcmirror.h>
25 #include <wx/iconbndl.h>
28 //----------------------------------------------------------------------
31 %include my_typemaps.i
33 // Import some definitions of other classes, etc.
38 %pragma(python) code = "import wx"
40 //---------------------------------------------------------------------------
42 // Put some wx default wxChar* values into wxStrings.
43 static const wxString wxPyEmptyString(wxT(""));
45 //---------------------------------------------------------------------------
47 class wxGDIObject : public wxObject {
53 void SetVisible( bool visible );
59 //---------------------------------------------------------------------------
62 // TODO: When the API stabalizes and is available on other platforms, add
63 // wrappers for the new wxBitmap, wxRawBitmap, wxDIB stuff...
65 class wxBitmap : public wxGDIObject
68 wxBitmap(const wxString& name, wxBitmapType type=wxBITMAP_TYPE_ANY);
71 wxPalette* GetPalette();
73 bool LoadFile(const wxString& name, wxBitmapType type=wxBITMAP_TYPE_ANY);
74 bool SaveFile(const wxString& name, wxBitmapType type, wxPalette* palette = NULL);
75 void SetMask(wxMask* mask);
76 %pragma(python) addtoclass = "
77 def SetMaskColour(self, colour):
78 mask = wxMaskColour(self, colour)
82 void SetPalette(wxPalette& palette);
88 void SetHandle(long handle);
95 void SetHeight(int h);
98 void SetSize(const wxSize& size);
101 wxBitmap GetSubBitmap( const wxRect& rect );
102 bool CopyFromIcon(const wxIcon& icon);
104 bool CopyFromCursor(const wxCursor& cursor);
106 void SetQuality(int q);
109 %pragma(python) addtoclass = "def __nonzero__(self): return self.Ok()"
113 // Declarations of some alternate "constructors"
114 %new wxBitmap* wxEmptyBitmap(int width, int height, int depth=-1);
115 %new wxBitmap* wxBitmapFromXPMData(PyObject* listOfStrings);
116 %new wxBitmap* wxBitmapFromIcon(const wxIcon& icon);
117 %new wxBitmap* wxBitmapFromBits(PyObject* bits, int width, int height, int depth = 1 );
120 // %new wxBitmap* wxBitmapFromData(PyObject* data, long type,
121 // int width, int height, int depth = 1);
126 %{ // Implementations of some alternate "constructors"
128 wxBitmap* wxEmptyBitmap(int width, int height, int depth=-1) {
129 return new wxBitmap(width, height, depth);
132 static char** ConvertListOfStrings(PyObject* listOfStrings) {
133 char** cArray = NULL;
136 if (!PyList_Check(listOfStrings)) {
137 PyErr_SetString(PyExc_TypeError, "Expected a list of strings.");
140 count = PyList_Size(listOfStrings);
141 cArray = new char*[count];
143 for(int x=0; x<count; x++) {
144 // TODO: Need some validation and error checking here
145 cArray[x] = PyString_AsString(PyList_GET_ITEM(listOfStrings, x));
151 wxBitmap* wxBitmapFromXPMData(PyObject* listOfStrings) {
152 char** cArray = NULL;
155 cArray = ConvertListOfStrings(listOfStrings);
158 bmp = new wxBitmap(cArray);
164 wxBitmap* wxBitmapFromIcon(const wxIcon& icon) {
165 return new wxBitmap(icon);
169 wxBitmap* wxBitmapFromBits(PyObject* bits, int width, int height, int depth = 1 ) {
172 PyString_AsStringAndSize(bits, &buf, &length);
173 return new wxBitmap(buf, width, height, depth);
178 // wxBitmap* wxBitmapFromData(PyObject* data, long type,
179 // int width, int height, int depth = 1) {
180 // if (! PyString_Check(data)) {
181 // PyErr_SetString(PyExc_TypeError, "Expected string object");
184 // return new wxBitmap((void*)PyString_AsString(data), type, width, height, depth);
189 //---------------------------------------------------------------------------
191 class wxMask : public wxObject {
193 wxMask(const wxBitmap& bitmap);
196 %addmethods { void Destroy() { delete self; } }
199 %new wxMask* wxMaskColour(const wxBitmap& bitmap, const wxColour& colour);
201 wxMask* wxMaskColour(const wxBitmap& bitmap, const wxColour& colour) {
202 return new wxMask(bitmap, colour);
207 //---------------------------------------------------------------------------
210 class wxIcon : public wxGDIObject
213 wxIcon(const wxString& name, long flags,
214 int desiredWidth = -1, int desiredHeight = -1);
218 bool LoadFile(const wxString& name, long flags);
221 // wxGDIImage methods
224 void SetHandle(long handle);
230 void SetWidth(int w);
231 void SetHeight(int h);
232 void SetDepth(int d);
234 void SetSize(const wxSize& size);
236 void CopyFromBitmap(const wxBitmap& bmp);
238 %pragma(python) addtoclass = "def __nonzero__(self): return self.Ok()"
242 // Declarations of some alternate "constructors"
243 %new wxIcon* wxEmptyIcon();
244 %new wxIcon* wxIconFromXPMData(PyObject* listOfStrings);
245 %new wxIcon* wxIconFromBitmap(const wxBitmap& bmp);
246 %new wxIcon* wxIconFromLocation(const wxIconLocation& loc);
248 %{ // Implementations of some alternate "constructors"
249 wxIcon* wxEmptyIcon() {
253 wxIcon* wxIconFromXPMData(PyObject* listOfStrings) {
254 char** cArray = NULL;
257 cArray = ConvertListOfStrings(listOfStrings);
260 icon = new wxIcon(cArray);
265 wxIcon* wxIconFromBitmap(const wxBitmap& bmp) {
266 wxIcon* icon = new wxIcon();
267 icon->CopyFromBitmap(bmp);
271 wxIcon* wxIconFromLocation(const wxIconLocation& loc) {
272 wxIcon* icon = new wxIcon(loc);
278 //---------------------------------------------------------------------------
283 // ctor takes the name of the file where the icon is
285 wxIconLocation(const wxString* filename = &wxPyEmptyString, int num = 0) {
287 return new wxIconLocation(*filename, num);
289 return new wxIconLocation(*filename);
297 // returns true if this object is valid/initialized
300 // set/get the icon file name
301 void SetFileName(const wxString& filename);
302 const wxString& GetFileName() const;
305 void SetIndex(int num) {
315 return self->GetIndex();
325 //---------------------------------------------------------------------------
330 // default constructor
333 // initializes the bundle with the icon(s) found in the file
334 %name(wxIconBundleFromFile) wxIconBundle( const wxString& file, long type );
336 // initializes the bundle with a single icon
337 %name(wxIconBundleFromIcon)wxIconBundle( const wxIcon& icon );
341 // adds the icon to the collection, if the collection already
342 // contains an icon with the same width and height, it is
344 void AddIcon( const wxIcon& icon );
346 // adds all the icons contained in the file to the collection,
347 // if the collection already contains icons with the same
348 // width and height, they are replaced
349 %name(AddIconFromFile)void AddIcon( const wxString& file, long type );
351 // returns the icon with the given size; if no such icon exists,
352 // returns the icon with size wxSYS_ICON_[XY]; if no such icon exists,
353 // returns the first icon in the bundle
354 const wxIcon& GetIcon( const wxSize& size ) const;
357 //---------------------------------------------------------------------------
359 class wxCursor : public wxGDIObject
363 wxCursor(const wxString* cursorName, long flags, int hotSpotX=0, int hotSpotY=0) {
365 wxCHECK_MSG(FALSE, NULL,
366 wxT("wxCursor constructor not implemented for wxGTK, use wxStockCursor, wxCursorFromImage, or wxCursorFromBits instead."));
368 return new wxCursor(*cursorName, flags, hotSpotX, hotSpotY);
375 // wxGDIImage methods
378 void SetHandle(long handle);
385 void SetWidth(int w);
386 void SetHeight(int h);
387 void SetDepth(int d);
388 void SetSize(const wxSize& size);
390 %pragma(python) addtoclass = "def __nonzero__(self): return self.Ok()"
393 %name(wxStockCursor) %new wxCursor* wxPyStockCursor(int id);
394 %new wxCursor* wxCursorFromImage(const wxImage& image);
395 %new wxCursor* wxCursorFromBits(PyObject* bits, int width, int height,
396 int hotSpotX=-1, int hotSpotY=-1,
397 PyObject* maskBits=0);
400 wxCursor* wxPyStockCursor(int id) {
401 return new wxCursor(id);
404 wxCursor* wxCursorFromImage(const wxImage& image) {
405 return new wxCursor(image);
408 wxCursor* wxCursorFromBits(PyObject* bits, int width, int height,
409 int hotSpotX=-1, int hotSpotY=-1,
410 PyObject* maskBits=0) {
412 char* maskbuf = NULL;
414 PyString_AsStringAndSize(bits, &bitsbuf, &length);
416 PyString_AsStringAndSize(maskBits, &maskbuf, &length);
417 return new wxCursor(bitsbuf, width, height, hotSpotX, hotSpotY, maskbuf);
421 //----------------------------------------------------------------------
423 class wxColour : public wxObject {
425 wxColour(unsigned char red=0, unsigned char green=0, unsigned char blue=0);
428 unsigned char Green();
429 unsigned char Blue();
431 void Set(unsigned char red, unsigned char green, unsigned char blue);
434 PyObject* rv = PyTuple_New(3);
440 green = self->Green();
443 PyTuple_SetItem(rv, 0, PyInt_FromLong(red));
444 PyTuple_SetItem(rv, 1, PyInt_FromLong(green));
445 PyTuple_SetItem(rv, 2, PyInt_FromLong(blue));
448 bool __eq__(PyObject* obj) {
450 wxColour* ptr = &tmp;
451 if (obj == Py_None) return FALSE;
452 wxPyBLOCK_THREADS(bool success = wxColour_helper(obj, &ptr); PyErr_Clear());
453 if (! success) return FALSE;
454 return *self == *ptr;
456 bool __ne__(PyObject* obj) {
458 wxColour* ptr = &tmp;
459 if (obj == Py_None) return TRUE;
460 wxPyBLOCK_THREADS(bool success = wxColour_helper(obj, &ptr); PyErr_Clear());
461 if (! success) return TRUE;
462 return *self != *ptr;
466 %pragma(python) addtoclass = "asTuple = Get
467 def __str__(self): return str(self.asTuple())
468 def __repr__(self): return 'wxColour' + str(self.asTuple())
469 def __nonzero__(self): return self.Ok()
470 def __getinitargs__(self): return ()
471 def __getstate__(self): return self.asTuple()
472 def __setstate__(self, state): self.Set(*state)
477 %new wxColour* wxNamedColour(const wxString& colorName);
479 %{ // Alternate 'constructor'
480 wxColour* wxNamedColour(const wxString& colorName) {
481 return new wxColour(colorName);
487 class wxColourDatabase : public wxObject {
493 // find colour by name or name for the given colour
494 wxColour Find(const wxString& name) const;
495 wxString FindName(const wxColour& colour) const;
497 // add a new colour to the database
498 void AddColour(const wxString& name, const wxColour& colour);
501 void Append(const wxString& name, int red, int green, int blue) {
502 self->AddColour(name, wxColour(red, green, blue));
508 //----------------------------------------------------------------------
510 class wxPen : public wxGDIObject {
512 wxPen(wxColour& colour, int width=1, int style=wxSOLID);
516 wxColour GetColour();
522 void SetCap(int cap_style);
523 void SetColour(wxColour& colour);
524 void SetJoin(int join_style);
525 void SetStyle(int style);
526 void SetWidth(int width);
529 void SetDashes(int LCOUNT, wxDash* choices);
530 //int GetDashes(wxDash **dashes);
532 PyObject* GetDashes() {
534 int count = self->GetDashes(&dashes);
535 wxPyBeginBlockThreads();
536 PyObject* retval = PyList_New(0);
537 for (int x=0; x<count; x++)
538 PyList_Append(retval, PyInt_FromLong(dashes[x]));
539 wxPyEndBlockThreads();
545 wxBitmap* GetStipple();
546 void SetStipple(wxBitmap& stipple);
549 %pragma(python) addtoclass = "def __nonzero__(self): return self.Ok()"
555 // The list of ints for the dashes needs to exist for the life of the pen
556 // so we make it part of the class to save it. wxPyPen is aliased to wxPen
560 class wxPyPen : public wxPen {
562 wxPyPen(wxColour& colour, int width=1, int style=wxSOLID)
563 : wxPen(colour, width, style)
570 void SetDashes(int nb_dashes, const wxDash *dash) {
573 m_dash = new wxDash[nb_dashes];
574 for (int i=0; i<nb_dashes; i++) {
577 wxPen::SetDashes(nb_dashes, m_dash);
586 class wxPyPen : public wxPen {
588 wxPyPen(wxColour& colour, int width=1, int style=wxSOLID);
591 void SetDashes(int LCOUNT, wxDash* choices);
597 class wxPenList : public wxObject {
600 void AddPen(wxPen* pen);
601 wxPen* FindOrCreatePen(const wxColour& colour, int width, int style);
602 void RemovePen(wxPen* pen);
609 //----------------------------------------------------------------------
611 class wxBrush : public wxGDIObject {
613 wxBrush(const wxColour& colour, int style=wxSOLID);
616 wxColour GetColour();
617 wxBitmap * GetStipple();
620 void SetColour(wxColour &colour);
621 void SetStipple(wxBitmap& bitmap);
622 void SetStyle(int style);
626 void SetMacTheme(short macThemeBrush);
629 %pragma(python) addtoclass = "def __nonzero__(self): return self.Ok()"
633 class wxBrushList : public wxObject {
636 void AddBrush(wxBrush *brush);
637 wxBrush * FindOrCreateBrush(const wxColour& colour, int style);
638 void RemoveBrush(wxBrush *brush);
643 //----------------------------------------------------------------------
646 class wxDC : public wxObject {
648 // wxDC(); **** abstract base class, can't instantiate.
654 bool Blit(wxCoord xdest, wxCoord ydest,
655 wxCoord width, wxCoord height,
656 wxDC *source, wxCoord xsrc, wxCoord ysrc,
657 int logicalFunc = wxCOPY, int useMask = FALSE);
658 // bool Blit(const wxPoint& destPt, const wxSize& sz,
659 // wxDC *source, const wxPoint& srcPt,
660 // int logicalFunc = wxCOPY, int useMask = FALSE);
663 void CrossHair(wxCoord x, wxCoord y);
664 void DestroyClippingRegion();
665 wxCoord DeviceToLogicalX(wxCoord x);
666 wxCoord DeviceToLogicalXRel(wxCoord x);
667 wxCoord DeviceToLogicalY(wxCoord y);
668 wxCoord DeviceToLogicalYRel(wxCoord y);
669 void DrawArc(wxCoord x1, wxCoord y1, wxCoord x2, wxCoord y2, wxCoord xc, wxCoord yc);
670 void DrawCircle(wxCoord x, wxCoord y, wxCoord radius);
671 void DrawEllipse(wxCoord x, wxCoord y, wxCoord width, wxCoord height);
672 void DrawEllipticArc(wxCoord x, wxCoord y, wxCoord width, wxCoord height, wxCoord start, wxCoord end);
673 void DrawIcon(const wxIcon& icon, wxCoord x, wxCoord y);
675 void DrawLabel(const wxString& text, const wxRect& rect,
676 int alignment = wxALIGN_LEFT | wxALIGN_TOP,
677 int indexAccel = -1);
680 wxRect DrawImageLabel(const wxString& text,
681 const wxBitmap& image,
683 int alignment = wxALIGN_LEFT | wxALIGN_TOP,
684 int indexAccel = -1) {
686 self->DrawLabel(text, image, rect, alignment, indexAccel, &rv);
691 void DrawLine(wxCoord x1, wxCoord y1, wxCoord x2, wxCoord y2);
692 void DrawLines(int PCOUNT, wxPoint* points, wxCoord xoffset=0, wxCoord yoffset=0);
693 void DrawPolygon(int PCOUNT, wxPoint* points, wxCoord xoffset=0, wxCoord yoffset=0,
694 int fill_style=wxODDEVEN_RULE);
695 void DrawPoint(wxCoord x, wxCoord y);
696 void DrawRectangle(wxCoord x, wxCoord y, wxCoord width, wxCoord height);
697 %name(DrawRectangleRect)void DrawRectangle(const wxRect& rect);
698 void DrawRotatedText(const wxString& text, wxCoord x, wxCoord y, double angle);
699 void DrawRoundedRectangle(wxCoord x, wxCoord y, wxCoord width, wxCoord height, wxCoord radius=20);
700 void DrawSpline(int PCOUNT, wxPoint* points);
701 void DrawText(const wxString& text, wxCoord x, wxCoord y);
705 bool FloodFill(wxCoord x, wxCoord y, const wxColour& colour, int style=wxFLOOD_SURFACE);
706 wxBrush GetBackground();
708 wxCoord GetCharHeight();
709 wxCoord GetCharWidth();
710 void GetClippingBox(wxCoord *OUTPUT, wxCoord *OUTPUT,
711 wxCoord *OUTPUT, wxCoord *OUTPUT);
713 int GetLogicalFunction();
714 void GetLogicalScale(double *OUTPUT, double *OUTPUT);
716 bool GetOptimization();
719 %new wxColour* GetPixel(wxCoord x, wxCoord y) {
720 wxColour* wc = new wxColour();
721 self->GetPixel(x, y, wc);
725 %name(GetSizeTuple)void GetSize(int* OUTPUT, int* OUTPUT);
728 wxColour GetTextBackground();
729 void GetTextExtent(const wxString& string, wxCoord *OUTPUT, wxCoord *OUTPUT);
730 %name(GetFullTextExtent)void GetTextExtent(const wxString& string,
731 wxCoord *OUTPUT, wxCoord *OUTPUT, wxCoord *OUTPUT, wxCoord* OUTPUT,
732 const wxFont* font = NULL);
733 void GetMultiLineTextExtent(const wxString& text, wxCoord *OUTPUT, wxCoord *OUTPUT, wxCoord *OUTPUT,
734 wxFont *font = NULL);
735 wxColour GetTextForeground();
736 void GetUserScale(double *OUTPUT, double *OUTPUT);
737 wxCoord LogicalToDeviceX(wxCoord x);
738 wxCoord LogicalToDeviceXRel(wxCoord x);
739 wxCoord LogicalToDeviceY(wxCoord y);
740 wxCoord LogicalToDeviceYRel(wxCoord y);
746 void SetDeviceOrigin(wxCoord x, wxCoord y);
747 void SetBackground(const wxBrush& brush);
748 void SetBackgroundMode(int mode);
749 void SetClippingRegion(wxCoord x, wxCoord y, wxCoord width, wxCoord height);
750 %name(SetClippingRegionAsRegion) void SetClippingRegion(const wxRegion& region);
751 %name(SetClippingRect) void SetClippingRegion(const wxRect& rect);
752 void SetPalette(const wxPalette& colourMap);
753 void SetBrush(const wxBrush& brush);
754 void SetFont(const wxFont& font);
755 void SetLogicalFunction(int function);
756 void SetLogicalScale(double x, double y);
757 void SetMapMode(int mode);
758 void SetOptimization(bool optimize);
759 void SetPen(const wxPen& pen);
760 void SetTextBackground(const wxColour& colour);
761 void SetTextForeground(const wxColour& colour);
762 void SetUserScale(double x_scale, double y_scale);
763 bool StartDoc(const wxString& message);
768 void DrawBitmap(const wxBitmap& bitmap, wxCoord x, wxCoord y,
769 int useMask = FALSE);
771 bool CanDrawBitmap();
772 bool CanGetTextExtent();
776 void GetLogicalOrigin(int *OUTPUT, int *OUTPUT);
777 void SetLogicalOrigin(int x, int y);
778 void GetDeviceOrigin(int *OUTPUT, int *OUTPUT);
779 void SetAxisOrientation(bool xLeftRight, bool yBottomUp);
781 void CalcBoundingBox(int x, int y);
782 void ResetBoundingBox();
785 void GetBoundingBox(int* OUTPUT, int* OUTPUT, int* OUTPUT, int* OUTPUT);
786 // See below for implementation
789 %pragma(python) addtoclass = "def __nonzero__(self): return self.Ok()"
796 %addmethods { // See drawlist.cpp for impplementaion of these...
798 PyObject* _DrawPointList(PyObject* pyCoords, PyObject* pyPens, PyObject* pyBrushes)
800 return wxPyDrawXXXList(*self, wxPyDrawXXXPoint, pyCoords, pyPens, pyBrushes);
803 PyObject* _DrawLineList(PyObject* pyCoords, PyObject* pyPens, PyObject* pyBrushes)
805 return wxPyDrawXXXList(*self, wxPyDrawXXXLine, pyCoords, pyPens, pyBrushes);
808 PyObject* _DrawRectangleList(PyObject* pyCoords, PyObject* pyPens, PyObject* pyBrushes)
810 return wxPyDrawXXXList(*self, wxPyDrawXXXRectangle, pyCoords, pyPens, pyBrushes);
813 PyObject* _DrawEllipseList(PyObject* pyCoords, PyObject* pyPens, PyObject* pyBrushes)
815 return wxPyDrawXXXList(*self, wxPyDrawXXXEllipse, pyCoords, pyPens, pyBrushes);
818 PyObject* _DrawPolygonList(PyObject* pyCoords, PyObject* pyPens, PyObject* pyBrushes)
820 return wxPyDrawXXXList(*self, wxPyDrawXXXPolygon, pyCoords, pyPens, pyBrushes);
823 PyObject* _DrawTextList(PyObject* textList, PyObject* pyPoints,
824 PyObject* foregroundList, PyObject* backgroundList) {
825 return wxPyDrawTextList(*self, textList, pyPoints, foregroundList, backgroundList);
829 %pragma(python) addtoclass = "
830 def DrawPointList(self, points, pens=None):
833 elif isinstance(pens, wxPenPtr):
835 elif len(pens) != len(points):
836 raise ValueError('points and pens must have same length')
837 return self._DrawPointList(points, pens, [])
840 def DrawLineList(self, lines, pens=None):
843 elif isinstance(pens, wxPenPtr):
845 elif len(pens) != len(lines):
846 raise ValueError('lines and pens must have same length')
847 return self._DrawLineList(lines, pens, [])
850 def DrawRectangleList(self, rectangles, pens=None, brushes=None):
853 elif isinstance(pens, wxPenPtr):
855 elif len(pens) != len(rectangles):
856 raise ValueError('rectangles and pens must have same length')
859 elif isinstance(brushes, wxBrushPtr):
861 elif len(brushes) != len(rectangles):
862 raise ValueError('rectangles and brushes must have same length')
863 return self._DrawRectangleList(rectangles, pens, brushes)
866 def DrawEllipseList(self, ellipses, pens=None, brushes=None):
869 elif isinstance(pens, wxPenPtr):
871 elif len(pens) != len(ellipses):
872 raise ValueError('ellipses and pens must have same length')
875 elif isinstance(brushes, wxBrushPtr):
877 elif len(brushes) != len(ellipses):
878 raise ValueError('ellipses and brushes must have same length')
879 return self._DrawEllipseList(ellipses, pens, brushes)
882 def DrawPolygonList(self, polygons, pens=None, brushes=None):
883 ## Note: This does not currently support fill style or offset
884 ## you can always use the non-List version if need be.
885 ## I really would like to support fill-style, however,
886 ## but wxODDEVEN_RULE does not appear to be defined at the Python level
887 ## [It's in wx.py... --Robin]
890 elif isinstance(pens, wxPenPtr):
892 elif len(pens) != len(polygons):
893 raise ValueError('polygons and pens must have same length')
896 elif isinstance(brushes, wxBrushPtr):
898 elif len(brushes) != len(polygons):
899 raise ValueError('polygons and brushes must have same length')
900 return self._DrawPolygonList(polygons, pens, brushes)
903 def DrawTextList(self, textList, coords, foregrounds = None, backgrounds = None, fonts = None):
904 ## NOTE: this does not currently support changing the font
905 ## Make sure you set Background mode to wxSolid (DC.SetBackgroundMode)
906 ## If you want backgounds to do anything.
907 if type(textList) == type(''):
908 textList = [textList]
909 elif len(textList) != len(coords):
910 raise ValueError('textlist and coords must have same length')
911 if foregrounds is None:
913 elif isinstance(foregrounds, wxColourPtr):
914 foregrounds = [foregrounds]
915 elif len(foregrounds) != len(coords):
916 raise ValueError('foregrounds and coords must have same length')
917 if backgrounds is None:
919 elif isinstance(backgrounds, wxColourPtr):
920 backgrounds = [backgrounds]
921 elif len(backgrounds) != len(coords):
922 raise ValueError('backgrounds and coords must have same length')
923 return self._DrawTextList(textList, coords, foregrounds, backgrounds)
932 static void wxDC_GetBoundingBox(wxDC* dc, int* x1, int* y1, int* x2, int* y2) {
940 //----------------------------------------------------------------------
942 class wxMemoryDC : public wxDC {
946 void SelectObject(const wxBitmap& bitmap);
949 %new wxMemoryDC* wxMemoryDCFromDC(wxDC* oldDC);
950 %{ // Alternate 'constructor'
951 wxMemoryDC* wxMemoryDCFromDC(wxDC* oldDC) {
952 return new wxMemoryDC(oldDC);
957 //---------------------------------------------------------------------------
959 class wxBufferedDC : public wxMemoryDC {
961 // Construct a wxBufferedDC using a user supplied buffer.
962 wxBufferedDC( wxDC *dc, const wxBitmap &buffer );
964 // Construct a wxBufferedDC with an internal buffer of 'area'
965 // (where area is usually something like the size of the window
967 %name(wxBufferedDCInternalBuffer)wxBufferedDC( wxDC *dc, const wxSize &area );
969 // Blits the buffer to the dc, and detaches the dc from
970 // the buffer. Usually called in the dtor or by the dtor
971 // of derived classes if the BufferedDC must blit before
972 // the derived class (which may own the dc it's blitting
977 %pragma(python) addtomethod =
978 "__init__:self._dc = _args[0] # save a ref so the other dc won't be deleted before self"
979 %pragma(python) addtomethod =
980 "wxBufferedDCInternalBuffer:val._dc = _args[0] # save a ref so the other dc won't be deleted before self"
984 class wxBufferedPaintDC : public wxBufferedDC
987 wxBufferedPaintDC( wxWindow *window, const wxBitmap &buffer = wxNullBitmap );
990 //---------------------------------------------------------------------------
992 class wxScreenDC : public wxDC {
996 %name(StartDrawingOnTopWin) bool StartDrawingOnTop(wxWindow* window);
997 bool StartDrawingOnTop(wxRect* rect = NULL);
998 bool EndDrawingOnTop();
1001 //---------------------------------------------------------------------------
1003 class wxClientDC : public wxDC {
1005 wxClientDC(wxWindow* win);
1008 //---------------------------------------------------------------------------
1010 class wxPaintDC : public wxDC {
1012 wxPaintDC(wxWindow* win);
1015 //---------------------------------------------------------------------------
1017 class wxWindowDC : public wxDC {
1019 wxWindowDC(wxWindow* win);
1022 //---------------------------------------------------------------------------
1024 class wxMirrorDC : public wxDC
1027 // constructs a mirror DC associated with the given real DC
1029 // if mirror parameter is true, all vertical and horizontal coordinates are
1030 // exchanged, otherwise this class behaves in exactly the same way as a
1033 wxMirrorDC(wxDC& dc, bool mirror);
1036 //---------------------------------------------------------------------------
1042 #include <wx/metafile.h>
1045 class wxMetaFile : public wxObject {
1047 wxMetaFile(const wxString& filename = wxPyEmptyString);
1051 bool SetClipboard(int width = 0, int height = 0);
1057 const wxString& GetFileName() const { return m_filename; }
1059 %pragma(python) addtoclass = "def __nonzero__(self): return self.Ok()"
1062 // bool wxMakeMetaFilePlaceable(const wxString& filename,
1063 // int minX, int minY, int maxX, int maxY, float scale=1.0);
1066 class wxMetaFileDC : public wxDC {
1068 wxMetaFileDC(const wxString& filename = wxPyEmptyString,
1069 int width = 0, int height = 0,
1070 const wxString& description = wxPyEmptyString);
1071 wxMetaFile* Close();
1076 //---------------------------------------------------------------------------
1078 class wxPalette : public wxGDIObject {
1080 wxPalette(int LCOUNT, byte* choices, byte* choices, byte* choices);
1083 int GetPixel(byte red, byte green, byte blue);
1084 bool GetRGB(int pixel, byte* OUTPUT, byte* OUTPUT, byte* OUTPUT);
1087 %pragma(python) addtoclass = "def __nonzero__(self): return self.Ok()"
1090 //---------------------------------------------------------------------------
1093 wxIMAGELIST_DRAW_NORMAL ,
1094 wxIMAGELIST_DRAW_TRANSPARENT,
1095 wxIMAGELIST_DRAW_SELECTED,
1096 wxIMAGELIST_DRAW_FOCUSED,
1097 wxIMAGE_LIST_NORMAL,
1102 class wxImageList : public wxObject {
1104 wxImageList(int width, int height, int mask=TRUE, int initialCount=1);
1107 int Add(const wxBitmap& bitmap, const wxBitmap& mask = wxNullBitmap);
1108 %name(AddWithColourMask)int Add(const wxBitmap& bitmap, const wxColour& maskColour);
1109 %name(AddIcon)int Add(const wxIcon& icon);
1111 bool Replace(int index, const wxBitmap& bitmap, const wxBitmap& mask = wxNullBitmap);
1113 // %name(ReplaceIcon)bool Replace(int index, const wxIcon& icon);
1114 // int Add(const wxBitmap& bitmap);
1115 bool Replace(int index, const wxBitmap& bitmap);
1118 bool Draw(int index, wxDC& dc, int x, int x, int flags = wxIMAGELIST_DRAW_NORMAL,
1119 const bool solidBackground = FALSE);
1121 int GetImageCount();
1122 bool Remove(int index);
1124 void GetSize(int index, int& OUTPUT, int& OUTPUT);
1128 //---------------------------------------------------------------------------
1131 enum wxRegionContain {
1132 wxOutRegion, wxPartRegion, wxInRegion
1136 class wxRegion : public wxGDIObject {
1138 wxRegion(wxCoord x=0, wxCoord y=0, wxCoord width=0, wxCoord height=0);
1140 %name(wxRegionFromPoints)wxRegion(int PCOUNT, wxPoint* points, int fillStyle = wxWINDING_RULE);
1142 %name(wxRegionFromBitmap)wxRegion(const wxBitmap& bmp,
1143 const wxColour& transColour = wxNullColour,
1150 bool Offset(wxCoord x, wxCoord y);
1153 wxRegionContain Contains(wxCoord x, wxCoord y);
1154 %name(ContainsPoint)wxRegionContain Contains(const wxPoint& pt);
1155 %name(ContainsRect)wxRegionContain Contains(const wxRect& rect);
1156 %name(ContainsRectDim)wxRegionContain Contains(wxCoord x, wxCoord y, wxCoord w, wxCoord h);
1160 bool Intersect(wxCoord x, wxCoord y, wxCoord width, wxCoord height);
1161 %name(IntersectRect)bool Intersect(const wxRect& rect);
1162 %name(IntersectRegion)bool Intersect(const wxRegion& region);
1166 bool Union(wxCoord x, wxCoord y, wxCoord width, wxCoord height);
1167 %name(UnionRect)bool Union(const wxRect& rect);
1168 %name(UnionRegion)bool Union(const wxRegion& region);
1170 bool Subtract(wxCoord x, wxCoord y, wxCoord width, wxCoord height);
1171 %name(SubtractRect)bool Subtract(const wxRect& rect);
1172 %name(SubtractRegion)bool Subtract(const wxRegion& region);
1174 bool Xor(wxCoord x, wxCoord y, wxCoord width, wxCoord height);
1175 %name(XorRect)bool Xor(const wxRect& rect);
1176 %name(XorRegion)bool Xor(const wxRegion& region);
1178 // Convert the region to a B&W bitmap with the white pixels being inside
1180 wxBitmap ConvertToBitmap();
1182 // Use the non-transparent pixels of a wxBitmap for the region to combine
1183 // with this region. If the bitmap has a mask then it will be used,
1184 // otherwise the colour to be treated as transparent may be specified,
1185 // along with an optional tolerance value.
1186 %name(UnionBitmap)bool Union(const wxBitmap& bmp,
1187 const wxColour& transColour = wxNullColour,
1193 class wxRegionIterator : public wxObject {
1195 wxRegionIterator(const wxRegion& region);
1196 ~wxRegionIterator();
1203 wxCoord GetHeight();
1213 bool __nonzero__() {
1214 return self->operator bool();
1220 //---------------------------------------------------------------------------
1228 // See also wxPy_ReinitStockObjects in helpers.cpp
1230 extern wxFont *wxNORMAL_FONT;
1231 extern wxFont *wxSMALL_FONT;
1232 extern wxFont *wxITALIC_FONT;
1233 extern wxFont *wxSWISS_FONT;
1235 extern wxPen *wxRED_PEN;
1236 extern wxPen *wxCYAN_PEN;
1237 extern wxPen *wxGREEN_PEN;
1238 extern wxPen *wxBLACK_PEN;
1239 extern wxPen *wxWHITE_PEN;
1240 extern wxPen *wxTRANSPARENT_PEN;
1241 extern wxPen *wxBLACK_DASHED_PEN;
1242 extern wxPen *wxGREY_PEN;
1243 extern wxPen *wxMEDIUM_GREY_PEN;
1244 extern wxPen *wxLIGHT_GREY_PEN;
1246 extern wxBrush *wxBLUE_BRUSH;
1247 extern wxBrush *wxGREEN_BRUSH;
1248 extern wxBrush *wxWHITE_BRUSH;
1249 extern wxBrush *wxBLACK_BRUSH;
1250 extern wxBrush *wxTRANSPARENT_BRUSH;
1251 extern wxBrush *wxCYAN_BRUSH;
1252 extern wxBrush *wxRED_BRUSH;
1253 extern wxBrush *wxGREY_BRUSH;
1254 extern wxBrush *wxMEDIUM_GREY_BRUSH;
1255 extern wxBrush *wxLIGHT_GREY_BRUSH;
1257 extern wxColour *wxBLACK;
1258 extern wxColour *wxWHITE;
1259 extern wxColour *wxRED;
1260 extern wxColour *wxBLUE;
1261 extern wxColour *wxGREEN;
1262 extern wxColour *wxCYAN;
1263 extern wxColour *wxLIGHT_GREY;
1265 extern wxCursor *wxSTANDARD_CURSOR;
1266 extern wxCursor *wxHOURGLASS_CURSOR;
1267 extern wxCursor *wxCROSS_CURSOR;
1270 extern wxBitmap wxNullBitmap;
1271 extern wxIcon wxNullIcon;
1272 extern wxCursor wxNullCursor;
1273 extern wxPen wxNullPen;
1274 extern wxBrush wxNullBrush;
1275 extern wxPalette wxNullPalette;
1276 extern wxFont wxNullFont;
1277 extern wxColour wxNullColour;
1280 extern wxFontList* wxTheFontList;
1281 extern wxPenList* wxThePenList;
1282 extern wxBrushList* wxTheBrushList;
1283 extern wxColourDatabase* wxTheColourDatabase;
1291 //---------------------------------------------------------------------------
1292 //---------------------------------------------------------------------------