]> git.saurik.com Git - wxWidgets.git/blob - wxPython/src/gdi.i
compilation fix
[wxWidgets.git] / wxPython / src / gdi.i
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: gdi.i
3 // Purpose: SWIG interface file for wxDC, wxBrush, wxPen, wxFont, 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 %}
24
25 //----------------------------------------------------------------------
26
27 %include typemaps.i
28 %include my_typemaps.i
29
30 // Import some definitions of other classes, etc.
31 %import _defs.i
32 %import misc.i
33
34 %{
35 static wxString wxPyEmptyStr("");
36 %}
37
38 //---------------------------------------------------------------------------
39
40 class wxGDIObject : public wxObject {
41 public:
42 wxGDIObject();
43 ~wxGDIObject();
44
45 bool GetVisible();
46 void SetVisible( bool visible );
47
48 bool IsNull();
49
50 };
51
52 //---------------------------------------------------------------------------
53
54 class wxBitmap : public wxGDIObject
55 {
56 public:
57 wxBitmap(const wxString& name, wxBitmapType type=wxBITMAP_TYPE_BMP);
58 ~wxBitmap();
59
60 wxPalette* GetPalette();
61 wxMask* GetMask();
62 bool LoadFile(const wxString& name, wxBitmapType type=wxBITMAP_TYPE_BMP);
63 bool SaveFile(const wxString& name, wxBitmapType type, wxPalette* palette = NULL);
64 void SetMask(wxMask* mask);
65 #ifdef __WXMSW__
66 void SetPalette(wxPalette& palette);
67 #endif
68
69 // wxGDIImage methods
70 #ifdef __WXMSW__
71 long GetHandle();
72 void SetHandle(long handle);
73 #endif
74 bool Ok();
75 int GetWidth();
76 int GetHeight();
77 int GetDepth();
78 void SetWidth(int w);
79 void SetHeight(int h);
80 void SetDepth(int d);
81 #ifdef __WXMSW__
82 void SetSize(const wxSize& size);
83 #endif
84
85 wxBitmap GetSubBitmap( const wxRect& rect );
86 bool CopyFromIcon(const wxIcon& icon);
87 #ifdef __WXMSW__
88 bool CopyFromCursor(const wxCursor& cursor);
89 int GetQuality();
90 void SetQuality(int q);
91 #endif
92
93 %pragma(python) addtoclass = "
94 def __del__(self,gdic=gdic):
95 try:
96 if self.thisown == 1 :
97 gdic.delete_wxBitmap(self)
98 except:
99 pass
100 "
101 };
102
103
104 // Declarations of some alternate "constructors"
105 %new wxBitmap* wxEmptyBitmap(int width, int height, int depth=-1);
106 %new wxBitmap* wxBitmapFromXPMData(PyObject* listOfStrings);
107 %new wxBitmap* wxBitmapFromIcon(const wxIcon& icon);
108 %new wxBitmap* wxBitmapFromBits(char* bits, int width, int height, int depth = 1 );
109
110 // #ifdef __WXMSW__
111 // %new wxBitmap* wxBitmapFromData(PyObject* data, long type,
112 // int width, int height, int depth = 1);
113 // #endif
114
115
116
117 %{ // Implementations of some alternate "constructors"
118
119 wxBitmap* wxEmptyBitmap(int width, int height, int depth=-1) {
120 return new wxBitmap(width, height, depth);
121 }
122
123 static char** ConvertListOfStrings(PyObject* listOfStrings) {
124 char** cArray = NULL;
125 int count;
126
127 if (!PyList_Check(listOfStrings)) {
128 PyErr_SetString(PyExc_TypeError, "Expected a list of strings.");
129 return NULL;
130 }
131 count = PyList_Size(listOfStrings);
132 cArray = new char*[count];
133
134 for(int x=0; x<count; x++) {
135 // TODO: Need some validation and error checking here
136 cArray[x] = PyString_AsString(PyList_GET_ITEM(listOfStrings, x));
137 }
138 return cArray;
139 }
140
141
142 wxBitmap* wxBitmapFromXPMData(PyObject* listOfStrings) {
143 char** cArray = NULL;
144 wxBitmap* bmp;
145
146 cArray = ConvertListOfStrings(listOfStrings);
147 if (! cArray)
148 return NULL;
149 bmp = new wxBitmap(cArray);
150 delete [] cArray;
151 return bmp;
152 }
153
154
155 wxBitmap* wxBitmapFromIcon(const wxIcon& icon) {
156 return new wxBitmap(icon);
157 }
158
159
160 wxBitmap* wxBitmapFromBits(char* bits, int width, int height, int depth = 1 ) {
161 return new wxBitmap(bits, width, height, depth);
162 }
163
164
165 // #ifdef __WXMSW__
166 // wxBitmap* wxBitmapFromData(PyObject* data, long type,
167 // int width, int height, int depth = 1) {
168 // if (! PyString_Check(data)) {
169 // PyErr_SetString(PyExc_TypeError, "Expected string object");
170 // return NULL;
171 // }
172 // return new wxBitmap((void*)PyString_AsString(data), type, width, height, depth);
173 // }
174 // #endif
175 %}
176
177 //---------------------------------------------------------------------------
178
179 class wxMask : public wxObject {
180 public:
181 wxMask(const wxBitmap& bitmap);
182 //~wxMask();
183
184 %addmethods { void Destroy() { delete self; } }
185 };
186
187 %new wxMask* wxMaskColour(const wxBitmap& bitmap, const wxColour& colour);
188 %{
189 wxMask* wxMaskColour(const wxBitmap& bitmap, const wxColour& colour) {
190 return new wxMask(bitmap, colour);
191 }
192 %}
193
194
195 //---------------------------------------------------------------------------
196
197
198 class wxIcon : public wxGDIObject
199 {
200 public:
201 wxIcon(const wxString& name, long flags,
202 int desiredWidth = -1, int desiredHeight = -1);
203 ~wxIcon();
204
205 bool LoadFile(const wxString& name, long flags);
206
207 // wxGDIImage methods
208 #ifdef __WXMSW__
209 long GetHandle();
210 void SetHandle(long handle);
211 #endif
212 bool Ok();
213 int GetWidth();
214 int GetHeight();
215 int GetDepth();
216 void SetWidth(int w);
217 void SetHeight(int h);
218 void SetDepth(int d);
219 #ifdef __WXMSW__
220 void SetSize(const wxSize& size);
221 #endif
222 void CopyFromBitmap(const wxBitmap& bmp);
223
224 %pragma(python) addtoclass = "
225 def __del__(self,gdic=gdic):
226 try:
227 if self.thisown == 1 :
228 gdic.delete_wxIcon(self)
229 except:
230 pass
231 "
232 };
233
234
235 // Declarations of some alternate "constructors"
236 %new wxIcon* wxEmptyIcon();
237 %new wxIcon* wxIconFromXPMData(PyObject* listOfStrings);
238
239 %{ // Implementations of some alternate "constructors"
240 wxIcon* wxEmptyIcon() {
241 return new wxIcon();
242 }
243
244 wxIcon* wxIconFromXPMData(PyObject* listOfStrings) {
245 char** cArray = NULL;
246 wxIcon* icon;
247
248 cArray = ConvertListOfStrings(listOfStrings);
249 if (! cArray)
250 return NULL;
251 icon = new wxIcon(cArray);
252 delete [] cArray;
253 return icon;
254 }
255 %}
256
257 //---------------------------------------------------------------------------
258
259 class wxCursor : public wxGDIObject
260 {
261 public:
262 #ifdef __WXMSW__
263 wxCursor(const wxString& cursorName, long flags, int hotSpotX=0, int hotSpotY=0);
264 #endif
265 ~wxCursor();
266
267 // wxGDIImage methods
268 #ifdef __WXMSW__
269 long GetHandle();
270 void SetHandle(long handle);
271 #endif
272 bool Ok();
273 #ifdef __WXMSW__
274 int GetWidth();
275 int GetHeight();
276 int GetDepth();
277 void SetWidth(int w);
278 void SetHeight(int h);
279 void SetDepth(int d);
280 void SetSize(const wxSize& size);
281 #endif
282 };
283
284 %name(wxStockCursor) %new wxCursor* wxPyStockCursor(int id);
285 %{ // Alternate 'constructor'
286 wxCursor* wxPyStockCursor(int id) {
287 return new wxCursor(id);
288 }
289 %}
290
291 //----------------------------------------------------------------------
292
293
294 enum wxFontFamily
295 {
296 wxFONTFAMILY_DEFAULT = wxDEFAULT,
297 wxFONTFAMILY_DECORATIVE = wxDECORATIVE,
298 wxFONTFAMILY_ROMAN = wxROMAN,
299 wxFONTFAMILY_SCRIPT = wxSCRIPT,
300 wxFONTFAMILY_SWISS = wxSWISS,
301 wxFONTFAMILY_MODERN = wxMODERN,
302 wxFONTFAMILY_TELETYPE = wxTELETYPE,
303 wxFONTFAMILY_MAX
304 };
305
306 // font styles
307 enum wxFontStyle
308 {
309 wxFONTSTYLE_NORMAL = wxNORMAL,
310 wxFONTSTYLE_ITALIC = wxITALIC,
311 wxFONTSTYLE_SLANT = wxSLANT,
312 wxFONTSTYLE_MAX
313 };
314
315 // font weights
316 enum wxFontWeight
317 {
318 wxFONTWEIGHT_NORMAL = wxNORMAL,
319 wxFONTWEIGHT_LIGHT = wxLIGHT,
320 wxFONTWEIGHT_BOLD = wxBOLD,
321 wxFONTWEIGHT_MAX
322 };
323
324
325 // font encodings
326 enum wxFontEncoding
327 {
328 wxFONTENCODING_SYSTEM = -1, // system default
329 wxFONTENCODING_DEFAULT, // current default encoding
330
331 // ISO8859 standard defines a number of single-byte charsets
332 wxFONTENCODING_ISO8859_1, // West European (Latin1)
333 wxFONTENCODING_ISO8859_2, // Central and East European (Latin2)
334 wxFONTENCODING_ISO8859_3, // Esperanto (Latin3)
335 wxFONTENCODING_ISO8859_4, // Baltic (old) (Latin4)
336 wxFONTENCODING_ISO8859_5, // Cyrillic
337 wxFONTENCODING_ISO8859_6, // Arabic
338 wxFONTENCODING_ISO8859_7, // Greek
339 wxFONTENCODING_ISO8859_8, // Hebrew
340 wxFONTENCODING_ISO8859_9, // Turkish (Latin5)
341 wxFONTENCODING_ISO8859_10, // Variation of Latin4 (Latin6)
342 wxFONTENCODING_ISO8859_11, // Thai
343 wxFONTENCODING_ISO8859_12, // doesn't exist currently, but put it
344 // here anyhow to make all ISO8859
345 // consecutive numbers
346 wxFONTENCODING_ISO8859_13, // Baltic (Latin7)
347 wxFONTENCODING_ISO8859_14, // Latin8
348 wxFONTENCODING_ISO8859_15, // Latin9 (a.k.a. Latin0, includes euro)
349 wxFONTENCODING_ISO8859_MAX,
350
351 // Cyrillic charset soup (see http://czyborra.com/charsets/cyrillic.html)
352 wxFONTENCODING_KOI8, // we don't support any of KOI8 variants
353 wxFONTENCODING_ALTERNATIVE, // same as MS-DOS CP866
354 wxFONTENCODING_BULGARIAN, // used under Linux in Bulgaria
355
356 // what would we do without Microsoft? They have their own encodings
357 // for DOS
358 wxFONTENCODING_CP437, // original MS-DOS codepage
359 wxFONTENCODING_CP850, // CP437 merged with Latin1
360 wxFONTENCODING_CP852, // CP437 merged with Latin2
361 wxFONTENCODING_CP855, // another cyrillic encoding
362 wxFONTENCODING_CP866, // and another one
363 // and for Windows
364 wxFONTENCODING_CP874, // WinThai
365 wxFONTENCODING_CP932, // Japanese (shift-JIS)
366 wxFONTENCODING_CP936, // Chiniese simplified (GB)
367 wxFONTENCODING_CP949, // Korean (Hangul charset)
368 wxFONTENCODING_CP950, // Chinese (traditional - Big5)
369 wxFONTENCODING_CP1250, // WinLatin2
370 wxFONTENCODING_CP1251, // WinCyrillic
371 wxFONTENCODING_CP1252, // WinLatin1
372 wxFONTENCODING_CP1253, // WinGreek (8859-7)
373 wxFONTENCODING_CP1254, // WinTurkish
374 wxFONTENCODING_CP1255, // WinHebrew
375 wxFONTENCODING_CP1256, // WinArabic
376 wxFONTENCODING_CP1257, // WinBaltic (same as Latin 7)
377 wxFONTENCODING_CP12_MAX,
378
379 wxFONTENCODING_UTF7, // UTF-7 Unicode encoding
380 wxFONTENCODING_UTF8, // UTF-8 Unicode encoding
381
382 wxFONTENCODING_UNICODE, // Unicode - currently used only by
383 // wxEncodingConverter class
384
385 wxFONTENCODING_MAX
386 };
387
388
389
390 // wxNativeFontInfo is platform-specific font representation: this struct
391 // should be considered as opaque font description only used by the native
392 // functions, the user code can only get the objects of this type from
393 // somewhere and pass it somewhere else (possibly save them somewhere using
394 // ToString() and restore them using FromString())
395 struct wxNativeFontInfo
396 {
397 // it is important to be able to serialize wxNativeFontInfo objects to be
398 // able to store them (in config file, for example)
399 bool FromString(const wxString& s);
400 wxString ToString() const;
401
402 %addmethods {
403 wxString __str__() {
404 return self->ToString();
405 }
406 }
407 };
408
409
410 // wxFontMapper manages user-definable correspondence between logical font
411 // names and the fonts present on the machine.
412 //
413 // The default implementations of all functions will ask the user if they are
414 // not capable of finding the answer themselves and store the answer in a
415 // config file (configurable via SetConfigXXX functions). This behaviour may
416 // be disabled by giving the value of FALSE to "interactive" parameter.
417 // However, the functions will always consult the config file to allow the
418 // user-defined values override the default logic and there is no way to
419 // disable this - which shouldn't be ever needed because if "interactive" was
420 // never TRUE, the config file is never created anyhow.
421 class wxFontMapper
422 {
423 public:
424 wxFontMapper();
425 ~wxFontMapper();
426
427
428 // find an alternative for the given encoding (which is supposed to not be
429 // available on this system). If successful, return TRUE and rwxFontEcoding
430 // that can be used it wxFont ctor otherwise return FALSE
431 //bool GetAltForEncoding(wxFontEncoding encoding,
432 // wxFontEncoding *alt_encoding,
433 // const wxString& facename = wxEmptyString,
434 // bool interactive = TRUE);
435
436
437 // Find an alternative for the given encoding (which is supposed to not be
438 // available on this system). If successful, returns the encoding otherwise
439 // returns None.
440 %addmethods {
441 PyObject* GetAltForEncoding(wxFontEncoding encoding,
442 const wxString& facename = wxEmptyString,
443 bool interactive = TRUE) {
444 wxFontEncoding alt_enc;
445 if (self->GetAltForEncoding(encoding, &alt_enc, facename, interactive))
446 return PyInt_FromLong(alt_enc);
447 else {
448 Py_INCREF(Py_None);
449 return Py_None;
450 }
451 }
452 }
453
454
455 // checks whether given encoding is available in given face or not.
456 // If no facename is given,
457 bool IsEncodingAvailable(wxFontEncoding encoding,
458 const wxString& facename = wxEmptyString);
459
460 // returns the encoding for the given charset (in the form of RFC 2046) or
461 // wxFONTENCODING_SYSTEM if couldn't decode it
462 wxFontEncoding CharsetToEncoding(const wxString& charset,
463 bool interactive = TRUE);
464
465 // return internal string identifier for the encoding (see also
466 // GetEncodingDescription())
467 static wxString GetEncodingName(wxFontEncoding encoding);
468
469 // return user-readable string describing the given encoding
470 //
471 // NB: hard-coded now, but might change later (read it from config?)
472 static wxString GetEncodingDescription(wxFontEncoding encoding);
473
474 // the parent window for modal dialogs
475 void SetDialogParent(wxWindow *parent);
476
477 // the title for the dialogs (note that default is quite reasonable)
478 void SetDialogTitle(const wxString& title);
479
480 // functions which allow to configure the config object used: by default,
481 // the global one (from wxConfigBase::Get() will be used) and the default
482 // root path for the config settings is the string returned by
483 // GetDefaultConfigPath()
484
485
486 // set the config object to use (may be NULL to use default)
487 void SetConfig(wxConfigBase *config);
488
489 // set the root config path to use (should be an absolute path)
490 void SetConfigPath(const wxString& prefix);
491
492 // return default config path
493 static const wxChar *GetDefaultConfigPath();
494 };
495
496
497
498
499 class wxFont : public wxGDIObject {
500 public:
501 wxFont( int pointSize, int family, int style, int weight,
502 int underline=FALSE, char* faceName = "",
503 wxFontEncoding encoding=wxFONTENCODING_DEFAULT);
504
505 %name(wxFontFromNativeInfo)wxFont(const wxNativeFontInfo& info);
506
507 ~wxFont();
508
509 bool Ok() const;
510 int GetPointSize() const;
511 int GetFamily() const;
512 int GetStyle() const;
513 int GetWeight() const;
514 bool GetUnderlined() const;
515 wxString GetFaceName() const;
516 wxFontEncoding GetEncoding() const;
517 wxNativeFontInfo* GetNativeFontInfo() const;
518
519 void SetPointSize(int pointSize);
520 void SetFamily(int family);
521 void SetStyle(int style);
522 void SetWeight(int weight);
523 void SetFaceName(const wxString& faceName);
524 void SetUnderlined(bool underlined);
525 void SetEncoding(wxFontEncoding encoding);
526 void SetNativeFontInfo(const wxNativeFontInfo& info);
527
528 wxString GetFamilyString() const;
529 wxString GetStyleString() const;
530 wxString GetWeightString() const;
531
532 static wxFontEncoding GetDefaultEncoding();
533 static void SetDefaultEncoding(wxFontEncoding encoding);
534
535 };
536
537
538 class wxFontList : public wxObject {
539 public:
540
541 void AddFont(wxFont* font);
542 wxFont * FindOrCreateFont(int point_size, int family, int style, int weight,
543 bool underline = FALSE, const char* facename = NULL,
544 wxFontEncoding encoding = wxFONTENCODING_DEFAULT);
545 void RemoveFont(wxFont *font);
546 };
547
548
549 //----------------------------------------------------------------------
550
551 class wxColour : public wxObject {
552 public:
553 wxColour(unsigned char red=0, unsigned char green=0, unsigned char blue=0);
554 ~wxColour();
555 unsigned char Red();
556 unsigned char Green();
557 unsigned char Blue();
558 bool Ok();
559 void Set(unsigned char red, unsigned char green, unsigned char blue);
560 %addmethods {
561 PyObject* Get() {
562 PyObject* rv = PyTuple_New(3);
563 PyTuple_SetItem(rv, 0, PyInt_FromLong(self->Red()));
564 PyTuple_SetItem(rv, 1, PyInt_FromLong(self->Green()));
565 PyTuple_SetItem(rv, 2, PyInt_FromLong(self->Blue()));
566 return rv;
567 }
568 }
569 %pragma(python) addtoclass = "asTuple = Get"
570 %pragma(python) addtoclass = "def __str__(self): return str(self.asTuple())"
571 %pragma(python) addtoclass = "def __repr__(self): return str(self.asTuple())"
572
573 };
574
575 %new wxColour* wxNamedColour(const wxString& colorName);
576
577 %{ // Alternate 'constructor'
578 wxColour* wxNamedColour(const wxString& colorName) {
579 return new wxColour(colorName);
580 }
581 %}
582
583
584
585 class wxColourDatabase : public wxObject {
586 public:
587
588 wxColour *FindColour(const wxString& colour);
589 wxString FindName(const wxColour& colour) const;
590
591 %addmethods {
592 void Append(const wxString& name, int red, int green, int blue) {
593 self->Append(name.c_str(), new wxColour(red, green, blue));
594 }
595 }
596 };
597
598
599 //----------------------------------------------------------------------
600
601 class wxPen : public wxGDIObject {
602 public:
603 wxPen(wxColour& colour, int width=1, int style=wxSOLID);
604 ~wxPen();
605
606 int GetCap();
607 wxColour GetColour();
608
609 int GetJoin();
610 int GetStyle();
611 int GetWidth();
612 bool Ok();
613 void SetCap(int cap_style);
614 void SetColour(wxColour& colour);
615 void SetJoin(int join_style);
616 void SetStyle(int style);
617 void SetWidth(int width);
618
619 // **** This one needs to return a list of ints (wxDash)
620 //int GetDashes(wxDash **dashes);
621 void SetDashes(int LCOUNT, wxDash* choices);
622
623 #ifdef __WXMSW__
624 wxBitmap* GetStipple();
625 void SetStipple(wxBitmap& stipple);
626 #endif
627 };
628
629
630
631 %{
632 class wxPyPen : public wxPen {
633 public:
634 wxPyPen(wxColour& colour, int width=1, int style=wxSOLID)
635 : wxPen(colour, width, style)
636 { m_dash = NULL; }
637 ~wxPyPen() {
638 if (m_dash)
639 delete m_dash;
640 }
641
642 void SetDashes(int nb_dashes, const wxDash *dash) {
643 m_dash = new wxDash[nb_dashes];
644 for (int i=0; i<nb_dashes; i++)
645 m_dash[i] = dash[i];
646 wxPen::SetDashes(nb_dashes, m_dash);
647 }
648
649 private:
650 wxDash* m_dash;
651 };
652 %}
653
654
655
656 class wxPyPen : public wxPen {
657 public:
658 wxPyPen(wxColour& colour, int width=1, int style=wxSOLID);
659 ~wxPyPen();
660
661 void SetDashes(int LCOUNT, wxDash* choices);
662 };
663
664
665
666 class wxPenList : public wxObject {
667 public:
668
669 void AddPen(wxPen* pen);
670 wxPen* FindOrCreatePen(const wxColour& colour, int width, int style);
671 void RemovePen(wxPen* pen);
672 };
673
674
675
676 //----------------------------------------------------------------------
677
678 class wxBrush : public wxGDIObject {
679 public:
680 wxBrush(const wxColour& colour, int style=wxSOLID);
681 ~wxBrush();
682
683 wxColour GetColour();
684 wxBitmap * GetStipple();
685 int GetStyle();
686 bool Ok();
687 void SetColour(wxColour &colour);
688 void SetStipple(wxBitmap& bitmap);
689 void SetStyle(int style);
690 };
691
692
693 class wxBrushList : public wxObject {
694 public:
695
696 void AddBrush(wxBrush *brush);
697 wxBrush * FindOrCreateBrush(const wxColour& colour, int style);
698 void RemoveBrush(wxBrush *brush);
699 };
700
701 //----------------------------------------------------------------------
702
703
704
705 class wxDC : public wxObject {
706 public:
707 // wxDC(); **** abstract base class, can't instantiate.
708 ~wxDC();
709
710 void BeginDrawing();
711 // %name(BlitXY)
712 bool Blit(long xdest, long ydest,
713 long width, long height,
714 wxDC *source, long xsrc, long ysrc,
715 int logicalFunc = wxCOPY, int useMask = FALSE);
716 // bool Blit(const wxPoint& destPt, const wxSize& sz,
717 // wxDC *source, const wxPoint& srcPt,
718 // int logicalFunc = wxCOPY, int useMask = FALSE);
719
720 void Clear();
721 void CrossHair(long x, long y);
722 void DestroyClippingRegion();
723 long DeviceToLogicalX(long x);
724 long DeviceToLogicalXRel(long x);
725 long DeviceToLogicalY(long y);
726 long DeviceToLogicalYRel(long y);
727 void DrawArc(long x1, long y1, long x2, long y2, long xc, long yc);
728 void DrawCircle(long x, long y, long radius);
729 void DrawEllipse(long x, long y, long width, long height);
730 void DrawEllipticArc(long x, long y, long width, long height, long start, long end);
731 void DrawIcon(const wxIcon& icon, long x, long y);
732 void DrawLine(long x1, long y1, long x2, long y2);
733 void DrawLines(int PCOUNT, wxPoint* points, long xoffset=0, long yoffset=0);
734 void DrawPolygon(int PCOUNT, wxPoint* points, long xoffset=0, long yoffset=0,
735 int fill_style=wxODDEVEN_RULE);
736 void DrawPoint(long x, long y);
737 void DrawRectangle(long x, long y, long width, long height);
738 void DrawRotatedText(const wxString& text, wxCoord x, wxCoord y, double angle);
739 void DrawRoundedRectangle(long x, long y, long width, long height, long radius=20);
740 void DrawSpline(int PCOUNT, wxPoint* points);
741 void DrawText(const wxString& text, long x, long y);
742 void EndDoc();
743 void EndDrawing();
744 void EndPage();
745 void FloodFill(long x, long y, const wxColour& colour, int style=wxFLOOD_SURFACE);
746 wxBrush& GetBackground();
747 wxBrush& GetBrush();
748 long GetCharHeight();
749 long GetCharWidth();
750 void GetClippingBox(long *OUTPUT, long *OUTPUT,
751 long *OUTPUT, long *OUTPUT);
752 wxFont& GetFont();
753 int GetLogicalFunction();
754 void GetLogicalScale(double *OUTPUT, double *OUTPUT);
755 int GetMapMode();
756 bool GetOptimization();
757 wxPen& GetPen();
758 %addmethods {
759 %new wxColour* GetPixel(long x, long y) {
760 wxColour* wc = new wxColour();
761 self->GetPixel(x, y, wc);
762 return wc;
763 }
764 }
765 %name(GetSizeTuple)void GetSize(int* OUTPUT, int* OUTPUT);
766 wxSize GetSize();
767 wxSize GetSizeMM();
768 wxColour GetTextBackground();
769 void GetTextExtent(const wxString& string, long *OUTPUT, long *OUTPUT);
770 %name(GetFullTextExtent)void GetTextExtent(const wxString& string,
771 long *OUTPUT, long *OUTPUT, long *OUTPUT, long* OUTPUT,
772 const wxFont* font = NULL);
773 wxColour GetTextForeground();
774 void GetUserScale(double *OUTPUT, double *OUTPUT);
775 long LogicalToDeviceX(long x);
776 long LogicalToDeviceXRel(long x);
777 long LogicalToDeviceY(long y);
778 long LogicalToDeviceYRel(long y);
779 long MaxX();
780 long MaxY();
781 long MinX();
782 long MinY();
783 bool Ok();
784 void SetDeviceOrigin(long x, long y);
785 void SetBackground(const wxBrush& brush);
786 void SetBackgroundMode(int mode);
787 void SetClippingRegion(long x, long y, long width, long height);
788 %name(SetClippingRegionAsRegion) void SetClippingRegion(const wxRegion& region);
789 void SetPalette(const wxPalette& colourMap);
790 void SetBrush(const wxBrush& brush);
791 void SetFont(const wxFont& font);
792 void SetLogicalFunction(int function);
793 void SetLogicalScale(double x, double y);
794 void SetMapMode(int mode);
795 void SetOptimization(bool optimize);
796 void SetPen(const wxPen& pen);
797 void SetTextBackground(const wxColour& colour);
798 void SetTextForeground(const wxColour& colour);
799 void SetUserScale(double x_scale, double y_scale);
800 bool StartDoc(const wxString& message);
801 void StartPage();
802
803
804
805 void DrawBitmap(const wxBitmap& bitmap, long x, long y,
806 int useMask = FALSE);
807
808 bool CanDrawBitmap();
809 bool CanGetTextExtent();
810 int GetDepth();
811 wxSize GetPPI();
812
813 void GetLogicalOrigin(int *OUTPUT, int *OUTPUT);
814 void SetLogicalOrigin(int x, int y);
815 void GetDeviceOrigin(int *OUTPUT, int *OUTPUT);
816 void SetAxisOrientation(bool xLeftRight, bool yBottomUp);
817
818 void CalcBoundingBox(int x, int y);
819 void ResetBoundingBox();
820
821 %addmethods {
822 void GetBoundingBox(int* OUTPUT, int* OUTPUT, int* OUTPUT, int* OUTPUT);
823 // See below for implementation
824 }
825
826 #ifdef __WXMSW__
827 long GetHDC();
828 #endif
829
830
831 %addmethods {
832 // NOTE: These methods are VERY SIMILAR in implentation. It would be
833 // nice to factor out common code and or turn them into a set of
834 // template-like macros.
835
836 // Draw a point for every set of coordinants in pyPoints, optionally
837 // setting a new pen for each
838 PyObject* _DrawPointList(PyObject* pyPoints, PyObject* pyPens) {
839 bool isFastSeq = PyList_Check(pyPoints) || PyTuple_Check(pyPoints);
840 bool isFastPens = PyList_Check(pyPens) || PyTuple_Check(pyPens);
841 int numObjs = 0;
842 int numPens = 0;
843 wxPen* pen;
844 PyObject* obj;
845 int x1, y1;
846 int i = 0;
847
848 if (!PySequence_Check(pyPoints)) {
849 goto err0;
850 }
851 if (!PySequence_Check(pyPens)) {
852 goto err1;
853 }
854 numObjs = PySequence_Length(pyPoints);
855 numPens = PySequence_Length(pyPens);
856
857 for (i = 0; i < numObjs; i++) {
858 // Use a new pen?
859 if (i < numPens) {
860 if (isFastPens) {
861 obj = PySequence_Fast_GET_ITEM(pyPens, i);
862 }
863 else {
864 obj = PySequence_GetItem(pyPens, i);
865 }
866 if (SWIG_GetPtrObj(obj, (void **) &pen, "_wxPen_p")) {
867 if (!isFastPens)
868 Py_DECREF(obj);
869 goto err1;
870 }
871
872 self->SetPen(*pen);
873 if (!isFastPens)
874 Py_DECREF(obj);
875 }
876
877 // Get the point coordinants
878 if (isFastSeq) {
879 obj = PySequence_Fast_GET_ITEM(pyPoints, i);
880 }
881 else {
882 obj = PySequence_GetItem(pyPoints, i);
883 }
884 if (! _2int_seq_helper(obj, &x1, &y1)) {
885 if (!isFastPens)
886 Py_DECREF(obj);
887 goto err0;
888 }
889
890 // Now draw the point
891 self->DrawPoint(x1, y1);
892
893 if (!isFastSeq)
894 Py_DECREF(obj);
895 }
896
897 Py_INCREF(Py_None);
898 return Py_None;
899
900 err1:
901 PyErr_SetString(PyExc_TypeError, "Expected a sequence of wxPens");
902 return NULL;
903 err0:
904 PyErr_SetString(PyExc_TypeError, "Expected a sequence of (x,y) sequences.");
905 return NULL;
906 }
907
908
909 // Draw a line for every set of coordinants in pyLines, optionally
910 // setting a new pen for each
911 PyObject* _DrawLineList(PyObject* pyLines, PyObject* pyPens) {
912 bool isFastSeq = PyList_Check(pyLines) || PyTuple_Check(pyLines);
913 bool isFastPens = PyList_Check(pyPens) || PyTuple_Check(pyPens);
914 int numObjs = 0;
915 int numPens = 0;
916 wxPen* pen;
917 PyObject* obj;
918 int x1, y1, x2, y2;
919 int i = 0;
920
921 if (!PySequence_Check(pyLines)) {
922 goto err0;
923 }
924 if (!PySequence_Check(pyPens)) {
925 goto err1;
926 }
927 numObjs = PySequence_Length(pyLines);
928 numPens = PySequence_Length(pyPens);
929
930 for (i = 0; i < numObjs; i++) {
931 // Use a new pen?
932 if (i < numPens) {
933 if (isFastPens) {
934 obj = PySequence_Fast_GET_ITEM(pyPens, i);
935 }
936 else {
937 obj = PySequence_GetItem(pyPens, i);
938 }
939 if (SWIG_GetPtrObj(obj, (void **) &pen, "_wxPen_p")) {
940 if (!isFastPens)
941 Py_DECREF(obj);
942 goto err1;
943 }
944
945 self->SetPen(*pen);
946 if (!isFastPens)
947 Py_DECREF(obj);
948 }
949
950 // Get the line coordinants
951 if (isFastSeq) {
952 obj = PySequence_Fast_GET_ITEM(pyLines, i);
953 }
954 else {
955 obj = PySequence_GetItem(pyLines, i);
956 }
957 if (! _4int_seq_helper(obj, &x1, &y1, &x2, &y2)) {
958 if (!isFastPens)
959 Py_DECREF(obj);
960 goto err0;
961 }
962
963 // Now draw the line
964 self->DrawLine(x1, y1, x2, y2);
965
966 if (!isFastSeq)
967 Py_DECREF(obj);
968 }
969
970 Py_INCREF(Py_None);
971 return Py_None;
972
973 err1:
974 PyErr_SetString(PyExc_TypeError, "Expected a sequence of wxPens");
975 return NULL;
976 err0:
977 PyErr_SetString(PyExc_TypeError, "Expected a sequence of (x1,y1, x2,y2) sequences.");
978 return NULL;
979 }
980 }
981
982
983 %pragma(python) addtoclass = "
984 def DrawPointList(self, points, pens=None):
985 if pens is None:
986 pens = []
987 elif isinstance(pens, wxPenPtr):
988 pens = [pens]
989 elif len(pens) != len(points):
990 raise ValueError('points and pens must have same length')
991 return self._DrawPointList(points, pens)
992
993 def DrawLineList(self, lines, pens=None):
994 if pens is None:
995 pens = []
996 elif isinstance(pens, wxPenPtr):
997 pens = [pens]
998 elif len(pens) != len(lines):
999 raise ValueError('lines and pens must have same length')
1000 return self._DrawLineList(lines, pens)
1001 "
1002
1003
1004 };
1005
1006
1007
1008 %{
1009 static void wxDC_GetBoundingBox(wxDC* dc, int* x1, int* y1, int* x2, int* y2) {
1010 *x1 = dc->MinX();
1011 *y1 = dc->MinY();
1012 *x2 = dc->MaxX();
1013 *y2 = dc->MaxY();
1014 }
1015 %}
1016
1017 //----------------------------------------------------------------------
1018
1019 class wxMemoryDC : public wxDC {
1020 public:
1021 wxMemoryDC();
1022
1023 void SelectObject(const wxBitmap& bitmap);
1024 }
1025
1026 %new wxMemoryDC* wxMemoryDCFromDC(wxDC* oldDC);
1027 %{ // Alternate 'constructor'
1028 wxMemoryDC* wxMemoryDCFromDC(wxDC* oldDC) {
1029 return new wxMemoryDC(oldDC);
1030 }
1031 %}
1032
1033
1034 //---------------------------------------------------------------------------
1035
1036 class wxScreenDC : public wxDC {
1037 public:
1038 wxScreenDC();
1039
1040 %name(StartDrawingOnTopWin) bool StartDrawingOnTop(wxWindow* window);
1041 bool StartDrawingOnTop(wxRect* rect = NULL);
1042 bool EndDrawingOnTop();
1043 };
1044
1045 //---------------------------------------------------------------------------
1046
1047 class wxClientDC : public wxDC {
1048 public:
1049 wxClientDC(wxWindow* win);
1050 };
1051
1052 //---------------------------------------------------------------------------
1053
1054 class wxPaintDC : public wxDC {
1055 public:
1056 wxPaintDC(wxWindow* win);
1057 };
1058
1059 //---------------------------------------------------------------------------
1060
1061 class wxWindowDC : public wxDC {
1062 public:
1063 wxWindowDC(wxWindow* win);
1064 };
1065
1066 //---------------------------------------------------------------------------
1067
1068
1069 #ifdef __WXMSW__
1070
1071 %{
1072 #include <wx/metafile.h>
1073 %}
1074
1075 class wxMetaFile : public wxObject {
1076 public:
1077 wxMetaFile(const wxString& filename = wxPyEmptyStr);
1078 ~wxMetaFile();
1079
1080 bool Ok();
1081 bool SetClipboard(int width = 0, int height = 0);
1082
1083 wxSize GetSize();
1084 int GetWidth();
1085 int GetHeight();
1086
1087 const wxString& GetFileName() const { return m_filename; }
1088
1089 };
1090
1091 // bool wxMakeMetaFilePlaceable(const wxString& filename,
1092 // int minX, int minY, int maxX, int maxY, float scale=1.0);
1093
1094
1095 class wxMetaFileDC : public wxDC {
1096 public:
1097 wxMetaFileDC(const wxString& filename = wxPyEmptyStr,
1098 int width = 0, int height = 0,
1099 const wxString& description = wxPyEmptyStr);
1100 wxMetaFile* Close();
1101 };
1102
1103 #endif
1104
1105 //---------------------------------------------------------------------------
1106 //---------------------------------------------------------------------------
1107
1108
1109 %readonly
1110 %{
1111 #if 0
1112 %}
1113 extern wxFont *wxNORMAL_FONT;
1114 extern wxFont *wxSMALL_FONT;
1115 extern wxFont *wxITALIC_FONT;
1116 extern wxFont *wxSWISS_FONT;
1117
1118 extern wxPen *wxRED_PEN;
1119 extern wxPen *wxCYAN_PEN;
1120 extern wxPen *wxGREEN_PEN;
1121 extern wxPen *wxBLACK_PEN;
1122 extern wxPen *wxWHITE_PEN;
1123 extern wxPen *wxTRANSPARENT_PEN;
1124 extern wxPen *wxBLACK_DASHED_PEN;
1125 extern wxPen *wxGREY_PEN;
1126 extern wxPen *wxMEDIUM_GREY_PEN;
1127 extern wxPen *wxLIGHT_GREY_PEN;
1128
1129 extern wxBrush *wxBLUE_BRUSH;
1130 extern wxBrush *wxGREEN_BRUSH;
1131 extern wxBrush *wxWHITE_BRUSH;
1132 extern wxBrush *wxBLACK_BRUSH;
1133 extern wxBrush *wxTRANSPARENT_BRUSH;
1134 extern wxBrush *wxCYAN_BRUSH;
1135 extern wxBrush *wxRED_BRUSH;
1136 extern wxBrush *wxGREY_BRUSH;
1137 extern wxBrush *wxMEDIUM_GREY_BRUSH;
1138 extern wxBrush *wxLIGHT_GREY_BRUSH;
1139
1140 extern wxColour *wxBLACK;
1141 extern wxColour *wxWHITE;
1142 extern wxColour *wxRED;
1143 extern wxColour *wxBLUE;
1144 extern wxColour *wxGREEN;
1145 extern wxColour *wxCYAN;
1146 extern wxColour *wxLIGHT_GREY;
1147
1148 extern wxCursor *wxSTANDARD_CURSOR;
1149 extern wxCursor *wxHOURGLASS_CURSOR;
1150 extern wxCursor *wxCROSS_CURSOR;
1151
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;
1160
1161
1162 extern wxFontList* wxTheFontList;
1163 extern wxPenList* wxThePenList;
1164 extern wxBrushList* wxTheBrushList;
1165 extern wxColourDatabase* wxTheColourDatabase;
1166
1167
1168 %readwrite
1169 %{
1170 #endif
1171 %}
1172
1173 //---------------------------------------------------------------------------
1174
1175 class wxPalette : public wxGDIObject {
1176 public:
1177 wxPalette(int LCOUNT, byte* choices, byte* choices, byte* choices);
1178 ~wxPalette();
1179
1180 int GetPixel(byte red, byte green, byte blue);
1181 bool GetRGB(int pixel, byte* OUTPUT, byte* OUTPUT, byte* OUTPUT);
1182 bool Ok();
1183 };
1184
1185 //---------------------------------------------------------------------------
1186
1187 enum {
1188 wxIMAGELIST_DRAW_NORMAL ,
1189 wxIMAGELIST_DRAW_TRANSPARENT,
1190 wxIMAGELIST_DRAW_SELECTED,
1191 wxIMAGELIST_DRAW_FOCUSED,
1192 wxIMAGE_LIST_NORMAL,
1193 wxIMAGE_LIST_SMALL,
1194 wxIMAGE_LIST_STATE
1195 };
1196
1197 class wxImageList : public wxObject {
1198 public:
1199 wxImageList(int width, int height, int mask=TRUE, int initialCount=1);
1200 ~wxImageList();
1201
1202 int Add(const wxBitmap& bitmap, const wxBitmap& mask = wxNullBitmap);
1203 %name(AddWithColourMask)int Add(const wxBitmap& bitmap, const wxColour& maskColour);
1204 %name(AddIcon)int Add(const wxIcon& icon);
1205 #ifdef __WXMSW__
1206 bool Replace(int index, const wxBitmap& bitmap, const wxBitmap& mask = wxNullBitmap);
1207 #else
1208 // %name(ReplaceIcon)bool Replace(int index, const wxIcon& icon);
1209 // int Add(const wxBitmap& bitmap);
1210 bool Replace(int index, const wxBitmap& bitmap);
1211 #endif
1212
1213 bool Draw(int index, wxDC& dc, int x, int x, int flags = wxIMAGELIST_DRAW_NORMAL,
1214 const bool solidBackground = FALSE);
1215
1216 int GetImageCount();
1217 bool Remove(int index);
1218 bool RemoveAll();
1219 void GetSize(int index, int& OUTPUT, int& OUTPUT);
1220 };
1221
1222
1223 //---------------------------------------------------------------------------
1224 // Regions, etc.
1225
1226 enum wxRegionContain {
1227 wxOutRegion, wxPartRegion, wxInRegion
1228 };
1229
1230
1231 class wxRegion : public wxGDIObject {
1232 public:
1233 wxRegion(long x=0, long y=0, long width=0, long height=0);
1234 ~wxRegion();
1235
1236 void Clear();
1237 wxRegionContain Contains(long x, long y);
1238 %name(ContainsPoint)wxRegionContain Contains(const wxPoint& pt);
1239 %name(ContainsRect)wxRegionContain Contains(const wxRect& rect);
1240 %name(ContainsRectDim)wxRegionContain Contains(long x, long y, long w, long h);
1241
1242 wxRect GetBox();
1243
1244 bool Intersect(long x, long y, long width, long height);
1245 %name(IntersectRect)bool Intersect(const wxRect& rect);
1246 %name(IntersectRegion)bool Intersect(const wxRegion& region);
1247
1248 bool IsEmpty();
1249
1250 bool Union(long x, long y, long width, long height);
1251 %name(UnionRect)bool Union(const wxRect& rect);
1252 %name(UnionRegion)bool Union(const wxRegion& region);
1253
1254 bool Subtract(long x, long y, long width, long height);
1255 %name(SubtractRect)bool Subtract(const wxRect& rect);
1256 %name(SubtractRegion)bool Subtract(const wxRegion& region);
1257
1258 bool Xor(long x, long y, long width, long height);
1259 %name(XorRect)bool Xor(const wxRect& rect);
1260 %name(XorRegion)bool Xor(const wxRegion& region);
1261 };
1262
1263
1264
1265 class wxRegionIterator : public wxObject {
1266 public:
1267 wxRegionIterator(const wxRegion& region);
1268 ~wxRegionIterator();
1269
1270 long GetX();
1271 long GetY();
1272 long GetW();
1273 long GetWidth();
1274 long GetH();
1275 long GetHeight();
1276 wxRect GetRect();
1277 bool HaveRects();
1278 void Reset();
1279
1280 %addmethods {
1281 void Next() {
1282 (*self) ++;
1283 }
1284 };
1285 };
1286
1287
1288 //---------------------------------------------------------------------------
1289