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/iconbndl.h>
27 //----------------------------------------------------------------------
30 %include my_typemaps.i
32 // Import some definitions of other classes, etc.
38 //---------------------------------------------------------------------------
40 // Put some wx default wxChar* values into wxStrings.
41 static const wxString wxPyEmptyString(wxT(""));
43 //---------------------------------------------------------------------------
45 class wxGDIObject : public wxObject {
51 void SetVisible( bool visible );
57 //---------------------------------------------------------------------------
59 class wxBitmap : public wxGDIObject
62 wxBitmap(const wxString& name, wxBitmapType type=wxBITMAP_TYPE_ANY);
65 wxPalette* GetPalette();
67 bool LoadFile(const wxString& name, wxBitmapType type=wxBITMAP_TYPE_ANY);
68 bool SaveFile(const wxString& name, wxBitmapType type, wxPalette* palette = NULL);
69 void SetMask(wxMask* mask);
71 void SetPalette(wxPalette& palette);
77 void SetHandle(long handle);
84 void SetHeight(int h);
87 void SetSize(const wxSize& size);
90 wxBitmap GetSubBitmap( const wxRect& rect );
91 bool CopyFromIcon(const wxIcon& icon);
93 bool CopyFromCursor(const wxCursor& cursor);
95 void SetQuality(int q);
98 %pragma(python) addtoclass = "
99 def __del__(self,gdic=gdic):
101 if self.thisown == 1 :
102 gdic.delete_wxBitmap(self)
109 // Declarations of some alternate "constructors"
110 %new wxBitmap* wxEmptyBitmap(int width, int height, int depth=-1);
111 %new wxBitmap* wxBitmapFromXPMData(PyObject* listOfStrings);
112 %new wxBitmap* wxBitmapFromIcon(const wxIcon& icon);
113 %new wxBitmap* wxBitmapFromBits(char* bits, int width, int height, int depth = 1 );
116 // %new wxBitmap* wxBitmapFromData(PyObject* data, long type,
117 // int width, int height, int depth = 1);
122 %{ // Implementations of some alternate "constructors"
124 wxBitmap* wxEmptyBitmap(int width, int height, int depth=-1) {
125 return new wxBitmap(width, height, depth);
128 static char** ConvertListOfStrings(PyObject* listOfStrings) {
129 char** cArray = NULL;
132 if (!PyList_Check(listOfStrings)) {
133 PyErr_SetString(PyExc_TypeError, "Expected a list of strings.");
136 count = PyList_Size(listOfStrings);
137 cArray = new char*[count];
139 for(int x=0; x<count; x++) {
140 // TODO: Need some validation and error checking here
141 cArray[x] = PyString_AsString(PyList_GET_ITEM(listOfStrings, x));
147 wxBitmap* wxBitmapFromXPMData(PyObject* listOfStrings) {
148 char** cArray = NULL;
151 cArray = ConvertListOfStrings(listOfStrings);
154 bmp = new wxBitmap(cArray);
160 wxBitmap* wxBitmapFromIcon(const wxIcon& icon) {
161 return new wxBitmap(icon);
165 wxBitmap* wxBitmapFromBits(char* bits, int width, int height, int depth = 1 ) {
166 return new wxBitmap(bits, width, height, depth);
171 // wxBitmap* wxBitmapFromData(PyObject* data, long type,
172 // int width, int height, int depth = 1) {
173 // if (! PyString_Check(data)) {
174 // PyErr_SetString(PyExc_TypeError, "Expected string object");
177 // return new wxBitmap((void*)PyString_AsString(data), type, width, height, depth);
182 //---------------------------------------------------------------------------
184 class wxMask : public wxObject {
186 wxMask(const wxBitmap& bitmap);
189 %addmethods { void Destroy() { delete self; } }
192 %new wxMask* wxMaskColour(const wxBitmap& bitmap, const wxColour& colour);
194 wxMask* wxMaskColour(const wxBitmap& bitmap, const wxColour& colour) {
195 return new wxMask(bitmap, colour);
200 //---------------------------------------------------------------------------
203 class wxIcon : public wxGDIObject
206 wxIcon(const wxString& name, long flags,
207 int desiredWidth = -1, int desiredHeight = -1);
211 bool LoadFile(const wxString& name, long flags);
214 // wxGDIImage methods
217 void SetHandle(long handle);
223 void SetWidth(int w);
224 void SetHeight(int h);
225 void SetDepth(int d);
227 void SetSize(const wxSize& size);
229 void CopyFromBitmap(const wxBitmap& bmp);
231 %pragma(python) addtoclass = "
232 def __del__(self,gdic=gdic):
234 if self.thisown == 1 :
235 gdic.delete_wxIcon(self)
242 // Declarations of some alternate "constructors"
243 %new wxIcon* wxEmptyIcon();
244 %new wxIcon* wxIconFromXPMData(PyObject* listOfStrings);
245 %new wxIcon* wxIconFromBitmap(const wxBitmap& bmp);
247 %{ // Implementations of some alternate "constructors"
248 wxIcon* wxEmptyIcon() {
252 wxIcon* wxIconFromXPMData(PyObject* listOfStrings) {
253 char** cArray = NULL;
256 cArray = ConvertListOfStrings(listOfStrings);
259 icon = new wxIcon(cArray);
264 wxIcon* wxIconFromBitmap(const wxBitmap& bmp) {
265 wxIcon* icon = new wxIcon();
266 icon->CopyFromBitmap(bmp);
271 //---------------------------------------------------------------------------
276 // default constructor
279 // initializes the bundle with the icon(s) found in the file
280 %name(wxIconBundleFromFile) wxIconBundle( const wxString& file, long type );
282 // initializes the bundle with a single icon
283 %name(wxIconBundleFromIcon)wxIconBundle( const wxIcon& icon );
287 // adds the icon to the collection, if the collection already
288 // contains an icon with the same width and height, it is
290 void AddIcon( const wxIcon& icon );
292 // adds all the icons contained in the file to the collection,
293 // if the collection already contains icons with the same
294 // width and height, they are replaced
295 %name(AddIconFromFile)void AddIcon( const wxString& file, long type );
297 // returns the icon with the given size; if no such icon exists,
298 // returns the icon with size wxSYS_ICON_[XY]; if no such icon exists,
299 // returns the first icon in the bundle
300 const wxIcon& GetIcon( const wxSize& size ) const;
303 //---------------------------------------------------------------------------
305 class wxCursor : public wxGDIObject
309 wxCursor(const wxString& cursorName, long flags, int hotSpotX=0, int hotSpotY=0);
313 // wxGDIImage methods
316 void SetHandle(long handle);
323 void SetWidth(int w);
324 void SetHeight(int h);
325 void SetDepth(int d);
326 void SetSize(const wxSize& size);
330 %name(wxStockCursor) %new wxCursor* wxPyStockCursor(int id);
331 %{ // Alternate 'constructor'
332 wxCursor* wxPyStockCursor(int id) {
333 return new wxCursor(id);
337 //----------------------------------------------------------------------
339 class wxColour : public wxObject {
341 wxColour(unsigned char red=0, unsigned char green=0, unsigned char blue=0);
344 unsigned char Green();
345 unsigned char Blue();
347 void Set(unsigned char red, unsigned char green, unsigned char blue);
350 PyObject* rv = PyTuple_New(3);
351 PyTuple_SetItem(rv, 0, PyInt_FromLong(self->Red()));
352 PyTuple_SetItem(rv, 1, PyInt_FromLong(self->Green()));
353 PyTuple_SetItem(rv, 2, PyInt_FromLong(self->Blue()));
357 %pragma(python) addtoclass = "asTuple = Get"
358 %pragma(python) addtoclass = "def __str__(self): return str(self.asTuple())"
359 %pragma(python) addtoclass = "def __repr__(self): return str(self.asTuple())"
363 %new wxColour* wxNamedColour(const wxString& colorName);
365 %{ // Alternate 'constructor'
366 wxColour* wxNamedColour(const wxString& colorName) {
367 return new wxColour(colorName);
373 class wxColourDatabase : public wxObject {
376 wxColour *FindColour(const wxString& colour);
377 wxString FindName(const wxColour& colour) const;
380 void Append(const wxString& name, int red, int green, int blue) {
381 // first see if the name is already there
382 wxString cName = name;
384 wxString cName2 = cName;
385 if ( !cName2.Replace(wxT("GRAY"), wxT("GREY")) )
388 wxNode *node = self->First();
390 const wxChar *key = node->GetKeyString();
391 if ( cName == key || cName2 == key ) {
392 wxColour* c = (wxColour *)node->Data();
393 c->Set(red, green, blue);
399 // otherwise append the new colour
400 self->Append(name.c_str(), new wxColour(red, green, blue));
406 //----------------------------------------------------------------------
408 class wxPen : public wxGDIObject {
410 wxPen(wxColour& colour, int width=1, int style=wxSOLID);
414 wxColour GetColour();
420 void SetCap(int cap_style);
421 void SetColour(wxColour& colour);
422 void SetJoin(int join_style);
423 void SetStyle(int style);
424 void SetWidth(int width);
427 void SetDashes(int LCOUNT, wxDash* choices);
428 //int GetDashes(wxDash **dashes);
430 PyObject* GetDashes() {
432 int count = self->GetDashes(&dashes);
433 wxPyBeginBlockThreads();
434 PyObject* retval = PyList_New(0);
435 for (int x=0; x<count; x++)
436 PyList_Append(retval, PyInt_FromLong(dashes[x]));
437 wxPyEndBlockThreads();
443 wxBitmap* GetStipple();
444 void SetStipple(wxBitmap& stipple);
451 // The list of ints for the dashes needs to exist for the life of the pen
452 // so we make it part of the class to save it. wxPyPen is aliased to wxPen
456 class wxPyPen : public wxPen {
458 wxPyPen(wxColour& colour, int width=1, int style=wxSOLID)
459 : wxPen(colour, width, style)
466 void SetDashes(int nb_dashes, const wxDash *dash) {
469 m_dash = new wxDash[nb_dashes];
470 for (int i=0; i<nb_dashes; i++) {
473 wxPen::SetDashes(nb_dashes, m_dash);
482 class wxPyPen : public wxPen {
484 wxPyPen(wxColour& colour, int width=1, int style=wxSOLID);
487 void SetDashes(int LCOUNT, wxDash* choices);
493 class wxPenList : public wxObject {
496 void AddPen(wxPen* pen);
497 wxPen* FindOrCreatePen(const wxColour& colour, int width, int style);
498 void RemovePen(wxPen* pen);
505 //----------------------------------------------------------------------
507 class wxBrush : public wxGDIObject {
509 wxBrush(const wxColour& colour, int style=wxSOLID);
512 wxColour GetColour();
513 wxBitmap * GetStipple();
516 void SetColour(wxColour &colour);
517 void SetStipple(wxBitmap& bitmap);
518 void SetStyle(int style);
522 class wxBrushList : public wxObject {
525 void AddBrush(wxBrush *brush);
526 wxBrush * FindOrCreateBrush(const wxColour& colour, int style);
527 void RemoveBrush(wxBrush *brush);
532 //----------------------------------------------------------------------
536 class wxDC : public wxObject {
538 // wxDC(); **** abstract base class, can't instantiate.
543 bool Blit(long xdest, long ydest,
544 long width, long height,
545 wxDC *source, long xsrc, long ysrc,
546 int logicalFunc = wxCOPY, int useMask = FALSE);
547 // bool Blit(const wxPoint& destPt, const wxSize& sz,
548 // wxDC *source, const wxPoint& srcPt,
549 // int logicalFunc = wxCOPY, int useMask = FALSE);
552 void CrossHair(long x, long y);
553 void DestroyClippingRegion();
554 long DeviceToLogicalX(long x);
555 long DeviceToLogicalXRel(long x);
556 long DeviceToLogicalY(long y);
557 long DeviceToLogicalYRel(long y);
558 void DrawArc(long x1, long y1, long x2, long y2, long xc, long yc);
559 void DrawCircle(long x, long y, long radius);
560 void DrawEllipse(long x, long y, long width, long height);
561 void DrawEllipticArc(long x, long y, long width, long height, long start, long end);
562 void DrawIcon(const wxIcon& icon, long x, long y);
564 void DrawLabel(const wxString& text, const wxRect& rect,
565 int alignment = wxALIGN_LEFT | wxALIGN_TOP,
566 int indexAccel = -1);
569 wxRect DrawImageLabel(const wxString& text,
570 const wxBitmap& image,
572 int alignment = wxALIGN_LEFT | wxALIGN_TOP,
573 int indexAccel = -1) {
575 self->DrawLabel(text, image, rect, alignment, indexAccel, &rv);
580 void DrawLine(long x1, long y1, long x2, long y2);
581 void DrawLines(int PCOUNT, wxPoint* points, long xoffset=0, long yoffset=0);
582 void DrawPolygon(int PCOUNT, wxPoint* points, long xoffset=0, long yoffset=0,
583 int fill_style=wxODDEVEN_RULE);
584 void DrawPoint(long x, long y);
585 void DrawRectangle(long x, long y, long width, long height);
586 void DrawRotatedText(const wxString& text, wxCoord x, wxCoord y, double angle);
587 void DrawRoundedRectangle(long x, long y, long width, long height, long radius=20);
588 void DrawSpline(int PCOUNT, wxPoint* points);
589 void DrawText(const wxString& text, long x, long y);
593 bool FloodFill(long x, long y, const wxColour& colour, int style=wxFLOOD_SURFACE);
594 wxBrush GetBackground();
596 long GetCharHeight();
598 void GetClippingBox(long *OUTPUT, long *OUTPUT,
599 long *OUTPUT, long *OUTPUT);
601 int GetLogicalFunction();
602 void GetLogicalScale(double *OUTPUT, double *OUTPUT);
604 bool GetOptimization();
607 %new wxColour* GetPixel(long x, long y) {
608 wxColour* wc = new wxColour();
609 self->GetPixel(x, y, wc);
613 %name(GetSizeTuple)void GetSize(int* OUTPUT, int* OUTPUT);
616 wxColour GetTextBackground();
617 void GetTextExtent(const wxString& string, long *OUTPUT, long *OUTPUT);
618 %name(GetFullTextExtent)void GetTextExtent(const wxString& string,
619 long *OUTPUT, long *OUTPUT, long *OUTPUT, long* OUTPUT,
620 const wxFont* font = NULL);
621 wxColour GetTextForeground();
622 void GetUserScale(double *OUTPUT, double *OUTPUT);
623 long LogicalToDeviceX(long x);
624 long LogicalToDeviceXRel(long x);
625 long LogicalToDeviceY(long y);
626 long LogicalToDeviceYRel(long y);
632 void SetDeviceOrigin(long x, long y);
633 void SetBackground(const wxBrush& brush);
634 void SetBackgroundMode(int mode);
635 void SetClippingRegion(long x, long y, long width, long height);
636 %name(SetClippingRegionAsRegion) void SetClippingRegion(const wxRegion& region);
637 void SetPalette(const wxPalette& colourMap);
638 void SetBrush(const wxBrush& brush);
639 void SetFont(const wxFont& font);
640 void SetLogicalFunction(int function);
641 void SetLogicalScale(double x, double y);
642 void SetMapMode(int mode);
643 void SetOptimization(bool optimize);
644 void SetPen(const wxPen& pen);
645 void SetTextBackground(const wxColour& colour);
646 void SetTextForeground(const wxColour& colour);
647 void SetUserScale(double x_scale, double y_scale);
648 bool StartDoc(const wxString& message);
653 void DrawBitmap(const wxBitmap& bitmap, long x, long y,
654 int useMask = FALSE);
656 bool CanDrawBitmap();
657 bool CanGetTextExtent();
661 void GetLogicalOrigin(int *OUTPUT, int *OUTPUT);
662 void SetLogicalOrigin(int x, int y);
663 void GetDeviceOrigin(int *OUTPUT, int *OUTPUT);
664 void SetAxisOrientation(bool xLeftRight, bool yBottomUp);
666 void CalcBoundingBox(int x, int y);
667 void ResetBoundingBox();
670 void GetBoundingBox(int* OUTPUT, int* OUTPUT, int* OUTPUT, int* OUTPUT);
671 // See below for implementation
680 // NOTE: These methods are VERY SIMILAR in implentation. It would be
681 // nice to factor out common code and or turn them into a set of
682 // template-like macros.
684 // Draw a point for every set of coordinants in pyPoints, optionally
685 // setting a new pen for each
686 PyObject* _DrawPointList(PyObject* pyPoints, PyObject* pyPens) {
687 bool isFastSeq = PyList_Check(pyPoints) || PyTuple_Check(pyPoints);
688 bool isFastPens = PyList_Check(pyPens) || PyTuple_Check(pyPens);
696 if (!PySequence_Check(pyPoints)) {
699 if (!PySequence_Check(pyPens)) {
702 numObjs = PySequence_Length(pyPoints);
703 numPens = PySequence_Length(pyPens);
705 for (i = 0; i < numObjs; i++) {
709 obj = PySequence_Fast_GET_ITEM(pyPens, i);
712 obj = PySequence_GetItem(pyPens, i);
714 if (SWIG_GetPtrObj(obj, (void **) &pen, "_wxPen_p")) {
725 // Get the point coordinants
727 obj = PySequence_Fast_GET_ITEM(pyPoints, i);
730 obj = PySequence_GetItem(pyPoints, i);
732 if (! _2int_seq_helper(obj, &x1, &y1)) {
738 // Now draw the point
739 self->DrawPoint(x1, y1);
749 PyErr_SetString(PyExc_TypeError, "Expected a sequence of wxPens");
752 PyErr_SetString(PyExc_TypeError, "Expected a sequence of (x,y) sequences.");
757 // Draw a line for every set of coordinants in pyLines, optionally
758 // setting a new pen for each
759 PyObject* _DrawLineList(PyObject* pyLines, PyObject* pyPens) {
760 bool isFastSeq = PyList_Check(pyLines) || PyTuple_Check(pyLines);
761 bool isFastPens = PyList_Check(pyPens) || PyTuple_Check(pyPens);
769 if (!PySequence_Check(pyLines)) {
772 if (!PySequence_Check(pyPens)) {
775 numObjs = PySequence_Length(pyLines);
776 numPens = PySequence_Length(pyPens);
778 for (i = 0; i < numObjs; i++) {
782 obj = PySequence_Fast_GET_ITEM(pyPens, i);
785 obj = PySequence_GetItem(pyPens, i);
787 if (SWIG_GetPtrObj(obj, (void **) &pen, "_wxPen_p")) {
798 // Get the line coordinants
800 obj = PySequence_Fast_GET_ITEM(pyLines, i);
803 obj = PySequence_GetItem(pyLines, i);
805 if (! _4int_seq_helper(obj, &x1, &y1, &x2, &y2)) {
812 self->DrawLine(x1, y1, x2, y2);
822 PyErr_SetString(PyExc_TypeError, "Expected a sequence of wxPens");
825 PyErr_SetString(PyExc_TypeError, "Expected a sequence of (x1,y1, x2,y2) sequences.");
831 %pragma(python) addtoclass = "
832 def DrawPointList(self, points, pens=None):
835 elif isinstance(pens, wxPenPtr):
837 elif len(pens) != len(points):
838 raise ValueError('points and pens must have same length')
839 return self._DrawPointList(points, pens)
841 def DrawLineList(self, lines, pens=None):
844 elif isinstance(pens, wxPenPtr):
846 elif len(pens) != len(lines):
847 raise ValueError('lines and pens must have same length')
848 return self._DrawLineList(lines, pens)
857 static void wxDC_GetBoundingBox(wxDC* dc, int* x1, int* y1, int* x2, int* y2) {
865 //----------------------------------------------------------------------
867 class wxMemoryDC : public wxDC {
871 void SelectObject(const wxBitmap& bitmap);
874 %new wxMemoryDC* wxMemoryDCFromDC(wxDC* oldDC);
875 %{ // Alternate 'constructor'
876 wxMemoryDC* wxMemoryDCFromDC(wxDC* oldDC) {
877 return new wxMemoryDC(oldDC);
882 //---------------------------------------------------------------------------
884 class wxBufferedDC : public wxMemoryDC {
886 // Construct a wxBufferedDC using a user supplied buffer.
887 wxBufferedDC( wxDC *dc, const wxBitmap &buffer );
889 // Construct a wxBufferedDC with an internal buffer of 'area'
890 // (where area is usually something like the size of the window
892 %name(wxBufferedDCInternalBuffer)wxBufferedDC( wxDC *dc, const wxSize &area );
894 // Blits the buffer to the dc, and detaches the dc from
895 // the buffer. Usually called in the dtor or by the dtor
896 // of derived classes if the BufferedDC must blit before
897 // the derived class (which may own the dc it's blitting
902 %pragma(python) addtomethod =
903 "__init__:self._dc = _args[0] # save a ref so the other dc won't be deleted before self"
904 %pragma(python) addtomethod =
905 "wxBufferedDCInternalBuffer:val._dc = _args[0] # save a ref so the other dc won't be deleted before self"
909 class wxBufferedPaintDC : public wxBufferedDC
912 wxBufferedPaintDC( wxWindow *window, const wxBitmap &buffer = wxNullBitmap );
915 //---------------------------------------------------------------------------
917 class wxScreenDC : public wxDC {
921 %name(StartDrawingOnTopWin) bool StartDrawingOnTop(wxWindow* window);
922 bool StartDrawingOnTop(wxRect* rect = NULL);
923 bool EndDrawingOnTop();
926 //---------------------------------------------------------------------------
928 class wxClientDC : public wxDC {
930 wxClientDC(wxWindow* win);
933 //---------------------------------------------------------------------------
935 class wxPaintDC : public wxDC {
937 wxPaintDC(wxWindow* win);
940 //---------------------------------------------------------------------------
942 class wxWindowDC : public wxDC {
944 wxWindowDC(wxWindow* win);
947 //---------------------------------------------------------------------------
953 #include <wx/metafile.h>
956 class wxMetaFile : public wxObject {
958 wxMetaFile(const wxString& filename = wxPyEmptyString);
962 bool SetClipboard(int width = 0, int height = 0);
968 const wxString& GetFileName() const { return m_filename; }
972 // bool wxMakeMetaFilePlaceable(const wxString& filename,
973 // int minX, int minY, int maxX, int maxY, float scale=1.0);
976 class wxMetaFileDC : public wxDC {
978 wxMetaFileDC(const wxString& filename = wxPyEmptyString,
979 int width = 0, int height = 0,
980 const wxString& description = wxPyEmptyString);
986 //---------------------------------------------------------------------------
988 class wxPalette : public wxGDIObject {
990 wxPalette(int LCOUNT, byte* choices, byte* choices, byte* choices);
993 int GetPixel(byte red, byte green, byte blue);
994 bool GetRGB(int pixel, byte* OUTPUT, byte* OUTPUT, byte* OUTPUT);
998 //---------------------------------------------------------------------------
1001 wxIMAGELIST_DRAW_NORMAL ,
1002 wxIMAGELIST_DRAW_TRANSPARENT,
1003 wxIMAGELIST_DRAW_SELECTED,
1004 wxIMAGELIST_DRAW_FOCUSED,
1005 wxIMAGE_LIST_NORMAL,
1010 class wxImageList : public wxObject {
1012 wxImageList(int width, int height, int mask=TRUE, int initialCount=1);
1015 int Add(const wxBitmap& bitmap, const wxBitmap& mask = wxNullBitmap);
1016 %name(AddWithColourMask)int Add(const wxBitmap& bitmap, const wxColour& maskColour);
1017 %name(AddIcon)int Add(const wxIcon& icon);
1019 bool Replace(int index, const wxBitmap& bitmap, const wxBitmap& mask = wxNullBitmap);
1021 // %name(ReplaceIcon)bool Replace(int index, const wxIcon& icon);
1022 // int Add(const wxBitmap& bitmap);
1023 bool Replace(int index, const wxBitmap& bitmap);
1026 bool Draw(int index, wxDC& dc, int x, int x, int flags = wxIMAGELIST_DRAW_NORMAL,
1027 const bool solidBackground = FALSE);
1029 int GetImageCount();
1030 bool Remove(int index);
1032 void GetSize(int index, int& OUTPUT, int& OUTPUT);
1036 //---------------------------------------------------------------------------
1039 enum wxRegionContain {
1040 wxOutRegion, wxPartRegion, wxInRegion
1044 class wxRegion : public wxGDIObject {
1046 wxRegion(long x=0, long y=0, long width=0, long height=0);
1051 bool Offset(wxCoord x, wxCoord y);
1054 wxRegionContain Contains(long x, long y);
1055 %name(ContainsPoint)wxRegionContain Contains(const wxPoint& pt);
1056 %name(ContainsRect)wxRegionContain Contains(const wxRect& rect);
1057 %name(ContainsRectDim)wxRegionContain Contains(long x, long y, long w, long h);
1061 bool Intersect(long x, long y, long width, long height);
1062 %name(IntersectRect)bool Intersect(const wxRect& rect);
1063 %name(IntersectRegion)bool Intersect(const wxRegion& region);
1067 bool Union(long x, long y, long width, long height);
1068 %name(UnionRect)bool Union(const wxRect& rect);
1069 %name(UnionRegion)bool Union(const wxRegion& region);
1071 bool Subtract(long x, long y, long width, long height);
1072 %name(SubtractRect)bool Subtract(const wxRect& rect);
1073 %name(SubtractRegion)bool Subtract(const wxRegion& region);
1075 bool Xor(long x, long y, long width, long height);
1076 %name(XorRect)bool Xor(const wxRect& rect);
1077 %name(XorRegion)bool Xor(const wxRegion& region);
1082 class wxRegionIterator : public wxObject {
1084 wxRegionIterator(const wxRegion& region);
1085 ~wxRegionIterator();
1105 //---------------------------------------------------------------------------
1112 extern wxFont *wxNORMAL_FONT;
1113 extern wxFont *wxSMALL_FONT;
1114 extern wxFont *wxITALIC_FONT;
1115 extern wxFont *wxSWISS_FONT;
1117 extern wxPen *wxRED_PEN;
1118 extern wxPen *wxCYAN_PEN;
1119 extern wxPen *wxGREEN_PEN;
1120 extern wxPen *wxBLACK_PEN;
1121 extern wxPen *wxWHITE_PEN;
1122 extern wxPen *wxTRANSPARENT_PEN;
1123 extern wxPen *wxBLACK_DASHED_PEN;
1124 extern wxPen *wxGREY_PEN;
1125 extern wxPen *wxMEDIUM_GREY_PEN;
1126 extern wxPen *wxLIGHT_GREY_PEN;
1128 extern wxBrush *wxBLUE_BRUSH;
1129 extern wxBrush *wxGREEN_BRUSH;
1130 extern wxBrush *wxWHITE_BRUSH;
1131 extern wxBrush *wxBLACK_BRUSH;
1132 extern wxBrush *wxTRANSPARENT_BRUSH;
1133 extern wxBrush *wxCYAN_BRUSH;
1134 extern wxBrush *wxRED_BRUSH;
1135 extern wxBrush *wxGREY_BRUSH;
1136 extern wxBrush *wxMEDIUM_GREY_BRUSH;
1137 extern wxBrush *wxLIGHT_GREY_BRUSH;
1139 extern wxColour *wxBLACK;
1140 extern wxColour *wxWHITE;
1141 extern wxColour *wxRED;
1142 extern wxColour *wxBLUE;
1143 extern wxColour *wxGREEN;
1144 extern wxColour *wxCYAN;
1145 extern wxColour *wxLIGHT_GREY;
1147 extern wxCursor *wxSTANDARD_CURSOR;
1148 extern wxCursor *wxHOURGLASS_CURSOR;
1149 extern wxCursor *wxCROSS_CURSOR;
1152 extern wxBitmap wxNullBitmap;
1153 extern wxIcon wxNullIcon;
1154 extern wxCursor wxNullCursor;
1155 extern wxPen wxNullPen;
1156 extern wxBrush wxNullBrush;
1157 extern wxPalette wxNullPalette;
1158 extern wxFont wxNullFont;
1159 extern wxColour wxNullColour;
1162 extern wxFontList* wxTheFontList;
1163 extern wxPenList* wxThePenList;
1164 extern wxBrushList* wxTheBrushList;
1165 extern wxColourDatabase* wxTheColourDatabase;
1173 //---------------------------------------------------------------------------
1174 //---------------------------------------------------------------------------