]> git.saurik.com Git - wxWidgets.git/blame_incremental - wxPython/src/gdi.i
Since wxGTK's wxGauge doesn't derive from wxGaugeBase it needs to have
[wxWidgets.git] / wxPython / src / gdi.i
... / ...
CommitLineData
1/////////////////////////////////////////////////////////////////////////////
2// Name: gdi.i
3// Purpose: SWIG interface file for wxDC, wxBrush, wxPen, etc.
4//
5// Author: Robin Dunn
6//
7// Created: 7/7/97
8// RCS-ID: $Id$
9// Copyright: (c) 1998 by Total Control Software
10// Licence: wxWindows license
11/////////////////////////////////////////////////////////////////////////////
12
13
14%module gdi
15
16%{
17#include "helpers.h"
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>
26%}
27
28//----------------------------------------------------------------------
29
30%include typemaps.i
31%include my_typemaps.i
32
33// Import some definitions of other classes, etc.
34%import _defs.i
35%import misc.i
36%import fonts.i
37
38%pragma(python) code = "import wx"
39
40//---------------------------------------------------------------------------
41%{
42 // Put some wx default wxChar* values into wxStrings.
43 static const wxString wxPyEmptyString(wxT(""));
44%}
45//---------------------------------------------------------------------------
46
47class wxGDIObject : public wxObject {
48public:
49 wxGDIObject();
50 ~wxGDIObject();
51
52 bool GetVisible();
53 void SetVisible( bool visible );
54
55 bool IsNull();
56
57};
58
59//---------------------------------------------------------------------------
60
61
62// TODO: When the API stabalizes and is available on other platforms, add
63// wrappers for the new wxBitmap, wxRawBitmap, wxDIB stuff...
64
65class wxBitmap : public wxGDIObject
66{
67public:
68 wxBitmap(const wxString& name, wxBitmapType type=wxBITMAP_TYPE_ANY);
69 ~wxBitmap();
70
71 wxPalette* GetPalette();
72 wxMask* GetMask();
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)
79 self.SetMask(mask)
80 "
81#ifdef __WXMSW__
82 void SetPalette(wxPalette& palette);
83#endif
84
85 // wxGDIImage methods
86#ifdef __WXMSW__
87 long GetHandle();
88 void SetHandle(long handle);
89#endif
90 bool Ok();
91 int GetWidth();
92 int GetHeight();
93 int GetDepth();
94 void SetWidth(int w);
95 void SetHeight(int h);
96 void SetDepth(int d);
97#ifdef __WXMSW__
98 void SetSize(const wxSize& size);
99#endif
100
101 wxBitmap GetSubBitmap( const wxRect& rect );
102 bool CopyFromIcon(const wxIcon& icon);
103#ifdef __WXMSW__
104 bool CopyFromCursor(const wxCursor& cursor);
105 int GetQuality();
106 void SetQuality(int q);
107#endif
108
109 %pragma(python) addtoclass = "def __nonzero__(self): return self.Ok()"
110};
111
112
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 );
118
119// #ifdef __WXMSW__
120// %new wxBitmap* wxBitmapFromData(PyObject* data, long type,
121// int width, int height, int depth = 1);
122// #endif
123
124
125
126%{ // Implementations of some alternate "constructors"
127
128 wxBitmap* wxEmptyBitmap(int width, int height, int depth=-1) {
129 return new wxBitmap(width, height, depth);
130 }
131
132 static char** ConvertListOfStrings(PyObject* listOfStrings) {
133 char** cArray = NULL;
134 int count;
135
136 if (!PyList_Check(listOfStrings)) {
137 PyErr_SetString(PyExc_TypeError, "Expected a list of strings.");
138 return NULL;
139 }
140 count = PyList_Size(listOfStrings);
141 cArray = new char*[count];
142
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));
146 }
147 return cArray;
148 }
149
150
151 wxBitmap* wxBitmapFromXPMData(PyObject* listOfStrings) {
152 char** cArray = NULL;
153 wxBitmap* bmp;
154
155 cArray = ConvertListOfStrings(listOfStrings);
156 if (! cArray)
157 return NULL;
158 bmp = new wxBitmap(cArray);
159 delete [] cArray;
160 return bmp;
161 }
162
163
164 wxBitmap* wxBitmapFromIcon(const wxIcon& icon) {
165 return new wxBitmap(icon);
166 }
167
168
169 wxBitmap* wxBitmapFromBits(PyObject* bits, int width, int height, int depth = 1 ) {
170 char* buf;
171 int length;
172 PyString_AsStringAndSize(bits, &buf, &length);
173 return new wxBitmap(buf, width, height, depth);
174 }
175
176
177// #ifdef __WXMSW__
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");
182// return NULL;
183// }
184// return new wxBitmap((void*)PyString_AsString(data), type, width, height, depth);
185// }
186// #endif
187%}
188
189//---------------------------------------------------------------------------
190
191class wxMask : public wxObject {
192public:
193 wxMask(const wxBitmap& bitmap);
194 //~wxMask();
195
196 %addmethods { void Destroy() { delete self; } }
197};
198
199%new wxMask* wxMaskColour(const wxBitmap& bitmap, const wxColour& colour);
200%{
201 wxMask* wxMaskColour(const wxBitmap& bitmap, const wxColour& colour) {
202 return new wxMask(bitmap, colour);
203 }
204%}
205
206
207//---------------------------------------------------------------------------
208
209
210class wxIcon : public wxGDIObject
211{
212public:
213 wxIcon(const wxString& name, long flags,
214 int desiredWidth = -1, int desiredHeight = -1);
215 ~wxIcon();
216
217#ifndef __WXMAC__
218 bool LoadFile(const wxString& name, long flags);
219#endif
220
221 // wxGDIImage methods
222#ifdef __WXMSW__
223 long GetHandle();
224 void SetHandle(long handle);
225#endif
226 bool Ok();
227 int GetWidth();
228 int GetHeight();
229 int GetDepth();
230 void SetWidth(int w);
231 void SetHeight(int h);
232 void SetDepth(int d);
233#ifdef __WXMSW__
234 void SetSize(const wxSize& size);
235#endif
236 void CopyFromBitmap(const wxBitmap& bmp);
237
238 %pragma(python) addtoclass = "def __nonzero__(self): return self.Ok()"
239};
240
241
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);
247
248%{ // Implementations of some alternate "constructors"
249 wxIcon* wxEmptyIcon() {
250 return new wxIcon();
251 }
252
253 wxIcon* wxIconFromXPMData(PyObject* listOfStrings) {
254 char** cArray = NULL;
255 wxIcon* icon;
256
257 cArray = ConvertListOfStrings(listOfStrings);
258 if (! cArray)
259 return NULL;
260 icon = new wxIcon(cArray);
261 delete [] cArray;
262 return icon;
263 }
264
265 wxIcon* wxIconFromBitmap(const wxBitmap& bmp) {
266 wxIcon* icon = new wxIcon();
267 icon->CopyFromBitmap(bmp);
268 return icon;
269 }
270
271 wxIcon* wxIconFromLocation(const wxIconLocation& loc) {
272 wxIcon* icon = new wxIcon(loc);
273 return icon;
274 }
275%}
276
277
278//---------------------------------------------------------------------------
279
280class wxIconLocation
281{
282public:
283 // ctor takes the name of the file where the icon is
284 %addmethods {
285 wxIconLocation(const wxString* filename = &wxPyEmptyString, int num = 0) {
286#ifdef __WXMSW__
287 return new wxIconLocation(*filename, num);
288#else
289 return new wxIconLocation(*filename);
290#endif
291 }
292 }
293
294 ~wxIconLocation();
295
296
297 // returns true if this object is valid/initialized
298 bool IsOk() const;
299
300 // set/get the icon file name
301 void SetFileName(const wxString& filename);
302 const wxString& GetFileName() const;
303
304 %addmethods {
305 void SetIndex(int num) {
306#ifdef __WXMSW__
307 self->SetIndex(num);
308#else
309 // do nothing
310#endif
311 }
312
313 int GetIndex() {
314#ifdef __WXMSW__
315 return self->GetIndex();
316#else
317 return -1;
318#endif
319 }
320 }
321};
322
323
324
325//---------------------------------------------------------------------------
326
327class wxIconBundle
328{
329public:
330 // default constructor
331 wxIconBundle();
332
333 // initializes the bundle with the icon(s) found in the file
334 %name(wxIconBundleFromFile) wxIconBundle( const wxString& file, long type );
335
336 // initializes the bundle with a single icon
337 %name(wxIconBundleFromIcon)wxIconBundle( const wxIcon& icon );
338
339 ~wxIconBundle();
340
341 // adds the icon to the collection, if the collection already
342 // contains an icon with the same width and height, it is
343 // replaced
344 void AddIcon( const wxIcon& icon );
345
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 );
350
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;
355};
356
357//---------------------------------------------------------------------------
358
359class wxCursor : public wxGDIObject
360{
361public:
362 %addmethods {
363 wxCursor(const wxString* cursorName, long flags, int hotSpotX=0, int hotSpotY=0) {
364#ifdef __WXGTK__
365 wxCHECK_MSG(FALSE, NULL,
366 wxT("wxCursor constructor not implemented for wxGTK, use wxStockCursor, wxCursorFromImage, or wxCursorFromBits instead."));
367#else
368 return new wxCursor(*cursorName, flags, hotSpotX, hotSpotY);
369#endif
370 }
371 }
372
373 ~wxCursor();
374
375 // wxGDIImage methods
376#ifdef __WXMSW__
377 long GetHandle();
378 void SetHandle(long handle);
379#endif
380 bool Ok();
381#ifdef __WXMSW__
382 int GetWidth();
383 int GetHeight();
384 int GetDepth();
385 void SetWidth(int w);
386 void SetHeight(int h);
387 void SetDepth(int d);
388 void SetSize(const wxSize& size);
389#endif
390 %pragma(python) addtoclass = "def __nonzero__(self): return self.Ok()"
391};
392
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);
398
399%{
400 wxCursor* wxPyStockCursor(int id) {
401 return new wxCursor(id);
402 }
403
404 wxCursor* wxCursorFromImage(const wxImage& image) {
405 return new wxCursor(image);
406 }
407
408 wxCursor* wxCursorFromBits(PyObject* bits, int width, int height,
409 int hotSpotX=-1, int hotSpotY=-1,
410 PyObject* maskBits=0) {
411 char* bitsbuf;
412 char* maskbuf = NULL;
413 int length;
414 PyString_AsStringAndSize(bits, &bitsbuf, &length);
415 if (maskBits)
416 PyString_AsStringAndSize(maskBits, &maskbuf, &length);
417 return new wxCursor(bitsbuf, width, height, hotSpotX, hotSpotY, maskbuf);
418 }
419%}
420
421//----------------------------------------------------------------------
422
423class wxColour : public wxObject {
424public:
425 wxColour(unsigned char red=0, unsigned char green=0, unsigned char blue=0);
426 ~wxColour();
427 unsigned char Red();
428 unsigned char Green();
429 unsigned char Blue();
430 bool Ok();
431 void Set(unsigned char red, unsigned char green, unsigned char blue);
432 %addmethods {
433 PyObject* Get() {
434 PyObject* rv = PyTuple_New(3);
435 int red = -1;
436 int green = -1;
437 int blue = -1;
438 if (self->Ok()) {
439 red = self->Red();
440 green = self->Green();
441 blue = self->Blue();
442 }
443 PyTuple_SetItem(rv, 0, PyInt_FromLong(red));
444 PyTuple_SetItem(rv, 1, PyInt_FromLong(green));
445 PyTuple_SetItem(rv, 2, PyInt_FromLong(blue));
446 return rv;
447 }
448 bool __eq__(PyObject* obj) {
449 wxColour tmp;
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;
455 }
456 bool __ne__(PyObject* obj) {
457 wxColour tmp;
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;
463 }
464 }
465
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)
473"
474
475};
476
477%new wxColour* wxNamedColour(const wxString& colorName);
478
479%{ // Alternate 'constructor'
480 wxColour* wxNamedColour(const wxString& colorName) {
481 return new wxColour(colorName);
482 }
483%}
484
485
486
487class wxColourDatabase : public wxObject {
488public:
489
490 wxColour *FindColour(const wxString& colour) ;
491 wxColour *FindColourNoAdd(const wxString& colour) const;
492 wxString FindName(const wxColour& colour) const;
493
494 %addmethods {
495 void AddColour(const wxString& name, wxColour* colour) {
496 // make a copy since the python one will be GC'd
497 wxColour* c = new wxColour(*colour);
498 self->AddColour(name, c);
499 }
500
501 void Append(const wxString& name, int red, int green, int blue) {
502 wxColour* c = new wxColour(red, green, blue);
503 self->AddColour(name, c);
504 }
505 }
506};
507
508
509//----------------------------------------------------------------------
510
511class wxPen : public wxGDIObject {
512public:
513 wxPen(wxColour& colour, int width=1, int style=wxSOLID);
514 ~wxPen();
515
516 int GetCap();
517 wxColour GetColour();
518
519 int GetJoin();
520 int GetStyle();
521 int GetWidth();
522 bool Ok();
523 void SetCap(int cap_style);
524 void SetColour(wxColour& colour);
525 void SetJoin(int join_style);
526 void SetStyle(int style);
527 void SetWidth(int width);
528
529
530 void SetDashes(int LCOUNT, wxDash* choices);
531 //int GetDashes(wxDash **dashes);
532 %addmethods {
533 PyObject* GetDashes() {
534 wxDash* dashes;
535 int count = self->GetDashes(&dashes);
536 wxPyBeginBlockThreads();
537 PyObject* retval = PyList_New(0);
538 for (int x=0; x<count; x++)
539 PyList_Append(retval, PyInt_FromLong(dashes[x]));
540 wxPyEndBlockThreads();
541 return retval;
542 }
543 }
544
545#ifdef __WXMSW__
546 wxBitmap* GetStipple();
547 void SetStipple(wxBitmap& stipple);
548#endif
549
550 %pragma(python) addtoclass = "def __nonzero__(self): return self.Ok()"
551};
552
553
554
555
556// The list of ints for the dashes needs to exist for the life of the pen
557// so we make it part of the class to save it. wxPyPen is aliased to wxPen
558// in _extras.py
559
560%{
561class wxPyPen : public wxPen {
562public:
563 wxPyPen(wxColour& colour, int width=1, int style=wxSOLID)
564 : wxPen(colour, width, style)
565 { m_dash = NULL; }
566 ~wxPyPen() {
567 if (m_dash)
568 delete [] m_dash;
569 }
570
571 void SetDashes(int nb_dashes, const wxDash *dash) {
572 if (m_dash)
573 delete [] m_dash;
574 m_dash = new wxDash[nb_dashes];
575 for (int i=0; i<nb_dashes; i++) {
576 m_dash[i] = dash[i];
577 }
578 wxPen::SetDashes(nb_dashes, m_dash);
579 }
580
581private:
582 wxDash* m_dash;
583};
584%}
585
586
587class wxPyPen : public wxPen {
588public:
589 wxPyPen(wxColour& colour, int width=1, int style=wxSOLID);
590 ~wxPyPen();
591
592 void SetDashes(int LCOUNT, wxDash* choices);
593};
594
595
596
597
598class wxPenList : public wxObject {
599public:
600
601 void AddPen(wxPen* pen);
602 wxPen* FindOrCreatePen(const wxColour& colour, int width, int style);
603 void RemovePen(wxPen* pen);
604
605 int GetCount();
606};
607
608
609
610//----------------------------------------------------------------------
611
612class wxBrush : public wxGDIObject {
613public:
614 wxBrush(const wxColour& colour, int style=wxSOLID);
615 ~wxBrush();
616
617 wxColour GetColour();
618 wxBitmap * GetStipple();
619 int GetStyle();
620 bool Ok();
621 void SetColour(wxColour &colour);
622 void SetStipple(wxBitmap& bitmap);
623 void SetStyle(int style);
624
625#ifdef __WXMAC__
626 short GetMacTheme();
627 void SetMacTheme(short macThemeBrush);
628#endif
629
630 %pragma(python) addtoclass = "def __nonzero__(self): return self.Ok()"
631};
632
633
634class wxBrushList : public wxObject {
635public:
636
637 void AddBrush(wxBrush *brush);
638 wxBrush * FindOrCreateBrush(const wxColour& colour, int style);
639 void RemoveBrush(wxBrush *brush);
640
641 int GetCount();
642};
643
644//----------------------------------------------------------------------
645
646
647class wxDC : public wxObject {
648public:
649// wxDC(); **** abstract base class, can't instantiate.
650 ~wxDC();
651
652 void BeginDrawing();
653
654// %name(BlitXY)
655 bool Blit(wxCoord xdest, wxCoord ydest,
656 wxCoord width, wxCoord height,
657 wxDC *source, wxCoord xsrc, wxCoord ysrc,
658 int logicalFunc = wxCOPY, int useMask = FALSE);
659// bool Blit(const wxPoint& destPt, const wxSize& sz,
660// wxDC *source, const wxPoint& srcPt,
661// int logicalFunc = wxCOPY, int useMask = FALSE);
662
663 void Clear();
664 void CrossHair(wxCoord x, wxCoord y);
665 void DestroyClippingRegion();
666 wxCoord DeviceToLogicalX(wxCoord x);
667 wxCoord DeviceToLogicalXRel(wxCoord x);
668 wxCoord DeviceToLogicalY(wxCoord y);
669 wxCoord DeviceToLogicalYRel(wxCoord y);
670 void DrawArc(wxCoord x1, wxCoord y1, wxCoord x2, wxCoord y2, wxCoord xc, wxCoord yc);
671 void DrawCircle(wxCoord x, wxCoord y, wxCoord radius);
672 void DrawEllipse(wxCoord x, wxCoord y, wxCoord width, wxCoord height);
673 void DrawEllipticArc(wxCoord x, wxCoord y, wxCoord width, wxCoord height, wxCoord start, wxCoord end);
674 void DrawIcon(const wxIcon& icon, wxCoord x, wxCoord y);
675
676 void DrawLabel(const wxString& text, const wxRect& rect,
677 int alignment = wxALIGN_LEFT | wxALIGN_TOP,
678 int indexAccel = -1);
679
680 %addmethods {
681 wxRect DrawImageLabel(const wxString& text,
682 const wxBitmap& image,
683 const wxRect& rect,
684 int alignment = wxALIGN_LEFT | wxALIGN_TOP,
685 int indexAccel = -1) {
686 wxRect rv;
687 self->DrawLabel(text, image, rect, alignment, indexAccel, &rv);
688 return rv;
689 }
690 }
691
692 void DrawLine(wxCoord x1, wxCoord y1, wxCoord x2, wxCoord y2);
693 void DrawLines(int PCOUNT, wxPoint* points, wxCoord xoffset=0, wxCoord yoffset=0);
694 void DrawPolygon(int PCOUNT, wxPoint* points, wxCoord xoffset=0, wxCoord yoffset=0,
695 int fill_style=wxODDEVEN_RULE);
696 void DrawPoint(wxCoord x, wxCoord y);
697 void DrawRectangle(wxCoord x, wxCoord y, wxCoord width, wxCoord height);
698 %name(DrawRectangleRect)void DrawRectangle(const wxRect& rect);
699 void DrawRotatedText(const wxString& text, wxCoord x, wxCoord y, double angle);
700 void DrawRoundedRectangle(wxCoord x, wxCoord y, wxCoord width, wxCoord height, wxCoord radius=20);
701 void DrawSpline(int PCOUNT, wxPoint* points);
702 void DrawText(const wxString& text, wxCoord x, wxCoord y);
703 void EndDoc();
704 void EndDrawing();
705 void EndPage();
706 bool FloodFill(wxCoord x, wxCoord y, const wxColour& colour, int style=wxFLOOD_SURFACE);
707 wxBrush GetBackground();
708 wxBrush GetBrush();
709 wxCoord GetCharHeight();
710 wxCoord GetCharWidth();
711 void GetClippingBox(wxCoord *OUTPUT, wxCoord *OUTPUT,
712 wxCoord *OUTPUT, wxCoord *OUTPUT);
713 wxFont GetFont();
714 int GetLogicalFunction();
715 void GetLogicalScale(double *OUTPUT, double *OUTPUT);
716 int GetMapMode();
717 bool GetOptimization();
718 wxPen GetPen();
719 %addmethods {
720 %new wxColour* GetPixel(wxCoord x, wxCoord y) {
721 wxColour* wc = new wxColour();
722 self->GetPixel(x, y, wc);
723 return wc;
724 }
725 }
726 %name(GetSizeTuple)void GetSize(int* OUTPUT, int* OUTPUT);
727 wxSize GetSize();
728 wxSize GetSizeMM();
729 wxColour GetTextBackground();
730 void GetTextExtent(const wxString& string, wxCoord *OUTPUT, wxCoord *OUTPUT);
731 %name(GetFullTextExtent)void GetTextExtent(const wxString& string,
732 wxCoord *OUTPUT, wxCoord *OUTPUT, wxCoord *OUTPUT, wxCoord* OUTPUT,
733 const wxFont* font = NULL);
734 void GetMultiLineTextExtent(const wxString& text, wxCoord *OUTPUT, wxCoord *OUTPUT, wxCoord *OUTPUT,
735 wxFont *font = NULL);
736 wxColour GetTextForeground();
737 void GetUserScale(double *OUTPUT, double *OUTPUT);
738 wxCoord LogicalToDeviceX(wxCoord x);
739 wxCoord LogicalToDeviceXRel(wxCoord x);
740 wxCoord LogicalToDeviceY(wxCoord y);
741 wxCoord LogicalToDeviceYRel(wxCoord y);
742 wxCoord MaxX();
743 wxCoord MaxY();
744 wxCoord MinX();
745 wxCoord MinY();
746 bool Ok();
747 void SetDeviceOrigin(wxCoord x, wxCoord y);
748 void SetBackground(const wxBrush& brush);
749 void SetBackgroundMode(int mode);
750 void SetClippingRegion(wxCoord x, wxCoord y, wxCoord width, wxCoord height);
751 %name(SetClippingRegionAsRegion) void SetClippingRegion(const wxRegion& region);
752 %name(SetClippingRect) void SetClippingRegion(const wxRect& rect);
753 void SetPalette(const wxPalette& colourMap);
754 void SetBrush(const wxBrush& brush);
755 void SetFont(const wxFont& font);
756 void SetLogicalFunction(int function);
757 void SetLogicalScale(double x, double y);
758 void SetMapMode(int mode);
759 void SetOptimization(bool optimize);
760 void SetPen(const wxPen& pen);
761 void SetTextBackground(const wxColour& colour);
762 void SetTextForeground(const wxColour& colour);
763 void SetUserScale(double x_scale, double y_scale);
764 bool StartDoc(const wxString& message);
765 void StartPage();
766
767
768
769 void DrawBitmap(const wxBitmap& bitmap, wxCoord x, wxCoord y,
770 int useMask = FALSE);
771
772 bool CanDrawBitmap();
773 bool CanGetTextExtent();
774 int GetDepth();
775 wxSize GetPPI();
776
777 void GetLogicalOrigin(int *OUTPUT, int *OUTPUT);
778 void SetLogicalOrigin(int x, int y);
779 void GetDeviceOrigin(int *OUTPUT, int *OUTPUT);
780 void SetAxisOrientation(bool xLeftRight, bool yBottomUp);
781
782 void CalcBoundingBox(int x, int y);
783 void ResetBoundingBox();
784
785 %addmethods {
786 void GetBoundingBox(int* OUTPUT, int* OUTPUT, int* OUTPUT, int* OUTPUT);
787 // See below for implementation
788 }
789
790 %pragma(python) addtoclass = "def __nonzero__(self): return self.Ok()"
791
792#ifdef __WXMSW__
793 long GetHDC();
794#endif
795
796
797 %addmethods { // See drawlist.cpp for impplementaion of these...
798
799 PyObject* _DrawPointList(PyObject* pyCoords, PyObject* pyPens, PyObject* pyBrushes)
800 {
801 return wxPyDrawXXXList(*self, wxPyDrawXXXPoint, pyCoords, pyPens, pyBrushes);
802 }
803
804 PyObject* _DrawLineList(PyObject* pyCoords, PyObject* pyPens, PyObject* pyBrushes)
805 {
806 return wxPyDrawXXXList(*self, wxPyDrawXXXLine, pyCoords, pyPens, pyBrushes);
807 }
808
809 PyObject* _DrawRectangleList(PyObject* pyCoords, PyObject* pyPens, PyObject* pyBrushes)
810 {
811 return wxPyDrawXXXList(*self, wxPyDrawXXXRectangle, pyCoords, pyPens, pyBrushes);
812 }
813
814 PyObject* _DrawEllipseList(PyObject* pyCoords, PyObject* pyPens, PyObject* pyBrushes)
815 {
816 return wxPyDrawXXXList(*self, wxPyDrawXXXEllipse, pyCoords, pyPens, pyBrushes);
817 }
818
819 PyObject* _DrawPolygonList(PyObject* pyCoords, PyObject* pyPens, PyObject* pyBrushes)
820 {
821 return wxPyDrawXXXList(*self, wxPyDrawXXXPolygon, pyCoords, pyPens, pyBrushes);
822 }
823
824 PyObject* _DrawTextList(PyObject* textList, PyObject* pyPoints,
825 PyObject* foregroundList, PyObject* backgroundList) {
826 return wxPyDrawTextList(*self, textList, pyPoints, foregroundList, backgroundList);
827 }
828 }
829
830 %pragma(python) addtoclass = "
831 def DrawPointList(self, points, pens=None):
832 if pens is None:
833 pens = []
834 elif isinstance(pens, wxPenPtr):
835 pens = [pens]
836 elif len(pens) != len(points):
837 raise ValueError('points and pens must have same length')
838 return self._DrawPointList(points, pens, [])
839
840
841 def DrawLineList(self, lines, pens=None):
842 if pens is None:
843 pens = []
844 elif isinstance(pens, wxPenPtr):
845 pens = [pens]
846 elif len(pens) != len(lines):
847 raise ValueError('lines and pens must have same length')
848 return self._DrawLineList(lines, pens, [])
849
850
851 def DrawRectangleList(self, rectangles, pens=None, brushes=None):
852 if pens is None:
853 pens = []
854 elif isinstance(pens, wxPenPtr):
855 pens = [pens]
856 elif len(pens) != len(rectangles):
857 raise ValueError('rectangles and pens must have same length')
858 if brushes is None:
859 brushes = []
860 elif isinstance(brushes, wxBrushPtr):
861 brushes = [brushes]
862 elif len(brushes) != len(rectangles):
863 raise ValueError('rectangles and brushes must have same length')
864 return self._DrawRectangleList(rectangles, pens, brushes)
865
866
867 def DrawEllipseList(self, ellipses, pens=None, brushes=None):
868 if pens is None:
869 pens = []
870 elif isinstance(pens, wxPenPtr):
871 pens = [pens]
872 elif len(pens) != len(ellipses):
873 raise ValueError('ellipses and pens must have same length')
874 if brushes is None:
875 brushes = []
876 elif isinstance(brushes, wxBrushPtr):
877 brushes = [brushes]
878 elif len(brushes) != len(ellipses):
879 raise ValueError('ellipses and brushes must have same length')
880 return self._DrawEllipseList(ellipses, pens, brushes)
881
882
883 def DrawPolygonList(self, polygons, pens=None, brushes=None):
884 ## Note: This does not currently support fill style or offset
885 ## you can always use the non-List version if need be.
886 ## I really would like to support fill-style, however,
887 ## but wxODDEVEN_RULE does not appear to be defined at the Python level
888 ## [It's in wx.py... --Robin]
889 if pens is None:
890 pens = []
891 elif isinstance(pens, wxPenPtr):
892 pens = [pens]
893 elif len(pens) != len(polygons):
894 raise ValueError('polygons and pens must have same length')
895 if brushes is None:
896 brushes = []
897 elif isinstance(brushes, wxBrushPtr):
898 brushes = [brushes]
899 elif len(brushes) != len(polygons):
900 raise ValueError('polygons and brushes must have same length')
901 return self._DrawPolygonList(polygons, pens, brushes)
902
903
904 def DrawTextList(self, textList, coords, foregrounds = None, backgrounds = None, fonts = None):
905 ## NOTE: this does not currently support changing the font
906 ## Make sure you set Background mode to wxSolid (DC.SetBackgroundMode)
907 ## If you want backgounds to do anything.
908 if type(textList) == type(''):
909 textList = [textList]
910 elif len(textList) != len(coords):
911 raise ValueError('textlist and coords must have same length')
912 if foregrounds is None:
913 foregrounds = []
914 elif isinstance(foregrounds, wxColourPtr):
915 foregrounds = [foregrounds]
916 elif len(foregrounds) != len(coords):
917 raise ValueError('foregrounds and coords must have same length')
918 if backgrounds is None:
919 backgrounds = []
920 elif isinstance(backgrounds, wxColourPtr):
921 backgrounds = [backgrounds]
922 elif len(backgrounds) != len(coords):
923 raise ValueError('backgrounds and coords must have same length')
924 return self._DrawTextList(textList, coords, foregrounds, backgrounds)
925"
926
927
928};
929
930
931
932%{
933static void wxDC_GetBoundingBox(wxDC* dc, int* x1, int* y1, int* x2, int* y2) {
934 *x1 = dc->MinX();
935 *y1 = dc->MinY();
936 *x2 = dc->MaxX();
937 *y2 = dc->MaxY();
938}
939%}
940
941//----------------------------------------------------------------------
942
943class wxMemoryDC : public wxDC {
944public:
945 wxMemoryDC();
946
947 void SelectObject(const wxBitmap& bitmap);
948}
949
950%new wxMemoryDC* wxMemoryDCFromDC(wxDC* oldDC);
951%{ // Alternate 'constructor'
952 wxMemoryDC* wxMemoryDCFromDC(wxDC* oldDC) {
953 return new wxMemoryDC(oldDC);
954 }
955%}
956
957
958//---------------------------------------------------------------------------
959
960class wxBufferedDC : public wxMemoryDC {
961public:
962 // Construct a wxBufferedDC using a user supplied buffer.
963 wxBufferedDC( wxDC *dc, const wxBitmap &buffer );
964
965 // Construct a wxBufferedDC with an internal buffer of 'area'
966 // (where area is usually something like the size of the window
967 // being buffered)
968 %name(wxBufferedDCInternalBuffer)wxBufferedDC( wxDC *dc, const wxSize &area );
969
970 // Blits the buffer to the dc, and detaches the dc from
971 // the buffer. Usually called in the dtor or by the dtor
972 // of derived classes if the BufferedDC must blit before
973 // the derived class (which may own the dc it's blitting
974 // to) is destroyed.
975 void UnMask();
976
977
978 %pragma(python) addtomethod =
979 "__init__:self._dc = _args[0] # save a ref so the other dc won't be deleted before self"
980 %pragma(python) addtomethod =
981 "wxBufferedDCInternalBuffer:val._dc = _args[0] # save a ref so the other dc won't be deleted before self"
982};
983
984
985class wxBufferedPaintDC : public wxBufferedDC
986{
987public:
988 wxBufferedPaintDC( wxWindow *window, const wxBitmap &buffer = wxNullBitmap );
989};
990
991//---------------------------------------------------------------------------
992
993class wxScreenDC : public wxDC {
994public:
995 wxScreenDC();
996
997 %name(StartDrawingOnTopWin) bool StartDrawingOnTop(wxWindow* window);
998 bool StartDrawingOnTop(wxRect* rect = NULL);
999 bool EndDrawingOnTop();
1000};
1001
1002//---------------------------------------------------------------------------
1003
1004class wxClientDC : public wxDC {
1005public:
1006 wxClientDC(wxWindow* win);
1007};
1008
1009//---------------------------------------------------------------------------
1010
1011class wxPaintDC : public wxDC {
1012public:
1013 wxPaintDC(wxWindow* win);
1014};
1015
1016//---------------------------------------------------------------------------
1017
1018class wxWindowDC : public wxDC {
1019public:
1020 wxWindowDC(wxWindow* win);
1021};
1022
1023//---------------------------------------------------------------------------
1024
1025class wxMirrorDC : public wxDC
1026{
1027public:
1028 // constructs a mirror DC associated with the given real DC
1029 //
1030 // if mirror parameter is true, all vertical and horizontal coordinates are
1031 // exchanged, otherwise this class behaves in exactly the same way as a
1032 // plain DC
1033 //
1034 wxMirrorDC(wxDC& dc, bool mirror);
1035};
1036
1037//---------------------------------------------------------------------------
1038
1039
1040#ifdef __WXMSW__
1041
1042%{
1043#include <wx/metafile.h>
1044%}
1045
1046class wxMetaFile : public wxObject {
1047public:
1048 wxMetaFile(const wxString& filename = wxPyEmptyString);
1049 ~wxMetaFile();
1050
1051 bool Ok();
1052 bool SetClipboard(int width = 0, int height = 0);
1053
1054 wxSize GetSize();
1055 int GetWidth();
1056 int GetHeight();
1057
1058 const wxString& GetFileName() const { return m_filename; }
1059
1060 %pragma(python) addtoclass = "def __nonzero__(self): return self.Ok()"
1061};
1062
1063// bool wxMakeMetaFilePlaceable(const wxString& filename,
1064// int minX, int minY, int maxX, int maxY, float scale=1.0);
1065
1066
1067class wxMetaFileDC : public wxDC {
1068public:
1069 wxMetaFileDC(const wxString& filename = wxPyEmptyString,
1070 int width = 0, int height = 0,
1071 const wxString& description = wxPyEmptyString);
1072 wxMetaFile* Close();
1073};
1074
1075#endif
1076
1077//---------------------------------------------------------------------------
1078
1079class wxPalette : public wxGDIObject {
1080public:
1081 wxPalette(int LCOUNT, byte* choices, byte* choices, byte* choices);
1082 ~wxPalette();
1083
1084 int GetPixel(byte red, byte green, byte blue);
1085 bool GetRGB(int pixel, byte* OUTPUT, byte* OUTPUT, byte* OUTPUT);
1086 bool Ok();
1087
1088 %pragma(python) addtoclass = "def __nonzero__(self): return self.Ok()"
1089};
1090
1091//---------------------------------------------------------------------------
1092
1093enum {
1094 wxIMAGELIST_DRAW_NORMAL ,
1095 wxIMAGELIST_DRAW_TRANSPARENT,
1096 wxIMAGELIST_DRAW_SELECTED,
1097 wxIMAGELIST_DRAW_FOCUSED,
1098 wxIMAGE_LIST_NORMAL,
1099 wxIMAGE_LIST_SMALL,
1100 wxIMAGE_LIST_STATE
1101};
1102
1103class wxImageList : public wxObject {
1104public:
1105 wxImageList(int width, int height, int mask=TRUE, int initialCount=1);
1106 ~wxImageList();
1107
1108 int Add(const wxBitmap& bitmap, const wxBitmap& mask = wxNullBitmap);
1109 %name(AddWithColourMask)int Add(const wxBitmap& bitmap, const wxColour& maskColour);
1110 %name(AddIcon)int Add(const wxIcon& icon);
1111#ifdef __WXMSW__
1112 bool Replace(int index, const wxBitmap& bitmap, const wxBitmap& mask = wxNullBitmap);
1113#else
1114// %name(ReplaceIcon)bool Replace(int index, const wxIcon& icon);
1115// int Add(const wxBitmap& bitmap);
1116 bool Replace(int index, const wxBitmap& bitmap);
1117#endif
1118
1119 bool Draw(int index, wxDC& dc, int x, int x, int flags = wxIMAGELIST_DRAW_NORMAL,
1120 const bool solidBackground = FALSE);
1121
1122 int GetImageCount();
1123 bool Remove(int index);
1124 bool RemoveAll();
1125 void GetSize(int index, int& OUTPUT, int& OUTPUT);
1126};
1127
1128
1129//---------------------------------------------------------------------------
1130// Regions, etc.
1131
1132enum wxRegionContain {
1133 wxOutRegion, wxPartRegion, wxInRegion
1134};
1135
1136
1137class wxRegion : public wxGDIObject {
1138public:
1139 wxRegion(wxCoord x=0, wxCoord y=0, wxCoord width=0, wxCoord height=0);
1140#ifndef __WXMAC__
1141 %name(wxRegionFromPoints)wxRegion(int PCOUNT, wxPoint* points, int fillStyle = wxWINDING_RULE);
1142#endif
1143 %name(wxRegionFromBitmap)wxRegion(const wxBitmap& bmp,
1144 const wxColour& transColour = wxNullColour,
1145 int tolerance = 0);
1146 ~wxRegion();
1147
1148
1149 void Clear();
1150#ifndef __WXMAC__
1151 bool Offset(wxCoord x, wxCoord y);
1152#endif
1153
1154 wxRegionContain Contains(wxCoord x, wxCoord y);
1155 %name(ContainsPoint)wxRegionContain Contains(const wxPoint& pt);
1156 %name(ContainsRect)wxRegionContain Contains(const wxRect& rect);
1157 %name(ContainsRectDim)wxRegionContain Contains(wxCoord x, wxCoord y, wxCoord w, wxCoord h);
1158
1159 wxRect GetBox();
1160
1161 bool Intersect(wxCoord x, wxCoord y, wxCoord width, wxCoord height);
1162 %name(IntersectRect)bool Intersect(const wxRect& rect);
1163 %name(IntersectRegion)bool Intersect(const wxRegion& region);
1164
1165 bool IsEmpty();
1166
1167 bool Union(wxCoord x, wxCoord y, wxCoord width, wxCoord height);
1168 %name(UnionRect)bool Union(const wxRect& rect);
1169 %name(UnionRegion)bool Union(const wxRegion& region);
1170
1171 bool Subtract(wxCoord x, wxCoord y, wxCoord width, wxCoord height);
1172 %name(SubtractRect)bool Subtract(const wxRect& rect);
1173 %name(SubtractRegion)bool Subtract(const wxRegion& region);
1174
1175 bool Xor(wxCoord x, wxCoord y, wxCoord width, wxCoord height);
1176 %name(XorRect)bool Xor(const wxRect& rect);
1177 %name(XorRegion)bool Xor(const wxRegion& region);
1178
1179 // Convert the region to a B&W bitmap with the white pixels being inside
1180 // the region.
1181 wxBitmap ConvertToBitmap();
1182
1183 // Use the non-transparent pixels of a wxBitmap for the region to combine
1184 // with this region. If the bitmap has a mask then it will be used,
1185 // otherwise the colour to be treated as transparent may be specified,
1186 // along with an optional tolerance value.
1187 %name(UnionBitmap)bool Union(const wxBitmap& bmp,
1188 const wxColour& transColour = wxNullColour,
1189 int tolerance = 0);
1190};
1191
1192
1193
1194class wxRegionIterator : public wxObject {
1195public:
1196 wxRegionIterator(const wxRegion& region);
1197 ~wxRegionIterator();
1198
1199 wxCoord GetX();
1200 wxCoord GetY();
1201 wxCoord GetW();
1202 wxCoord GetWidth();
1203 wxCoord GetH();
1204 wxCoord GetHeight();
1205 wxRect GetRect();
1206 bool HaveRects();
1207 void Reset();
1208
1209 %addmethods {
1210 void Next() {
1211 (*self) ++;
1212 }
1213 };
1214};
1215
1216
1217//---------------------------------------------------------------------------
1218
1219
1220%readonly
1221%{
1222#if 0
1223%}
1224
1225// See also wxPy_ReinitStockObjects in helpers.cpp
1226
1227extern wxFont *wxNORMAL_FONT;
1228extern wxFont *wxSMALL_FONT;
1229extern wxFont *wxITALIC_FONT;
1230extern wxFont *wxSWISS_FONT;
1231
1232extern wxPen *wxRED_PEN;
1233extern wxPen *wxCYAN_PEN;
1234extern wxPen *wxGREEN_PEN;
1235extern wxPen *wxBLACK_PEN;
1236extern wxPen *wxWHITE_PEN;
1237extern wxPen *wxTRANSPARENT_PEN;
1238extern wxPen *wxBLACK_DASHED_PEN;
1239extern wxPen *wxGREY_PEN;
1240extern wxPen *wxMEDIUM_GREY_PEN;
1241extern wxPen *wxLIGHT_GREY_PEN;
1242
1243extern wxBrush *wxBLUE_BRUSH;
1244extern wxBrush *wxGREEN_BRUSH;
1245extern wxBrush *wxWHITE_BRUSH;
1246extern wxBrush *wxBLACK_BRUSH;
1247extern wxBrush *wxTRANSPARENT_BRUSH;
1248extern wxBrush *wxCYAN_BRUSH;
1249extern wxBrush *wxRED_BRUSH;
1250extern wxBrush *wxGREY_BRUSH;
1251extern wxBrush *wxMEDIUM_GREY_BRUSH;
1252extern wxBrush *wxLIGHT_GREY_BRUSH;
1253
1254extern wxColour *wxBLACK;
1255extern wxColour *wxWHITE;
1256extern wxColour *wxRED;
1257extern wxColour *wxBLUE;
1258extern wxColour *wxGREEN;
1259extern wxColour *wxCYAN;
1260extern wxColour *wxLIGHT_GREY;
1261
1262extern wxCursor *wxSTANDARD_CURSOR;
1263extern wxCursor *wxHOURGLASS_CURSOR;
1264extern wxCursor *wxCROSS_CURSOR;
1265
1266
1267extern wxBitmap wxNullBitmap;
1268extern wxIcon wxNullIcon;
1269extern wxCursor wxNullCursor;
1270extern wxPen wxNullPen;
1271extern wxBrush wxNullBrush;
1272extern wxPalette wxNullPalette;
1273extern wxFont wxNullFont;
1274extern wxColour wxNullColour;
1275
1276
1277extern wxFontList* wxTheFontList;
1278extern wxPenList* wxThePenList;
1279extern wxBrushList* wxTheBrushList;
1280extern wxColourDatabase* wxTheColourDatabase;
1281
1282
1283%readwrite
1284%{
1285#endif
1286%}
1287
1288//---------------------------------------------------------------------------
1289//---------------------------------------------------------------------------
1290