]>
Commit | Line | Data |
---|---|---|
7bf85405 RD |
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 | ||
03e9bead RD |
14 | %module gdi |
15 | ||
16 | %{ | |
7bf85405 | 17 | #include "helpers.h" |
7bf85405 | 18 | #include <wx/metafile.h> |
af309447 | 19 | #include <wx/imaglist.h> |
105e45b9 | 20 | #ifndef __WXMSW__ |
08127323 | 21 | #include <wx/dcps.h> |
105e45b9 | 22 | #endif |
7bf85405 RD |
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 | ||
b68dc582 RD |
34 | |
35 | %{ | |
36 | static wxString wxPyEmptyStr(""); | |
37 | %} | |
38 | ||
7bf85405 RD |
39 | //--------------------------------------------------------------------------- |
40 | ||
5bff6bb8 RD |
41 | // class wxGDIImage { |
42 | // public: | |
43 | // long GetHandle(); | |
44 | // void SetHandle(long handle); | |
45 | // bool Ok(); | |
46 | // int GetWidth(); | |
47 | // int GetHeight(); | |
48 | // int GetDepth(); | |
49 | // void SetWidth(int w); | |
50 | // void SetHeight(int h); | |
51 | // void SetDepth(int d); | |
52 | // void SetSize(const wxSize& size); | |
53 | // }; | |
6999b0d8 RD |
54 | |
55 | //--------------------------------------------------------------------------- | |
56 | ||
5bff6bb8 RD |
57 | class wxBitmap |
58 | //: public wxGDIImage | |
59 | { | |
7bf85405 | 60 | public: |
0a651eb8 | 61 | wxBitmap(const wxString& name, wxBitmapType type); |
7bf85405 RD |
62 | ~wxBitmap(); |
63 | ||
7bf85405 RD |
64 | wxPalette* GetPalette(); |
65 | wxMask* GetMask(); | |
7bf85405 | 66 | bool LoadFile(const wxString& name, long flags); |
7bf85405 | 67 | bool SaveFile(const wxString& name, int type, wxPalette* palette = NULL); |
7bf85405 | 68 | void SetMask(wxMask* mask); |
fb5e0af0 | 69 | #ifdef __WXMSW__ |
b8b8dda7 | 70 | void SetPalette(wxPalette& palette); |
fb5e0af0 | 71 | #endif |
5bff6bb8 RD |
72 | |
73 | // wxGDIImage methods | |
74 | #ifdef __WXMSW__ | |
75 | long GetHandle(); | |
76 | void SetHandle(long handle); | |
77 | #endif | |
78 | bool Ok(); | |
79 | int GetWidth(); | |
80 | int GetHeight(); | |
81 | int GetDepth(); | |
82 | void SetWidth(int w); | |
83 | void SetHeight(int h); | |
84 | void SetDepth(int d); | |
85 | #ifdef __WXMSW__ | |
86 | void SetSize(const wxSize& size); | |
87 | #endif | |
f6bcfd97 BP |
88 | |
89 | wxBitmap GetSubBitmap( const wxRect& rect ); | |
90 | #ifdef __WXMSW__ | |
91 | bool CopyFromIcon(const wxIcon& icon); | |
92 | bool CopyFromCursor(const wxCursor& cursor); | |
93 | int GetQuality(); | |
94 | void SetQuality(int q); | |
95 | #endif | |
96 | ||
97 | %pragma(python) addtoclass = " | |
98 | def __del__(self,gdic=gdic): | |
99 | try: | |
100 | if self.thisown == 1 : | |
101 | gdic.delete_wxBitmap(self) | |
102 | except: | |
103 | pass | |
104 | " | |
7bf85405 RD |
105 | }; |
106 | ||
5bff6bb8 | 107 | |
96bfd053 | 108 | // Declarations of some alternate "constructors" |
7bf85405 | 109 | %new wxBitmap* wxEmptyBitmap(int width, int height, int depth=-1); |
96bfd053 RD |
110 | %new wxBitmap* wxBitmapFromXPMData(PyObject* listOfStrings); |
111 | %new wxBitmap* wxBitmapFromIcon(const wxIcon& icon); | |
9c039d08 | 112 | |
8bf5d46e | 113 | #ifdef __WXMSW__ |
4c9993c3 | 114 | %new wxBitmap* wxBitmapFromData(PyObject* data, long type, |
8bf5d46e RD |
115 | int width, int height, int depth = 1); |
116 | #endif | |
117 | ||
96bfd053 RD |
118 | |
119 | ||
120 | %{ // Implementations of some alternate "constructors" | |
121 | ||
7bf85405 RD |
122 | wxBitmap* wxEmptyBitmap(int width, int height, int depth=-1) { |
123 | return new wxBitmap(width, height, depth); | |
124 | } | |
125 | ||
96bfd053 RD |
126 | static char** ConvertListOfStrings(PyObject* listOfStrings) { |
127 | char** cArray = NULL; | |
128 | int count; | |
129 | ||
130 | if (!PyList_Check(listOfStrings)) { | |
131 | PyErr_SetString(PyExc_TypeError, "Expected a list of strings."); | |
132 | return NULL; | |
133 | } | |
134 | count = PyList_Size(listOfStrings); | |
135 | cArray = new char*[count]; | |
136 | ||
137 | for(int x=0; x<count; x++) { | |
138 | // TODO: Need some validation and error checking here | |
139 | cArray[x] = PyString_AsString(PyList_GET_ITEM(listOfStrings, x)); | |
140 | } | |
141 | return cArray; | |
142 | } | |
143 | ||
144 | wxBitmap* wxBitmapFromXPMData(PyObject* listOfStrings) { | |
145 | char** cArray = NULL; | |
146 | wxBitmap* bmp; | |
147 | ||
148 | cArray = ConvertListOfStrings(listOfStrings); | |
149 | if (! cArray) | |
150 | return NULL; | |
151 | bmp = new wxBitmap(cArray); | |
152 | delete [] cArray; | |
153 | return bmp; | |
154 | } | |
155 | ||
156 | ||
157 | wxBitmap* wxBitmapFromIcon(const wxIcon& icon) { | |
158 | return new wxBitmap(icon); | |
159 | } | |
160 | ||
161 | ||
8bf5d46e | 162 | #ifdef __WXMSW__ |
4c9993c3 | 163 | wxBitmap* wxBitmapFromData(PyObject* data, long type, |
8bf5d46e | 164 | int width, int height, int depth = 1) { |
4c9993c3 RD |
165 | if (! PyString_Check(data)) { |
166 | PyErr_SetString(PyExc_TypeError, "Expected string object"); | |
167 | return NULL; | |
168 | } | |
169 | ||
170 | return new wxBitmap((void*)PyString_AsString(data), type, width, height, depth); | |
8bf5d46e RD |
171 | } |
172 | #endif | |
7bf85405 RD |
173 | %} |
174 | ||
175 | //--------------------------------------------------------------------------- | |
176 | ||
177 | class wxMask { | |
178 | public: | |
179 | wxMask(const wxBitmap& bitmap); | |
eb715945 | 180 | //~wxMask(); |
96bfd053 RD |
181 | |
182 | %addmethods { void Destroy() { delete self; } } | |
7bf85405 RD |
183 | }; |
184 | ||
185 | %new wxMask* wxMaskColour(const wxBitmap& bitmap, const wxColour& colour); | |
186 | %{ | |
187 | wxMask* wxMaskColour(const wxBitmap& bitmap, const wxColour& colour) { | |
188 | return new wxMask(bitmap, colour); | |
189 | } | |
190 | %} | |
191 | ||
192 | ||
193 | //--------------------------------------------------------------------------- | |
194 | ||
195 | ||
5bff6bb8 RD |
196 | class wxIcon |
197 | //: public wxGDIImage | |
198 | { | |
7bf85405 | 199 | public: |
fb5e0af0 RD |
200 | wxIcon(const wxString& name, long flags, |
201 | int desiredWidth = -1, int desiredHeight = -1); | |
7bf85405 RD |
202 | ~wxIcon(); |
203 | ||
7bf85405 | 204 | bool LoadFile(const wxString& name, long flags); |
5bff6bb8 RD |
205 | |
206 | // wxGDIImage methods | |
207 | #ifdef __WXMSW__ | |
208 | long GetHandle(); | |
209 | void SetHandle(long handle); | |
210 | #endif | |
211 | bool Ok(); | |
212 | int GetWidth(); | |
213 | int GetHeight(); | |
214 | int GetDepth(); | |
215 | void SetWidth(int w); | |
216 | void SetHeight(int h); | |
217 | void SetDepth(int d); | |
218 | #ifdef __WXMSW__ | |
219 | void SetSize(const wxSize& size); | |
220 | #endif | |
96bfd053 RD |
221 | void CopyFromBitmap(const wxBitmap& bmp); |
222 | ||
f6bcfd97 BP |
223 | %pragma(python) addtoclass = " |
224 | def __del__(self,gdic=gdic): | |
225 | try: | |
226 | if self.thisown == 1 : | |
227 | gdic.delete_wxIcon(self) | |
228 | except: | |
229 | pass | |
230 | " | |
7bf85405 RD |
231 | }; |
232 | ||
8bf5d46e | 233 | |
96bfd053 RD |
234 | // Declarations of some alternate "constructors" |
235 | %new wxIcon* wxEmptyIcon(); | |
236 | %new wxIcon* wxIconFromXPMData(PyObject* listOfStrings); | |
237 | ||
238 | %{ // Implementations of some alternate "constructors" | |
239 | wxIcon* wxEmptyIcon() { | |
240 | return new wxIcon(); | |
241 | } | |
242 | ||
243 | wxIcon* wxIconFromXPMData(PyObject* listOfStrings) { | |
244 | char** cArray = NULL; | |
245 | wxIcon* icon; | |
246 | ||
247 | cArray = ConvertListOfStrings(listOfStrings); | |
248 | if (! cArray) | |
249 | return NULL; | |
250 | icon = new wxIcon(cArray); | |
251 | delete [] cArray; | |
252 | return icon; | |
253 | } | |
254 | %} | |
255 | ||
7bf85405 RD |
256 | //--------------------------------------------------------------------------- |
257 | ||
5bff6bb8 RD |
258 | class wxCursor |
259 | //: public wxGDIImage | |
260 | { | |
7bf85405 | 261 | public: |
fb5e0af0 | 262 | #ifdef __WXMSW__ |
7bf85405 | 263 | wxCursor(const wxString& cursorName, long flags, int hotSpotX=0, int hotSpotY=0); |
fb5e0af0 | 264 | #endif |
7bf85405 | 265 | ~wxCursor(); |
5bff6bb8 RD |
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 | |
7bf85405 RD |
282 | }; |
283 | ||
9c039d08 | 284 | %name(wxStockCursor) %new wxCursor* wxPyStockCursor(int id); |
7bf85405 | 285 | %{ // Alternate 'constructor' |
9c039d08 | 286 | wxCursor* wxPyStockCursor(int id) { |
7bf85405 RD |
287 | return new wxCursor(id); |
288 | } | |
289 | %} | |
290 | ||
291 | //---------------------------------------------------------------------- | |
292 | ||
f0261a72 RD |
293 | |
294 | enum wxFontEncoding | |
295 | { | |
296 | wxFONTENCODING_SYSTEM = -1, // system default | |
297 | wxFONTENCODING_DEFAULT, // current default encoding | |
298 | ||
299 | // ISO8859 standard defines a number of single-byte charsets | |
300 | wxFONTENCODING_ISO8859_1, // West European (Latin1) | |
301 | wxFONTENCODING_ISO8859_2, // Central and East European (Latin2) | |
302 | wxFONTENCODING_ISO8859_3, // Esperanto (Latin3) | |
303 | wxFONTENCODING_ISO8859_4, // Baltic languages (Estonian) (Latin4) | |
304 | wxFONTENCODING_ISO8859_5, // Cyrillic | |
305 | wxFONTENCODING_ISO8859_6, // Arabic | |
306 | wxFONTENCODING_ISO8859_7, // Greek | |
307 | wxFONTENCODING_ISO8859_8, // Hebrew | |
308 | wxFONTENCODING_ISO8859_9, // Turkish (Latin5) | |
309 | wxFONTENCODING_ISO8859_10, // Variation of Latin4 (Latin6) | |
310 | wxFONTENCODING_ISO8859_11, // Thai | |
311 | wxFONTENCODING_ISO8859_12, // doesn't exist currently, but put it | |
312 | // here anyhow to make all ISO8859 | |
313 | // consecutive numbers | |
314 | wxFONTENCODING_ISO8859_13, // Latin7 | |
315 | wxFONTENCODING_ISO8859_14, // Latin8 | |
316 | wxFONTENCODING_ISO8859_15, // Latin9 (a.k.a. Latin0, includes euro) | |
317 | ||
318 | // Cyrillic charset soup (see http://czyborra.com/charsets/cyrillic.html) | |
319 | wxFONTENCODING_KOI8, // we don't support any of KOI8 variants | |
320 | wxFONTENCODING_ALTERNATIVE, // same as MS-DOS CP866 | |
321 | wxFONTENCODING_BULGARIAN, // used under Linux in Bulgaria | |
322 | ||
323 | // what would we do without Microsoft? They have their own encodings | |
324 | // for DOS | |
325 | wxFONTENCODING_CP437, // original MS-DOS codepage | |
326 | wxFONTENCODING_CP850, // CP437 merged with Latin1 | |
327 | wxFONTENCODING_CP852, // CP437 merged with Latin2 | |
328 | wxFONTENCODING_CP855, // another cyrillic encoding | |
329 | wxFONTENCODING_CP866, // and another one | |
330 | // and for Windows | |
331 | wxFONTENCODING_CP1250, // WinLatin2 | |
332 | wxFONTENCODING_CP1251, // WinCyrillic | |
333 | wxFONTENCODING_CP1252, // WinLatin1 | |
334 | ||
335 | wxFONTENCODING_MAX | |
336 | }; | |
337 | ||
0569df0f | 338 | |
7bf85405 RD |
339 | class wxFont { |
340 | public: | |
0569df0f RD |
341 | wxFont( int pointSize, int family, int style, int weight, |
342 | int underline=FALSE, char* faceName = "", | |
343 | wxFontEncoding encoding=wxFONTENCODING_DEFAULT); | |
344 | ~wxFont(); | |
7bf85405 | 345 | |
694759cf | 346 | bool Ok(); |
7bf85405 RD |
347 | wxString GetFaceName(); |
348 | int GetFamily(); | |
08127323 | 349 | #ifdef __WXMSW__ |
7bf85405 | 350 | int GetFontId(); |
08127323 | 351 | #endif |
7bf85405 RD |
352 | int GetPointSize(); |
353 | int GetStyle(); | |
354 | bool GetUnderlined(); | |
355 | int GetWeight(); | |
f0261a72 | 356 | wxFontEncoding GetEncoding(); |
7bf85405 RD |
357 | void SetFaceName(const wxString& faceName); |
358 | void SetFamily(int family); | |
359 | void SetPointSize(int pointSize); | |
360 | void SetStyle(int style); | |
361 | void SetUnderlined(bool underlined); | |
362 | void SetWeight(int weight); | |
f0261a72 RD |
363 | void SetEncoding(wxFontEncoding encoding); |
364 | wxString GetFamilyString(); | |
365 | wxString GetStyleString(); | |
366 | wxString GetWeightString(); | |
7bf85405 RD |
367 | }; |
368 | ||
f0261a72 RD |
369 | %inline %{ |
370 | wxFontEncoding wxFont_GetDefaultEncoding() { | |
371 | return wxFont::GetDefaultEncoding(); | |
372 | } | |
373 | ||
374 | void wxFont_SetDefaultEncoding(wxFontEncoding encoding) { | |
375 | wxFont::SetDefaultEncoding(encoding); | |
376 | } | |
377 | %} | |
378 | ||
0569df0f RD |
379 | |
380 | class wxFontList { | |
381 | public: | |
382 | ||
383 | void AddFont(wxFont* font); | |
384 | wxFont * FindOrCreateFont(int point_size, int family, int style, int weight, | |
385 | bool underline = FALSE, const char* facename = NULL, | |
386 | wxFontEncoding encoding = wxFONTENCODING_DEFAULT); | |
387 | void RemoveFont(wxFont *font); | |
388 | }; | |
389 | ||
390 | ||
7bf85405 RD |
391 | //---------------------------------------------------------------------- |
392 | ||
393 | class wxColour { | |
394 | public: | |
395 | wxColour(unsigned char red=0, unsigned char green=0, unsigned char blue=0); | |
396 | ~wxColour(); | |
397 | unsigned char Red(); | |
398 | unsigned char Green(); | |
399 | unsigned char Blue(); | |
400 | bool Ok(); | |
401 | void Set(unsigned char red, unsigned char green, unsigned char blue); | |
402 | %addmethods { | |
403 | PyObject* Get() { | |
404 | PyObject* rv = PyTuple_New(3); | |
405 | PyTuple_SetItem(rv, 0, PyInt_FromLong(self->Red())); | |
406 | PyTuple_SetItem(rv, 1, PyInt_FromLong(self->Green())); | |
407 | PyTuple_SetItem(rv, 2, PyInt_FromLong(self->Blue())); | |
408 | return rv; | |
409 | } | |
410 | } | |
9b3d3bc4 RD |
411 | %pragma(python) addtoclass = "asTuple = Get" |
412 | %pragma(python) addtoclass = "def __str__(self): return str(self.asTuple())" | |
413 | %pragma(python) addtoclass = "def __repr__(self): return str(self.asTuple())" | |
414 | ||
7bf85405 RD |
415 | }; |
416 | ||
417 | %new wxColour* wxNamedColour(const wxString& colorName); | |
de20db99 | 418 | |
7bf85405 RD |
419 | %{ // Alternate 'constructor' |
420 | wxColour* wxNamedColour(const wxString& colorName) { | |
421 | return new wxColour(colorName); | |
422 | } | |
423 | %} | |
424 | ||
425 | ||
7bf85405 | 426 | |
0569df0f | 427 | class wxColourDatabase { |
7bf85405 | 428 | public: |
0569df0f RD |
429 | |
430 | wxColour *FindColour(const wxString& colour); | |
431 | wxString FindName(const wxColour& colour) const; | |
432 | ||
7bf85405 | 433 | %addmethods { |
0569df0f RD |
434 | void Append(const wxString& name, int red, int green, int blue) { |
435 | self->Append(name.c_str(), new wxColour(red, green, blue)); | |
7bf85405 | 436 | } |
7bf85405 | 437 | } |
0569df0f RD |
438 | }; |
439 | ||
440 | ||
441 | //---------------------------------------------------------------------- | |
442 | ||
443 | ||
444 | class wxPen { | |
445 | public: | |
446 | wxPen(wxColour& colour, int width=1, int style=wxSOLID); | |
447 | ~wxPen(); | |
7bf85405 RD |
448 | |
449 | int GetCap(); | |
450 | wxColour& GetColour(); | |
451 | ||
fb5e0af0 | 452 | int GetJoin(); |
7bf85405 RD |
453 | int GetStyle(); |
454 | int GetWidth(); | |
455 | bool Ok(); | |
456 | void SetCap(int cap_style); | |
457 | void SetColour(wxColour& colour); | |
aeeb6a44 RR |
458 | void SetJoin(int join_style); |
459 | void SetStyle(int style); | |
460 | void SetWidth(int width); | |
08127323 | 461 | |
aeeb6a44 RR |
462 | // **** This one needs to return a list of ints (wxDash) |
463 | int GetDashes(wxDash **dashes); | |
eec92d76 | 464 | void SetDashes(int LCOUNT, wxDash* choices); |
6999b0d8 RD |
465 | |
466 | #ifdef __WXMSW__ | |
467 | wxBitmap* GetStipple(); | |
b8b8dda7 | 468 | void SetStipple(wxBitmap& stipple); |
fb5e0af0 | 469 | #endif |
7bf85405 RD |
470 | }; |
471 | ||
0569df0f RD |
472 | |
473 | class wxPenList { | |
474 | public: | |
475 | ||
476 | void AddPen(wxPen* pen); | |
477 | wxPen* FindOrCreatePen(const wxColour& colour, int width, int style); | |
478 | void RemovePen(wxPen* pen); | |
479 | }; | |
480 | ||
481 | ||
482 | ||
7bf85405 RD |
483 | //---------------------------------------------------------------------- |
484 | ||
485 | class wxBrush { | |
486 | public: | |
0569df0f RD |
487 | wxBrush(const wxColour& colour, int style=wxSOLID); |
488 | ~wxBrush(); | |
26b9cf27 | 489 | |
7bf85405 RD |
490 | wxColour& GetColour(); |
491 | wxBitmap * GetStipple(); | |
492 | int GetStyle(); | |
493 | bool Ok(); | |
494 | void SetColour(wxColour &colour); | |
b8b8dda7 | 495 | void SetStipple(wxBitmap& bitmap); |
7bf85405 RD |
496 | void SetStyle(int style); |
497 | }; | |
498 | ||
0569df0f RD |
499 | |
500 | class wxBrushList { | |
501 | public: | |
502 | ||
503 | void AddBrush(wxBrush *brush); | |
504 | wxBrush * FindOrCreateBrush(const wxColour& colour, int style); | |
505 | void RemoveBrush(wxBrush *brush); | |
506 | }; | |
507 | ||
7bf85405 RD |
508 | //---------------------------------------------------------------------- |
509 | ||
510 | ||
511 | ||
512 | class wxDC { | |
513 | public: | |
fb5e0af0 | 514 | // wxDC(); **** abstract base class, can't instantiate. |
7bf85405 RD |
515 | ~wxDC(); |
516 | ||
517 | void BeginDrawing(); | |
efc5f224 RD |
518 | // %name(BlitXY) |
519 | bool Blit(long xdest, long ydest, | |
520 | long width, long height, | |
521 | wxDC *source, long xsrc, long ysrc, | |
522 | int logicalFunc = wxCOPY, int useMask = FALSE); | |
523 | // bool Blit(const wxPoint& destPt, const wxSize& sz, | |
524 | // wxDC *source, const wxPoint& srcPt, | |
525 | // int logicalFunc = wxCOPY, int useMask = FALSE); | |
526 | ||
7bf85405 RD |
527 | void Clear(); |
528 | void CrossHair(long x, long y); | |
529 | void DestroyClippingRegion(); | |
530 | long DeviceToLogicalX(long x); | |
531 | long DeviceToLogicalXRel(long x); | |
532 | long DeviceToLogicalY(long y); | |
533 | long DeviceToLogicalYRel(long y); | |
534 | void DrawArc(long x1, long y1, long x2, long y2, long xc, long yc); | |
bb0054cd | 535 | void DrawCircle(long x, long y, long radius); |
7bf85405 RD |
536 | void DrawEllipse(long x, long y, long width, long height); |
537 | void DrawEllipticArc(long x, long y, long width, long height, long start, long end); | |
538 | void DrawIcon(const wxIcon& icon, long x, long y); | |
539 | void DrawLine(long x1, long y1, long x2, long y2); | |
eec92d76 RD |
540 | void DrawLines(int PCOUNT, wxPoint* points, long xoffset=0, long yoffset=0); |
541 | void DrawPolygon(int PCOUNT, wxPoint* points, long xoffset=0, long yoffset=0, | |
7bf85405 RD |
542 | int fill_style=wxODDEVEN_RULE); |
543 | void DrawPoint(long x, long y); | |
544 | void DrawRectangle(long x, long y, long width, long height); | |
6999b0d8 | 545 | void DrawRotatedText(const wxString& text, wxCoord x, wxCoord y, double angle); |
7bf85405 | 546 | void DrawRoundedRectangle(long x, long y, long width, long height, long radius=20); |
eec92d76 | 547 | void DrawSpline(int PCOUNT, wxPoint* points); |
7bf85405 RD |
548 | void DrawText(const wxString& text, long x, long y); |
549 | void EndDoc(); | |
550 | void EndDrawing(); | |
551 | void EndPage(); | |
552 | void FloodFill(long x, long y, const wxColour& colour, int style=wxFLOOD_SURFACE); | |
b8b8dda7 RD |
553 | wxBrush& GetBackground(); |
554 | wxBrush& GetBrush(); | |
7bf85405 RD |
555 | long GetCharHeight(); |
556 | long GetCharWidth(); | |
557 | void GetClippingBox(long *OUTPUT, long *OUTPUT, | |
558 | long *OUTPUT, long *OUTPUT); | |
b8b8dda7 | 559 | wxFont& GetFont(); |
7bf85405 | 560 | int GetLogicalFunction(); |
eec92d76 | 561 | void GetLogicalScale(double *OUTPUT, double *OUTPUT); |
7bf85405 RD |
562 | int GetMapMode(); |
563 | bool GetOptimization(); | |
b8b8dda7 | 564 | wxPen& GetPen(); |
fb5e0af0 RD |
565 | %addmethods { |
566 | %new wxColour* GetPixel(long x, long y) { | |
567 | wxColour* wc = new wxColour(); | |
568 | self->GetPixel(x, y, wc); | |
569 | return wc; | |
570 | } | |
571 | } | |
bb0054cd RD |
572 | %name(GetSizeTuple)void GetSize(int* OUTPUT, int* OUTPUT); |
573 | wxSize GetSize(); | |
eec92d76 | 574 | wxSize GetSizeMM(); |
7bf85405 | 575 | wxColour& GetTextBackground(); |
af309447 RD |
576 | void GetTextExtent(const wxString& string, long *OUTPUT, long *OUTPUT); |
577 | %name(GetFullTextExtent)void GetTextExtent(const wxString& string, | |
578 | long *OUTPUT, long *OUTPUT, long *OUTPUT, long* OUTPUT, | |
579 | const wxFont* font = NULL); | |
7bf85405 | 580 | wxColour& GetTextForeground(); |
eec92d76 | 581 | void GetUserScale(double *OUTPUT, double *OUTPUT); |
7bf85405 RD |
582 | long LogicalToDeviceX(long x); |
583 | long LogicalToDeviceXRel(long x); | |
584 | long LogicalToDeviceY(long y); | |
585 | long LogicalToDeviceYRel(long y); | |
586 | long MaxX(); | |
587 | long MaxY(); | |
588 | long MinX(); | |
589 | long MinY(); | |
590 | bool Ok(); | |
591 | void SetDeviceOrigin(long x, long y); | |
592 | void SetBackground(const wxBrush& brush); | |
593 | void SetBackgroundMode(int mode); | |
594 | void SetClippingRegion(long x, long y, long width, long height); | |
595 | void SetPalette(const wxPalette& colourMap); | |
596 | void SetBrush(const wxBrush& brush); | |
597 | void SetFont(const wxFont& font); | |
598 | void SetLogicalFunction(int function); | |
eec92d76 | 599 | void SetLogicalScale(double x, double y); |
7bf85405 RD |
600 | void SetMapMode(int mode); |
601 | void SetOptimization(bool optimize); | |
602 | void SetPen(const wxPen& pen); | |
603 | void SetTextBackground(const wxColour& colour); | |
604 | void SetTextForeground(const wxColour& colour); | |
605 | void SetUserScale(double x_scale, double y_scale); | |
606 | bool StartDoc(const wxString& message); | |
607 | void StartPage(); | |
608 | ||
609 | ||
efc5f224 RD |
610 | |
611 | void DrawBitmap(const wxBitmap& bitmap, long x, long y, | |
612 | int useMask = FALSE); | |
613 | ||
eec92d76 RD |
614 | bool CanDrawBitmap(); |
615 | bool CanGetTextExtent(); | |
616 | int GetDepth(); | |
617 | wxSize GetPPI(); | |
618 | ||
619 | void GetLogicalOrigin(int *OUTPUT, int *OUTPUT); | |
620 | void SetLogicalOrigin(int x, int y); | |
621 | void GetDeviceOrigin(int *OUTPUT, int *OUTPUT); | |
eec92d76 RD |
622 | void SetAxisOrientation(bool xLeftRight, bool yBottomUp); |
623 | ||
f6bcfd97 BP |
624 | void CalcBoundingBox(int x, int y); |
625 | void ResetBoundingBox(); | |
7bf85405 RD |
626 | }; |
627 | ||
628 | ||
629 | //---------------------------------------------------------------------- | |
630 | ||
631 | class wxMemoryDC : public wxDC { | |
632 | public: | |
633 | wxMemoryDC(); | |
634 | ||
635 | void SelectObject(const wxBitmap& bitmap); | |
636 | } | |
637 | ||
638 | %new wxMemoryDC* wxMemoryDCFromDC(wxDC* oldDC); | |
639 | %{ // Alternate 'constructor' | |
640 | wxMemoryDC* wxMemoryDCFromDC(wxDC* oldDC) { | |
641 | return new wxMemoryDC(oldDC); | |
642 | } | |
643 | %} | |
644 | ||
645 | ||
646 | //--------------------------------------------------------------------------- | |
647 | ||
648 | class wxScreenDC : public wxDC { | |
649 | public: | |
650 | wxScreenDC(); | |
651 | ||
26b9cf27 RD |
652 | %name(StartDrawingOnTopWin) bool StartDrawingOnTop(wxWindow* window); |
653 | bool StartDrawingOnTop(wxRect* rect = NULL); | |
7bf85405 RD |
654 | bool EndDrawingOnTop(); |
655 | }; | |
656 | ||
657 | //--------------------------------------------------------------------------- | |
658 | ||
659 | class wxClientDC : public wxDC { | |
660 | public: | |
661 | wxClientDC(wxWindow* win); | |
662 | }; | |
663 | ||
664 | //--------------------------------------------------------------------------- | |
665 | ||
666 | class wxPaintDC : public wxDC { | |
667 | public: | |
668 | wxPaintDC(wxWindow* win); | |
669 | }; | |
670 | ||
671 | //--------------------------------------------------------------------------- | |
672 | ||
b639c3c5 RD |
673 | class wxWindowDC : public wxDC { |
674 | public: | |
675 | wxWindowDC(wxWindow* win); | |
676 | }; | |
b639c3c5 RD |
677 | |
678 | //--------------------------------------------------------------------------- | |
679 | ||
be4d9c1f | 680 | #ifndef __WXMSW__ |
7bf85405 RD |
681 | class wxPostScriptDC : public wxDC { |
682 | public: | |
683 | wxPostScriptDC(const wxString& output, bool interactive = TRUE, wxWindow* win = NULL); | |
684 | }; | |
be4d9c1f | 685 | #endif |
7bf85405 RD |
686 | |
687 | //--------------------------------------------------------------------------- | |
688 | ||
7bf85405 | 689 | |
fb5e0af0 | 690 | #ifdef __WXMSW__ |
7bf85405 RD |
691 | class wxMetaFileDC : public wxDC { |
692 | public: | |
693 | wxMetaFileDC(const wxString& filename = wxPyEmptyStr); | |
694 | wxMetaFile* Close(); | |
695 | }; | |
fb5e0af0 | 696 | #endif |
7bf85405 RD |
697 | |
698 | //--------------------------------------------------------------------------- | |
699 | //--------------------------------------------------------------------------- | |
700 | ||
701 | ||
702 | %readonly | |
af309447 RD |
703 | %{ |
704 | #if 0 | |
705 | %} | |
7bf85405 RD |
706 | extern wxFont *wxNORMAL_FONT; |
707 | extern wxFont *wxSMALL_FONT; | |
708 | extern wxFont *wxITALIC_FONT; | |
709 | extern wxFont *wxSWISS_FONT; | |
7bf85405 | 710 | |
1afc06c2 | 711 | extern wxPen *wxRED_PEN; |
7bf85405 RD |
712 | extern wxPen *wxCYAN_PEN; |
713 | extern wxPen *wxGREEN_PEN; | |
714 | extern wxPen *wxBLACK_PEN; | |
715 | extern wxPen *wxWHITE_PEN; | |
716 | extern wxPen *wxTRANSPARENT_PEN; | |
717 | extern wxPen *wxBLACK_DASHED_PEN; | |
718 | extern wxPen *wxGREY_PEN; | |
719 | extern wxPen *wxMEDIUM_GREY_PEN; | |
720 | extern wxPen *wxLIGHT_GREY_PEN; | |
721 | ||
722 | extern wxBrush *wxBLUE_BRUSH; | |
723 | extern wxBrush *wxGREEN_BRUSH; | |
724 | extern wxBrush *wxWHITE_BRUSH; | |
725 | extern wxBrush *wxBLACK_BRUSH; | |
726 | extern wxBrush *wxTRANSPARENT_BRUSH; | |
727 | extern wxBrush *wxCYAN_BRUSH; | |
728 | extern wxBrush *wxRED_BRUSH; | |
729 | extern wxBrush *wxGREY_BRUSH; | |
730 | extern wxBrush *wxMEDIUM_GREY_BRUSH; | |
731 | extern wxBrush *wxLIGHT_GREY_BRUSH; | |
732 | ||
733 | extern wxColour *wxBLACK; | |
734 | extern wxColour *wxWHITE; | |
735 | extern wxColour *wxRED; | |
736 | extern wxColour *wxBLUE; | |
737 | extern wxColour *wxGREEN; | |
738 | extern wxColour *wxCYAN; | |
739 | extern wxColour *wxLIGHT_GREY; | |
740 | ||
741 | extern wxCursor *wxSTANDARD_CURSOR; | |
742 | extern wxCursor *wxHOURGLASS_CURSOR; | |
743 | extern wxCursor *wxCROSS_CURSOR; | |
744 | ||
745 | extern wxBitmap wxNullBitmap; | |
746 | extern wxIcon wxNullIcon; | |
747 | extern wxCursor wxNullCursor; | |
748 | extern wxPen wxNullPen; | |
749 | extern wxBrush wxNullBrush; | |
750 | extern wxPalette wxNullPalette; | |
751 | extern wxFont wxNullFont; | |
752 | extern wxColour wxNullColour; | |
753 | ||
0569df0f RD |
754 | |
755 | extern wxFontList* wxTheFontList; | |
756 | extern wxPenList* wxThePenList; | |
757 | extern wxBrushlist* wxTheBrushList; | |
758 | extern wxColourDatabase* wxTheColourDatabase; | |
759 | ||
760 | ||
af309447 RD |
761 | %readwrite |
762 | %{ | |
763 | #endif | |
764 | %} | |
765 | ||
b639c3c5 RD |
766 | //--------------------------------------------------------------------------- |
767 | ||
768 | class wxPalette { | |
769 | public: | |
eec92d76 | 770 | wxPalette(int LCOUNT, byte* choices, byte* choices, byte* choices); |
b639c3c5 RD |
771 | ~wxPalette(); |
772 | ||
773 | int GetPixel(byte red, byte green, byte blue); | |
774 | bool GetRGB(int pixel, byte* OUTPUT, byte* OUTPUT, byte* OUTPUT); | |
775 | bool Ok(); | |
776 | }; | |
777 | ||
778 | //--------------------------------------------------------------------------- | |
779 | ||
af309447 RD |
780 | enum { |
781 | wxIMAGELIST_DRAW_NORMAL , | |
782 | wxIMAGELIST_DRAW_TRANSPARENT, | |
783 | wxIMAGELIST_DRAW_SELECTED, | |
784 | wxIMAGELIST_DRAW_FOCUSED, | |
785 | wxIMAGE_LIST_NORMAL, | |
786 | wxIMAGE_LIST_SMALL, | |
787 | wxIMAGE_LIST_STATE | |
788 | }; | |
789 | ||
790 | class wxImageList { | |
791 | public: | |
dcd38683 | 792 | wxImageList(int width, int height, int mask=TRUE, int initialCount=1); |
af309447 RD |
793 | ~wxImageList(); |
794 | ||
795 | int Add(const wxBitmap& bitmap, const wxBitmap& mask = wxNullBitmap); | |
796 | %name(AddWithColourMask)int Add(const wxBitmap& bitmap, const wxColour& maskColour); | |
797 | %name(AddIcon)int Add(const wxIcon& icon); | |
f6bcfd97 | 798 | #ifdef __WXMSW__ |
b57bdb5a | 799 | bool Replace(int index, const wxBitmap& bitmap, const wxBitmap& mask = wxNullBitmap); |
b57bdb5a | 800 | #else |
f6bcfd97 BP |
801 | // %name(ReplaceIcon)bool Replace(int index, const wxIcon& icon); |
802 | // int Add(const wxBitmap& bitmap); | |
b57bdb5a RD |
803 | bool Replace(int index, const wxBitmap& bitmap); |
804 | #endif | |
af309447 RD |
805 | |
806 | bool Draw(int index, wxDC& dc, int x, int x, int flags = wxIMAGELIST_DRAW_NORMAL, | |
807 | const bool solidBackground = FALSE); | |
808 | ||
809 | int GetImageCount(); | |
810 | bool Remove(int index); | |
811 | bool RemoveAll(); | |
f6bcfd97 | 812 | void GetSize(int index, int& OUTPUT, int& OUTPUT); |
af309447 RD |
813 | }; |
814 | ||
b639c3c5 | 815 | |
7bf85405 RD |
816 | //--------------------------------------------------------------------------- |
817 |