]>
Commit | Line | Data |
---|---|---|
d55e5bfc RD |
1 | # This file was created automatically by SWIG. |
2 | # Don't modify this file, modify the SWIG interface instead. | |
3 | ||
4 | import _gdi_ | |
5 | ||
6 | import _core | |
7 | wx = _core | |
d55e5bfc RD |
8 | #--------------------------------------------------------------------------- |
9 | ||
10 | class GDIObject(_core.Object): | |
11 | def __repr__(self): | |
12 | return "<%s.%s; proxy of C++ wxGDIObject instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,) | |
13 | def __init__(self, *args, **kwargs): | |
14 | """__init__(self) -> GDIObject""" | |
15 | newobj = _gdi_.new_GDIObject(*args, **kwargs) | |
16 | self.this = newobj.this | |
17 | self.thisown = 1 | |
18 | del newobj.thisown | |
19 | def __del__(self, destroy=_gdi_.delete_GDIObject): | |
20 | """__del__(self)""" | |
21 | try: | |
22 | if self.thisown: destroy(self) | |
23 | except: pass | |
24 | ||
25 | def GetVisible(*args, **kwargs): | |
26 | """GetVisible(self) -> bool""" | |
27 | return _gdi_.GDIObject_GetVisible(*args, **kwargs) | |
28 | ||
29 | def SetVisible(*args, **kwargs): | |
30 | """SetVisible(self, bool visible)""" | |
31 | return _gdi_.GDIObject_SetVisible(*args, **kwargs) | |
32 | ||
33 | def IsNull(*args, **kwargs): | |
34 | """IsNull(self) -> bool""" | |
35 | return _gdi_.GDIObject_IsNull(*args, **kwargs) | |
36 | ||
37 | ||
38 | class GDIObjectPtr(GDIObject): | |
39 | def __init__(self, this): | |
40 | self.this = this | |
41 | if not hasattr(self,"thisown"): self.thisown = 0 | |
42 | self.__class__ = GDIObject | |
43 | _gdi_.GDIObject_swigregister(GDIObjectPtr) | |
44 | ||
45 | #--------------------------------------------------------------------------- | |
46 | ||
47 | class Colour(_core.Object): | |
48 | """ | |
79fccf9d RD |
49 | A colour is an object representing a combination of Red, Green, and |
50 | Blue (RGB) intensity values, and is used to determine drawing colours, | |
51 | window colours, etc. Valid RGB values are in the range 0 to 255. | |
d55e5bfc | 52 | |
79fccf9d RD |
53 | In wxPython there are typemaps that will automatically convert from a |
54 | colour name, or from a '#RRGGBB' colour hex value string to a | |
55 | wx.Colour object when calling C++ methods that expect a wxColour. | |
56 | This means that the following are all equivallent:: | |
d55e5bfc RD |
57 | |
58 | win.SetBackgroundColour(wxColour(0,0,255)) | |
59 | win.SetBackgroundColour('BLUE') | |
60 | win.SetBackgroundColour('#0000FF') | |
61 | ||
79fccf9d RD |
62 | Additional colour names and their coresponding values can be added |
63 | using `wx.ColourDatabase`. Various system colours (as set in the | |
64 | user's system preferences) can be retrieved with | |
65 | `wx.SystemSettings.GetColour`. | |
66 | ||
d55e5bfc RD |
67 | """ |
68 | def __repr__(self): | |
69 | return "<%s.%s; proxy of C++ wxColour instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,) | |
70 | def __init__(self, *args, **kwargs): | |
71 | """ | |
79fccf9d | 72 | __init__(self, byte red=0, byte green=0, byte blue=0) -> Colour |
d55e5bfc RD |
73 | |
74 | Constructs a colour from red, green and blue values. | |
79fccf9d RD |
75 | |
76 | :see: Alternate constructors `wx.NamedColour` and `wx.ColourRGB`. | |
77 | ||
d55e5bfc RD |
78 | """ |
79 | newobj = _gdi_.new_Colour(*args, **kwargs) | |
80 | self.this = newobj.this | |
81 | self.thisown = 1 | |
82 | del newobj.thisown | |
83 | def __del__(self, destroy=_gdi_.delete_Colour): | |
84 | """__del__(self)""" | |
85 | try: | |
86 | if self.thisown: destroy(self) | |
87 | except: pass | |
88 | ||
89 | def Red(*args, **kwargs): | |
90 | """ | |
79fccf9d | 91 | Red(self) -> byte |
d55e5bfc RD |
92 | |
93 | Returns the red intensity. | |
94 | """ | |
95 | return _gdi_.Colour_Red(*args, **kwargs) | |
96 | ||
97 | def Green(*args, **kwargs): | |
98 | """ | |
79fccf9d | 99 | Green(self) -> byte |
d55e5bfc RD |
100 | |
101 | Returns the green intensity. | |
102 | """ | |
103 | return _gdi_.Colour_Green(*args, **kwargs) | |
104 | ||
105 | def Blue(*args, **kwargs): | |
106 | """ | |
79fccf9d | 107 | Blue(self) -> byte |
d55e5bfc RD |
108 | |
109 | Returns the blue intensity. | |
110 | """ | |
111 | return _gdi_.Colour_Blue(*args, **kwargs) | |
112 | ||
113 | def Ok(*args, **kwargs): | |
114 | """ | |
115 | Ok(self) -> bool | |
116 | ||
117 | Returns True if the colour object is valid (the colour has been | |
118 | initialised with RGB values). | |
119 | """ | |
120 | return _gdi_.Colour_Ok(*args, **kwargs) | |
121 | ||
122 | def Set(*args, **kwargs): | |
123 | """ | |
79fccf9d | 124 | Set(self, byte red, byte green, byte blue) |
d55e5bfc RD |
125 | |
126 | Sets the RGB intensity values. | |
127 | """ | |
128 | return _gdi_.Colour_Set(*args, **kwargs) | |
129 | ||
130 | def SetRGB(*args, **kwargs): | |
131 | """ | |
132 | SetRGB(self, unsigned long colRGB) | |
133 | ||
134 | Sets the RGB intensity values from a packed RGB value. | |
135 | """ | |
136 | return _gdi_.Colour_SetRGB(*args, **kwargs) | |
137 | ||
138 | def SetFromName(*args, **kwargs): | |
139 | """ | |
140 | SetFromName(self, String colourName) | |
141 | ||
79fccf9d RD |
142 | Sets the RGB intensity values using a colour name listed in |
143 | ``wx.TheColourDatabase``. | |
d55e5bfc RD |
144 | """ |
145 | return _gdi_.Colour_SetFromName(*args, **kwargs) | |
146 | ||
147 | def GetPixel(*args, **kwargs): | |
148 | """ | |
149 | GetPixel(self) -> long | |
150 | ||
151 | Returns a pixel value which is platform-dependent. On Windows, a | |
79fccf9d RD |
152 | COLORREF is returned. On X, an allocated pixel value is returned. -1 |
153 | is returned if the pixel is invalid (on X, unallocated). | |
d55e5bfc RD |
154 | """ |
155 | return _gdi_.Colour_GetPixel(*args, **kwargs) | |
156 | ||
157 | def __eq__(*args, **kwargs): | |
158 | """ | |
159 | __eq__(self, Colour colour) -> bool | |
160 | ||
161 | Compare colours for equality | |
162 | """ | |
163 | return _gdi_.Colour___eq__(*args, **kwargs) | |
164 | ||
165 | def __ne__(*args, **kwargs): | |
166 | """ | |
167 | __ne__(self, Colour colour) -> bool | |
168 | ||
169 | Compare colours for inequality | |
170 | """ | |
171 | return _gdi_.Colour___ne__(*args, **kwargs) | |
172 | ||
173 | def Get(*args, **kwargs): | |
174 | """ | |
175 | Get() -> (r, g, b) | |
176 | ||
177 | Returns the RGB intensity values as a tuple. | |
178 | """ | |
179 | return _gdi_.Colour_Get(*args, **kwargs) | |
180 | ||
181 | def GetRGB(*args, **kwargs): | |
182 | """ | |
183 | GetRGB(self) -> unsigned long | |
184 | ||
185 | Return the colour as a packed RGB value | |
186 | """ | |
187 | return _gdi_.Colour_GetRGB(*args, **kwargs) | |
188 | ||
79fccf9d RD |
189 | asTuple = wx._deprecated(Get, "asTuple is deprecated, use `Get` instead") |
190 | def __str__(self): return str(self.Get()) | |
191 | def __repr__(self): return 'wx.Colour' + str(self.Get()) | |
d55e5bfc RD |
192 | def __nonzero__(self): return self.Ok() |
193 | __safe_for_unpickling__ = True | |
194 | def __reduce__(self): return (Colour, self.Get()) | |
195 | ||
196 | ||
197 | class ColourPtr(Colour): | |
198 | def __init__(self, this): | |
199 | self.this = this | |
200 | if not hasattr(self,"thisown"): self.thisown = 0 | |
201 | self.__class__ = Colour | |
202 | _gdi_.Colour_swigregister(ColourPtr) | |
203 | ||
204 | def NamedColour(*args, **kwargs): | |
205 | """ | |
206 | NamedColour(String colorName) -> Colour | |
207 | ||
79fccf9d RD |
208 | Constructs a colour object using a colour name listed in |
209 | ``wx.TheColourDatabase``. | |
d55e5bfc RD |
210 | """ |
211 | val = _gdi_.new_NamedColour(*args, **kwargs) | |
212 | val.thisown = 1 | |
213 | return val | |
214 | ||
215 | def ColourRGB(*args, **kwargs): | |
216 | """ | |
217 | ColourRGB(unsigned long colRGB) -> Colour | |
218 | ||
219 | Constructs a colour from a packed RGB value. | |
220 | """ | |
221 | val = _gdi_.new_ColourRGB(*args, **kwargs) | |
222 | val.thisown = 1 | |
223 | return val | |
224 | ||
225 | Color = Colour | |
226 | NamedColor = NamedColour | |
227 | ColorRGB = ColourRGB | |
228 | ||
229 | class Palette(GDIObject): | |
230 | def __repr__(self): | |
231 | return "<%s.%s; proxy of C++ wxPalette instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,) | |
232 | def __init__(self, *args, **kwargs): | |
233 | """__init__(self, int n, unsigned char red, unsigned char green, unsigned char blue) -> Palette""" | |
234 | newobj = _gdi_.new_Palette(*args, **kwargs) | |
235 | self.this = newobj.this | |
236 | self.thisown = 1 | |
237 | del newobj.thisown | |
238 | def __del__(self, destroy=_gdi_.delete_Palette): | |
239 | """__del__(self)""" | |
240 | try: | |
241 | if self.thisown: destroy(self) | |
242 | except: pass | |
243 | ||
244 | def GetPixel(*args, **kwargs): | |
245 | """GetPixel(self, byte red, byte green, byte blue) -> int""" | |
246 | return _gdi_.Palette_GetPixel(*args, **kwargs) | |
247 | ||
248 | def GetRGB(*args, **kwargs): | |
249 | """GetRGB(int pixel) -> (R,G,B)""" | |
250 | return _gdi_.Palette_GetRGB(*args, **kwargs) | |
251 | ||
252 | def Ok(*args, **kwargs): | |
253 | """Ok(self) -> bool""" | |
254 | return _gdi_.Palette_Ok(*args, **kwargs) | |
255 | ||
256 | def __nonzero__(self): return self.Ok() | |
257 | ||
258 | class PalettePtr(Palette): | |
259 | def __init__(self, this): | |
260 | self.this = this | |
261 | if not hasattr(self,"thisown"): self.thisown = 0 | |
262 | self.__class__ = Palette | |
263 | _gdi_.Palette_swigregister(PalettePtr) | |
264 | ||
265 | #--------------------------------------------------------------------------- | |
266 | ||
267 | class Pen(GDIObject): | |
268 | def __repr__(self): | |
269 | return "<%s.%s; proxy of C++ wxPen instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,) | |
270 | def __init__(self, *args, **kwargs): | |
271 | """__init__(self, Colour colour, int width=1, int style=SOLID) -> Pen""" | |
272 | newobj = _gdi_.new_Pen(*args, **kwargs) | |
273 | self.this = newobj.this | |
274 | self.thisown = 1 | |
275 | del newobj.thisown | |
276 | def __del__(self, destroy=_gdi_.delete_Pen): | |
277 | """__del__(self)""" | |
278 | try: | |
279 | if self.thisown: destroy(self) | |
280 | except: pass | |
281 | ||
282 | def GetCap(*args, **kwargs): | |
283 | """GetCap(self) -> int""" | |
284 | return _gdi_.Pen_GetCap(*args, **kwargs) | |
285 | ||
286 | def GetColour(*args, **kwargs): | |
287 | """GetColour(self) -> Colour""" | |
288 | return _gdi_.Pen_GetColour(*args, **kwargs) | |
289 | ||
290 | def GetJoin(*args, **kwargs): | |
291 | """GetJoin(self) -> int""" | |
292 | return _gdi_.Pen_GetJoin(*args, **kwargs) | |
293 | ||
294 | def GetStyle(*args, **kwargs): | |
295 | """GetStyle(self) -> int""" | |
296 | return _gdi_.Pen_GetStyle(*args, **kwargs) | |
297 | ||
298 | def GetWidth(*args, **kwargs): | |
299 | """GetWidth(self) -> int""" | |
300 | return _gdi_.Pen_GetWidth(*args, **kwargs) | |
301 | ||
302 | def Ok(*args, **kwargs): | |
303 | """Ok(self) -> bool""" | |
304 | return _gdi_.Pen_Ok(*args, **kwargs) | |
305 | ||
306 | def SetCap(*args, **kwargs): | |
307 | """SetCap(self, int cap_style)""" | |
308 | return _gdi_.Pen_SetCap(*args, **kwargs) | |
309 | ||
310 | def SetColour(*args, **kwargs): | |
311 | """SetColour(self, Colour colour)""" | |
312 | return _gdi_.Pen_SetColour(*args, **kwargs) | |
313 | ||
314 | def SetJoin(*args, **kwargs): | |
315 | """SetJoin(self, int join_style)""" | |
316 | return _gdi_.Pen_SetJoin(*args, **kwargs) | |
317 | ||
318 | def SetStyle(*args, **kwargs): | |
319 | """SetStyle(self, int style)""" | |
320 | return _gdi_.Pen_SetStyle(*args, **kwargs) | |
321 | ||
322 | def SetWidth(*args, **kwargs): | |
323 | """SetWidth(self, int width)""" | |
324 | return _gdi_.Pen_SetWidth(*args, **kwargs) | |
325 | ||
326 | def SetDashes(*args, **kwargs): | |
327 | """SetDashes(self, int dashes, wxDash dashes_array)""" | |
328 | return _gdi_.Pen_SetDashes(*args, **kwargs) | |
329 | ||
330 | def GetDashes(*args, **kwargs): | |
331 | """GetDashes(self) -> PyObject""" | |
332 | return _gdi_.Pen_GetDashes(*args, **kwargs) | |
333 | ||
c24da6d6 RD |
334 | def _SetDashes(*args, **kwargs): |
335 | """_SetDashes(self, PyObject _self, PyObject pyDashes)""" | |
336 | return _gdi_.Pen__SetDashes(*args, **kwargs) | |
d55e5bfc | 337 | |
c24da6d6 RD |
338 | def SetDashes(self, dashes): |
339 | """ | |
340 | Associate a list of dash lengths with the Pen. | |
341 | """ | |
342 | self._SetDashes(self, dashes) | |
d55e5bfc RD |
343 | |
344 | def GetDashCount(*args, **kwargs): | |
345 | """GetDashCount(self) -> int""" | |
346 | return _gdi_.Pen_GetDashCount(*args, **kwargs) | |
347 | ||
348 | def GetStipple(*args, **kwargs): | |
349 | """GetStipple(self) -> Bitmap""" | |
350 | return _gdi_.Pen_GetStipple(*args, **kwargs) | |
351 | ||
352 | def SetStipple(*args, **kwargs): | |
353 | """SetStipple(self, Bitmap stipple)""" | |
354 | return _gdi_.Pen_SetStipple(*args, **kwargs) | |
355 | ||
c24da6d6 RD |
356 | def __eq__(*args, **kwargs): |
357 | """__eq__(self, Pen other) -> bool""" | |
358 | return _gdi_.Pen___eq__(*args, **kwargs) | |
359 | ||
360 | def __ne__(*args, **kwargs): | |
361 | """__ne__(self, Pen other) -> bool""" | |
362 | return _gdi_.Pen___ne__(*args, **kwargs) | |
363 | ||
d55e5bfc RD |
364 | def __nonzero__(self): return self.Ok() |
365 | ||
366 | class PenPtr(Pen): | |
367 | def __init__(self, this): | |
368 | self.this = this | |
369 | if not hasattr(self,"thisown"): self.thisown = 0 | |
370 | self.__class__ = Pen | |
371 | _gdi_.Pen_swigregister(PenPtr) | |
372 | ||
c24da6d6 | 373 | #--------------------------------------------------------------------------- |
d55e5bfc | 374 | |
c24da6d6 RD |
375 | class Brush(GDIObject): |
376 | """ | |
377 | A brush is a drawing tool for filling in areas. It is used for | |
378 | painting the background of rectangles, ellipses, etc. when drawing on | |
379 | a `wx.DC`. It has a colour and a style. | |
d55e5bfc RD |
380 | """ |
381 | def __repr__(self): | |
382 | return "<%s.%s; proxy of C++ wxBrush instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,) | |
383 | def __init__(self, *args, **kwargs): | |
384 | """ | |
385 | __init__(self, Colour colour, int style=SOLID) -> Brush | |
386 | ||
79fccf9d | 387 | Constructs a brush from a `wx.Colour` object and a style. |
d55e5bfc RD |
388 | """ |
389 | newobj = _gdi_.new_Brush(*args, **kwargs) | |
390 | self.this = newobj.this | |
391 | self.thisown = 1 | |
392 | del newobj.thisown | |
393 | def __del__(self, destroy=_gdi_.delete_Brush): | |
394 | """__del__(self)""" | |
395 | try: | |
396 | if self.thisown: destroy(self) | |
397 | except: pass | |
398 | ||
399 | def SetColour(*args, **kwargs): | |
c24da6d6 RD |
400 | """ |
401 | SetColour(self, Colour col) | |
402 | ||
403 | Set the brush's `wx.Colour`. | |
404 | """ | |
d55e5bfc RD |
405 | return _gdi_.Brush_SetColour(*args, **kwargs) |
406 | ||
407 | def SetStyle(*args, **kwargs): | |
c24da6d6 RD |
408 | """ |
409 | SetStyle(self, int style) | |
410 | ||
411 | Sets the style of the brush. See `__init__` for a listing of styles. | |
412 | """ | |
d55e5bfc RD |
413 | return _gdi_.Brush_SetStyle(*args, **kwargs) |
414 | ||
415 | def SetStipple(*args, **kwargs): | |
c24da6d6 RD |
416 | """ |
417 | SetStipple(self, Bitmap stipple) | |
418 | ||
419 | Sets the stipple `wx.Bitmap`. | |
420 | """ | |
d55e5bfc RD |
421 | return _gdi_.Brush_SetStipple(*args, **kwargs) |
422 | ||
423 | def GetColour(*args, **kwargs): | |
c24da6d6 RD |
424 | """ |
425 | GetColour(self) -> Colour | |
426 | ||
427 | Returns the `wx.Colour` of the brush. | |
428 | """ | |
d55e5bfc RD |
429 | return _gdi_.Brush_GetColour(*args, **kwargs) |
430 | ||
431 | def GetStyle(*args, **kwargs): | |
c24da6d6 RD |
432 | """ |
433 | GetStyle(self) -> int | |
434 | ||
435 | Returns the style of the brush. See `__init__` for a listing of | |
436 | styles. | |
437 | """ | |
d55e5bfc RD |
438 | return _gdi_.Brush_GetStyle(*args, **kwargs) |
439 | ||
440 | def GetStipple(*args, **kwargs): | |
c24da6d6 RD |
441 | """ |
442 | GetStipple(self) -> Bitmap | |
443 | ||
444 | Returns the stiple `wx.Bitmap` of the brush. If the brush does not | |
445 | have a wx.STIPPLE style, then the return value may be non-None but an | |
446 | uninitialised bitmap (`wx.Bitmap.Ok` returns False). | |
447 | """ | |
d55e5bfc RD |
448 | return _gdi_.Brush_GetStipple(*args, **kwargs) |
449 | ||
450 | def Ok(*args, **kwargs): | |
c24da6d6 RD |
451 | """ |
452 | Ok(self) -> bool | |
453 | ||
454 | Returns True if the brush is initialised and valid. | |
455 | """ | |
d55e5bfc RD |
456 | return _gdi_.Brush_Ok(*args, **kwargs) |
457 | ||
458 | def __nonzero__(self): return self.Ok() | |
459 | ||
460 | class BrushPtr(Brush): | |
461 | def __init__(self, this): | |
462 | self.this = this | |
463 | if not hasattr(self,"thisown"): self.thisown = 0 | |
464 | self.__class__ = Brush | |
465 | _gdi_.Brush_swigregister(BrushPtr) | |
466 | ||
467 | class Bitmap(GDIObject): | |
c24da6d6 RD |
468 | """ |
469 | The wx.Bitmap class encapsulates the concept of a platform-dependent | |
470 | bitmap. It can be either monochrome or colour, and either loaded from | |
471 | a file or created dynamically. A bitmap can be selected into a memory | |
472 | device context (instance of `wx.MemoryDC`). This enables the bitmap to | |
473 | be copied to a window or memory device context using `wx.DC.Blit`, or | |
474 | to be used as a drawing surface. | |
c24da6d6 | 475 | """ |
d55e5bfc RD |
476 | def __repr__(self): |
477 | return "<%s.%s; proxy of C++ wxBitmap instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,) | |
478 | def __init__(self, *args, **kwargs): | |
479 | """ | |
480 | __init__(self, String name, int type=BITMAP_TYPE_ANY) -> Bitmap | |
481 | ||
482 | Loads a bitmap from a file. | |
483 | """ | |
484 | newobj = _gdi_.new_Bitmap(*args, **kwargs) | |
485 | self.this = newobj.this | |
486 | self.thisown = 1 | |
487 | del newobj.thisown | |
488 | def __del__(self, destroy=_gdi_.delete_Bitmap): | |
489 | """__del__(self)""" | |
490 | try: | |
491 | if self.thisown: destroy(self) | |
492 | except: pass | |
493 | ||
494 | def SetPalette(*args, **kwargs): | |
495 | """SetPalette(self, Palette palette)""" | |
496 | return _gdi_.Bitmap_SetPalette(*args, **kwargs) | |
497 | ||
498 | def GetHandle(*args, **kwargs): | |
499 | """GetHandle(self) -> long""" | |
500 | return _gdi_.Bitmap_GetHandle(*args, **kwargs) | |
501 | ||
502 | def SetHandle(*args, **kwargs): | |
503 | """SetHandle(self, long handle)""" | |
504 | return _gdi_.Bitmap_SetHandle(*args, **kwargs) | |
505 | ||
506 | def Ok(*args, **kwargs): | |
507 | """Ok(self) -> bool""" | |
508 | return _gdi_.Bitmap_Ok(*args, **kwargs) | |
509 | ||
510 | def GetWidth(*args, **kwargs): | |
511 | """ | |
512 | GetWidth(self) -> int | |
513 | ||
514 | Gets the width of the bitmap in pixels. | |
515 | """ | |
516 | return _gdi_.Bitmap_GetWidth(*args, **kwargs) | |
517 | ||
518 | def GetHeight(*args, **kwargs): | |
519 | """ | |
520 | GetHeight(self) -> int | |
521 | ||
522 | Gets the height of the bitmap in pixels. | |
523 | """ | |
524 | return _gdi_.Bitmap_GetHeight(*args, **kwargs) | |
525 | ||
526 | def GetDepth(*args, **kwargs): | |
527 | """ | |
528 | GetDepth(self) -> int | |
529 | ||
530 | Gets the colour depth of the bitmap. A value of 1 indicates a | |
531 | monochrome bitmap. | |
532 | """ | |
533 | return _gdi_.Bitmap_GetDepth(*args, **kwargs) | |
534 | ||
535 | def GetSize(*args, **kwargs): | |
536 | """ | |
537 | GetSize(self) -> Size | |
538 | ||
539 | Get the size of the bitmap. | |
540 | """ | |
541 | return _gdi_.Bitmap_GetSize(*args, **kwargs) | |
542 | ||
543 | def ConvertToImage(*args, **kwargs): | |
544 | """ | |
545 | ConvertToImage(self) -> Image | |
546 | ||
c24da6d6 RD |
547 | Creates a platform-independent image from a platform-dependent |
548 | bitmap. This preserves mask information so that bitmaps and images can | |
549 | be converted back and forth without loss in that respect. | |
d55e5bfc RD |
550 | """ |
551 | return _gdi_.Bitmap_ConvertToImage(*args, **kwargs) | |
552 | ||
553 | def GetMask(*args, **kwargs): | |
554 | """ | |
555 | GetMask(self) -> Mask | |
556 | ||
c24da6d6 RD |
557 | Gets the associated mask (if any) which may have been loaded from a |
558 | file or explpicitly set for the bitmap. | |
559 | ||
560 | :see: `SetMask`, `wx.Mask` | |
561 | ||
d55e5bfc RD |
562 | """ |
563 | return _gdi_.Bitmap_GetMask(*args, **kwargs) | |
564 | ||
565 | def SetMask(*args, **kwargs): | |
566 | """ | |
567 | SetMask(self, Mask mask) | |
568 | ||
569 | Sets the mask for this bitmap. | |
c24da6d6 RD |
570 | |
571 | :see: `GetMask`, `wx.Mask` | |
572 | ||
d55e5bfc RD |
573 | """ |
574 | return _gdi_.Bitmap_SetMask(*args, **kwargs) | |
575 | ||
576 | def SetMaskColour(*args, **kwargs): | |
577 | """ | |
578 | SetMaskColour(self, Colour colour) | |
579 | ||
580 | Create a Mask based on a specified colour in the Bitmap. | |
581 | """ | |
582 | return _gdi_.Bitmap_SetMaskColour(*args, **kwargs) | |
583 | ||
584 | def GetSubBitmap(*args, **kwargs): | |
585 | """ | |
586 | GetSubBitmap(self, Rect rect) -> Bitmap | |
587 | ||
c24da6d6 RD |
588 | Returns a sub-bitmap of the current one as long as the rect belongs |
589 | entirely to the bitmap. This function preserves bit depth and mask | |
590 | information. | |
d55e5bfc RD |
591 | """ |
592 | return _gdi_.Bitmap_GetSubBitmap(*args, **kwargs) | |
593 | ||
594 | def SaveFile(*args, **kwargs): | |
595 | """ | |
c24da6d6 | 596 | SaveFile(self, String name, int type, Palette palette=None) -> bool |
d55e5bfc | 597 | |
c24da6d6 RD |
598 | Saves a bitmap in the named file. See `__init__` for a description of |
599 | the ``type`` parameter. | |
d55e5bfc RD |
600 | """ |
601 | return _gdi_.Bitmap_SaveFile(*args, **kwargs) | |
602 | ||
603 | def LoadFile(*args, **kwargs): | |
604 | """ | |
605 | LoadFile(self, String name, int type) -> bool | |
606 | ||
c24da6d6 RD |
607 | Loads a bitmap from a file. See `__init__` for a description of the |
608 | ``type`` parameter. | |
d55e5bfc RD |
609 | """ |
610 | return _gdi_.Bitmap_LoadFile(*args, **kwargs) | |
611 | ||
612 | def CopyFromIcon(*args, **kwargs): | |
613 | """CopyFromIcon(self, Icon icon) -> bool""" | |
614 | return _gdi_.Bitmap_CopyFromIcon(*args, **kwargs) | |
615 | ||
616 | def SetHeight(*args, **kwargs): | |
617 | """ | |
618 | SetHeight(self, int height) | |
619 | ||
c24da6d6 | 620 | Set the height property (does not affect the existing bitmap data). |
d55e5bfc RD |
621 | """ |
622 | return _gdi_.Bitmap_SetHeight(*args, **kwargs) | |
623 | ||
624 | def SetWidth(*args, **kwargs): | |
625 | """ | |
626 | SetWidth(self, int width) | |
627 | ||
c24da6d6 | 628 | Set the width property (does not affect the existing bitmap data). |
d55e5bfc RD |
629 | """ |
630 | return _gdi_.Bitmap_SetWidth(*args, **kwargs) | |
631 | ||
632 | def SetDepth(*args, **kwargs): | |
633 | """ | |
634 | SetDepth(self, int depth) | |
635 | ||
c24da6d6 | 636 | Set the depth property (does not affect the existing bitmap data). |
d55e5bfc RD |
637 | """ |
638 | return _gdi_.Bitmap_SetDepth(*args, **kwargs) | |
639 | ||
640 | def SetSize(*args, **kwargs): | |
641 | """ | |
642 | SetSize(self, Size size) | |
643 | ||
c24da6d6 | 644 | Set the bitmap size (does not affect the existing bitmap data). |
d55e5bfc RD |
645 | """ |
646 | return _gdi_.Bitmap_SetSize(*args, **kwargs) | |
647 | ||
648 | def CopyFromCursor(*args, **kwargs): | |
649 | """CopyFromCursor(self, Cursor cursor) -> bool""" | |
650 | return _gdi_.Bitmap_CopyFromCursor(*args, **kwargs) | |
651 | ||
652 | def GetQuality(*args, **kwargs): | |
653 | """GetQuality(self) -> int""" | |
654 | return _gdi_.Bitmap_GetQuality(*args, **kwargs) | |
655 | ||
656 | def SetQuality(*args, **kwargs): | |
657 | """SetQuality(self, int q)""" | |
658 | return _gdi_.Bitmap_SetQuality(*args, **kwargs) | |
659 | ||
660 | def __nonzero__(self): return self.Ok() | |
661 | def __eq__(*args, **kwargs): | |
662 | """__eq__(self, Bitmap other) -> bool""" | |
663 | return _gdi_.Bitmap___eq__(*args, **kwargs) | |
664 | ||
665 | def __ne__(*args, **kwargs): | |
666 | """__ne__(self, Bitmap other) -> bool""" | |
667 | return _gdi_.Bitmap___ne__(*args, **kwargs) | |
668 | ||
669 | ||
670 | class BitmapPtr(Bitmap): | |
671 | def __init__(self, this): | |
672 | self.this = this | |
673 | if not hasattr(self,"thisown"): self.thisown = 0 | |
674 | self.__class__ = Bitmap | |
675 | _gdi_.Bitmap_swigregister(BitmapPtr) | |
676 | ||
c24da6d6 RD |
677 | def EmptyBitmap(*args, **kwargs): |
678 | """ | |
679 | EmptyBitmap(int width, int height, int depth=-1) -> Bitmap | |
680 | ||
681 | Creates a new bitmap of the given size. A depth of -1 indicates the | |
682 | depth of the current screen or visual. Some platforms only support 1 | |
683 | for monochrome and -1 for the current colour setting. | |
684 | """ | |
685 | val = _gdi_.new_EmptyBitmap(*args, **kwargs) | |
686 | val.thisown = 1 | |
687 | return val | |
688 | ||
d55e5bfc RD |
689 | def BitmapFromIcon(*args, **kwargs): |
690 | """ | |
691 | BitmapFromIcon(Icon icon) -> Bitmap | |
692 | ||
c24da6d6 | 693 | Create a new bitmap from a `wx.Icon` object. |
d55e5bfc RD |
694 | """ |
695 | val = _gdi_.new_BitmapFromIcon(*args, **kwargs) | |
696 | val.thisown = 1 | |
697 | return val | |
698 | ||
699 | def BitmapFromImage(*args, **kwargs): | |
700 | """ | |
701 | BitmapFromImage(Image image, int depth=-1) -> Bitmap | |
702 | ||
c24da6d6 RD |
703 | Creates bitmap object from a `wx.Image`. This has to be done to |
704 | actually display a `wx.Image` as you cannot draw an image directly on | |
705 | a window. The resulting bitmap will use the provided colour depth (or | |
706 | that of the current screen colour depth if depth is -1) which entails | |
707 | that a colour reduction may have to take place. | |
d55e5bfc RD |
708 | """ |
709 | val = _gdi_.new_BitmapFromImage(*args, **kwargs) | |
710 | val.thisown = 1 | |
711 | return val | |
712 | ||
713 | def BitmapFromXPMData(*args, **kwargs): | |
714 | """ | |
715 | BitmapFromXPMData(PyObject listOfStrings) -> Bitmap | |
716 | ||
717 | Construct a Bitmap from a list of strings formatted as XPM data. | |
718 | """ | |
719 | val = _gdi_.new_BitmapFromXPMData(*args, **kwargs) | |
720 | val.thisown = 1 | |
721 | return val | |
722 | ||
723 | def BitmapFromBits(*args, **kwargs): | |
724 | """ | |
725 | BitmapFromBits(PyObject bits, int width, int height, int depth=1) -> Bitmap | |
726 | ||
c24da6d6 RD |
727 | Creates a bitmap from an array of bits. You should only use this |
728 | function for monochrome bitmaps (depth 1) in portable programs: in | |
729 | this case the bits parameter should contain an XBM image. For other | |
730 | bit depths, the behaviour is platform dependent. | |
d55e5bfc RD |
731 | """ |
732 | val = _gdi_.new_BitmapFromBits(*args, **kwargs) | |
733 | val.thisown = 1 | |
734 | return val | |
735 | ||
c24da6d6 | 736 | class Mask(_core.Object): |
d55e5bfc | 737 | """ |
c24da6d6 RD |
738 | This class encapsulates a monochrome mask bitmap, where the masked |
739 | area is black and the unmasked area is white. When associated with a | |
740 | bitmap and drawn in a device context, the unmasked area of the bitmap | |
741 | will be drawn, and the masked area will not be drawn. | |
d55e5bfc | 742 | |
c24da6d6 RD |
743 | A mask may be associated with a `wx.Bitmap`. It is used in |
744 | `wx.DC.DrawBitmap` or `wx.DC.Blit` when the source device context is a | |
745 | `wx.MemoryDC` with a `wx.Bitmap` selected into it that contains a | |
746 | mask. | |
d55e5bfc RD |
747 | """ |
748 | def __repr__(self): | |
749 | return "<%s.%s; proxy of C++ wxMask instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,) | |
750 | def __init__(self, *args, **kwargs): | |
751 | """ | |
752 | __init__(self, Bitmap bitmap, Colour colour=NullColour) -> Mask | |
753 | ||
c24da6d6 RD |
754 | Constructs a mask from a `wx.Bitmap` and a `wx.Colour` in that bitmap |
755 | that indicates the transparent portions of the mask. In other words, | |
756 | the pixels in ``bitmap`` that match ``colour`` will be the transparent | |
757 | portions of the mask. If no ``colour`` or an invalid ``colour`` is | |
758 | passed then BLACK is used. | |
759 | ||
760 | :see: `wx.Bitmap`, `wx.Colour` | |
d55e5bfc RD |
761 | """ |
762 | newobj = _gdi_.new_Mask(*args, **kwargs) | |
763 | self.this = newobj.this | |
764 | self.thisown = 1 | |
765 | del newobj.thisown | |
766 | ||
767 | class MaskPtr(Mask): | |
768 | def __init__(self, this): | |
769 | self.this = this | |
770 | if not hasattr(self,"thisown"): self.thisown = 0 | |
771 | self.__class__ = Mask | |
772 | _gdi_.Mask_swigregister(MaskPtr) | |
773 | ||
c24da6d6 | 774 | MaskColour = wx._deprecated(Mask, "wx.MaskColour is deprecated, use `wx.Mask` instead.") |
d55e5bfc RD |
775 | class Icon(GDIObject): |
776 | def __repr__(self): | |
777 | return "<%s.%s; proxy of C++ wxIcon instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,) | |
778 | def __init__(self, *args, **kwargs): | |
779 | """__init__(self, String name, int type, int desiredWidth=-1, int desiredHeight=-1) -> Icon""" | |
780 | newobj = _gdi_.new_Icon(*args, **kwargs) | |
781 | self.this = newobj.this | |
782 | self.thisown = 1 | |
783 | del newobj.thisown | |
784 | def __del__(self, destroy=_gdi_.delete_Icon): | |
785 | """__del__(self)""" | |
786 | try: | |
787 | if self.thisown: destroy(self) | |
788 | except: pass | |
789 | ||
790 | def LoadFile(*args, **kwargs): | |
791 | """LoadFile(self, String name, int type) -> bool""" | |
792 | return _gdi_.Icon_LoadFile(*args, **kwargs) | |
793 | ||
794 | def GetHandle(*args, **kwargs): | |
795 | """GetHandle(self) -> long""" | |
796 | return _gdi_.Icon_GetHandle(*args, **kwargs) | |
797 | ||
798 | def SetHandle(*args, **kwargs): | |
799 | """SetHandle(self, long handle)""" | |
800 | return _gdi_.Icon_SetHandle(*args, **kwargs) | |
801 | ||
802 | def Ok(*args, **kwargs): | |
803 | """Ok(self) -> bool""" | |
804 | return _gdi_.Icon_Ok(*args, **kwargs) | |
805 | ||
806 | def GetWidth(*args, **kwargs): | |
807 | """GetWidth(self) -> int""" | |
808 | return _gdi_.Icon_GetWidth(*args, **kwargs) | |
809 | ||
810 | def GetHeight(*args, **kwargs): | |
811 | """GetHeight(self) -> int""" | |
812 | return _gdi_.Icon_GetHeight(*args, **kwargs) | |
813 | ||
814 | def GetDepth(*args, **kwargs): | |
815 | """GetDepth(self) -> int""" | |
816 | return _gdi_.Icon_GetDepth(*args, **kwargs) | |
817 | ||
818 | def SetWidth(*args, **kwargs): | |
819 | """SetWidth(self, int w)""" | |
820 | return _gdi_.Icon_SetWidth(*args, **kwargs) | |
821 | ||
822 | def SetHeight(*args, **kwargs): | |
823 | """SetHeight(self, int h)""" | |
824 | return _gdi_.Icon_SetHeight(*args, **kwargs) | |
825 | ||
826 | def SetDepth(*args, **kwargs): | |
827 | """SetDepth(self, int d)""" | |
828 | return _gdi_.Icon_SetDepth(*args, **kwargs) | |
829 | ||
830 | def SetSize(*args, **kwargs): | |
831 | """SetSize(self, Size size)""" | |
832 | return _gdi_.Icon_SetSize(*args, **kwargs) | |
833 | ||
834 | def CopyFromBitmap(*args, **kwargs): | |
835 | """CopyFromBitmap(self, Bitmap bmp)""" | |
836 | return _gdi_.Icon_CopyFromBitmap(*args, **kwargs) | |
837 | ||
838 | def __nonzero__(self): return self.Ok() | |
839 | ||
840 | class IconPtr(Icon): | |
841 | def __init__(self, this): | |
842 | self.this = this | |
843 | if not hasattr(self,"thisown"): self.thisown = 0 | |
844 | self.__class__ = Icon | |
845 | _gdi_.Icon_swigregister(IconPtr) | |
846 | ||
847 | def EmptyIcon(*args, **kwargs): | |
848 | """EmptyIcon() -> Icon""" | |
849 | val = _gdi_.new_EmptyIcon(*args, **kwargs) | |
850 | val.thisown = 1 | |
851 | return val | |
852 | ||
853 | def IconFromLocation(*args, **kwargs): | |
854 | """IconFromLocation(IconLocation loc) -> Icon""" | |
855 | val = _gdi_.new_IconFromLocation(*args, **kwargs) | |
856 | val.thisown = 1 | |
857 | return val | |
858 | ||
859 | def IconFromBitmap(*args, **kwargs): | |
860 | """IconFromBitmap(Bitmap bmp) -> Icon""" | |
861 | val = _gdi_.new_IconFromBitmap(*args, **kwargs) | |
862 | val.thisown = 1 | |
863 | return val | |
864 | ||
865 | def IconFromXPMData(*args, **kwargs): | |
866 | """IconFromXPMData(PyObject listOfStrings) -> Icon""" | |
867 | val = _gdi_.new_IconFromXPMData(*args, **kwargs) | |
868 | val.thisown = 1 | |
869 | return val | |
870 | ||
871 | class IconLocation(object): | |
872 | def __repr__(self): | |
873 | return "<%s.%s; proxy of C++ wxIconLocation instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,) | |
874 | def __init__(self, *args, **kwargs): | |
875 | """__init__(self, String filename=&wxPyEmptyString, int num=0) -> IconLocation""" | |
876 | newobj = _gdi_.new_IconLocation(*args, **kwargs) | |
877 | self.this = newobj.this | |
878 | self.thisown = 1 | |
879 | del newobj.thisown | |
880 | def __del__(self, destroy=_gdi_.delete_IconLocation): | |
881 | """__del__(self)""" | |
882 | try: | |
883 | if self.thisown: destroy(self) | |
884 | except: pass | |
885 | ||
886 | def IsOk(*args, **kwargs): | |
887 | """IsOk(self) -> bool""" | |
888 | return _gdi_.IconLocation_IsOk(*args, **kwargs) | |
889 | ||
890 | def __nonzero__(self): return self.Ok() | |
891 | def SetFileName(*args, **kwargs): | |
892 | """SetFileName(self, String filename)""" | |
893 | return _gdi_.IconLocation_SetFileName(*args, **kwargs) | |
894 | ||
895 | def GetFileName(*args, **kwargs): | |
896 | """GetFileName(self) -> String""" | |
897 | return _gdi_.IconLocation_GetFileName(*args, **kwargs) | |
898 | ||
899 | def SetIndex(*args, **kwargs): | |
900 | """SetIndex(self, int num)""" | |
901 | return _gdi_.IconLocation_SetIndex(*args, **kwargs) | |
902 | ||
903 | def GetIndex(*args, **kwargs): | |
904 | """GetIndex(self) -> int""" | |
905 | return _gdi_.IconLocation_GetIndex(*args, **kwargs) | |
906 | ||
907 | ||
908 | class IconLocationPtr(IconLocation): | |
909 | def __init__(self, this): | |
910 | self.this = this | |
911 | if not hasattr(self,"thisown"): self.thisown = 0 | |
912 | self.__class__ = IconLocation | |
913 | _gdi_.IconLocation_swigregister(IconLocationPtr) | |
914 | ||
915 | class IconBundle(object): | |
916 | def __repr__(self): | |
917 | return "<%s.%s; proxy of C++ wxIconBundle instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,) | |
918 | def __init__(self, *args, **kwargs): | |
919 | """__init__(self) -> IconBundle""" | |
920 | newobj = _gdi_.new_IconBundle(*args, **kwargs) | |
921 | self.this = newobj.this | |
922 | self.thisown = 1 | |
923 | del newobj.thisown | |
924 | def __del__(self, destroy=_gdi_.delete_IconBundle): | |
925 | """__del__(self)""" | |
926 | try: | |
927 | if self.thisown: destroy(self) | |
928 | except: pass | |
929 | ||
930 | def AddIcon(*args, **kwargs): | |
931 | """AddIcon(self, Icon icon)""" | |
932 | return _gdi_.IconBundle_AddIcon(*args, **kwargs) | |
933 | ||
934 | def AddIconFromFile(*args, **kwargs): | |
935 | """AddIconFromFile(self, String file, long type)""" | |
936 | return _gdi_.IconBundle_AddIconFromFile(*args, **kwargs) | |
937 | ||
938 | def GetIcon(*args, **kwargs): | |
939 | """GetIcon(self, Size size) -> Icon""" | |
940 | return _gdi_.IconBundle_GetIcon(*args, **kwargs) | |
941 | ||
942 | ||
943 | class IconBundlePtr(IconBundle): | |
944 | def __init__(self, this): | |
945 | self.this = this | |
946 | if not hasattr(self,"thisown"): self.thisown = 0 | |
947 | self.__class__ = IconBundle | |
948 | _gdi_.IconBundle_swigregister(IconBundlePtr) | |
949 | ||
950 | def IconBundleFromFile(*args, **kwargs): | |
951 | """IconBundleFromFile(String file, long type) -> IconBundle""" | |
952 | val = _gdi_.new_IconBundleFromFile(*args, **kwargs) | |
953 | val.thisown = 1 | |
954 | return val | |
955 | ||
956 | def IconBundleFromIcon(*args, **kwargs): | |
957 | """IconBundleFromIcon(Icon icon) -> IconBundle""" | |
958 | val = _gdi_.new_IconBundleFromIcon(*args, **kwargs) | |
959 | val.thisown = 1 | |
960 | return val | |
961 | ||
962 | class Cursor(GDIObject): | |
963 | """ | |
79fccf9d RD |
964 | A cursor is a small bitmap usually used for denoting where the mouse |
965 | pointer is, with a picture that might indicate the interpretation of a | |
966 | mouse click. | |
d55e5bfc RD |
967 | |
968 | A single cursor object may be used in many windows (any subwindow | |
79fccf9d RD |
969 | type). The wxWindows convention is to set the cursor for a window, as |
970 | in X, rather than to set it globally as in MS Windows, although a | |
971 | global `wx.SetCursor` function is also available for use on MS Windows. | |
972 | ||
d55e5bfc RD |
973 | """ |
974 | def __repr__(self): | |
975 | return "<%s.%s; proxy of C++ wxCursor instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,) | |
976 | def __init__(self, *args, **kwargs): | |
977 | """ | |
978 | __init__(self, String cursorName, long type, int hotSpotX=0, int hotSpotY=0) -> Cursor | |
979 | ||
980 | Construct a Cursor from a file. Specify the type of file using | |
79fccf9d RD |
981 | wx.BITAMP_TYPE* constants, and specify the hotspot if not using a cur |
982 | file. | |
d55e5bfc | 983 | |
79fccf9d RD |
984 | This constructor is not available on wxGTK, use ``wx.StockCursor``, |
985 | ``wx.CursorFromImage``, or ``wx.CursorFromBits`` instead. | |
d55e5bfc RD |
986 | """ |
987 | newobj = _gdi_.new_Cursor(*args, **kwargs) | |
988 | self.this = newobj.this | |
989 | self.thisown = 1 | |
990 | del newobj.thisown | |
991 | def __del__(self, destroy=_gdi_.delete_Cursor): | |
992 | """__del__(self)""" | |
993 | try: | |
994 | if self.thisown: destroy(self) | |
995 | except: pass | |
996 | ||
997 | def GetHandle(*args, **kwargs): | |
998 | """ | |
999 | GetHandle(self) -> long | |
1000 | ||
1001 | Get the MS Windows handle for the cursor | |
1002 | """ | |
1003 | return _gdi_.Cursor_GetHandle(*args, **kwargs) | |
1004 | ||
1005 | def SetHandle(*args, **kwargs): | |
1006 | """ | |
1007 | SetHandle(self, long handle) | |
1008 | ||
1009 | Set the MS Windows handle to use for the cursor | |
1010 | """ | |
1011 | return _gdi_.Cursor_SetHandle(*args, **kwargs) | |
1012 | ||
1013 | def Ok(*args, **kwargs): | |
1014 | """Ok(self) -> bool""" | |
1015 | return _gdi_.Cursor_Ok(*args, **kwargs) | |
1016 | ||
1017 | def __nonzero__(self): return self.Ok() | |
1018 | def GetWidth(*args, **kwargs): | |
1019 | """GetWidth(self) -> int""" | |
1020 | return _gdi_.Cursor_GetWidth(*args, **kwargs) | |
1021 | ||
1022 | def GetHeight(*args, **kwargs): | |
1023 | """GetHeight(self) -> int""" | |
1024 | return _gdi_.Cursor_GetHeight(*args, **kwargs) | |
1025 | ||
1026 | def GetDepth(*args, **kwargs): | |
1027 | """GetDepth(self) -> int""" | |
1028 | return _gdi_.Cursor_GetDepth(*args, **kwargs) | |
1029 | ||
1030 | def SetWidth(*args, **kwargs): | |
1031 | """SetWidth(self, int w)""" | |
1032 | return _gdi_.Cursor_SetWidth(*args, **kwargs) | |
1033 | ||
1034 | def SetHeight(*args, **kwargs): | |
1035 | """SetHeight(self, int h)""" | |
1036 | return _gdi_.Cursor_SetHeight(*args, **kwargs) | |
1037 | ||
1038 | def SetDepth(*args, **kwargs): | |
1039 | """SetDepth(self, int d)""" | |
1040 | return _gdi_.Cursor_SetDepth(*args, **kwargs) | |
1041 | ||
1042 | def SetSize(*args, **kwargs): | |
1043 | """SetSize(self, Size size)""" | |
1044 | return _gdi_.Cursor_SetSize(*args, **kwargs) | |
1045 | ||
1046 | ||
1047 | class CursorPtr(Cursor): | |
1048 | def __init__(self, this): | |
1049 | self.this = this | |
1050 | if not hasattr(self,"thisown"): self.thisown = 0 | |
1051 | self.__class__ = Cursor | |
1052 | _gdi_.Cursor_swigregister(CursorPtr) | |
1053 | ||
1054 | def StockCursor(*args, **kwargs): | |
1055 | """ | |
1056 | StockCursor(int id) -> Cursor | |
1057 | ||
79fccf9d RD |
1058 | Create a cursor using one of the stock cursors. Note that not all |
1059 | cursors are available on all platforms. | |
d55e5bfc RD |
1060 | """ |
1061 | val = _gdi_.new_StockCursor(*args, **kwargs) | |
1062 | val.thisown = 1 | |
1063 | return val | |
1064 | ||
1065 | def CursorFromImage(*args, **kwargs): | |
1066 | """ | |
1067 | CursorFromImage(Image image) -> Cursor | |
1068 | ||
79fccf9d RD |
1069 | Constructs a cursor from a wxImage. The cursor is monochrome, colors |
1070 | with the RGB elements all greater than 127 will be foreground, colors | |
1071 | less than this background. The mask (if any) will be used as | |
1072 | transparent. | |
d55e5bfc RD |
1073 | """ |
1074 | val = _gdi_.new_CursorFromImage(*args, **kwargs) | |
1075 | val.thisown = 1 | |
1076 | return val | |
1077 | ||
1078 | #--------------------------------------------------------------------------- | |
1079 | ||
1080 | OutRegion = _gdi_.OutRegion | |
1081 | PartRegion = _gdi_.PartRegion | |
1082 | InRegion = _gdi_.InRegion | |
1083 | class Region(GDIObject): | |
1084 | def __repr__(self): | |
1085 | return "<%s.%s; proxy of C++ wxRegion instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,) | |
1086 | def __init__(self, *args, **kwargs): | |
1087 | """__init__(self, int x=0, int y=0, int width=0, int height=0) -> Region""" | |
1088 | newobj = _gdi_.new_Region(*args, **kwargs) | |
1089 | self.this = newobj.this | |
1090 | self.thisown = 1 | |
1091 | del newobj.thisown | |
1092 | def __del__(self, destroy=_gdi_.delete_Region): | |
1093 | """__del__(self)""" | |
1094 | try: | |
1095 | if self.thisown: destroy(self) | |
1096 | except: pass | |
1097 | ||
1098 | def Clear(*args, **kwargs): | |
1099 | """Clear(self)""" | |
1100 | return _gdi_.Region_Clear(*args, **kwargs) | |
1101 | ||
1102 | def Offset(*args, **kwargs): | |
1103 | """Offset(self, int x, int y) -> bool""" | |
1104 | return _gdi_.Region_Offset(*args, **kwargs) | |
1105 | ||
1106 | def Contains(*args, **kwargs): | |
1107 | """Contains(self, int x, int y) -> int""" | |
1108 | return _gdi_.Region_Contains(*args, **kwargs) | |
1109 | ||
1110 | def ContainsPoint(*args, **kwargs): | |
1111 | """ContainsPoint(self, Point pt) -> int""" | |
1112 | return _gdi_.Region_ContainsPoint(*args, **kwargs) | |
1113 | ||
1114 | def ContainsRect(*args, **kwargs): | |
1115 | """ContainsRect(self, Rect rect) -> int""" | |
1116 | return _gdi_.Region_ContainsRect(*args, **kwargs) | |
1117 | ||
1118 | def ContainsRectDim(*args, **kwargs): | |
1119 | """ContainsRectDim(self, int x, int y, int w, int h) -> int""" | |
1120 | return _gdi_.Region_ContainsRectDim(*args, **kwargs) | |
1121 | ||
1122 | def GetBox(*args, **kwargs): | |
1123 | """GetBox(self) -> Rect""" | |
1124 | return _gdi_.Region_GetBox(*args, **kwargs) | |
1125 | ||
1126 | def Intersect(*args, **kwargs): | |
1127 | """Intersect(self, int x, int y, int width, int height) -> bool""" | |
1128 | return _gdi_.Region_Intersect(*args, **kwargs) | |
1129 | ||
1130 | def IntersectRect(*args, **kwargs): | |
1131 | """IntersectRect(self, Rect rect) -> bool""" | |
1132 | return _gdi_.Region_IntersectRect(*args, **kwargs) | |
1133 | ||
1134 | def IntersectRegion(*args, **kwargs): | |
1135 | """IntersectRegion(self, Region region) -> bool""" | |
1136 | return _gdi_.Region_IntersectRegion(*args, **kwargs) | |
1137 | ||
1138 | def IsEmpty(*args, **kwargs): | |
1139 | """IsEmpty(self) -> bool""" | |
1140 | return _gdi_.Region_IsEmpty(*args, **kwargs) | |
1141 | ||
1142 | def Union(*args, **kwargs): | |
1143 | """Union(self, int x, int y, int width, int height) -> bool""" | |
1144 | return _gdi_.Region_Union(*args, **kwargs) | |
1145 | ||
1146 | def UnionRect(*args, **kwargs): | |
1147 | """UnionRect(self, Rect rect) -> bool""" | |
1148 | return _gdi_.Region_UnionRect(*args, **kwargs) | |
1149 | ||
1150 | def UnionRegion(*args, **kwargs): | |
1151 | """UnionRegion(self, Region region) -> bool""" | |
1152 | return _gdi_.Region_UnionRegion(*args, **kwargs) | |
1153 | ||
1154 | def Subtract(*args, **kwargs): | |
1155 | """Subtract(self, int x, int y, int width, int height) -> bool""" | |
1156 | return _gdi_.Region_Subtract(*args, **kwargs) | |
1157 | ||
1158 | def SubtractRect(*args, **kwargs): | |
1159 | """SubtractRect(self, Rect rect) -> bool""" | |
1160 | return _gdi_.Region_SubtractRect(*args, **kwargs) | |
1161 | ||
1162 | def SubtractRegion(*args, **kwargs): | |
1163 | """SubtractRegion(self, Region region) -> bool""" | |
1164 | return _gdi_.Region_SubtractRegion(*args, **kwargs) | |
1165 | ||
1166 | def Xor(*args, **kwargs): | |
1167 | """Xor(self, int x, int y, int width, int height) -> bool""" | |
1168 | return _gdi_.Region_Xor(*args, **kwargs) | |
1169 | ||
1170 | def XorRect(*args, **kwargs): | |
1171 | """XorRect(self, Rect rect) -> bool""" | |
1172 | return _gdi_.Region_XorRect(*args, **kwargs) | |
1173 | ||
1174 | def XorRegion(*args, **kwargs): | |
1175 | """XorRegion(self, Region region) -> bool""" | |
1176 | return _gdi_.Region_XorRegion(*args, **kwargs) | |
1177 | ||
1178 | def ConvertToBitmap(*args, **kwargs): | |
1179 | """ConvertToBitmap(self) -> Bitmap""" | |
1180 | return _gdi_.Region_ConvertToBitmap(*args, **kwargs) | |
1181 | ||
1182 | def UnionBitmap(*args, **kwargs): | |
1183 | """UnionBitmap(self, Bitmap bmp, Colour transColour=NullColour, int tolerance=0) -> bool""" | |
1184 | return _gdi_.Region_UnionBitmap(*args, **kwargs) | |
1185 | ||
1186 | ||
1187 | class RegionPtr(Region): | |
1188 | def __init__(self, this): | |
1189 | self.this = this | |
1190 | if not hasattr(self,"thisown"): self.thisown = 0 | |
1191 | self.__class__ = Region | |
1192 | _gdi_.Region_swigregister(RegionPtr) | |
1193 | ||
1194 | def RegionFromBitmap(*args, **kwargs): | |
1195 | """RegionFromBitmap(Bitmap bmp, Colour transColour=NullColour, int tolerance=0) -> Region""" | |
1196 | val = _gdi_.new_RegionFromBitmap(*args, **kwargs) | |
1197 | val.thisown = 1 | |
1198 | return val | |
1199 | ||
1200 | def RegionFromPoints(*args, **kwargs): | |
1201 | """RegionFromPoints(int points, Point points_array, int fillStyle=WINDING_RULE) -> Region""" | |
1202 | val = _gdi_.new_RegionFromPoints(*args, **kwargs) | |
1203 | val.thisown = 1 | |
1204 | return val | |
1205 | ||
1206 | class RegionIterator(_core.Object): | |
1207 | def __repr__(self): | |
1208 | return "<%s.%s; proxy of C++ wxRegionIterator instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,) | |
1209 | def __init__(self, *args, **kwargs): | |
1210 | """__init__(self, Region region) -> RegionIterator""" | |
1211 | newobj = _gdi_.new_RegionIterator(*args, **kwargs) | |
1212 | self.this = newobj.this | |
1213 | self.thisown = 1 | |
1214 | del newobj.thisown | |
1215 | def __del__(self, destroy=_gdi_.delete_RegionIterator): | |
1216 | """__del__(self)""" | |
1217 | try: | |
1218 | if self.thisown: destroy(self) | |
1219 | except: pass | |
1220 | ||
1221 | def GetX(*args, **kwargs): | |
1222 | """GetX(self) -> int""" | |
1223 | return _gdi_.RegionIterator_GetX(*args, **kwargs) | |
1224 | ||
1225 | def GetY(*args, **kwargs): | |
1226 | """GetY(self) -> int""" | |
1227 | return _gdi_.RegionIterator_GetY(*args, **kwargs) | |
1228 | ||
1229 | def GetW(*args, **kwargs): | |
1230 | """GetW(self) -> int""" | |
1231 | return _gdi_.RegionIterator_GetW(*args, **kwargs) | |
1232 | ||
1233 | def GetWidth(*args, **kwargs): | |
1234 | """GetWidth(self) -> int""" | |
1235 | return _gdi_.RegionIterator_GetWidth(*args, **kwargs) | |
1236 | ||
1237 | def GetH(*args, **kwargs): | |
1238 | """GetH(self) -> int""" | |
1239 | return _gdi_.RegionIterator_GetH(*args, **kwargs) | |
1240 | ||
1241 | def GetHeight(*args, **kwargs): | |
1242 | """GetHeight(self) -> int""" | |
1243 | return _gdi_.RegionIterator_GetHeight(*args, **kwargs) | |
1244 | ||
1245 | def GetRect(*args, **kwargs): | |
1246 | """GetRect(self) -> Rect""" | |
1247 | return _gdi_.RegionIterator_GetRect(*args, **kwargs) | |
1248 | ||
1249 | def HaveRects(*args, **kwargs): | |
1250 | """HaveRects(self) -> bool""" | |
1251 | return _gdi_.RegionIterator_HaveRects(*args, **kwargs) | |
1252 | ||
1253 | def Reset(*args, **kwargs): | |
1254 | """Reset(self)""" | |
1255 | return _gdi_.RegionIterator_Reset(*args, **kwargs) | |
1256 | ||
1257 | def Next(*args, **kwargs): | |
1258 | """Next(self)""" | |
1259 | return _gdi_.RegionIterator_Next(*args, **kwargs) | |
1260 | ||
1261 | def __nonzero__(*args, **kwargs): | |
1262 | """__nonzero__(self) -> bool""" | |
1263 | return _gdi_.RegionIterator___nonzero__(*args, **kwargs) | |
1264 | ||
1265 | ||
1266 | class RegionIteratorPtr(RegionIterator): | |
1267 | def __init__(self, this): | |
1268 | self.this = this | |
1269 | if not hasattr(self,"thisown"): self.thisown = 0 | |
1270 | self.__class__ = RegionIterator | |
1271 | _gdi_.RegionIterator_swigregister(RegionIteratorPtr) | |
1272 | ||
1273 | #--------------------------------------------------------------------------- | |
1274 | ||
1275 | FONTFAMILY_DEFAULT = _gdi_.FONTFAMILY_DEFAULT | |
1276 | FONTFAMILY_DECORATIVE = _gdi_.FONTFAMILY_DECORATIVE | |
1277 | FONTFAMILY_ROMAN = _gdi_.FONTFAMILY_ROMAN | |
1278 | FONTFAMILY_SCRIPT = _gdi_.FONTFAMILY_SCRIPT | |
1279 | FONTFAMILY_SWISS = _gdi_.FONTFAMILY_SWISS | |
1280 | FONTFAMILY_MODERN = _gdi_.FONTFAMILY_MODERN | |
1281 | FONTFAMILY_TELETYPE = _gdi_.FONTFAMILY_TELETYPE | |
1282 | FONTFAMILY_MAX = _gdi_.FONTFAMILY_MAX | |
1283 | FONTFAMILY_UNKNOWN = _gdi_.FONTFAMILY_UNKNOWN | |
1284 | FONTSTYLE_NORMAL = _gdi_.FONTSTYLE_NORMAL | |
1285 | FONTSTYLE_ITALIC = _gdi_.FONTSTYLE_ITALIC | |
1286 | FONTSTYLE_SLANT = _gdi_.FONTSTYLE_SLANT | |
1287 | FONTSTYLE_MAX = _gdi_.FONTSTYLE_MAX | |
1288 | FONTWEIGHT_NORMAL = _gdi_.FONTWEIGHT_NORMAL | |
1289 | FONTWEIGHT_LIGHT = _gdi_.FONTWEIGHT_LIGHT | |
1290 | FONTWEIGHT_BOLD = _gdi_.FONTWEIGHT_BOLD | |
1291 | FONTWEIGHT_MAX = _gdi_.FONTWEIGHT_MAX | |
1292 | FONTFLAG_DEFAULT = _gdi_.FONTFLAG_DEFAULT | |
1293 | FONTFLAG_ITALIC = _gdi_.FONTFLAG_ITALIC | |
1294 | FONTFLAG_SLANT = _gdi_.FONTFLAG_SLANT | |
1295 | FONTFLAG_LIGHT = _gdi_.FONTFLAG_LIGHT | |
1296 | FONTFLAG_BOLD = _gdi_.FONTFLAG_BOLD | |
1297 | FONTFLAG_ANTIALIASED = _gdi_.FONTFLAG_ANTIALIASED | |
1298 | FONTFLAG_NOT_ANTIALIASED = _gdi_.FONTFLAG_NOT_ANTIALIASED | |
1299 | FONTFLAG_UNDERLINED = _gdi_.FONTFLAG_UNDERLINED | |
1300 | FONTFLAG_STRIKETHROUGH = _gdi_.FONTFLAG_STRIKETHROUGH | |
1301 | FONTFLAG_MASK = _gdi_.FONTFLAG_MASK | |
1302 | FONTENCODING_SYSTEM = _gdi_.FONTENCODING_SYSTEM | |
1303 | FONTENCODING_DEFAULT = _gdi_.FONTENCODING_DEFAULT | |
1304 | FONTENCODING_ISO8859_1 = _gdi_.FONTENCODING_ISO8859_1 | |
1305 | FONTENCODING_ISO8859_2 = _gdi_.FONTENCODING_ISO8859_2 | |
1306 | FONTENCODING_ISO8859_3 = _gdi_.FONTENCODING_ISO8859_3 | |
1307 | FONTENCODING_ISO8859_4 = _gdi_.FONTENCODING_ISO8859_4 | |
1308 | FONTENCODING_ISO8859_5 = _gdi_.FONTENCODING_ISO8859_5 | |
1309 | FONTENCODING_ISO8859_6 = _gdi_.FONTENCODING_ISO8859_6 | |
1310 | FONTENCODING_ISO8859_7 = _gdi_.FONTENCODING_ISO8859_7 | |
1311 | FONTENCODING_ISO8859_8 = _gdi_.FONTENCODING_ISO8859_8 | |
1312 | FONTENCODING_ISO8859_9 = _gdi_.FONTENCODING_ISO8859_9 | |
1313 | FONTENCODING_ISO8859_10 = _gdi_.FONTENCODING_ISO8859_10 | |
1314 | FONTENCODING_ISO8859_11 = _gdi_.FONTENCODING_ISO8859_11 | |
1315 | FONTENCODING_ISO8859_12 = _gdi_.FONTENCODING_ISO8859_12 | |
1316 | FONTENCODING_ISO8859_13 = _gdi_.FONTENCODING_ISO8859_13 | |
1317 | FONTENCODING_ISO8859_14 = _gdi_.FONTENCODING_ISO8859_14 | |
1318 | FONTENCODING_ISO8859_15 = _gdi_.FONTENCODING_ISO8859_15 | |
1319 | FONTENCODING_ISO8859_MAX = _gdi_.FONTENCODING_ISO8859_MAX | |
1320 | FONTENCODING_KOI8 = _gdi_.FONTENCODING_KOI8 | |
1321 | FONTENCODING_KOI8_U = _gdi_.FONTENCODING_KOI8_U | |
1322 | FONTENCODING_ALTERNATIVE = _gdi_.FONTENCODING_ALTERNATIVE | |
1323 | FONTENCODING_BULGARIAN = _gdi_.FONTENCODING_BULGARIAN | |
1324 | FONTENCODING_CP437 = _gdi_.FONTENCODING_CP437 | |
1325 | FONTENCODING_CP850 = _gdi_.FONTENCODING_CP850 | |
1326 | FONTENCODING_CP852 = _gdi_.FONTENCODING_CP852 | |
1327 | FONTENCODING_CP855 = _gdi_.FONTENCODING_CP855 | |
1328 | FONTENCODING_CP866 = _gdi_.FONTENCODING_CP866 | |
1329 | FONTENCODING_CP874 = _gdi_.FONTENCODING_CP874 | |
1330 | FONTENCODING_CP932 = _gdi_.FONTENCODING_CP932 | |
1331 | FONTENCODING_CP936 = _gdi_.FONTENCODING_CP936 | |
1332 | FONTENCODING_CP949 = _gdi_.FONTENCODING_CP949 | |
1333 | FONTENCODING_CP950 = _gdi_.FONTENCODING_CP950 | |
1334 | FONTENCODING_CP1250 = _gdi_.FONTENCODING_CP1250 | |
1335 | FONTENCODING_CP1251 = _gdi_.FONTENCODING_CP1251 | |
1336 | FONTENCODING_CP1252 = _gdi_.FONTENCODING_CP1252 | |
1337 | FONTENCODING_CP1253 = _gdi_.FONTENCODING_CP1253 | |
1338 | FONTENCODING_CP1254 = _gdi_.FONTENCODING_CP1254 | |
1339 | FONTENCODING_CP1255 = _gdi_.FONTENCODING_CP1255 | |
1340 | FONTENCODING_CP1256 = _gdi_.FONTENCODING_CP1256 | |
1341 | FONTENCODING_CP1257 = _gdi_.FONTENCODING_CP1257 | |
1342 | FONTENCODING_CP12_MAX = _gdi_.FONTENCODING_CP12_MAX | |
1343 | FONTENCODING_UTF7 = _gdi_.FONTENCODING_UTF7 | |
1344 | FONTENCODING_UTF8 = _gdi_.FONTENCODING_UTF8 | |
1345 | FONTENCODING_EUC_JP = _gdi_.FONTENCODING_EUC_JP | |
1346 | FONTENCODING_UTF16BE = _gdi_.FONTENCODING_UTF16BE | |
1347 | FONTENCODING_UTF16LE = _gdi_.FONTENCODING_UTF16LE | |
1348 | FONTENCODING_UTF32BE = _gdi_.FONTENCODING_UTF32BE | |
1349 | FONTENCODING_UTF32LE = _gdi_.FONTENCODING_UTF32LE | |
1350 | FONTENCODING_MACROMAN = _gdi_.FONTENCODING_MACROMAN | |
1351 | FONTENCODING_MACJAPANESE = _gdi_.FONTENCODING_MACJAPANESE | |
1352 | FONTENCODING_MACCHINESETRAD = _gdi_.FONTENCODING_MACCHINESETRAD | |
1353 | FONTENCODING_MACKOREAN = _gdi_.FONTENCODING_MACKOREAN | |
1354 | FONTENCODING_MACARABIC = _gdi_.FONTENCODING_MACARABIC | |
1355 | FONTENCODING_MACHEBREW = _gdi_.FONTENCODING_MACHEBREW | |
1356 | FONTENCODING_MACGREEK = _gdi_.FONTENCODING_MACGREEK | |
1357 | FONTENCODING_MACCYRILLIC = _gdi_.FONTENCODING_MACCYRILLIC | |
1358 | FONTENCODING_MACDEVANAGARI = _gdi_.FONTENCODING_MACDEVANAGARI | |
1359 | FONTENCODING_MACGURMUKHI = _gdi_.FONTENCODING_MACGURMUKHI | |
1360 | FONTENCODING_MACGUJARATI = _gdi_.FONTENCODING_MACGUJARATI | |
1361 | FONTENCODING_MACORIYA = _gdi_.FONTENCODING_MACORIYA | |
1362 | FONTENCODING_MACBENGALI = _gdi_.FONTENCODING_MACBENGALI | |
1363 | FONTENCODING_MACTAMIL = _gdi_.FONTENCODING_MACTAMIL | |
1364 | FONTENCODING_MACTELUGU = _gdi_.FONTENCODING_MACTELUGU | |
1365 | FONTENCODING_MACKANNADA = _gdi_.FONTENCODING_MACKANNADA | |
1366 | FONTENCODING_MACMALAJALAM = _gdi_.FONTENCODING_MACMALAJALAM | |
1367 | FONTENCODING_MACSINHALESE = _gdi_.FONTENCODING_MACSINHALESE | |
1368 | FONTENCODING_MACBURMESE = _gdi_.FONTENCODING_MACBURMESE | |
1369 | FONTENCODING_MACKHMER = _gdi_.FONTENCODING_MACKHMER | |
1370 | FONTENCODING_MACTHAI = _gdi_.FONTENCODING_MACTHAI | |
1371 | FONTENCODING_MACLAOTIAN = _gdi_.FONTENCODING_MACLAOTIAN | |
1372 | FONTENCODING_MACGEORGIAN = _gdi_.FONTENCODING_MACGEORGIAN | |
1373 | FONTENCODING_MACARMENIAN = _gdi_.FONTENCODING_MACARMENIAN | |
1374 | FONTENCODING_MACCHINESESIMP = _gdi_.FONTENCODING_MACCHINESESIMP | |
1375 | FONTENCODING_MACTIBETAN = _gdi_.FONTENCODING_MACTIBETAN | |
1376 | FONTENCODING_MACMONGOLIAN = _gdi_.FONTENCODING_MACMONGOLIAN | |
1377 | FONTENCODING_MACETHIOPIC = _gdi_.FONTENCODING_MACETHIOPIC | |
1378 | FONTENCODING_MACCENTRALEUR = _gdi_.FONTENCODING_MACCENTRALEUR | |
1379 | FONTENCODING_MACVIATNAMESE = _gdi_.FONTENCODING_MACVIATNAMESE | |
1380 | FONTENCODING_MACARABICEXT = _gdi_.FONTENCODING_MACARABICEXT | |
1381 | FONTENCODING_MACSYMBOL = _gdi_.FONTENCODING_MACSYMBOL | |
1382 | FONTENCODING_MACDINGBATS = _gdi_.FONTENCODING_MACDINGBATS | |
1383 | FONTENCODING_MACTURKISH = _gdi_.FONTENCODING_MACTURKISH | |
1384 | FONTENCODING_MACCROATIAN = _gdi_.FONTENCODING_MACCROATIAN | |
1385 | FONTENCODING_MACICELANDIC = _gdi_.FONTENCODING_MACICELANDIC | |
1386 | FONTENCODING_MACROMANIAN = _gdi_.FONTENCODING_MACROMANIAN | |
1387 | FONTENCODING_MACCELTIC = _gdi_.FONTENCODING_MACCELTIC | |
1388 | FONTENCODING_MACGAELIC = _gdi_.FONTENCODING_MACGAELIC | |
1389 | FONTENCODING_MACKEYBOARD = _gdi_.FONTENCODING_MACKEYBOARD | |
1390 | FONTENCODING_MACMIN = _gdi_.FONTENCODING_MACMIN | |
1391 | FONTENCODING_MACMAX = _gdi_.FONTENCODING_MACMAX | |
1392 | FONTENCODING_MAX = _gdi_.FONTENCODING_MAX | |
1393 | FONTENCODING_UTF16 = _gdi_.FONTENCODING_UTF16 | |
1394 | FONTENCODING_UTF32 = _gdi_.FONTENCODING_UTF32 | |
1395 | FONTENCODING_UNICODE = _gdi_.FONTENCODING_UNICODE | |
1396 | FONTENCODING_GB2312 = _gdi_.FONTENCODING_GB2312 | |
1397 | FONTENCODING_BIG5 = _gdi_.FONTENCODING_BIG5 | |
1398 | FONTENCODING_SHIFT_JIS = _gdi_.FONTENCODING_SHIFT_JIS | |
1399 | #--------------------------------------------------------------------------- | |
1400 | ||
1401 | class NativeFontInfo(object): | |
1402 | def __repr__(self): | |
1403 | return "<%s.%s; proxy of C++ wxNativeFontInfo instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,) | |
1404 | def __init__(self, *args, **kwargs): | |
1405 | """__init__(self) -> NativeFontInfo""" | |
1406 | newobj = _gdi_.new_NativeFontInfo(*args, **kwargs) | |
1407 | self.this = newobj.this | |
1408 | self.thisown = 1 | |
1409 | del newobj.thisown | |
1410 | def __del__(self, destroy=_gdi_.delete_NativeFontInfo): | |
1411 | """__del__(self)""" | |
1412 | try: | |
1413 | if self.thisown: destroy(self) | |
1414 | except: pass | |
1415 | ||
1416 | def Init(*args, **kwargs): | |
1417 | """Init(self)""" | |
1418 | return _gdi_.NativeFontInfo_Init(*args, **kwargs) | |
1419 | ||
1420 | def InitFromFont(*args, **kwargs): | |
1421 | """InitFromFont(self, Font font)""" | |
1422 | return _gdi_.NativeFontInfo_InitFromFont(*args, **kwargs) | |
1423 | ||
1424 | def GetPointSize(*args, **kwargs): | |
1425 | """GetPointSize(self) -> int""" | |
1426 | return _gdi_.NativeFontInfo_GetPointSize(*args, **kwargs) | |
1427 | ||
1428 | def GetStyle(*args, **kwargs): | |
1429 | """GetStyle(self) -> int""" | |
1430 | return _gdi_.NativeFontInfo_GetStyle(*args, **kwargs) | |
1431 | ||
1432 | def GetWeight(*args, **kwargs): | |
1433 | """GetWeight(self) -> int""" | |
1434 | return _gdi_.NativeFontInfo_GetWeight(*args, **kwargs) | |
1435 | ||
1436 | def GetUnderlined(*args, **kwargs): | |
1437 | """GetUnderlined(self) -> bool""" | |
1438 | return _gdi_.NativeFontInfo_GetUnderlined(*args, **kwargs) | |
1439 | ||
1440 | def GetFaceName(*args, **kwargs): | |
1441 | """GetFaceName(self) -> String""" | |
1442 | return _gdi_.NativeFontInfo_GetFaceName(*args, **kwargs) | |
1443 | ||
1444 | def GetFamily(*args, **kwargs): | |
1445 | """GetFamily(self) -> int""" | |
1446 | return _gdi_.NativeFontInfo_GetFamily(*args, **kwargs) | |
1447 | ||
1448 | def GetEncoding(*args, **kwargs): | |
1449 | """GetEncoding(self) -> int""" | |
1450 | return _gdi_.NativeFontInfo_GetEncoding(*args, **kwargs) | |
1451 | ||
1452 | def SetPointSize(*args, **kwargs): | |
1453 | """SetPointSize(self, int pointsize)""" | |
1454 | return _gdi_.NativeFontInfo_SetPointSize(*args, **kwargs) | |
1455 | ||
1456 | def SetStyle(*args, **kwargs): | |
1457 | """SetStyle(self, int style)""" | |
1458 | return _gdi_.NativeFontInfo_SetStyle(*args, **kwargs) | |
1459 | ||
1460 | def SetWeight(*args, **kwargs): | |
1461 | """SetWeight(self, int weight)""" | |
1462 | return _gdi_.NativeFontInfo_SetWeight(*args, **kwargs) | |
1463 | ||
1464 | def SetUnderlined(*args, **kwargs): | |
1465 | """SetUnderlined(self, bool underlined)""" | |
1466 | return _gdi_.NativeFontInfo_SetUnderlined(*args, **kwargs) | |
1467 | ||
1468 | def SetFaceName(*args, **kwargs): | |
1469 | """SetFaceName(self, String facename)""" | |
1470 | return _gdi_.NativeFontInfo_SetFaceName(*args, **kwargs) | |
1471 | ||
1472 | def SetFamily(*args, **kwargs): | |
1473 | """SetFamily(self, int family)""" | |
1474 | return _gdi_.NativeFontInfo_SetFamily(*args, **kwargs) | |
1475 | ||
1476 | def SetEncoding(*args, **kwargs): | |
1477 | """SetEncoding(self, int encoding)""" | |
1478 | return _gdi_.NativeFontInfo_SetEncoding(*args, **kwargs) | |
1479 | ||
1480 | def FromString(*args, **kwargs): | |
1481 | """FromString(self, String s) -> bool""" | |
1482 | return _gdi_.NativeFontInfo_FromString(*args, **kwargs) | |
1483 | ||
1484 | def ToString(*args, **kwargs): | |
1485 | """ToString(self) -> String""" | |
1486 | return _gdi_.NativeFontInfo_ToString(*args, **kwargs) | |
1487 | ||
1488 | def __str__(*args, **kwargs): | |
1489 | """__str__(self) -> String""" | |
1490 | return _gdi_.NativeFontInfo___str__(*args, **kwargs) | |
1491 | ||
1492 | def FromUserString(*args, **kwargs): | |
1493 | """FromUserString(self, String s) -> bool""" | |
1494 | return _gdi_.NativeFontInfo_FromUserString(*args, **kwargs) | |
1495 | ||
1496 | def ToUserString(*args, **kwargs): | |
1497 | """ToUserString(self) -> String""" | |
1498 | return _gdi_.NativeFontInfo_ToUserString(*args, **kwargs) | |
1499 | ||
1500 | ||
1501 | class NativeFontInfoPtr(NativeFontInfo): | |
1502 | def __init__(self, this): | |
1503 | self.this = this | |
1504 | if not hasattr(self,"thisown"): self.thisown = 0 | |
1505 | self.__class__ = NativeFontInfo | |
1506 | _gdi_.NativeFontInfo_swigregister(NativeFontInfoPtr) | |
1507 | ||
1508 | class NativeEncodingInfo(object): | |
1509 | def __repr__(self): | |
1510 | return "<%s.%s; proxy of C++ wxNativeEncodingInfo instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,) | |
1511 | facename = property(_gdi_.NativeEncodingInfo_facename_get, _gdi_.NativeEncodingInfo_facename_set) | |
1512 | encoding = property(_gdi_.NativeEncodingInfo_encoding_get, _gdi_.NativeEncodingInfo_encoding_set) | |
1513 | def __init__(self, *args, **kwargs): | |
1514 | """__init__(self) -> NativeEncodingInfo""" | |
1515 | newobj = _gdi_.new_NativeEncodingInfo(*args, **kwargs) | |
1516 | self.this = newobj.this | |
1517 | self.thisown = 1 | |
1518 | del newobj.thisown | |
1519 | def __del__(self, destroy=_gdi_.delete_NativeEncodingInfo): | |
1520 | """__del__(self)""" | |
1521 | try: | |
1522 | if self.thisown: destroy(self) | |
1523 | except: pass | |
1524 | ||
1525 | def FromString(*args, **kwargs): | |
1526 | """FromString(self, String s) -> bool""" | |
1527 | return _gdi_.NativeEncodingInfo_FromString(*args, **kwargs) | |
1528 | ||
1529 | def ToString(*args, **kwargs): | |
1530 | """ToString(self) -> String""" | |
1531 | return _gdi_.NativeEncodingInfo_ToString(*args, **kwargs) | |
1532 | ||
1533 | ||
1534 | class NativeEncodingInfoPtr(NativeEncodingInfo): | |
1535 | def __init__(self, this): | |
1536 | self.this = this | |
1537 | if not hasattr(self,"thisown"): self.thisown = 0 | |
1538 | self.__class__ = NativeEncodingInfo | |
1539 | _gdi_.NativeEncodingInfo_swigregister(NativeEncodingInfoPtr) | |
1540 | ||
1541 | ||
1542 | def GetNativeFontEncoding(*args, **kwargs): | |
1543 | """GetNativeFontEncoding(int encoding) -> NativeEncodingInfo""" | |
1544 | return _gdi_.GetNativeFontEncoding(*args, **kwargs) | |
1545 | ||
1546 | def TestFontEncoding(*args, **kwargs): | |
1547 | """TestFontEncoding(NativeEncodingInfo info) -> bool""" | |
1548 | return _gdi_.TestFontEncoding(*args, **kwargs) | |
1549 | #--------------------------------------------------------------------------- | |
1550 | ||
1551 | class FontMapper(object): | |
1552 | def __repr__(self): | |
1553 | return "<%s.%s; proxy of C++ wxFontMapper instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,) | |
1554 | def __init__(self, *args, **kwargs): | |
1555 | """__init__(self) -> FontMapper""" | |
1556 | newobj = _gdi_.new_FontMapper(*args, **kwargs) | |
1557 | self.this = newobj.this | |
1558 | self.thisown = 1 | |
1559 | del newobj.thisown | |
1560 | def __del__(self, destroy=_gdi_.delete_FontMapper): | |
1561 | """__del__(self)""" | |
1562 | try: | |
1563 | if self.thisown: destroy(self) | |
1564 | except: pass | |
1565 | ||
1566 | def Get(*args, **kwargs): | |
c24da6d6 | 1567 | """Get() -> FontMapper""" |
d55e5bfc RD |
1568 | return _gdi_.FontMapper_Get(*args, **kwargs) |
1569 | ||
1570 | Get = staticmethod(Get) | |
1571 | def Set(*args, **kwargs): | |
c24da6d6 | 1572 | """Set(FontMapper mapper) -> FontMapper""" |
d55e5bfc RD |
1573 | return _gdi_.FontMapper_Set(*args, **kwargs) |
1574 | ||
1575 | Set = staticmethod(Set) | |
1576 | def CharsetToEncoding(*args, **kwargs): | |
1577 | """CharsetToEncoding(self, String charset, bool interactive=True) -> int""" | |
1578 | return _gdi_.FontMapper_CharsetToEncoding(*args, **kwargs) | |
1579 | ||
1580 | def GetSupportedEncodingsCount(*args, **kwargs): | |
c24da6d6 | 1581 | """GetSupportedEncodingsCount() -> size_t""" |
d55e5bfc RD |
1582 | return _gdi_.FontMapper_GetSupportedEncodingsCount(*args, **kwargs) |
1583 | ||
1584 | GetSupportedEncodingsCount = staticmethod(GetSupportedEncodingsCount) | |
1585 | def GetEncoding(*args, **kwargs): | |
c24da6d6 | 1586 | """GetEncoding(size_t n) -> int""" |
d55e5bfc RD |
1587 | return _gdi_.FontMapper_GetEncoding(*args, **kwargs) |
1588 | ||
1589 | GetEncoding = staticmethod(GetEncoding) | |
1590 | def GetEncodingName(*args, **kwargs): | |
c24da6d6 | 1591 | """GetEncodingName(int encoding) -> String""" |
d55e5bfc RD |
1592 | return _gdi_.FontMapper_GetEncodingName(*args, **kwargs) |
1593 | ||
1594 | GetEncodingName = staticmethod(GetEncodingName) | |
1595 | def GetEncodingDescription(*args, **kwargs): | |
c24da6d6 | 1596 | """GetEncodingDescription(int encoding) -> String""" |
d55e5bfc RD |
1597 | return _gdi_.FontMapper_GetEncodingDescription(*args, **kwargs) |
1598 | ||
1599 | GetEncodingDescription = staticmethod(GetEncodingDescription) | |
1600 | def GetEncodingFromName(*args, **kwargs): | |
c24da6d6 | 1601 | """GetEncodingFromName(String name) -> int""" |
d55e5bfc RD |
1602 | return _gdi_.FontMapper_GetEncodingFromName(*args, **kwargs) |
1603 | ||
1604 | GetEncodingFromName = staticmethod(GetEncodingFromName) | |
1605 | def SetConfig(*args, **kwargs): | |
1606 | """SetConfig(self, ConfigBase config)""" | |
1607 | return _gdi_.FontMapper_SetConfig(*args, **kwargs) | |
1608 | ||
1609 | def SetConfigPath(*args, **kwargs): | |
1610 | """SetConfigPath(self, String prefix)""" | |
1611 | return _gdi_.FontMapper_SetConfigPath(*args, **kwargs) | |
1612 | ||
1613 | def GetDefaultConfigPath(*args, **kwargs): | |
c24da6d6 | 1614 | """GetDefaultConfigPath() -> String""" |
d55e5bfc RD |
1615 | return _gdi_.FontMapper_GetDefaultConfigPath(*args, **kwargs) |
1616 | ||
1617 | GetDefaultConfigPath = staticmethod(GetDefaultConfigPath) | |
1618 | def GetAltForEncoding(*args, **kwargs): | |
1619 | """GetAltForEncoding(self, int encoding, String facename=EmptyString, bool interactive=True) -> PyObject""" | |
1620 | return _gdi_.FontMapper_GetAltForEncoding(*args, **kwargs) | |
1621 | ||
1622 | def IsEncodingAvailable(*args, **kwargs): | |
1623 | """IsEncodingAvailable(self, int encoding, String facename=EmptyString) -> bool""" | |
1624 | return _gdi_.FontMapper_IsEncodingAvailable(*args, **kwargs) | |
1625 | ||
1626 | def SetDialogParent(*args, **kwargs): | |
1627 | """SetDialogParent(self, Window parent)""" | |
1628 | return _gdi_.FontMapper_SetDialogParent(*args, **kwargs) | |
1629 | ||
1630 | def SetDialogTitle(*args, **kwargs): | |
1631 | """SetDialogTitle(self, String title)""" | |
1632 | return _gdi_.FontMapper_SetDialogTitle(*args, **kwargs) | |
1633 | ||
1634 | ||
1635 | class FontMapperPtr(FontMapper): | |
1636 | def __init__(self, this): | |
1637 | self.this = this | |
1638 | if not hasattr(self,"thisown"): self.thisown = 0 | |
1639 | self.__class__ = FontMapper | |
1640 | _gdi_.FontMapper_swigregister(FontMapperPtr) | |
1641 | ||
1642 | def FontMapper_Get(*args, **kwargs): | |
1643 | """FontMapper_Get() -> FontMapper""" | |
1644 | return _gdi_.FontMapper_Get(*args, **kwargs) | |
1645 | ||
1646 | def FontMapper_Set(*args, **kwargs): | |
1647 | """FontMapper_Set(FontMapper mapper) -> FontMapper""" | |
1648 | return _gdi_.FontMapper_Set(*args, **kwargs) | |
1649 | ||
1650 | def FontMapper_GetSupportedEncodingsCount(*args, **kwargs): | |
1651 | """FontMapper_GetSupportedEncodingsCount() -> size_t""" | |
1652 | return _gdi_.FontMapper_GetSupportedEncodingsCount(*args, **kwargs) | |
1653 | ||
1654 | def FontMapper_GetEncoding(*args, **kwargs): | |
1655 | """FontMapper_GetEncoding(size_t n) -> int""" | |
1656 | return _gdi_.FontMapper_GetEncoding(*args, **kwargs) | |
1657 | ||
1658 | def FontMapper_GetEncodingName(*args, **kwargs): | |
1659 | """FontMapper_GetEncodingName(int encoding) -> String""" | |
1660 | return _gdi_.FontMapper_GetEncodingName(*args, **kwargs) | |
1661 | ||
1662 | def FontMapper_GetEncodingDescription(*args, **kwargs): | |
1663 | """FontMapper_GetEncodingDescription(int encoding) -> String""" | |
1664 | return _gdi_.FontMapper_GetEncodingDescription(*args, **kwargs) | |
1665 | ||
1666 | def FontMapper_GetEncodingFromName(*args, **kwargs): | |
1667 | """FontMapper_GetEncodingFromName(String name) -> int""" | |
1668 | return _gdi_.FontMapper_GetEncodingFromName(*args, **kwargs) | |
1669 | ||
1670 | def FontMapper_GetDefaultConfigPath(*args, **kwargs): | |
1671 | """FontMapper_GetDefaultConfigPath() -> String""" | |
1672 | return _gdi_.FontMapper_GetDefaultConfigPath(*args, **kwargs) | |
1673 | ||
1674 | #--------------------------------------------------------------------------- | |
1675 | ||
1676 | class Font(GDIObject): | |
1677 | def __repr__(self): | |
1678 | return "<%s.%s; proxy of C++ wxFont instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,) | |
1679 | def __init__(self, *args, **kwargs): | |
1680 | """ | |
1681 | __init__(self, int pointSize, int family, int style, int weight, bool underline=False, | |
1682 | String face=EmptyString, | |
1683 | int encoding=FONTENCODING_DEFAULT) -> Font | |
1684 | """ | |
caef1a4d | 1685 | if kwargs.has_key('faceName'): kwargs['face'] = kwargs['faceName'];del kwargs['faceName'] |
d55e5bfc RD |
1686 | newobj = _gdi_.new_Font(*args, **kwargs) |
1687 | self.this = newobj.this | |
1688 | self.thisown = 1 | |
1689 | del newobj.thisown | |
1690 | def __del__(self, destroy=_gdi_.delete_Font): | |
1691 | """__del__(self)""" | |
1692 | try: | |
1693 | if self.thisown: destroy(self) | |
1694 | except: pass | |
1695 | ||
1696 | def Ok(*args, **kwargs): | |
1697 | """Ok(self) -> bool""" | |
1698 | return _gdi_.Font_Ok(*args, **kwargs) | |
1699 | ||
1700 | def __nonzero__(self): return self.Ok() | |
1701 | def __eq__(*args, **kwargs): | |
1702 | """__eq__(self, Font other) -> bool""" | |
1703 | return _gdi_.Font___eq__(*args, **kwargs) | |
1704 | ||
1705 | def __ne__(*args, **kwargs): | |
1706 | """__ne__(self, Font other) -> bool""" | |
1707 | return _gdi_.Font___ne__(*args, **kwargs) | |
1708 | ||
1709 | def GetPointSize(*args, **kwargs): | |
1710 | """GetPointSize(self) -> int""" | |
1711 | return _gdi_.Font_GetPointSize(*args, **kwargs) | |
1712 | ||
1713 | def GetFamily(*args, **kwargs): | |
1714 | """GetFamily(self) -> int""" | |
1715 | return _gdi_.Font_GetFamily(*args, **kwargs) | |
1716 | ||
1717 | def GetStyle(*args, **kwargs): | |
1718 | """GetStyle(self) -> int""" | |
1719 | return _gdi_.Font_GetStyle(*args, **kwargs) | |
1720 | ||
1721 | def GetWeight(*args, **kwargs): | |
1722 | """GetWeight(self) -> int""" | |
1723 | return _gdi_.Font_GetWeight(*args, **kwargs) | |
1724 | ||
1725 | def GetUnderlined(*args, **kwargs): | |
1726 | """GetUnderlined(self) -> bool""" | |
1727 | return _gdi_.Font_GetUnderlined(*args, **kwargs) | |
1728 | ||
1729 | def GetFaceName(*args, **kwargs): | |
1730 | """GetFaceName(self) -> String""" | |
1731 | return _gdi_.Font_GetFaceName(*args, **kwargs) | |
1732 | ||
1733 | def GetEncoding(*args, **kwargs): | |
1734 | """GetEncoding(self) -> int""" | |
1735 | return _gdi_.Font_GetEncoding(*args, **kwargs) | |
1736 | ||
1737 | def GetNativeFontInfo(*args, **kwargs): | |
1738 | """GetNativeFontInfo(self) -> NativeFontInfo""" | |
1739 | return _gdi_.Font_GetNativeFontInfo(*args, **kwargs) | |
1740 | ||
1741 | def IsFixedWidth(*args, **kwargs): | |
1742 | """IsFixedWidth(self) -> bool""" | |
1743 | return _gdi_.Font_IsFixedWidth(*args, **kwargs) | |
1744 | ||
1745 | def GetNativeFontInfoDesc(*args, **kwargs): | |
1746 | """GetNativeFontInfoDesc(self) -> String""" | |
1747 | return _gdi_.Font_GetNativeFontInfoDesc(*args, **kwargs) | |
1748 | ||
1749 | def GetNativeFontInfoUserDesc(*args, **kwargs): | |
1750 | """GetNativeFontInfoUserDesc(self) -> String""" | |
1751 | return _gdi_.Font_GetNativeFontInfoUserDesc(*args, **kwargs) | |
1752 | ||
1753 | def SetPointSize(*args, **kwargs): | |
1754 | """SetPointSize(self, int pointSize)""" | |
1755 | return _gdi_.Font_SetPointSize(*args, **kwargs) | |
1756 | ||
1757 | def SetFamily(*args, **kwargs): | |
1758 | """SetFamily(self, int family)""" | |
1759 | return _gdi_.Font_SetFamily(*args, **kwargs) | |
1760 | ||
1761 | def SetStyle(*args, **kwargs): | |
1762 | """SetStyle(self, int style)""" | |
1763 | return _gdi_.Font_SetStyle(*args, **kwargs) | |
1764 | ||
1765 | def SetWeight(*args, **kwargs): | |
1766 | """SetWeight(self, int weight)""" | |
1767 | return _gdi_.Font_SetWeight(*args, **kwargs) | |
1768 | ||
1769 | def SetFaceName(*args, **kwargs): | |
1770 | """SetFaceName(self, String faceName)""" | |
1771 | return _gdi_.Font_SetFaceName(*args, **kwargs) | |
1772 | ||
1773 | def SetUnderlined(*args, **kwargs): | |
1774 | """SetUnderlined(self, bool underlined)""" | |
1775 | return _gdi_.Font_SetUnderlined(*args, **kwargs) | |
1776 | ||
1777 | def SetEncoding(*args, **kwargs): | |
1778 | """SetEncoding(self, int encoding)""" | |
1779 | return _gdi_.Font_SetEncoding(*args, **kwargs) | |
1780 | ||
1781 | def SetNativeFontInfo(*args, **kwargs): | |
1782 | """SetNativeFontInfo(self, NativeFontInfo info)""" | |
1783 | return _gdi_.Font_SetNativeFontInfo(*args, **kwargs) | |
1784 | ||
1785 | def SetNativeFontInfoFromString(*args, **kwargs): | |
1786 | """SetNativeFontInfoFromString(self, String info)""" | |
1787 | return _gdi_.Font_SetNativeFontInfoFromString(*args, **kwargs) | |
1788 | ||
1789 | def SetNativeFontInfoUserDesc(*args, **kwargs): | |
1790 | """SetNativeFontInfoUserDesc(self, String info)""" | |
1791 | return _gdi_.Font_SetNativeFontInfoUserDesc(*args, **kwargs) | |
1792 | ||
1793 | def GetFamilyString(*args, **kwargs): | |
1794 | """GetFamilyString(self) -> String""" | |
1795 | return _gdi_.Font_GetFamilyString(*args, **kwargs) | |
1796 | ||
1797 | def GetStyleString(*args, **kwargs): | |
1798 | """GetStyleString(self) -> String""" | |
1799 | return _gdi_.Font_GetStyleString(*args, **kwargs) | |
1800 | ||
1801 | def GetWeightString(*args, **kwargs): | |
1802 | """GetWeightString(self) -> String""" | |
1803 | return _gdi_.Font_GetWeightString(*args, **kwargs) | |
1804 | ||
1805 | def SetNoAntiAliasing(*args, **kwargs): | |
1806 | """SetNoAntiAliasing(self, bool no=True)""" | |
1807 | return _gdi_.Font_SetNoAntiAliasing(*args, **kwargs) | |
1808 | ||
1809 | def GetNoAntiAliasing(*args, **kwargs): | |
1810 | """GetNoAntiAliasing(self) -> bool""" | |
1811 | return _gdi_.Font_GetNoAntiAliasing(*args, **kwargs) | |
1812 | ||
1813 | def GetDefaultEncoding(*args, **kwargs): | |
c24da6d6 | 1814 | """GetDefaultEncoding() -> int""" |
d55e5bfc RD |
1815 | return _gdi_.Font_GetDefaultEncoding(*args, **kwargs) |
1816 | ||
1817 | GetDefaultEncoding = staticmethod(GetDefaultEncoding) | |
1818 | def SetDefaultEncoding(*args, **kwargs): | |
c24da6d6 | 1819 | """SetDefaultEncoding(int encoding)""" |
d55e5bfc RD |
1820 | return _gdi_.Font_SetDefaultEncoding(*args, **kwargs) |
1821 | ||
1822 | SetDefaultEncoding = staticmethod(SetDefaultEncoding) | |
1823 | ||
1824 | class FontPtr(Font): | |
1825 | def __init__(self, this): | |
1826 | self.this = this | |
1827 | if not hasattr(self,"thisown"): self.thisown = 0 | |
1828 | self.__class__ = Font | |
1829 | _gdi_.Font_swigregister(FontPtr) | |
1830 | ||
1831 | def FontFromNativeInfo(*args, **kwargs): | |
1832 | """FontFromNativeInfo(NativeFontInfo info) -> Font""" | |
caef1a4d | 1833 | if kwargs.has_key('faceName'): kwargs['face'] = kwargs['faceName'];del kwargs['faceName'] |
d55e5bfc RD |
1834 | val = _gdi_.new_FontFromNativeInfo(*args, **kwargs) |
1835 | val.thisown = 1 | |
1836 | return val | |
1837 | ||
1838 | def FontFromNativeInfoString(*args, **kwargs): | |
1839 | """FontFromNativeInfoString(String info) -> Font""" | |
caef1a4d | 1840 | if kwargs.has_key('faceName'): kwargs['face'] = kwargs['faceName'];del kwargs['faceName'] |
d55e5bfc RD |
1841 | val = _gdi_.new_FontFromNativeInfoString(*args, **kwargs) |
1842 | val.thisown = 1 | |
1843 | return val | |
1844 | ||
1845 | def Font2(*args, **kwargs): | |
1846 | """ | |
1847 | Font2(int pointSize, int family, int flags=FONTFLAG_DEFAULT, | |
1848 | String face=EmptyString, int encoding=FONTENCODING_DEFAULT) -> Font | |
1849 | """ | |
caef1a4d | 1850 | if kwargs.has_key('faceName'): kwargs['face'] = kwargs['faceName'];del kwargs['faceName'] |
d55e5bfc RD |
1851 | val = _gdi_.new_Font2(*args, **kwargs) |
1852 | val.thisown = 1 | |
1853 | return val | |
1854 | ||
1855 | def Font_GetDefaultEncoding(*args, **kwargs): | |
1856 | """Font_GetDefaultEncoding() -> int""" | |
1857 | return _gdi_.Font_GetDefaultEncoding(*args, **kwargs) | |
1858 | ||
1859 | def Font_SetDefaultEncoding(*args, **kwargs): | |
1860 | """Font_SetDefaultEncoding(int encoding)""" | |
1861 | return _gdi_.Font_SetDefaultEncoding(*args, **kwargs) | |
1862 | ||
1863 | #--------------------------------------------------------------------------- | |
1864 | ||
1865 | class FontEnumerator(object): | |
1866 | def __repr__(self): | |
1867 | return "<%s.%s; proxy of C++ wxPyFontEnumerator instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,) | |
1868 | def __init__(self, *args, **kwargs): | |
1869 | """__init__(self) -> FontEnumerator""" | |
1870 | newobj = _gdi_.new_FontEnumerator(*args, **kwargs) | |
1871 | self.this = newobj.this | |
1872 | self.thisown = 1 | |
1873 | del newobj.thisown | |
1874 | self._setCallbackInfo(self, FontEnumerator, 0) | |
1875 | ||
1876 | def __del__(self, destroy=_gdi_.delete_FontEnumerator): | |
1877 | """__del__(self)""" | |
1878 | try: | |
1879 | if self.thisown: destroy(self) | |
1880 | except: pass | |
1881 | ||
1882 | def _setCallbackInfo(*args, **kwargs): | |
1883 | """_setCallbackInfo(self, PyObject self, PyObject _class, bool incref)""" | |
1884 | return _gdi_.FontEnumerator__setCallbackInfo(*args, **kwargs) | |
1885 | ||
1886 | def EnumerateFacenames(*args, **kwargs): | |
1887 | """EnumerateFacenames(self, int encoding=FONTENCODING_SYSTEM, bool fixedWidthOnly=False) -> bool""" | |
1888 | return _gdi_.FontEnumerator_EnumerateFacenames(*args, **kwargs) | |
1889 | ||
1890 | def EnumerateEncodings(*args, **kwargs): | |
1891 | """EnumerateEncodings(self, String facename=EmptyString) -> bool""" | |
1892 | return _gdi_.FontEnumerator_EnumerateEncodings(*args, **kwargs) | |
1893 | ||
1894 | def GetEncodings(*args, **kwargs): | |
1895 | """GetEncodings(self) -> PyObject""" | |
1896 | return _gdi_.FontEnumerator_GetEncodings(*args, **kwargs) | |
1897 | ||
1898 | def GetFacenames(*args, **kwargs): | |
1899 | """GetFacenames(self) -> PyObject""" | |
1900 | return _gdi_.FontEnumerator_GetFacenames(*args, **kwargs) | |
1901 | ||
1902 | ||
1903 | class FontEnumeratorPtr(FontEnumerator): | |
1904 | def __init__(self, this): | |
1905 | self.this = this | |
1906 | if not hasattr(self,"thisown"): self.thisown = 0 | |
1907 | self.__class__ = FontEnumerator | |
1908 | _gdi_.FontEnumerator_swigregister(FontEnumeratorPtr) | |
1909 | ||
1910 | #--------------------------------------------------------------------------- | |
1911 | ||
1912 | LANGUAGE_DEFAULT = _gdi_.LANGUAGE_DEFAULT | |
1913 | LANGUAGE_UNKNOWN = _gdi_.LANGUAGE_UNKNOWN | |
1914 | LANGUAGE_ABKHAZIAN = _gdi_.LANGUAGE_ABKHAZIAN | |
1915 | LANGUAGE_AFAR = _gdi_.LANGUAGE_AFAR | |
1916 | LANGUAGE_AFRIKAANS = _gdi_.LANGUAGE_AFRIKAANS | |
1917 | LANGUAGE_ALBANIAN = _gdi_.LANGUAGE_ALBANIAN | |
1918 | LANGUAGE_AMHARIC = _gdi_.LANGUAGE_AMHARIC | |
1919 | LANGUAGE_ARABIC = _gdi_.LANGUAGE_ARABIC | |
1920 | LANGUAGE_ARABIC_ALGERIA = _gdi_.LANGUAGE_ARABIC_ALGERIA | |
1921 | LANGUAGE_ARABIC_BAHRAIN = _gdi_.LANGUAGE_ARABIC_BAHRAIN | |
1922 | LANGUAGE_ARABIC_EGYPT = _gdi_.LANGUAGE_ARABIC_EGYPT | |
1923 | LANGUAGE_ARABIC_IRAQ = _gdi_.LANGUAGE_ARABIC_IRAQ | |
1924 | LANGUAGE_ARABIC_JORDAN = _gdi_.LANGUAGE_ARABIC_JORDAN | |
1925 | LANGUAGE_ARABIC_KUWAIT = _gdi_.LANGUAGE_ARABIC_KUWAIT | |
1926 | LANGUAGE_ARABIC_LEBANON = _gdi_.LANGUAGE_ARABIC_LEBANON | |
1927 | LANGUAGE_ARABIC_LIBYA = _gdi_.LANGUAGE_ARABIC_LIBYA | |
1928 | LANGUAGE_ARABIC_MOROCCO = _gdi_.LANGUAGE_ARABIC_MOROCCO | |
1929 | LANGUAGE_ARABIC_OMAN = _gdi_.LANGUAGE_ARABIC_OMAN | |
1930 | LANGUAGE_ARABIC_QATAR = _gdi_.LANGUAGE_ARABIC_QATAR | |
1931 | LANGUAGE_ARABIC_SAUDI_ARABIA = _gdi_.LANGUAGE_ARABIC_SAUDI_ARABIA | |
1932 | LANGUAGE_ARABIC_SUDAN = _gdi_.LANGUAGE_ARABIC_SUDAN | |
1933 | LANGUAGE_ARABIC_SYRIA = _gdi_.LANGUAGE_ARABIC_SYRIA | |
1934 | LANGUAGE_ARABIC_TUNISIA = _gdi_.LANGUAGE_ARABIC_TUNISIA | |
1935 | LANGUAGE_ARABIC_UAE = _gdi_.LANGUAGE_ARABIC_UAE | |
1936 | LANGUAGE_ARABIC_YEMEN = _gdi_.LANGUAGE_ARABIC_YEMEN | |
1937 | LANGUAGE_ARMENIAN = _gdi_.LANGUAGE_ARMENIAN | |
1938 | LANGUAGE_ASSAMESE = _gdi_.LANGUAGE_ASSAMESE | |
1939 | LANGUAGE_AYMARA = _gdi_.LANGUAGE_AYMARA | |
1940 | LANGUAGE_AZERI = _gdi_.LANGUAGE_AZERI | |
1941 | LANGUAGE_AZERI_CYRILLIC = _gdi_.LANGUAGE_AZERI_CYRILLIC | |
1942 | LANGUAGE_AZERI_LATIN = _gdi_.LANGUAGE_AZERI_LATIN | |
1943 | LANGUAGE_BASHKIR = _gdi_.LANGUAGE_BASHKIR | |
1944 | LANGUAGE_BASQUE = _gdi_.LANGUAGE_BASQUE | |
1945 | LANGUAGE_BELARUSIAN = _gdi_.LANGUAGE_BELARUSIAN | |
1946 | LANGUAGE_BENGALI = _gdi_.LANGUAGE_BENGALI | |
1947 | LANGUAGE_BHUTANI = _gdi_.LANGUAGE_BHUTANI | |
1948 | LANGUAGE_BIHARI = _gdi_.LANGUAGE_BIHARI | |
1949 | LANGUAGE_BISLAMA = _gdi_.LANGUAGE_BISLAMA | |
1950 | LANGUAGE_BRETON = _gdi_.LANGUAGE_BRETON | |
1951 | LANGUAGE_BULGARIAN = _gdi_.LANGUAGE_BULGARIAN | |
1952 | LANGUAGE_BURMESE = _gdi_.LANGUAGE_BURMESE | |
1953 | LANGUAGE_CAMBODIAN = _gdi_.LANGUAGE_CAMBODIAN | |
1954 | LANGUAGE_CATALAN = _gdi_.LANGUAGE_CATALAN | |
1955 | LANGUAGE_CHINESE = _gdi_.LANGUAGE_CHINESE | |
1956 | LANGUAGE_CHINESE_SIMPLIFIED = _gdi_.LANGUAGE_CHINESE_SIMPLIFIED | |
1957 | LANGUAGE_CHINESE_TRADITIONAL = _gdi_.LANGUAGE_CHINESE_TRADITIONAL | |
1958 | LANGUAGE_CHINESE_HONGKONG = _gdi_.LANGUAGE_CHINESE_HONGKONG | |
1959 | LANGUAGE_CHINESE_MACAU = _gdi_.LANGUAGE_CHINESE_MACAU | |
1960 | LANGUAGE_CHINESE_SINGAPORE = _gdi_.LANGUAGE_CHINESE_SINGAPORE | |
1961 | LANGUAGE_CHINESE_TAIWAN = _gdi_.LANGUAGE_CHINESE_TAIWAN | |
1962 | LANGUAGE_CORSICAN = _gdi_.LANGUAGE_CORSICAN | |
1963 | LANGUAGE_CROATIAN = _gdi_.LANGUAGE_CROATIAN | |
1964 | LANGUAGE_CZECH = _gdi_.LANGUAGE_CZECH | |
1965 | LANGUAGE_DANISH = _gdi_.LANGUAGE_DANISH | |
1966 | LANGUAGE_DUTCH = _gdi_.LANGUAGE_DUTCH | |
1967 | LANGUAGE_DUTCH_BELGIAN = _gdi_.LANGUAGE_DUTCH_BELGIAN | |
1968 | LANGUAGE_ENGLISH = _gdi_.LANGUAGE_ENGLISH | |
1969 | LANGUAGE_ENGLISH_UK = _gdi_.LANGUAGE_ENGLISH_UK | |
1970 | LANGUAGE_ENGLISH_US = _gdi_.LANGUAGE_ENGLISH_US | |
1971 | LANGUAGE_ENGLISH_AUSTRALIA = _gdi_.LANGUAGE_ENGLISH_AUSTRALIA | |
1972 | LANGUAGE_ENGLISH_BELIZE = _gdi_.LANGUAGE_ENGLISH_BELIZE | |
1973 | LANGUAGE_ENGLISH_BOTSWANA = _gdi_.LANGUAGE_ENGLISH_BOTSWANA | |
1974 | LANGUAGE_ENGLISH_CANADA = _gdi_.LANGUAGE_ENGLISH_CANADA | |
1975 | LANGUAGE_ENGLISH_CARIBBEAN = _gdi_.LANGUAGE_ENGLISH_CARIBBEAN | |
1976 | LANGUAGE_ENGLISH_DENMARK = _gdi_.LANGUAGE_ENGLISH_DENMARK | |
1977 | LANGUAGE_ENGLISH_EIRE = _gdi_.LANGUAGE_ENGLISH_EIRE | |
1978 | LANGUAGE_ENGLISH_JAMAICA = _gdi_.LANGUAGE_ENGLISH_JAMAICA | |
1979 | LANGUAGE_ENGLISH_NEW_ZEALAND = _gdi_.LANGUAGE_ENGLISH_NEW_ZEALAND | |
1980 | LANGUAGE_ENGLISH_PHILIPPINES = _gdi_.LANGUAGE_ENGLISH_PHILIPPINES | |
1981 | LANGUAGE_ENGLISH_SOUTH_AFRICA = _gdi_.LANGUAGE_ENGLISH_SOUTH_AFRICA | |
1982 | LANGUAGE_ENGLISH_TRINIDAD = _gdi_.LANGUAGE_ENGLISH_TRINIDAD | |
1983 | LANGUAGE_ENGLISH_ZIMBABWE = _gdi_.LANGUAGE_ENGLISH_ZIMBABWE | |
1984 | LANGUAGE_ESPERANTO = _gdi_.LANGUAGE_ESPERANTO | |
1985 | LANGUAGE_ESTONIAN = _gdi_.LANGUAGE_ESTONIAN | |
1986 | LANGUAGE_FAEROESE = _gdi_.LANGUAGE_FAEROESE | |
1987 | LANGUAGE_FARSI = _gdi_.LANGUAGE_FARSI | |
1988 | LANGUAGE_FIJI = _gdi_.LANGUAGE_FIJI | |
1989 | LANGUAGE_FINNISH = _gdi_.LANGUAGE_FINNISH | |
1990 | LANGUAGE_FRENCH = _gdi_.LANGUAGE_FRENCH | |
1991 | LANGUAGE_FRENCH_BELGIAN = _gdi_.LANGUAGE_FRENCH_BELGIAN | |
1992 | LANGUAGE_FRENCH_CANADIAN = _gdi_.LANGUAGE_FRENCH_CANADIAN | |
1993 | LANGUAGE_FRENCH_LUXEMBOURG = _gdi_.LANGUAGE_FRENCH_LUXEMBOURG | |
1994 | LANGUAGE_FRENCH_MONACO = _gdi_.LANGUAGE_FRENCH_MONACO | |
1995 | LANGUAGE_FRENCH_SWISS = _gdi_.LANGUAGE_FRENCH_SWISS | |
1996 | LANGUAGE_FRISIAN = _gdi_.LANGUAGE_FRISIAN | |
1997 | LANGUAGE_GALICIAN = _gdi_.LANGUAGE_GALICIAN | |
1998 | LANGUAGE_GEORGIAN = _gdi_.LANGUAGE_GEORGIAN | |
1999 | LANGUAGE_GERMAN = _gdi_.LANGUAGE_GERMAN | |
2000 | LANGUAGE_GERMAN_AUSTRIAN = _gdi_.LANGUAGE_GERMAN_AUSTRIAN | |
2001 | LANGUAGE_GERMAN_BELGIUM = _gdi_.LANGUAGE_GERMAN_BELGIUM | |
2002 | LANGUAGE_GERMAN_LIECHTENSTEIN = _gdi_.LANGUAGE_GERMAN_LIECHTENSTEIN | |
2003 | LANGUAGE_GERMAN_LUXEMBOURG = _gdi_.LANGUAGE_GERMAN_LUXEMBOURG | |
2004 | LANGUAGE_GERMAN_SWISS = _gdi_.LANGUAGE_GERMAN_SWISS | |
2005 | LANGUAGE_GREEK = _gdi_.LANGUAGE_GREEK | |
2006 | LANGUAGE_GREENLANDIC = _gdi_.LANGUAGE_GREENLANDIC | |
2007 | LANGUAGE_GUARANI = _gdi_.LANGUAGE_GUARANI | |
2008 | LANGUAGE_GUJARATI = _gdi_.LANGUAGE_GUJARATI | |
2009 | LANGUAGE_HAUSA = _gdi_.LANGUAGE_HAUSA | |
2010 | LANGUAGE_HEBREW = _gdi_.LANGUAGE_HEBREW | |
2011 | LANGUAGE_HINDI = _gdi_.LANGUAGE_HINDI | |
2012 | LANGUAGE_HUNGARIAN = _gdi_.LANGUAGE_HUNGARIAN | |
2013 | LANGUAGE_ICELANDIC = _gdi_.LANGUAGE_ICELANDIC | |
2014 | LANGUAGE_INDONESIAN = _gdi_.LANGUAGE_INDONESIAN | |
2015 | LANGUAGE_INTERLINGUA = _gdi_.LANGUAGE_INTERLINGUA | |
2016 | LANGUAGE_INTERLINGUE = _gdi_.LANGUAGE_INTERLINGUE | |
2017 | LANGUAGE_INUKTITUT = _gdi_.LANGUAGE_INUKTITUT | |
2018 | LANGUAGE_INUPIAK = _gdi_.LANGUAGE_INUPIAK | |
2019 | LANGUAGE_IRISH = _gdi_.LANGUAGE_IRISH | |
2020 | LANGUAGE_ITALIAN = _gdi_.LANGUAGE_ITALIAN | |
2021 | LANGUAGE_ITALIAN_SWISS = _gdi_.LANGUAGE_ITALIAN_SWISS | |
2022 | LANGUAGE_JAPANESE = _gdi_.LANGUAGE_JAPANESE | |
2023 | LANGUAGE_JAVANESE = _gdi_.LANGUAGE_JAVANESE | |
2024 | LANGUAGE_KANNADA = _gdi_.LANGUAGE_KANNADA | |
2025 | LANGUAGE_KASHMIRI = _gdi_.LANGUAGE_KASHMIRI | |
2026 | LANGUAGE_KASHMIRI_INDIA = _gdi_.LANGUAGE_KASHMIRI_INDIA | |
2027 | LANGUAGE_KAZAKH = _gdi_.LANGUAGE_KAZAKH | |
2028 | LANGUAGE_KERNEWEK = _gdi_.LANGUAGE_KERNEWEK | |
2029 | LANGUAGE_KINYARWANDA = _gdi_.LANGUAGE_KINYARWANDA | |
2030 | LANGUAGE_KIRGHIZ = _gdi_.LANGUAGE_KIRGHIZ | |
2031 | LANGUAGE_KIRUNDI = _gdi_.LANGUAGE_KIRUNDI | |
2032 | LANGUAGE_KONKANI = _gdi_.LANGUAGE_KONKANI | |
2033 | LANGUAGE_KOREAN = _gdi_.LANGUAGE_KOREAN | |
2034 | LANGUAGE_KURDISH = _gdi_.LANGUAGE_KURDISH | |
2035 | LANGUAGE_LAOTHIAN = _gdi_.LANGUAGE_LAOTHIAN | |
2036 | LANGUAGE_LATIN = _gdi_.LANGUAGE_LATIN | |
2037 | LANGUAGE_LATVIAN = _gdi_.LANGUAGE_LATVIAN | |
2038 | LANGUAGE_LINGALA = _gdi_.LANGUAGE_LINGALA | |
2039 | LANGUAGE_LITHUANIAN = _gdi_.LANGUAGE_LITHUANIAN | |
2040 | LANGUAGE_MACEDONIAN = _gdi_.LANGUAGE_MACEDONIAN | |
2041 | LANGUAGE_MALAGASY = _gdi_.LANGUAGE_MALAGASY | |
2042 | LANGUAGE_MALAY = _gdi_.LANGUAGE_MALAY | |
2043 | LANGUAGE_MALAYALAM = _gdi_.LANGUAGE_MALAYALAM | |
2044 | LANGUAGE_MALAY_BRUNEI_DARUSSALAM = _gdi_.LANGUAGE_MALAY_BRUNEI_DARUSSALAM | |
2045 | LANGUAGE_MALAY_MALAYSIA = _gdi_.LANGUAGE_MALAY_MALAYSIA | |
2046 | LANGUAGE_MALTESE = _gdi_.LANGUAGE_MALTESE | |
2047 | LANGUAGE_MANIPURI = _gdi_.LANGUAGE_MANIPURI | |
2048 | LANGUAGE_MAORI = _gdi_.LANGUAGE_MAORI | |
2049 | LANGUAGE_MARATHI = _gdi_.LANGUAGE_MARATHI | |
2050 | LANGUAGE_MOLDAVIAN = _gdi_.LANGUAGE_MOLDAVIAN | |
2051 | LANGUAGE_MONGOLIAN = _gdi_.LANGUAGE_MONGOLIAN | |
2052 | LANGUAGE_NAURU = _gdi_.LANGUAGE_NAURU | |
2053 | LANGUAGE_NEPALI = _gdi_.LANGUAGE_NEPALI | |
2054 | LANGUAGE_NEPALI_INDIA = _gdi_.LANGUAGE_NEPALI_INDIA | |
2055 | LANGUAGE_NORWEGIAN_BOKMAL = _gdi_.LANGUAGE_NORWEGIAN_BOKMAL | |
2056 | LANGUAGE_NORWEGIAN_NYNORSK = _gdi_.LANGUAGE_NORWEGIAN_NYNORSK | |
2057 | LANGUAGE_OCCITAN = _gdi_.LANGUAGE_OCCITAN | |
2058 | LANGUAGE_ORIYA = _gdi_.LANGUAGE_ORIYA | |
2059 | LANGUAGE_OROMO = _gdi_.LANGUAGE_OROMO | |
2060 | LANGUAGE_PASHTO = _gdi_.LANGUAGE_PASHTO | |
2061 | LANGUAGE_POLISH = _gdi_.LANGUAGE_POLISH | |
2062 | LANGUAGE_PORTUGUESE = _gdi_.LANGUAGE_PORTUGUESE | |
2063 | LANGUAGE_PORTUGUESE_BRAZILIAN = _gdi_.LANGUAGE_PORTUGUESE_BRAZILIAN | |
2064 | LANGUAGE_PUNJABI = _gdi_.LANGUAGE_PUNJABI | |
2065 | LANGUAGE_QUECHUA = _gdi_.LANGUAGE_QUECHUA | |
2066 | LANGUAGE_RHAETO_ROMANCE = _gdi_.LANGUAGE_RHAETO_ROMANCE | |
2067 | LANGUAGE_ROMANIAN = _gdi_.LANGUAGE_ROMANIAN | |
2068 | LANGUAGE_RUSSIAN = _gdi_.LANGUAGE_RUSSIAN | |
2069 | LANGUAGE_RUSSIAN_UKRAINE = _gdi_.LANGUAGE_RUSSIAN_UKRAINE | |
2070 | LANGUAGE_SAMOAN = _gdi_.LANGUAGE_SAMOAN | |
2071 | LANGUAGE_SANGHO = _gdi_.LANGUAGE_SANGHO | |
2072 | LANGUAGE_SANSKRIT = _gdi_.LANGUAGE_SANSKRIT | |
2073 | LANGUAGE_SCOTS_GAELIC = _gdi_.LANGUAGE_SCOTS_GAELIC | |
2074 | LANGUAGE_SERBIAN = _gdi_.LANGUAGE_SERBIAN | |
2075 | LANGUAGE_SERBIAN_CYRILLIC = _gdi_.LANGUAGE_SERBIAN_CYRILLIC | |
2076 | LANGUAGE_SERBIAN_LATIN = _gdi_.LANGUAGE_SERBIAN_LATIN | |
2077 | LANGUAGE_SERBO_CROATIAN = _gdi_.LANGUAGE_SERBO_CROATIAN | |
2078 | LANGUAGE_SESOTHO = _gdi_.LANGUAGE_SESOTHO | |
2079 | LANGUAGE_SETSWANA = _gdi_.LANGUAGE_SETSWANA | |
2080 | LANGUAGE_SHONA = _gdi_.LANGUAGE_SHONA | |
2081 | LANGUAGE_SINDHI = _gdi_.LANGUAGE_SINDHI | |
2082 | LANGUAGE_SINHALESE = _gdi_.LANGUAGE_SINHALESE | |
2083 | LANGUAGE_SISWATI = _gdi_.LANGUAGE_SISWATI | |
2084 | LANGUAGE_SLOVAK = _gdi_.LANGUAGE_SLOVAK | |
2085 | LANGUAGE_SLOVENIAN = _gdi_.LANGUAGE_SLOVENIAN | |
2086 | LANGUAGE_SOMALI = _gdi_.LANGUAGE_SOMALI | |
2087 | LANGUAGE_SPANISH = _gdi_.LANGUAGE_SPANISH | |
2088 | LANGUAGE_SPANISH_ARGENTINA = _gdi_.LANGUAGE_SPANISH_ARGENTINA | |
2089 | LANGUAGE_SPANISH_BOLIVIA = _gdi_.LANGUAGE_SPANISH_BOLIVIA | |
2090 | LANGUAGE_SPANISH_CHILE = _gdi_.LANGUAGE_SPANISH_CHILE | |
2091 | LANGUAGE_SPANISH_COLOMBIA = _gdi_.LANGUAGE_SPANISH_COLOMBIA | |
2092 | LANGUAGE_SPANISH_COSTA_RICA = _gdi_.LANGUAGE_SPANISH_COSTA_RICA | |
2093 | LANGUAGE_SPANISH_DOMINICAN_REPUBLIC = _gdi_.LANGUAGE_SPANISH_DOMINICAN_REPUBLIC | |
2094 | LANGUAGE_SPANISH_ECUADOR = _gdi_.LANGUAGE_SPANISH_ECUADOR | |
2095 | LANGUAGE_SPANISH_EL_SALVADOR = _gdi_.LANGUAGE_SPANISH_EL_SALVADOR | |
2096 | LANGUAGE_SPANISH_GUATEMALA = _gdi_.LANGUAGE_SPANISH_GUATEMALA | |
2097 | LANGUAGE_SPANISH_HONDURAS = _gdi_.LANGUAGE_SPANISH_HONDURAS | |
2098 | LANGUAGE_SPANISH_MEXICAN = _gdi_.LANGUAGE_SPANISH_MEXICAN | |
2099 | LANGUAGE_SPANISH_MODERN = _gdi_.LANGUAGE_SPANISH_MODERN | |
2100 | LANGUAGE_SPANISH_NICARAGUA = _gdi_.LANGUAGE_SPANISH_NICARAGUA | |
2101 | LANGUAGE_SPANISH_PANAMA = _gdi_.LANGUAGE_SPANISH_PANAMA | |
2102 | LANGUAGE_SPANISH_PARAGUAY = _gdi_.LANGUAGE_SPANISH_PARAGUAY | |
2103 | LANGUAGE_SPANISH_PERU = _gdi_.LANGUAGE_SPANISH_PERU | |
2104 | LANGUAGE_SPANISH_PUERTO_RICO = _gdi_.LANGUAGE_SPANISH_PUERTO_RICO | |
2105 | LANGUAGE_SPANISH_URUGUAY = _gdi_.LANGUAGE_SPANISH_URUGUAY | |
2106 | LANGUAGE_SPANISH_US = _gdi_.LANGUAGE_SPANISH_US | |
2107 | LANGUAGE_SPANISH_VENEZUELA = _gdi_.LANGUAGE_SPANISH_VENEZUELA | |
2108 | LANGUAGE_SUNDANESE = _gdi_.LANGUAGE_SUNDANESE | |
2109 | LANGUAGE_SWAHILI = _gdi_.LANGUAGE_SWAHILI | |
2110 | LANGUAGE_SWEDISH = _gdi_.LANGUAGE_SWEDISH | |
2111 | LANGUAGE_SWEDISH_FINLAND = _gdi_.LANGUAGE_SWEDISH_FINLAND | |
2112 | LANGUAGE_TAGALOG = _gdi_.LANGUAGE_TAGALOG | |
2113 | LANGUAGE_TAJIK = _gdi_.LANGUAGE_TAJIK | |
2114 | LANGUAGE_TAMIL = _gdi_.LANGUAGE_TAMIL | |
2115 | LANGUAGE_TATAR = _gdi_.LANGUAGE_TATAR | |
2116 | LANGUAGE_TELUGU = _gdi_.LANGUAGE_TELUGU | |
2117 | LANGUAGE_THAI = _gdi_.LANGUAGE_THAI | |
2118 | LANGUAGE_TIBETAN = _gdi_.LANGUAGE_TIBETAN | |
2119 | LANGUAGE_TIGRINYA = _gdi_.LANGUAGE_TIGRINYA | |
2120 | LANGUAGE_TONGA = _gdi_.LANGUAGE_TONGA | |
2121 | LANGUAGE_TSONGA = _gdi_.LANGUAGE_TSONGA | |
2122 | LANGUAGE_TURKISH = _gdi_.LANGUAGE_TURKISH | |
2123 | LANGUAGE_TURKMEN = _gdi_.LANGUAGE_TURKMEN | |
2124 | LANGUAGE_TWI = _gdi_.LANGUAGE_TWI | |
2125 | LANGUAGE_UIGHUR = _gdi_.LANGUAGE_UIGHUR | |
2126 | LANGUAGE_UKRAINIAN = _gdi_.LANGUAGE_UKRAINIAN | |
2127 | LANGUAGE_URDU = _gdi_.LANGUAGE_URDU | |
2128 | LANGUAGE_URDU_INDIA = _gdi_.LANGUAGE_URDU_INDIA | |
2129 | LANGUAGE_URDU_PAKISTAN = _gdi_.LANGUAGE_URDU_PAKISTAN | |
2130 | LANGUAGE_UZBEK = _gdi_.LANGUAGE_UZBEK | |
2131 | LANGUAGE_UZBEK_CYRILLIC = _gdi_.LANGUAGE_UZBEK_CYRILLIC | |
2132 | LANGUAGE_UZBEK_LATIN = _gdi_.LANGUAGE_UZBEK_LATIN | |
2133 | LANGUAGE_VIETNAMESE = _gdi_.LANGUAGE_VIETNAMESE | |
2134 | LANGUAGE_VOLAPUK = _gdi_.LANGUAGE_VOLAPUK | |
2135 | LANGUAGE_WELSH = _gdi_.LANGUAGE_WELSH | |
2136 | LANGUAGE_WOLOF = _gdi_.LANGUAGE_WOLOF | |
2137 | LANGUAGE_XHOSA = _gdi_.LANGUAGE_XHOSA | |
2138 | LANGUAGE_YIDDISH = _gdi_.LANGUAGE_YIDDISH | |
2139 | LANGUAGE_YORUBA = _gdi_.LANGUAGE_YORUBA | |
2140 | LANGUAGE_ZHUANG = _gdi_.LANGUAGE_ZHUANG | |
2141 | LANGUAGE_ZULU = _gdi_.LANGUAGE_ZULU | |
2142 | LANGUAGE_USER_DEFINED = _gdi_.LANGUAGE_USER_DEFINED | |
2143 | class LanguageInfo(object): | |
2144 | def __init__(self): raise RuntimeError, "No constructor defined" | |
2145 | def __repr__(self): | |
2146 | return "<%s.%s; proxy of C++ wxLanguageInfo instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,) | |
2147 | Language = property(_gdi_.LanguageInfo_Language_get, _gdi_.LanguageInfo_Language_set) | |
2148 | CanonicalName = property(_gdi_.LanguageInfo_CanonicalName_get, _gdi_.LanguageInfo_CanonicalName_set) | |
2149 | Description = property(_gdi_.LanguageInfo_Description_get, _gdi_.LanguageInfo_Description_set) | |
2150 | ||
2151 | class LanguageInfoPtr(LanguageInfo): | |
2152 | def __init__(self, this): | |
2153 | self.this = this | |
2154 | if not hasattr(self,"thisown"): self.thisown = 0 | |
2155 | self.__class__ = LanguageInfo | |
2156 | _gdi_.LanguageInfo_swigregister(LanguageInfoPtr) | |
2157 | ||
2158 | LOCALE_CAT_NUMBER = _gdi_.LOCALE_CAT_NUMBER | |
2159 | LOCALE_CAT_DATE = _gdi_.LOCALE_CAT_DATE | |
2160 | LOCALE_CAT_MONEY = _gdi_.LOCALE_CAT_MONEY | |
2161 | LOCALE_CAT_MAX = _gdi_.LOCALE_CAT_MAX | |
2162 | LOCALE_THOUSANDS_SEP = _gdi_.LOCALE_THOUSANDS_SEP | |
2163 | LOCALE_DECIMAL_POINT = _gdi_.LOCALE_DECIMAL_POINT | |
2164 | LOCALE_LOAD_DEFAULT = _gdi_.LOCALE_LOAD_DEFAULT | |
2165 | LOCALE_CONV_ENCODING = _gdi_.LOCALE_CONV_ENCODING | |
2166 | class Locale(object): | |
2167 | def __repr__(self): | |
2168 | return "<%s.%s; proxy of C++ wxLocale instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,) | |
2169 | def __init__(self, *args, **kwargs): | |
79fccf9d | 2170 | """__init__(self, int language=-1, int flags=wxLOCALE_LOAD_DEFAULT|wxLOCALE_CONV_ENCODING) -> Locale""" |
d55e5bfc RD |
2171 | newobj = _gdi_.new_Locale(*args, **kwargs) |
2172 | self.this = newobj.this | |
2173 | self.thisown = 1 | |
2174 | del newobj.thisown | |
2175 | def __del__(self, destroy=_gdi_.delete_Locale): | |
2176 | """__del__(self)""" | |
2177 | try: | |
2178 | if self.thisown: destroy(self) | |
2179 | except: pass | |
2180 | ||
2181 | def Init1(*args, **kwargs): | |
2182 | """ | |
2183 | Init1(self, String szName, String szShort=EmptyString, String szLocale=EmptyString, | |
2184 | bool bLoadDefault=True, | |
2185 | bool bConvertEncoding=False) -> bool | |
2186 | """ | |
2187 | return _gdi_.Locale_Init1(*args, **kwargs) | |
2188 | ||
2189 | def Init2(*args, **kwargs): | |
2190 | """Init2(self, int language=LANGUAGE_DEFAULT, int flags=wxLOCALE_LOAD_DEFAULT|wxLOCALE_CONV_ENCODING) -> bool""" | |
2191 | return _gdi_.Locale_Init2(*args, **kwargs) | |
2192 | ||
2193 | def Init(self, *_args, **_kwargs): | |
2194 | if type(_args[0]) in [type(''), type(u'')]: | |
2195 | val = self.Init1(*_args, **_kwargs) | |
2196 | else: | |
2197 | val = self.Init2(*_args, **_kwargs) | |
2198 | return val | |
2199 | ||
2200 | def GetSystemLanguage(*args, **kwargs): | |
c24da6d6 | 2201 | """GetSystemLanguage() -> int""" |
d55e5bfc RD |
2202 | return _gdi_.Locale_GetSystemLanguage(*args, **kwargs) |
2203 | ||
2204 | GetSystemLanguage = staticmethod(GetSystemLanguage) | |
2205 | def GetSystemEncoding(*args, **kwargs): | |
c24da6d6 | 2206 | """GetSystemEncoding() -> int""" |
d55e5bfc RD |
2207 | return _gdi_.Locale_GetSystemEncoding(*args, **kwargs) |
2208 | ||
2209 | GetSystemEncoding = staticmethod(GetSystemEncoding) | |
2210 | def GetSystemEncodingName(*args, **kwargs): | |
c24da6d6 | 2211 | """GetSystemEncodingName() -> String""" |
d55e5bfc RD |
2212 | return _gdi_.Locale_GetSystemEncodingName(*args, **kwargs) |
2213 | ||
2214 | GetSystemEncodingName = staticmethod(GetSystemEncodingName) | |
2215 | def IsOk(*args, **kwargs): | |
2216 | """IsOk(self) -> bool""" | |
2217 | return _gdi_.Locale_IsOk(*args, **kwargs) | |
2218 | ||
2219 | def __nonzero__(self): return self.IsOk() | |
2220 | def GetLocale(*args, **kwargs): | |
2221 | """GetLocale(self) -> String""" | |
2222 | return _gdi_.Locale_GetLocale(*args, **kwargs) | |
2223 | ||
2224 | def GetLanguage(*args, **kwargs): | |
2225 | """GetLanguage(self) -> int""" | |
2226 | return _gdi_.Locale_GetLanguage(*args, **kwargs) | |
2227 | ||
2228 | def GetSysName(*args, **kwargs): | |
2229 | """GetSysName(self) -> String""" | |
2230 | return _gdi_.Locale_GetSysName(*args, **kwargs) | |
2231 | ||
2232 | def GetCanonicalName(*args, **kwargs): | |
2233 | """GetCanonicalName(self) -> String""" | |
2234 | return _gdi_.Locale_GetCanonicalName(*args, **kwargs) | |
2235 | ||
2236 | def AddCatalogLookupPathPrefix(*args, **kwargs): | |
c24da6d6 | 2237 | """AddCatalogLookupPathPrefix(String prefix)""" |
d55e5bfc RD |
2238 | return _gdi_.Locale_AddCatalogLookupPathPrefix(*args, **kwargs) |
2239 | ||
2240 | AddCatalogLookupPathPrefix = staticmethod(AddCatalogLookupPathPrefix) | |
2241 | def AddCatalog(*args, **kwargs): | |
2242 | """AddCatalog(self, String szDomain) -> bool""" | |
2243 | return _gdi_.Locale_AddCatalog(*args, **kwargs) | |
2244 | ||
2245 | def IsLoaded(*args, **kwargs): | |
2246 | """IsLoaded(self, String szDomain) -> bool""" | |
2247 | return _gdi_.Locale_IsLoaded(*args, **kwargs) | |
2248 | ||
2249 | def GetLanguageInfo(*args, **kwargs): | |
c24da6d6 | 2250 | """GetLanguageInfo(int lang) -> LanguageInfo""" |
d55e5bfc RD |
2251 | return _gdi_.Locale_GetLanguageInfo(*args, **kwargs) |
2252 | ||
2253 | GetLanguageInfo = staticmethod(GetLanguageInfo) | |
2254 | def GetLanguageName(*args, **kwargs): | |
c24da6d6 | 2255 | """GetLanguageName(int lang) -> String""" |
d55e5bfc RD |
2256 | return _gdi_.Locale_GetLanguageName(*args, **kwargs) |
2257 | ||
2258 | GetLanguageName = staticmethod(GetLanguageName) | |
2259 | def FindLanguageInfo(*args, **kwargs): | |
c24da6d6 | 2260 | """FindLanguageInfo(String locale) -> LanguageInfo""" |
d55e5bfc RD |
2261 | return _gdi_.Locale_FindLanguageInfo(*args, **kwargs) |
2262 | ||
2263 | FindLanguageInfo = staticmethod(FindLanguageInfo) | |
2264 | def AddLanguage(*args, **kwargs): | |
c24da6d6 | 2265 | """AddLanguage(LanguageInfo info)""" |
d55e5bfc RD |
2266 | return _gdi_.Locale_AddLanguage(*args, **kwargs) |
2267 | ||
2268 | AddLanguage = staticmethod(AddLanguage) | |
2269 | def GetString(*args, **kwargs): | |
2270 | """GetString(self, String szOrigString, String szDomain=EmptyString) -> String""" | |
2271 | return _gdi_.Locale_GetString(*args, **kwargs) | |
2272 | ||
2273 | def GetName(*args, **kwargs): | |
2274 | """GetName(self) -> String""" | |
2275 | return _gdi_.Locale_GetName(*args, **kwargs) | |
2276 | ||
2277 | ||
2278 | class LocalePtr(Locale): | |
2279 | def __init__(self, this): | |
2280 | self.this = this | |
2281 | if not hasattr(self,"thisown"): self.thisown = 0 | |
2282 | self.__class__ = Locale | |
2283 | _gdi_.Locale_swigregister(LocalePtr) | |
2284 | ||
2285 | def Locale_GetSystemLanguage(*args, **kwargs): | |
2286 | """Locale_GetSystemLanguage() -> int""" | |
2287 | return _gdi_.Locale_GetSystemLanguage(*args, **kwargs) | |
2288 | ||
2289 | def Locale_GetSystemEncoding(*args, **kwargs): | |
2290 | """Locale_GetSystemEncoding() -> int""" | |
2291 | return _gdi_.Locale_GetSystemEncoding(*args, **kwargs) | |
2292 | ||
2293 | def Locale_GetSystemEncodingName(*args, **kwargs): | |
2294 | """Locale_GetSystemEncodingName() -> String""" | |
2295 | return _gdi_.Locale_GetSystemEncodingName(*args, **kwargs) | |
2296 | ||
2297 | def Locale_AddCatalogLookupPathPrefix(*args, **kwargs): | |
2298 | """Locale_AddCatalogLookupPathPrefix(String prefix)""" | |
2299 | return _gdi_.Locale_AddCatalogLookupPathPrefix(*args, **kwargs) | |
2300 | ||
2301 | def Locale_GetLanguageInfo(*args, **kwargs): | |
2302 | """Locale_GetLanguageInfo(int lang) -> LanguageInfo""" | |
2303 | return _gdi_.Locale_GetLanguageInfo(*args, **kwargs) | |
2304 | ||
2305 | def Locale_GetLanguageName(*args, **kwargs): | |
2306 | """Locale_GetLanguageName(int lang) -> String""" | |
2307 | return _gdi_.Locale_GetLanguageName(*args, **kwargs) | |
2308 | ||
2309 | def Locale_FindLanguageInfo(*args, **kwargs): | |
2310 | """Locale_FindLanguageInfo(String locale) -> LanguageInfo""" | |
2311 | return _gdi_.Locale_FindLanguageInfo(*args, **kwargs) | |
2312 | ||
2313 | def Locale_AddLanguage(*args, **kwargs): | |
2314 | """Locale_AddLanguage(LanguageInfo info)""" | |
2315 | return _gdi_.Locale_AddLanguage(*args, **kwargs) | |
2316 | ||
2317 | ||
2318 | def GetLocale(*args, **kwargs): | |
2319 | """GetLocale() -> Locale""" | |
2320 | return _gdi_.GetLocale(*args, **kwargs) | |
2321 | #--------------------------------------------------------------------------- | |
2322 | ||
2323 | CONVERT_STRICT = _gdi_.CONVERT_STRICT | |
2324 | CONVERT_SUBSTITUTE = _gdi_.CONVERT_SUBSTITUTE | |
2325 | PLATFORM_CURRENT = _gdi_.PLATFORM_CURRENT | |
2326 | PLATFORM_UNIX = _gdi_.PLATFORM_UNIX | |
2327 | PLATFORM_WINDOWS = _gdi_.PLATFORM_WINDOWS | |
2328 | PLATFORM_OS2 = _gdi_.PLATFORM_OS2 | |
2329 | PLATFORM_MAC = _gdi_.PLATFORM_MAC | |
2330 | class EncodingConverter(_core.Object): | |
2331 | def __repr__(self): | |
2332 | return "<%s.%s; proxy of C++ wxEncodingConverter instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,) | |
2333 | def __init__(self, *args, **kwargs): | |
2334 | """__init__(self) -> EncodingConverter""" | |
2335 | newobj = _gdi_.new_EncodingConverter(*args, **kwargs) | |
2336 | self.this = newobj.this | |
2337 | self.thisown = 1 | |
2338 | del newobj.thisown | |
2339 | def __del__(self, destroy=_gdi_.delete_EncodingConverter): | |
2340 | """__del__(self)""" | |
2341 | try: | |
2342 | if self.thisown: destroy(self) | |
2343 | except: pass | |
2344 | ||
2345 | def Init(*args, **kwargs): | |
2346 | """Init(self, int input_enc, int output_enc, int method=CONVERT_STRICT) -> bool""" | |
2347 | return _gdi_.EncodingConverter_Init(*args, **kwargs) | |
2348 | ||
2349 | def Convert(*args, **kwargs): | |
2350 | """Convert(self, String input) -> String""" | |
2351 | return _gdi_.EncodingConverter_Convert(*args, **kwargs) | |
2352 | ||
2353 | def GetPlatformEquivalents(*args, **kwargs): | |
c24da6d6 | 2354 | """GetPlatformEquivalents(int enc, int platform=PLATFORM_CURRENT) -> wxFontEncodingArray""" |
d55e5bfc RD |
2355 | return _gdi_.EncodingConverter_GetPlatformEquivalents(*args, **kwargs) |
2356 | ||
2357 | GetPlatformEquivalents = staticmethod(GetPlatformEquivalents) | |
2358 | def GetAllEquivalents(*args, **kwargs): | |
c24da6d6 | 2359 | """GetAllEquivalents(int enc) -> wxFontEncodingArray""" |
d55e5bfc RD |
2360 | return _gdi_.EncodingConverter_GetAllEquivalents(*args, **kwargs) |
2361 | ||
2362 | GetAllEquivalents = staticmethod(GetAllEquivalents) | |
2363 | def CanConvert(*args, **kwargs): | |
c24da6d6 | 2364 | """CanConvert(int encIn, int encOut) -> bool""" |
d55e5bfc RD |
2365 | return _gdi_.EncodingConverter_CanConvert(*args, **kwargs) |
2366 | ||
2367 | CanConvert = staticmethod(CanConvert) | |
2368 | def __nonzero__(self): return self.IsOk() | |
2369 | ||
2370 | class EncodingConverterPtr(EncodingConverter): | |
2371 | def __init__(self, this): | |
2372 | self.this = this | |
2373 | if not hasattr(self,"thisown"): self.thisown = 0 | |
2374 | self.__class__ = EncodingConverter | |
2375 | _gdi_.EncodingConverter_swigregister(EncodingConverterPtr) | |
2376 | ||
2377 | def GetTranslation(*args): | |
2378 | """ | |
2379 | GetTranslation(String str) -> String | |
2380 | GetTranslation(String str, String strPlural, size_t n) -> String | |
2381 | """ | |
2382 | return _gdi_.GetTranslation(*args) | |
2383 | ||
2384 | def EncodingConverter_GetPlatformEquivalents(*args, **kwargs): | |
2385 | """EncodingConverter_GetPlatformEquivalents(int enc, int platform=PLATFORM_CURRENT) -> wxFontEncodingArray""" | |
2386 | return _gdi_.EncodingConverter_GetPlatformEquivalents(*args, **kwargs) | |
2387 | ||
2388 | def EncodingConverter_GetAllEquivalents(*args, **kwargs): | |
2389 | """EncodingConverter_GetAllEquivalents(int enc) -> wxFontEncodingArray""" | |
2390 | return _gdi_.EncodingConverter_GetAllEquivalents(*args, **kwargs) | |
2391 | ||
2392 | def EncodingConverter_CanConvert(*args, **kwargs): | |
2393 | """EncodingConverter_CanConvert(int encIn, int encOut) -> bool""" | |
2394 | return _gdi_.EncodingConverter_CanConvert(*args, **kwargs) | |
2395 | ||
2396 | #---------------------------------------------------------------------------- | |
a07a67e6 | 2397 | # On MSW add the directory where the wxWidgets catalogs were installed |
d55e5bfc RD |
2398 | # to the default catalog path. |
2399 | if wx.Platform == "__WXMSW__": | |
2400 | import os | |
2401 | localedir = os.path.join(os.path.split(__file__)[0], "locale") | |
2402 | Locale_AddCatalogLookupPathPrefix(localedir) | |
2403 | del os | |
2404 | ||
2405 | #---------------------------------------------------------------------------- | |
2406 | ||
2407 | #--------------------------------------------------------------------------- | |
2408 | ||
2409 | class DC(_core.Object): | |
2410 | def __init__(self): raise RuntimeError, "No constructor defined" | |
2411 | def __repr__(self): | |
2412 | return "<%s.%s; proxy of C++ wxDC instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,) | |
2413 | def __del__(self, destroy=_gdi_.delete_DC): | |
2414 | """__del__(self)""" | |
2415 | try: | |
2416 | if self.thisown: destroy(self) | |
2417 | except: pass | |
2418 | ||
2419 | def BeginDrawing(*args, **kwargs): | |
2420 | """BeginDrawing(self)""" | |
2421 | return _gdi_.DC_BeginDrawing(*args, **kwargs) | |
2422 | ||
2423 | def EndDrawing(*args, **kwargs): | |
2424 | """EndDrawing(self)""" | |
2425 | return _gdi_.DC_EndDrawing(*args, **kwargs) | |
2426 | ||
d55e5bfc | 2427 | def FloodFill(*args, **kwargs): |
c24da6d6 | 2428 | """FloodFill(self, int x, int y, Colour col, int style=FLOOD_SURFACE) -> bool""" |
d55e5bfc RD |
2429 | return _gdi_.DC_FloodFill(*args, **kwargs) |
2430 | ||
c24da6d6 RD |
2431 | def FloodFillPoint(*args, **kwargs): |
2432 | """FloodFillPoint(self, Point pt, Colour col, int style=FLOOD_SURFACE) -> bool""" | |
2433 | return _gdi_.DC_FloodFillPoint(*args, **kwargs) | |
d55e5bfc RD |
2434 | |
2435 | def GetPixel(*args, **kwargs): | |
c24da6d6 | 2436 | """GetPixel(self, int x, int y) -> Colour""" |
d55e5bfc RD |
2437 | return _gdi_.DC_GetPixel(*args, **kwargs) |
2438 | ||
c24da6d6 RD |
2439 | def GetPixelPoint(*args, **kwargs): |
2440 | """GetPixelPoint(self, Point pt) -> Colour""" | |
2441 | return _gdi_.DC_GetPixelPoint(*args, **kwargs) | |
d55e5bfc RD |
2442 | |
2443 | def DrawLine(*args, **kwargs): | |
c24da6d6 | 2444 | """DrawLine(self, int x1, int y1, int x2, int y2)""" |
d55e5bfc RD |
2445 | return _gdi_.DC_DrawLine(*args, **kwargs) |
2446 | ||
c24da6d6 RD |
2447 | def DrawLinePoint(*args, **kwargs): |
2448 | """DrawLinePoint(self, Point pt1, Point pt2)""" | |
2449 | return _gdi_.DC_DrawLinePoint(*args, **kwargs) | |
d55e5bfc RD |
2450 | |
2451 | def CrossHair(*args, **kwargs): | |
c24da6d6 | 2452 | """CrossHair(self, int x, int y)""" |
d55e5bfc RD |
2453 | return _gdi_.DC_CrossHair(*args, **kwargs) |
2454 | ||
c24da6d6 RD |
2455 | def CrossHairPoint(*args, **kwargs): |
2456 | """CrossHairPoint(self, Point pt)""" | |
2457 | return _gdi_.DC_CrossHairPoint(*args, **kwargs) | |
d55e5bfc RD |
2458 | |
2459 | def DrawArc(*args, **kwargs): | |
c24da6d6 | 2460 | """DrawArc(self, int x1, int y1, int x2, int y2, int xc, int yc)""" |
d55e5bfc RD |
2461 | return _gdi_.DC_DrawArc(*args, **kwargs) |
2462 | ||
c24da6d6 RD |
2463 | def DrawArcPoint(*args, **kwargs): |
2464 | """DrawArcPoint(self, Point pt1, Point pt2, Point centre)""" | |
2465 | return _gdi_.DC_DrawArcPoint(*args, **kwargs) | |
d55e5bfc RD |
2466 | |
2467 | def DrawCheckMark(*args, **kwargs): | |
c24da6d6 | 2468 | """DrawCheckMark(self, int x, int y, int width, int height)""" |
d55e5bfc RD |
2469 | return _gdi_.DC_DrawCheckMark(*args, **kwargs) |
2470 | ||
c24da6d6 RD |
2471 | def DrawCheckMarkRect(*args, **kwargs): |
2472 | """DrawCheckMarkRect(self, Rect rect)""" | |
2473 | return _gdi_.DC_DrawCheckMarkRect(*args, **kwargs) | |
d55e5bfc RD |
2474 | |
2475 | def DrawEllipticArc(*args, **kwargs): | |
c24da6d6 | 2476 | """DrawEllipticArc(self, int x, int y, int w, int h, double sa, double ea)""" |
d55e5bfc RD |
2477 | return _gdi_.DC_DrawEllipticArc(*args, **kwargs) |
2478 | ||
c24da6d6 RD |
2479 | def DrawEllipticArcPointSize(*args, **kwargs): |
2480 | """DrawEllipticArcPointSize(self, Point pt, Size sz, double sa, double ea)""" | |
2481 | return _gdi_.DC_DrawEllipticArcPointSize(*args, **kwargs) | |
d55e5bfc RD |
2482 | |
2483 | def DrawPoint(*args, **kwargs): | |
c24da6d6 | 2484 | """DrawPoint(self, int x, int y)""" |
d55e5bfc RD |
2485 | return _gdi_.DC_DrawPoint(*args, **kwargs) |
2486 | ||
c24da6d6 RD |
2487 | def DrawPointPoint(*args, **kwargs): |
2488 | """DrawPointPoint(self, Point pt)""" | |
2489 | return _gdi_.DC_DrawPointPoint(*args, **kwargs) | |
d55e5bfc RD |
2490 | |
2491 | def DrawRectangle(*args, **kwargs): | |
c24da6d6 | 2492 | """DrawRectangle(self, int x, int y, int width, int height)""" |
d55e5bfc RD |
2493 | return _gdi_.DC_DrawRectangle(*args, **kwargs) |
2494 | ||
2495 | def DrawRectangleRect(*args, **kwargs): | |
2496 | """DrawRectangleRect(self, Rect rect)""" | |
2497 | return _gdi_.DC_DrawRectangleRect(*args, **kwargs) | |
2498 | ||
c24da6d6 RD |
2499 | def DrawRectanglePointSize(*args, **kwargs): |
2500 | """DrawRectanglePointSize(self, Point pt, Size sz)""" | |
2501 | return _gdi_.DC_DrawRectanglePointSize(*args, **kwargs) | |
d55e5bfc RD |
2502 | |
2503 | def DrawRoundedRectangle(*args, **kwargs): | |
c24da6d6 | 2504 | """DrawRoundedRectangle(self, int x, int y, int width, int height, double radius)""" |
d55e5bfc RD |
2505 | return _gdi_.DC_DrawRoundedRectangle(*args, **kwargs) |
2506 | ||
2507 | def DrawRoundedRectangleRect(*args, **kwargs): | |
2508 | """DrawRoundedRectangleRect(self, Rect r, double radius)""" | |
2509 | return _gdi_.DC_DrawRoundedRectangleRect(*args, **kwargs) | |
2510 | ||
c24da6d6 RD |
2511 | def DrawRoundedRectanglePointSize(*args, **kwargs): |
2512 | """DrawRoundedRectanglePointSize(self, Point pt, Size sz, double radius)""" | |
2513 | return _gdi_.DC_DrawRoundedRectanglePointSize(*args, **kwargs) | |
d55e5bfc RD |
2514 | |
2515 | def DrawCircle(*args, **kwargs): | |
c24da6d6 | 2516 | """DrawCircle(self, int x, int y, int radius)""" |
d55e5bfc RD |
2517 | return _gdi_.DC_DrawCircle(*args, **kwargs) |
2518 | ||
c24da6d6 RD |
2519 | def DrawCirclePoint(*args, **kwargs): |
2520 | """DrawCirclePoint(self, Point pt, int radius)""" | |
2521 | return _gdi_.DC_DrawCirclePoint(*args, **kwargs) | |
d55e5bfc RD |
2522 | |
2523 | def DrawEllipse(*args, **kwargs): | |
c24da6d6 | 2524 | """DrawEllipse(self, int x, int y, int width, int height)""" |
d55e5bfc RD |
2525 | return _gdi_.DC_DrawEllipse(*args, **kwargs) |
2526 | ||
2527 | def DrawEllipseRect(*args, **kwargs): | |
2528 | """DrawEllipseRect(self, Rect rect)""" | |
2529 | return _gdi_.DC_DrawEllipseRect(*args, **kwargs) | |
2530 | ||
c24da6d6 RD |
2531 | def DrawEllipsePointSize(*args, **kwargs): |
2532 | """DrawEllipsePointSize(self, Point pt, Size sz)""" | |
2533 | return _gdi_.DC_DrawEllipsePointSize(*args, **kwargs) | |
d55e5bfc RD |
2534 | |
2535 | def DrawIcon(*args, **kwargs): | |
c24da6d6 | 2536 | """DrawIcon(self, Icon icon, int x, int y)""" |
d55e5bfc RD |
2537 | return _gdi_.DC_DrawIcon(*args, **kwargs) |
2538 | ||
c24da6d6 RD |
2539 | def DrawIconPoint(*args, **kwargs): |
2540 | """DrawIconPoint(self, Icon icon, Point pt)""" | |
2541 | return _gdi_.DC_DrawIconPoint(*args, **kwargs) | |
d55e5bfc RD |
2542 | |
2543 | def DrawBitmap(*args, **kwargs): | |
c24da6d6 | 2544 | """DrawBitmap(self, Bitmap bmp, int x, int y, bool useMask=False)""" |
d55e5bfc RD |
2545 | return _gdi_.DC_DrawBitmap(*args, **kwargs) |
2546 | ||
c24da6d6 RD |
2547 | def DrawBitmapPoint(*args, **kwargs): |
2548 | """DrawBitmapPoint(self, Bitmap bmp, Point pt, bool useMask=False)""" | |
2549 | return _gdi_.DC_DrawBitmapPoint(*args, **kwargs) | |
d55e5bfc RD |
2550 | |
2551 | def DrawText(*args, **kwargs): | |
c24da6d6 | 2552 | """DrawText(self, String text, int x, int y)""" |
d55e5bfc RD |
2553 | return _gdi_.DC_DrawText(*args, **kwargs) |
2554 | ||
c24da6d6 RD |
2555 | def DrawTextPoint(*args, **kwargs): |
2556 | """DrawTextPoint(self, String text, Point pt)""" | |
2557 | return _gdi_.DC_DrawTextPoint(*args, **kwargs) | |
d55e5bfc RD |
2558 | |
2559 | def DrawRotatedText(*args, **kwargs): | |
c24da6d6 | 2560 | """DrawRotatedText(self, String text, int x, int y, double angle)""" |
d55e5bfc RD |
2561 | return _gdi_.DC_DrawRotatedText(*args, **kwargs) |
2562 | ||
c24da6d6 RD |
2563 | def DrawRotatedTextPoint(*args, **kwargs): |
2564 | """DrawRotatedTextPoint(self, String text, Point pt, double angle)""" | |
2565 | return _gdi_.DC_DrawRotatedTextPoint(*args, **kwargs) | |
2566 | ||
2567 | def Blit(*args, **kwargs): | |
d55e5bfc | 2568 | """ |
c24da6d6 | 2569 | Blit(self, int xdest, int ydest, int width, int height, DC source, |
d55e5bfc RD |
2570 | int xsrc, int ysrc, int rop=COPY, bool useMask=False, |
2571 | int xsrcMask=-1, int ysrcMask=-1) -> bool | |
2572 | """ | |
c24da6d6 | 2573 | return _gdi_.DC_Blit(*args, **kwargs) |
d55e5bfc | 2574 | |
c24da6d6 | 2575 | def BlitPointSize(*args, **kwargs): |
d55e5bfc | 2576 | """ |
c24da6d6 | 2577 | BlitPointSize(self, Point destPt, Size sz, DC source, Point srcPt, int rop=COPY, |
d55e5bfc RD |
2578 | bool useMask=False, Point srcPtMask=DefaultPosition) -> bool |
2579 | """ | |
c24da6d6 RD |
2580 | return _gdi_.DC_BlitPointSize(*args, **kwargs) |
2581 | ||
2582 | def SetClippingRegion(*args, **kwargs): | |
2583 | """SetClippingRegion(self, int x, int y, int width, int height)""" | |
2584 | return _gdi_.DC_SetClippingRegion(*args, **kwargs) | |
2585 | ||
2586 | def SetClippingRegionPointSize(*args, **kwargs): | |
2587 | """SetClippingRegionPointSize(self, Point pt, Size sz)""" | |
2588 | return _gdi_.DC_SetClippingRegionPointSize(*args, **kwargs) | |
2589 | ||
2590 | def SetClippingRegionAsRegion(*args, **kwargs): | |
2591 | """SetClippingRegionAsRegion(self, Region region)""" | |
2592 | return _gdi_.DC_SetClippingRegionAsRegion(*args, **kwargs) | |
2593 | ||
2594 | def SetClippingRect(*args, **kwargs): | |
2595 | """SetClippingRect(self, Rect rect)""" | |
2596 | return _gdi_.DC_SetClippingRect(*args, **kwargs) | |
d55e5bfc RD |
2597 | |
2598 | def DrawLines(*args, **kwargs): | |
2599 | """DrawLines(self, int points, Point points_array, int xoffset=0, int yoffset=0)""" | |
2600 | return _gdi_.DC_DrawLines(*args, **kwargs) | |
2601 | ||
2602 | def DrawPolygon(*args, **kwargs): | |
2603 | """ | |
2604 | DrawPolygon(self, int points, Point points_array, int xoffset=0, int yoffset=0, | |
2605 | int fillStyle=ODDEVEN_RULE) | |
2606 | """ | |
2607 | return _gdi_.DC_DrawPolygon(*args, **kwargs) | |
2608 | ||
2609 | def DrawLabel(*args, **kwargs): | |
2610 | """ | |
2611 | DrawLabel(self, String text, Rect rect, int alignment=wxALIGN_LEFT|wxALIGN_TOP, | |
2612 | int indexAccel=-1) | |
2613 | """ | |
2614 | return _gdi_.DC_DrawLabel(*args, **kwargs) | |
2615 | ||
2616 | def DrawImageLabel(*args, **kwargs): | |
2617 | """ | |
2618 | DrawImageLabel(self, String text, Bitmap image, Rect rect, int alignment=wxALIGN_LEFT|wxALIGN_TOP, | |
2619 | int indexAccel=-1) -> Rect | |
2620 | """ | |
2621 | return _gdi_.DC_DrawImageLabel(*args, **kwargs) | |
2622 | ||
2623 | def DrawSpline(*args, **kwargs): | |
2624 | """DrawSpline(self, int points, Point points_array)""" | |
2625 | return _gdi_.DC_DrawSpline(*args, **kwargs) | |
2626 | ||
2627 | def Clear(*args, **kwargs): | |
2628 | """Clear(self)""" | |
2629 | return _gdi_.DC_Clear(*args, **kwargs) | |
2630 | ||
2631 | def StartDoc(*args, **kwargs): | |
2632 | """StartDoc(self, String message) -> bool""" | |
2633 | return _gdi_.DC_StartDoc(*args, **kwargs) | |
2634 | ||
2635 | def EndDoc(*args, **kwargs): | |
2636 | """EndDoc(self)""" | |
2637 | return _gdi_.DC_EndDoc(*args, **kwargs) | |
2638 | ||
2639 | def StartPage(*args, **kwargs): | |
2640 | """StartPage(self)""" | |
2641 | return _gdi_.DC_StartPage(*args, **kwargs) | |
2642 | ||
2643 | def EndPage(*args, **kwargs): | |
2644 | """EndPage(self)""" | |
2645 | return _gdi_.DC_EndPage(*args, **kwargs) | |
2646 | ||
2647 | def SetFont(*args, **kwargs): | |
2648 | """SetFont(self, Font font)""" | |
2649 | return _gdi_.DC_SetFont(*args, **kwargs) | |
2650 | ||
2651 | def SetPen(*args, **kwargs): | |
2652 | """SetPen(self, Pen pen)""" | |
2653 | return _gdi_.DC_SetPen(*args, **kwargs) | |
2654 | ||
2655 | def SetBrush(*args, **kwargs): | |
2656 | """SetBrush(self, Brush brush)""" | |
2657 | return _gdi_.DC_SetBrush(*args, **kwargs) | |
2658 | ||
2659 | def SetBackground(*args, **kwargs): | |
2660 | """SetBackground(self, Brush brush)""" | |
2661 | return _gdi_.DC_SetBackground(*args, **kwargs) | |
2662 | ||
2663 | def SetBackgroundMode(*args, **kwargs): | |
2664 | """SetBackgroundMode(self, int mode)""" | |
2665 | return _gdi_.DC_SetBackgroundMode(*args, **kwargs) | |
2666 | ||
2667 | def SetPalette(*args, **kwargs): | |
2668 | """SetPalette(self, Palette palette)""" | |
2669 | return _gdi_.DC_SetPalette(*args, **kwargs) | |
2670 | ||
d55e5bfc RD |
2671 | def DestroyClippingRegion(*args, **kwargs): |
2672 | """DestroyClippingRegion(self)""" | |
2673 | return _gdi_.DC_DestroyClippingRegion(*args, **kwargs) | |
2674 | ||
2675 | def GetClippingBox(*args, **kwargs): | |
2676 | """GetClippingBox() -> (x, y, width, height)""" | |
2677 | return _gdi_.DC_GetClippingBox(*args, **kwargs) | |
2678 | ||
2679 | def GetClippingRect(*args, **kwargs): | |
2680 | """GetClippingRect(self) -> Rect""" | |
2681 | return _gdi_.DC_GetClippingRect(*args, **kwargs) | |
2682 | ||
2683 | def GetCharHeight(*args, **kwargs): | |
2684 | """GetCharHeight(self) -> int""" | |
2685 | return _gdi_.DC_GetCharHeight(*args, **kwargs) | |
2686 | ||
2687 | def GetCharWidth(*args, **kwargs): | |
2688 | """GetCharWidth(self) -> int""" | |
2689 | return _gdi_.DC_GetCharWidth(*args, **kwargs) | |
2690 | ||
2691 | def GetTextExtent(*args, **kwargs): | |
79fccf9d | 2692 | """GetTextExtent(wxString string) -> (width, height)""" |
d55e5bfc RD |
2693 | return _gdi_.DC_GetTextExtent(*args, **kwargs) |
2694 | ||
2695 | def GetFullTextExtent(*args, **kwargs): | |
2696 | """ | |
2697 | GetFullTextExtent(wxString string, Font font=None) -> | |
2698 | (width, height, descent, externalLeading) | |
2699 | ||
79fccf9d RD |
2700 | Get the width, height, decent and leading of the text using the |
2701 | current or specified font. Only works for single line strings. | |
d55e5bfc RD |
2702 | """ |
2703 | return _gdi_.DC_GetFullTextExtent(*args, **kwargs) | |
2704 | ||
2705 | def GetMultiLineTextExtent(*args, **kwargs): | |
2706 | """ | |
2707 | GetMultiLineTextExtent(wxString string, Font font=None) -> | |
2708 | (width, height, descent, externalLeading) | |
d55e5bfc RD |
2709 | """ |
2710 | return _gdi_.DC_GetMultiLineTextExtent(*args, **kwargs) | |
2711 | ||
2712 | def GetPartialTextExtents(*args, **kwargs): | |
2713 | """GetPartialTextExtents(self, String text) -> wxArrayInt""" | |
2714 | return _gdi_.DC_GetPartialTextExtents(*args, **kwargs) | |
2715 | ||
2716 | def GetSize(*args, **kwargs): | |
2717 | """ | |
2718 | GetSize(self) -> Size | |
2719 | ||
2720 | Get the DC size in device units. | |
2721 | """ | |
2722 | return _gdi_.DC_GetSize(*args, **kwargs) | |
2723 | ||
2724 | def GetSizeTuple(*args, **kwargs): | |
2725 | """ | |
2726 | GetSizeTuple() -> (width, height) | |
2727 | ||
2728 | Get the DC size in device units. | |
2729 | """ | |
2730 | return _gdi_.DC_GetSizeTuple(*args, **kwargs) | |
2731 | ||
2732 | def GetSizeMM(*args, **kwargs): | |
2733 | """ | |
2734 | GetSizeMM(self) -> Size | |
2735 | ||
2736 | Get the DC size in milimeters. | |
2737 | """ | |
2738 | return _gdi_.DC_GetSizeMM(*args, **kwargs) | |
2739 | ||
2740 | def GetSizeMMTuple(*args, **kwargs): | |
2741 | """ | |
2742 | GetSizeMMTuple() -> (width, height) | |
2743 | ||
2744 | Get the DC size in milimeters. | |
2745 | """ | |
2746 | return _gdi_.DC_GetSizeMMTuple(*args, **kwargs) | |
2747 | ||
2748 | def DeviceToLogicalX(*args, **kwargs): | |
2749 | """DeviceToLogicalX(self, int x) -> int""" | |
2750 | return _gdi_.DC_DeviceToLogicalX(*args, **kwargs) | |
2751 | ||
2752 | def DeviceToLogicalY(*args, **kwargs): | |
2753 | """DeviceToLogicalY(self, int y) -> int""" | |
2754 | return _gdi_.DC_DeviceToLogicalY(*args, **kwargs) | |
2755 | ||
2756 | def DeviceToLogicalXRel(*args, **kwargs): | |
2757 | """DeviceToLogicalXRel(self, int x) -> int""" | |
2758 | return _gdi_.DC_DeviceToLogicalXRel(*args, **kwargs) | |
2759 | ||
2760 | def DeviceToLogicalYRel(*args, **kwargs): | |
2761 | """DeviceToLogicalYRel(self, int y) -> int""" | |
2762 | return _gdi_.DC_DeviceToLogicalYRel(*args, **kwargs) | |
2763 | ||
2764 | def LogicalToDeviceX(*args, **kwargs): | |
2765 | """LogicalToDeviceX(self, int x) -> int""" | |
2766 | return _gdi_.DC_LogicalToDeviceX(*args, **kwargs) | |
2767 | ||
2768 | def LogicalToDeviceY(*args, **kwargs): | |
2769 | """LogicalToDeviceY(self, int y) -> int""" | |
2770 | return _gdi_.DC_LogicalToDeviceY(*args, **kwargs) | |
2771 | ||
2772 | def LogicalToDeviceXRel(*args, **kwargs): | |
2773 | """LogicalToDeviceXRel(self, int x) -> int""" | |
2774 | return _gdi_.DC_LogicalToDeviceXRel(*args, **kwargs) | |
2775 | ||
2776 | def LogicalToDeviceYRel(*args, **kwargs): | |
2777 | """LogicalToDeviceYRel(self, int y) -> int""" | |
2778 | return _gdi_.DC_LogicalToDeviceYRel(*args, **kwargs) | |
2779 | ||
2780 | def CanDrawBitmap(*args, **kwargs): | |
2781 | """CanDrawBitmap(self) -> bool""" | |
2782 | return _gdi_.DC_CanDrawBitmap(*args, **kwargs) | |
2783 | ||
2784 | def CanGetTextExtent(*args, **kwargs): | |
2785 | """CanGetTextExtent(self) -> bool""" | |
2786 | return _gdi_.DC_CanGetTextExtent(*args, **kwargs) | |
2787 | ||
2788 | def GetDepth(*args, **kwargs): | |
2789 | """GetDepth(self) -> int""" | |
2790 | return _gdi_.DC_GetDepth(*args, **kwargs) | |
2791 | ||
2792 | def GetPPI(*args, **kwargs): | |
2793 | """GetPPI(self) -> Size""" | |
2794 | return _gdi_.DC_GetPPI(*args, **kwargs) | |
2795 | ||
2796 | def Ok(*args, **kwargs): | |
2797 | """Ok(self) -> bool""" | |
2798 | return _gdi_.DC_Ok(*args, **kwargs) | |
2799 | ||
2800 | def GetBackgroundMode(*args, **kwargs): | |
2801 | """GetBackgroundMode(self) -> int""" | |
2802 | return _gdi_.DC_GetBackgroundMode(*args, **kwargs) | |
2803 | ||
2804 | def GetBackground(*args, **kwargs): | |
2805 | """GetBackground(self) -> Brush""" | |
2806 | return _gdi_.DC_GetBackground(*args, **kwargs) | |
2807 | ||
2808 | def GetBrush(*args, **kwargs): | |
2809 | """GetBrush(self) -> Brush""" | |
2810 | return _gdi_.DC_GetBrush(*args, **kwargs) | |
2811 | ||
2812 | def GetFont(*args, **kwargs): | |
2813 | """GetFont(self) -> Font""" | |
2814 | return _gdi_.DC_GetFont(*args, **kwargs) | |
2815 | ||
2816 | def GetPen(*args, **kwargs): | |
2817 | """GetPen(self) -> Pen""" | |
2818 | return _gdi_.DC_GetPen(*args, **kwargs) | |
2819 | ||
2820 | def GetTextBackground(*args, **kwargs): | |
2821 | """GetTextBackground(self) -> Colour""" | |
2822 | return _gdi_.DC_GetTextBackground(*args, **kwargs) | |
2823 | ||
2824 | def GetTextForeground(*args, **kwargs): | |
2825 | """GetTextForeground(self) -> Colour""" | |
2826 | return _gdi_.DC_GetTextForeground(*args, **kwargs) | |
2827 | ||
2828 | def SetTextForeground(*args, **kwargs): | |
2829 | """SetTextForeground(self, Colour colour)""" | |
2830 | return _gdi_.DC_SetTextForeground(*args, **kwargs) | |
2831 | ||
2832 | def SetTextBackground(*args, **kwargs): | |
2833 | """SetTextBackground(self, Colour colour)""" | |
2834 | return _gdi_.DC_SetTextBackground(*args, **kwargs) | |
2835 | ||
2836 | def GetMapMode(*args, **kwargs): | |
2837 | """GetMapMode(self) -> int""" | |
2838 | return _gdi_.DC_GetMapMode(*args, **kwargs) | |
2839 | ||
2840 | def SetMapMode(*args, **kwargs): | |
2841 | """SetMapMode(self, int mode)""" | |
2842 | return _gdi_.DC_SetMapMode(*args, **kwargs) | |
2843 | ||
2844 | def GetUserScale(*args, **kwargs): | |
2845 | """GetUserScale() -> (xScale, yScale)""" | |
2846 | return _gdi_.DC_GetUserScale(*args, **kwargs) | |
2847 | ||
2848 | def SetUserScale(*args, **kwargs): | |
2849 | """SetUserScale(self, double x, double y)""" | |
2850 | return _gdi_.DC_SetUserScale(*args, **kwargs) | |
2851 | ||
2852 | def GetLogicalScale(*args, **kwargs): | |
2853 | """GetLogicalScale() -> (xScale, yScale)""" | |
2854 | return _gdi_.DC_GetLogicalScale(*args, **kwargs) | |
2855 | ||
2856 | def SetLogicalScale(*args, **kwargs): | |
2857 | """SetLogicalScale(self, double x, double y)""" | |
2858 | return _gdi_.DC_SetLogicalScale(*args, **kwargs) | |
2859 | ||
2860 | def GetLogicalOrigin(*args, **kwargs): | |
2861 | """GetLogicalOrigin(self) -> Point""" | |
2862 | return _gdi_.DC_GetLogicalOrigin(*args, **kwargs) | |
2863 | ||
2864 | def GetLogicalOriginTuple(*args, **kwargs): | |
2865 | """GetLogicalOriginTuple() -> (x,y)""" | |
2866 | return _gdi_.DC_GetLogicalOriginTuple(*args, **kwargs) | |
2867 | ||
2868 | def SetLogicalOrigin(*args, **kwargs): | |
2869 | """SetLogicalOrigin(self, int x, int y)""" | |
2870 | return _gdi_.DC_SetLogicalOrigin(*args, **kwargs) | |
2871 | ||
c24da6d6 RD |
2872 | def SetLogicalOriginPoint(*args, **kwargs): |
2873 | """SetLogicalOriginPoint(self, Point point)""" | |
2874 | return _gdi_.DC_SetLogicalOriginPoint(*args, **kwargs) | |
2875 | ||
d55e5bfc RD |
2876 | def GetDeviceOrigin(*args, **kwargs): |
2877 | """GetDeviceOrigin(self) -> Point""" | |
2878 | return _gdi_.DC_GetDeviceOrigin(*args, **kwargs) | |
2879 | ||
2880 | def GetDeviceOriginTuple(*args, **kwargs): | |
2881 | """GetDeviceOriginTuple() -> (x,y)""" | |
2882 | return _gdi_.DC_GetDeviceOriginTuple(*args, **kwargs) | |
2883 | ||
2884 | def SetDeviceOrigin(*args, **kwargs): | |
2885 | """SetDeviceOrigin(self, int x, int y)""" | |
2886 | return _gdi_.DC_SetDeviceOrigin(*args, **kwargs) | |
2887 | ||
c24da6d6 RD |
2888 | def SetDeviceOriginPoint(*args, **kwargs): |
2889 | """SetDeviceOriginPoint(self, Point point)""" | |
2890 | return _gdi_.DC_SetDeviceOriginPoint(*args, **kwargs) | |
2891 | ||
d55e5bfc RD |
2892 | def SetAxisOrientation(*args, **kwargs): |
2893 | """SetAxisOrientation(self, bool xLeftRight, bool yBottomUp)""" | |
2894 | return _gdi_.DC_SetAxisOrientation(*args, **kwargs) | |
2895 | ||
2896 | def GetLogicalFunction(*args, **kwargs): | |
2897 | """GetLogicalFunction(self) -> int""" | |
2898 | return _gdi_.DC_GetLogicalFunction(*args, **kwargs) | |
2899 | ||
2900 | def SetLogicalFunction(*args, **kwargs): | |
2901 | """SetLogicalFunction(self, int function)""" | |
2902 | return _gdi_.DC_SetLogicalFunction(*args, **kwargs) | |
2903 | ||
2904 | def SetOptimization(*args, **kwargs): | |
2905 | """SetOptimization(self, bool opt)""" | |
2906 | return _gdi_.DC_SetOptimization(*args, **kwargs) | |
2907 | ||
2908 | def GetOptimization(*args, **kwargs): | |
2909 | """GetOptimization(self) -> bool""" | |
2910 | return _gdi_.DC_GetOptimization(*args, **kwargs) | |
2911 | ||
2912 | def CalcBoundingBox(*args, **kwargs): | |
2913 | """CalcBoundingBox(self, int x, int y)""" | |
2914 | return _gdi_.DC_CalcBoundingBox(*args, **kwargs) | |
2915 | ||
c24da6d6 RD |
2916 | def CalcBoundingBoxPoint(*args, **kwargs): |
2917 | """CalcBoundingBoxPoint(self, Point point)""" | |
2918 | return _gdi_.DC_CalcBoundingBoxPoint(*args, **kwargs) | |
2919 | ||
d55e5bfc RD |
2920 | def ResetBoundingBox(*args, **kwargs): |
2921 | """ResetBoundingBox(self)""" | |
2922 | return _gdi_.DC_ResetBoundingBox(*args, **kwargs) | |
2923 | ||
2924 | def MinX(*args, **kwargs): | |
2925 | """MinX(self) -> int""" | |
2926 | return _gdi_.DC_MinX(*args, **kwargs) | |
2927 | ||
2928 | def MaxX(*args, **kwargs): | |
2929 | """MaxX(self) -> int""" | |
2930 | return _gdi_.DC_MaxX(*args, **kwargs) | |
2931 | ||
2932 | def MinY(*args, **kwargs): | |
2933 | """MinY(self) -> int""" | |
2934 | return _gdi_.DC_MinY(*args, **kwargs) | |
2935 | ||
2936 | def MaxY(*args, **kwargs): | |
2937 | """MaxY(self) -> int""" | |
2938 | return _gdi_.DC_MaxY(*args, **kwargs) | |
2939 | ||
2940 | def GetBoundingBox(*args, **kwargs): | |
2941 | """GetBoundingBox() -> (x1,y1, x2,y2)""" | |
2942 | return _gdi_.DC_GetBoundingBox(*args, **kwargs) | |
2943 | ||
2944 | def __nonzero__(self): return self.Ok() | |
2945 | def _DrawPointList(*args, **kwargs): | |
2946 | """_DrawPointList(self, PyObject pyCoords, PyObject pyPens, PyObject pyBrushes) -> PyObject""" | |
2947 | return _gdi_.DC__DrawPointList(*args, **kwargs) | |
2948 | ||
2949 | def _DrawLineList(*args, **kwargs): | |
2950 | """_DrawLineList(self, PyObject pyCoords, PyObject pyPens, PyObject pyBrushes) -> PyObject""" | |
2951 | return _gdi_.DC__DrawLineList(*args, **kwargs) | |
2952 | ||
2953 | def _DrawRectangleList(*args, **kwargs): | |
2954 | """_DrawRectangleList(self, PyObject pyCoords, PyObject pyPens, PyObject pyBrushes) -> PyObject""" | |
2955 | return _gdi_.DC__DrawRectangleList(*args, **kwargs) | |
2956 | ||
2957 | def _DrawEllipseList(*args, **kwargs): | |
2958 | """_DrawEllipseList(self, PyObject pyCoords, PyObject pyPens, PyObject pyBrushes) -> PyObject""" | |
2959 | return _gdi_.DC__DrawEllipseList(*args, **kwargs) | |
2960 | ||
2961 | def _DrawPolygonList(*args, **kwargs): | |
2962 | """_DrawPolygonList(self, PyObject pyCoords, PyObject pyPens, PyObject pyBrushes) -> PyObject""" | |
2963 | return _gdi_.DC__DrawPolygonList(*args, **kwargs) | |
2964 | ||
2965 | def _DrawTextList(*args, **kwargs): | |
2966 | """ | |
2967 | _DrawTextList(self, PyObject textList, PyObject pyPoints, PyObject foregroundList, | |
2968 | PyObject backgroundList) -> PyObject | |
2969 | """ | |
2970 | return _gdi_.DC__DrawTextList(*args, **kwargs) | |
2971 | ||
2972 | def DrawPointList(self, points, pens=None): | |
2973 | if pens is None: | |
2974 | pens = [] | |
2975 | elif isinstance(pens, wx.Pen): | |
2976 | pens = [pens] | |
2977 | elif len(pens) != len(points): | |
2978 | raise ValueError('points and pens must have same length') | |
2979 | return self._DrawPointList(points, pens, []) | |
2980 | ||
2981 | ||
2982 | def DrawLineList(self, lines, pens=None): | |
2983 | if pens is None: | |
2984 | pens = [] | |
2985 | elif isinstance(pens, wx.Pen): | |
2986 | pens = [pens] | |
2987 | elif len(pens) != len(lines): | |
2988 | raise ValueError('lines and pens must have same length') | |
2989 | return self._DrawLineList(lines, pens, []) | |
2990 | ||
2991 | ||
2992 | def DrawRectangleList(self, rectangles, pens=None, brushes=None): | |
2993 | if pens is None: | |
2994 | pens = [] | |
2995 | elif isinstance(pens, wx.Pen): | |
2996 | pens = [pens] | |
2997 | elif len(pens) != len(rectangles): | |
2998 | raise ValueError('rectangles and pens must have same length') | |
2999 | if brushes is None: | |
3000 | brushes = [] | |
3001 | elif isinstance(brushes, wx.Brush): | |
3002 | brushes = [brushes] | |
3003 | elif len(brushes) != len(rectangles): | |
3004 | raise ValueError('rectangles and brushes must have same length') | |
3005 | return self._DrawRectangleList(rectangles, pens, brushes) | |
3006 | ||
3007 | ||
3008 | def DrawEllipseList(self, ellipses, pens=None, brushes=None): | |
3009 | if pens is None: | |
3010 | pens = [] | |
3011 | elif isinstance(pens, wx.Pen): | |
3012 | pens = [pens] | |
3013 | elif len(pens) != len(ellipses): | |
3014 | raise ValueError('ellipses and pens must have same length') | |
3015 | if brushes is None: | |
3016 | brushes = [] | |
3017 | elif isinstance(brushes, wx.Brush): | |
3018 | brushes = [brushes] | |
3019 | elif len(brushes) != len(ellipses): | |
3020 | raise ValueError('ellipses and brushes must have same length') | |
3021 | return self._DrawEllipseList(ellipses, pens, brushes) | |
3022 | ||
3023 | ||
3024 | def DrawPolygonList(self, polygons, pens=None, brushes=None): | |
3025 | ## Note: This does not currently support fill style or offset | |
3026 | ## you can always use the non-List version if need be. | |
3027 | if pens is None: | |
3028 | pens = [] | |
3029 | elif isinstance(pens, wx.Pen): | |
3030 | pens = [pens] | |
3031 | elif len(pens) != len(polygons): | |
3032 | raise ValueError('polygons and pens must have same length') | |
3033 | if brushes is None: | |
3034 | brushes = [] | |
3035 | elif isinstance(brushes, wx.Brush): | |
3036 | brushes = [brushes] | |
3037 | elif len(brushes) != len(polygons): | |
3038 | raise ValueError('polygons and brushes must have same length') | |
3039 | return self._DrawPolygonList(polygons, pens, brushes) | |
3040 | ||
3041 | ||
3042 | def DrawTextList(self, textList, coords, foregrounds = None, backgrounds = None, fonts = None): | |
3043 | ## NOTE: this does not currently support changing the font | |
3044 | ## Make sure you set Background mode to wxSolid (DC.SetBackgroundMode) | |
3045 | ## If you want backgounds to do anything. | |
3046 | if type(textList) == type(''): | |
3047 | textList = [textList] | |
3048 | elif len(textList) != len(coords): | |
3049 | raise ValueError('textlist and coords must have same length') | |
3050 | if foregrounds is None: | |
3051 | foregrounds = [] | |
3052 | elif isinstance(foregrounds, wx.Colour): | |
3053 | foregrounds = [foregrounds] | |
3054 | elif len(foregrounds) != len(coords): | |
3055 | raise ValueError('foregrounds and coords must have same length') | |
3056 | if backgrounds is None: | |
3057 | backgrounds = [] | |
3058 | elif isinstance(backgrounds, wx.Colour): | |
3059 | backgrounds = [backgrounds] | |
3060 | elif len(backgrounds) != len(coords): | |
3061 | raise ValueError('backgrounds and coords must have same length') | |
3062 | return self._DrawTextList(textList, coords, foregrounds, backgrounds) | |
3063 | ||
3064 | ||
3065 | class DCPtr(DC): | |
3066 | def __init__(self, this): | |
3067 | self.this = this | |
3068 | if not hasattr(self,"thisown"): self.thisown = 0 | |
3069 | self.__class__ = DC | |
3070 | _gdi_.DC_swigregister(DCPtr) | |
3071 | ||
3072 | #--------------------------------------------------------------------------- | |
3073 | ||
3074 | class MemoryDC(DC): | |
3075 | def __repr__(self): | |
3076 | return "<%s.%s; proxy of C++ wxMemoryDC instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,) | |
3077 | def __init__(self, *args, **kwargs): | |
3078 | """__init__(self) -> MemoryDC""" | |
3079 | newobj = _gdi_.new_MemoryDC(*args, **kwargs) | |
3080 | self.this = newobj.this | |
3081 | self.thisown = 1 | |
3082 | del newobj.thisown | |
3083 | def SelectObject(*args, **kwargs): | |
3084 | """SelectObject(self, Bitmap bitmap)""" | |
3085 | return _gdi_.MemoryDC_SelectObject(*args, **kwargs) | |
3086 | ||
3087 | ||
3088 | class MemoryDCPtr(MemoryDC): | |
3089 | def __init__(self, this): | |
3090 | self.this = this | |
3091 | if not hasattr(self,"thisown"): self.thisown = 0 | |
3092 | self.__class__ = MemoryDC | |
3093 | _gdi_.MemoryDC_swigregister(MemoryDCPtr) | |
3094 | ||
3095 | def MemoryDCFromDC(*args, **kwargs): | |
3096 | """MemoryDCFromDC(DC oldDC) -> MemoryDC""" | |
3097 | val = _gdi_.new_MemoryDCFromDC(*args, **kwargs) | |
3098 | val.thisown = 1 | |
3099 | return val | |
3100 | ||
3101 | #--------------------------------------------------------------------------- | |
3102 | ||
3103 | class BufferedDC(MemoryDC): | |
3104 | def __repr__(self): | |
3105 | return "<%s.%s; proxy of C++ wxBufferedDC instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,) | |
3106 | def __init__(self, *args): | |
3107 | """ | |
3108 | __init__(self, DC dc, Bitmap buffer) -> BufferedDC | |
3109 | __init__(self, DC dc, Size area) -> BufferedDC | |
3110 | """ | |
3111 | newobj = _gdi_.new_BufferedDC(*args) | |
3112 | self.this = newobj.this | |
3113 | self.thisown = 1 | |
3114 | del newobj.thisown | |
3115 | self._dc = args[0] # save a ref so the other dc will not be deleted before self | |
3116 | ||
3117 | def __del__(self, destroy=_gdi_.delete_BufferedDC): | |
3118 | """__del__(self)""" | |
3119 | try: | |
3120 | if self.thisown: destroy(self) | |
3121 | except: pass | |
3122 | ||
3123 | def UnMask(*args, **kwargs): | |
3124 | """UnMask(self)""" | |
3125 | return _gdi_.BufferedDC_UnMask(*args, **kwargs) | |
3126 | ||
3127 | ||
3128 | class BufferedDCPtr(BufferedDC): | |
3129 | def __init__(self, this): | |
3130 | self.this = this | |
3131 | if not hasattr(self,"thisown"): self.thisown = 0 | |
3132 | self.__class__ = BufferedDC | |
3133 | _gdi_.BufferedDC_swigregister(BufferedDCPtr) | |
3134 | ||
3135 | def BufferedDCInternalBuffer(*args): | |
3136 | """BufferedDCInternalBuffer(DC dc, Size area) -> BufferedDC""" | |
3137 | val = _gdi_.new_BufferedDCInternalBuffer(*args) | |
3138 | val.thisown = 1 | |
3139 | val._dc = args[0] # save a ref so the other dc will not be deleted before self | |
3140 | return val | |
3141 | ||
3142 | class BufferedPaintDC(BufferedDC): | |
3143 | def __repr__(self): | |
3144 | return "<%s.%s; proxy of C++ wxBufferedPaintDC instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,) | |
3145 | def __init__(self, *args, **kwargs): | |
3146 | """__init__(self, Window window, Bitmap buffer=NullBitmap) -> BufferedPaintDC""" | |
3147 | newobj = _gdi_.new_BufferedPaintDC(*args, **kwargs) | |
3148 | self.this = newobj.this | |
3149 | self.thisown = 1 | |
3150 | del newobj.thisown | |
3151 | ||
3152 | class BufferedPaintDCPtr(BufferedPaintDC): | |
3153 | def __init__(self, this): | |
3154 | self.this = this | |
3155 | if not hasattr(self,"thisown"): self.thisown = 0 | |
3156 | self.__class__ = BufferedPaintDC | |
3157 | _gdi_.BufferedPaintDC_swigregister(BufferedPaintDCPtr) | |
3158 | ||
3159 | #--------------------------------------------------------------------------- | |
3160 | ||
3161 | class ScreenDC(DC): | |
3162 | def __repr__(self): | |
3163 | return "<%s.%s; proxy of C++ wxScreenDC instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,) | |
3164 | def __init__(self, *args, **kwargs): | |
3165 | """__init__(self) -> ScreenDC""" | |
3166 | newobj = _gdi_.new_ScreenDC(*args, **kwargs) | |
3167 | self.this = newobj.this | |
3168 | self.thisown = 1 | |
3169 | del newobj.thisown | |
3170 | def StartDrawingOnTopWin(*args, **kwargs): | |
3171 | """StartDrawingOnTopWin(self, Window window) -> bool""" | |
3172 | return _gdi_.ScreenDC_StartDrawingOnTopWin(*args, **kwargs) | |
3173 | ||
3174 | def StartDrawingOnTop(*args, **kwargs): | |
3175 | """StartDrawingOnTop(self, Rect rect=None) -> bool""" | |
3176 | return _gdi_.ScreenDC_StartDrawingOnTop(*args, **kwargs) | |
3177 | ||
3178 | def EndDrawingOnTop(*args, **kwargs): | |
3179 | """EndDrawingOnTop(self) -> bool""" | |
3180 | return _gdi_.ScreenDC_EndDrawingOnTop(*args, **kwargs) | |
3181 | ||
3182 | ||
3183 | class ScreenDCPtr(ScreenDC): | |
3184 | def __init__(self, this): | |
3185 | self.this = this | |
3186 | if not hasattr(self,"thisown"): self.thisown = 0 | |
3187 | self.__class__ = ScreenDC | |
3188 | _gdi_.ScreenDC_swigregister(ScreenDCPtr) | |
3189 | ||
3190 | #--------------------------------------------------------------------------- | |
3191 | ||
3192 | class ClientDC(DC): | |
3193 | def __repr__(self): | |
3194 | return "<%s.%s; proxy of C++ wxClientDC instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,) | |
3195 | def __init__(self, *args, **kwargs): | |
3196 | """__init__(self, Window win) -> ClientDC""" | |
3197 | newobj = _gdi_.new_ClientDC(*args, **kwargs) | |
3198 | self.this = newobj.this | |
3199 | self.thisown = 1 | |
3200 | del newobj.thisown | |
3201 | ||
3202 | class ClientDCPtr(ClientDC): | |
3203 | def __init__(self, this): | |
3204 | self.this = this | |
3205 | if not hasattr(self,"thisown"): self.thisown = 0 | |
3206 | self.__class__ = ClientDC | |
3207 | _gdi_.ClientDC_swigregister(ClientDCPtr) | |
3208 | ||
3209 | #--------------------------------------------------------------------------- | |
3210 | ||
3211 | class PaintDC(DC): | |
3212 | def __repr__(self): | |
3213 | return "<%s.%s; proxy of C++ wxPaintDC instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,) | |
3214 | def __init__(self, *args, **kwargs): | |
3215 | """__init__(self, Window win) -> PaintDC""" | |
3216 | newobj = _gdi_.new_PaintDC(*args, **kwargs) | |
3217 | self.this = newobj.this | |
3218 | self.thisown = 1 | |
3219 | del newobj.thisown | |
3220 | ||
3221 | class PaintDCPtr(PaintDC): | |
3222 | def __init__(self, this): | |
3223 | self.this = this | |
3224 | if not hasattr(self,"thisown"): self.thisown = 0 | |
3225 | self.__class__ = PaintDC | |
3226 | _gdi_.PaintDC_swigregister(PaintDCPtr) | |
3227 | ||
3228 | #--------------------------------------------------------------------------- | |
3229 | ||
3230 | class WindowDC(DC): | |
3231 | def __repr__(self): | |
3232 | return "<%s.%s; proxy of C++ wxWindowDC instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,) | |
3233 | def __init__(self, *args, **kwargs): | |
3234 | """__init__(self, Window win) -> WindowDC""" | |
3235 | newobj = _gdi_.new_WindowDC(*args, **kwargs) | |
3236 | self.this = newobj.this | |
3237 | self.thisown = 1 | |
3238 | del newobj.thisown | |
3239 | ||
3240 | class WindowDCPtr(WindowDC): | |
3241 | def __init__(self, this): | |
3242 | self.this = this | |
3243 | if not hasattr(self,"thisown"): self.thisown = 0 | |
3244 | self.__class__ = WindowDC | |
3245 | _gdi_.WindowDC_swigregister(WindowDCPtr) | |
3246 | ||
3247 | #--------------------------------------------------------------------------- | |
3248 | ||
3249 | class MirrorDC(DC): | |
3250 | def __repr__(self): | |
3251 | return "<%s.%s; proxy of C++ wxMirrorDC instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,) | |
3252 | def __init__(self, *args, **kwargs): | |
3253 | """__init__(self, DC dc, bool mirror) -> MirrorDC""" | |
3254 | newobj = _gdi_.new_MirrorDC(*args, **kwargs) | |
3255 | self.this = newobj.this | |
3256 | self.thisown = 1 | |
3257 | del newobj.thisown | |
3258 | ||
3259 | class MirrorDCPtr(MirrorDC): | |
3260 | def __init__(self, this): | |
3261 | self.this = this | |
3262 | if not hasattr(self,"thisown"): self.thisown = 0 | |
3263 | self.__class__ = MirrorDC | |
3264 | _gdi_.MirrorDC_swigregister(MirrorDCPtr) | |
3265 | ||
3266 | #--------------------------------------------------------------------------- | |
3267 | ||
3268 | class PostScriptDC(DC): | |
3269 | def __repr__(self): | |
3270 | return "<%s.%s; proxy of C++ wxPostScriptDC instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,) | |
3271 | def __init__(self, *args, **kwargs): | |
3272 | """__init__(self, wxPrintData printData) -> PostScriptDC""" | |
3273 | newobj = _gdi_.new_PostScriptDC(*args, **kwargs) | |
3274 | self.this = newobj.this | |
3275 | self.thisown = 1 | |
3276 | del newobj.thisown | |
3277 | def GetPrintData(*args, **kwargs): | |
3278 | """GetPrintData(self) -> wxPrintData""" | |
3279 | return _gdi_.PostScriptDC_GetPrintData(*args, **kwargs) | |
3280 | ||
3281 | def SetPrintData(*args, **kwargs): | |
3282 | """SetPrintData(self, wxPrintData data)""" | |
3283 | return _gdi_.PostScriptDC_SetPrintData(*args, **kwargs) | |
3284 | ||
3285 | def SetResolution(*args, **kwargs): | |
c24da6d6 | 3286 | """SetResolution(int ppi)""" |
d55e5bfc RD |
3287 | return _gdi_.PostScriptDC_SetResolution(*args, **kwargs) |
3288 | ||
3289 | SetResolution = staticmethod(SetResolution) | |
3290 | def GetResolution(*args, **kwargs): | |
c24da6d6 | 3291 | """GetResolution() -> int""" |
d55e5bfc RD |
3292 | return _gdi_.PostScriptDC_GetResolution(*args, **kwargs) |
3293 | ||
3294 | GetResolution = staticmethod(GetResolution) | |
3295 | ||
3296 | class PostScriptDCPtr(PostScriptDC): | |
3297 | def __init__(self, this): | |
3298 | self.this = this | |
3299 | if not hasattr(self,"thisown"): self.thisown = 0 | |
3300 | self.__class__ = PostScriptDC | |
3301 | _gdi_.PostScriptDC_swigregister(PostScriptDCPtr) | |
3302 | ||
3303 | def PostScriptDC_SetResolution(*args, **kwargs): | |
3304 | """PostScriptDC_SetResolution(int ppi)""" | |
3305 | return _gdi_.PostScriptDC_SetResolution(*args, **kwargs) | |
3306 | ||
3307 | def PostScriptDC_GetResolution(*args, **kwargs): | |
3308 | """PostScriptDC_GetResolution() -> int""" | |
3309 | return _gdi_.PostScriptDC_GetResolution(*args, **kwargs) | |
3310 | ||
3311 | #--------------------------------------------------------------------------- | |
3312 | ||
3313 | class MetaFile(_core.Object): | |
3314 | def __repr__(self): | |
3315 | return "<%s.%s; proxy of C++ wxMetaFile instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,) | |
3316 | def __init__(self, *args, **kwargs): | |
3317 | """__init__(self, String filename=EmptyString) -> MetaFile""" | |
3318 | newobj = _gdi_.new_MetaFile(*args, **kwargs) | |
3319 | self.this = newobj.this | |
3320 | self.thisown = 1 | |
3321 | del newobj.thisown | |
3322 | def __del__(self, destroy=_gdi_.delete_MetaFile): | |
3323 | """__del__(self)""" | |
3324 | try: | |
3325 | if self.thisown: destroy(self) | |
3326 | except: pass | |
3327 | ||
3328 | def Ok(*args, **kwargs): | |
3329 | """Ok(self) -> bool""" | |
3330 | return _gdi_.MetaFile_Ok(*args, **kwargs) | |
3331 | ||
3332 | def SetClipboard(*args, **kwargs): | |
3333 | """SetClipboard(self, int width=0, int height=0) -> bool""" | |
3334 | return _gdi_.MetaFile_SetClipboard(*args, **kwargs) | |
3335 | ||
3336 | def GetSize(*args, **kwargs): | |
3337 | """GetSize(self) -> Size""" | |
3338 | return _gdi_.MetaFile_GetSize(*args, **kwargs) | |
3339 | ||
3340 | def GetWidth(*args, **kwargs): | |
3341 | """GetWidth(self) -> int""" | |
3342 | return _gdi_.MetaFile_GetWidth(*args, **kwargs) | |
3343 | ||
3344 | def GetHeight(*args, **kwargs): | |
3345 | """GetHeight(self) -> int""" | |
3346 | return _gdi_.MetaFile_GetHeight(*args, **kwargs) | |
3347 | ||
3348 | def GetFileName(*args, **kwargs): | |
3349 | """GetFileName(self) -> String""" | |
3350 | return _gdi_.MetaFile_GetFileName(*args, **kwargs) | |
3351 | ||
3352 | def __nonzero__(self): return self.Ok() | |
3353 | ||
3354 | class MetaFilePtr(MetaFile): | |
3355 | def __init__(self, this): | |
3356 | self.this = this | |
3357 | if not hasattr(self,"thisown"): self.thisown = 0 | |
3358 | self.__class__ = MetaFile | |
3359 | _gdi_.MetaFile_swigregister(MetaFilePtr) | |
3360 | ||
3361 | class MetaFileDC(DC): | |
3362 | def __repr__(self): | |
3363 | return "<%s.%s; proxy of C++ wxMetaFileDC instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,) | |
3364 | def __init__(self, *args, **kwargs): | |
3365 | """ | |
3366 | __init__(self, String filename=EmptyString, int width=0, int height=0, | |
3367 | String description=EmptyString) -> MetaFileDC | |
3368 | """ | |
3369 | newobj = _gdi_.new_MetaFileDC(*args, **kwargs) | |
3370 | self.this = newobj.this | |
3371 | self.thisown = 1 | |
3372 | del newobj.thisown | |
3373 | def Close(*args, **kwargs): | |
3374 | """Close(self) -> MetaFile""" | |
3375 | return _gdi_.MetaFileDC_Close(*args, **kwargs) | |
3376 | ||
3377 | ||
3378 | class MetaFileDCPtr(MetaFileDC): | |
3379 | def __init__(self, this): | |
3380 | self.this = this | |
3381 | if not hasattr(self,"thisown"): self.thisown = 0 | |
3382 | self.__class__ = MetaFileDC | |
3383 | _gdi_.MetaFileDC_swigregister(MetaFileDCPtr) | |
3384 | ||
3385 | class PrinterDC(DC): | |
3386 | def __repr__(self): | |
3387 | return "<%s.%s; proxy of C++ wxPrinterDC instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,) | |
3388 | def __init__(self, *args, **kwargs): | |
3389 | """__init__(self, wxPrintData printData) -> PrinterDC""" | |
3390 | newobj = _gdi_.new_PrinterDC(*args, **kwargs) | |
3391 | self.this = newobj.this | |
3392 | self.thisown = 1 | |
3393 | del newobj.thisown | |
3394 | ||
3395 | class PrinterDCPtr(PrinterDC): | |
3396 | def __init__(self, this): | |
3397 | self.this = this | |
3398 | if not hasattr(self,"thisown"): self.thisown = 0 | |
3399 | self.__class__ = PrinterDC | |
3400 | _gdi_.PrinterDC_swigregister(PrinterDCPtr) | |
3401 | ||
d55e5bfc RD |
3402 | #--------------------------------------------------------------------------- |
3403 | ||
3404 | IMAGELIST_DRAW_NORMAL = _gdi_.IMAGELIST_DRAW_NORMAL | |
3405 | IMAGELIST_DRAW_TRANSPARENT = _gdi_.IMAGELIST_DRAW_TRANSPARENT | |
3406 | IMAGELIST_DRAW_SELECTED = _gdi_.IMAGELIST_DRAW_SELECTED | |
3407 | IMAGELIST_DRAW_FOCUSED = _gdi_.IMAGELIST_DRAW_FOCUSED | |
3408 | IMAGE_LIST_NORMAL = _gdi_.IMAGE_LIST_NORMAL | |
3409 | IMAGE_LIST_SMALL = _gdi_.IMAGE_LIST_SMALL | |
3410 | IMAGE_LIST_STATE = _gdi_.IMAGE_LIST_STATE | |
3411 | class ImageList(_core.Object): | |
3412 | def __repr__(self): | |
3413 | return "<%s.%s; proxy of C++ wxImageList instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,) | |
3414 | def __init__(self, *args, **kwargs): | |
3415 | """__init__(self, int width, int height, int mask=True, int initialCount=1) -> ImageList""" | |
3416 | newobj = _gdi_.new_ImageList(*args, **kwargs) | |
3417 | self.this = newobj.this | |
3418 | self.thisown = 1 | |
3419 | del newobj.thisown | |
3420 | def __del__(self, destroy=_gdi_.delete_ImageList): | |
3421 | """__del__(self)""" | |
3422 | try: | |
3423 | if self.thisown: destroy(self) | |
3424 | except: pass | |
3425 | ||
3426 | def Add(*args, **kwargs): | |
3427 | """Add(self, Bitmap bitmap, Bitmap mask=NullBitmap) -> int""" | |
3428 | return _gdi_.ImageList_Add(*args, **kwargs) | |
3429 | ||
3430 | def AddWithColourMask(*args, **kwargs): | |
3431 | """AddWithColourMask(self, Bitmap bitmap, Colour maskColour) -> int""" | |
3432 | return _gdi_.ImageList_AddWithColourMask(*args, **kwargs) | |
3433 | ||
3434 | def AddIcon(*args, **kwargs): | |
3435 | """AddIcon(self, Icon icon) -> int""" | |
3436 | return _gdi_.ImageList_AddIcon(*args, **kwargs) | |
3437 | ||
3438 | def Replace(*args, **kwargs): | |
3439 | """Replace(self, int index, Bitmap bitmap, Bitmap mask=NullBitmap) -> bool""" | |
3440 | return _gdi_.ImageList_Replace(*args, **kwargs) | |
3441 | ||
3442 | def Draw(*args, **kwargs): | |
3443 | """ | |
3444 | Draw(self, int index, DC dc, int x, int x, int flags=IMAGELIST_DRAW_NORMAL, | |
3445 | bool solidBackground=False) -> bool | |
3446 | """ | |
3447 | return _gdi_.ImageList_Draw(*args, **kwargs) | |
3448 | ||
3449 | def GetImageCount(*args, **kwargs): | |
3450 | """GetImageCount(self) -> int""" | |
3451 | return _gdi_.ImageList_GetImageCount(*args, **kwargs) | |
3452 | ||
3453 | def Remove(*args, **kwargs): | |
3454 | """Remove(self, int index) -> bool""" | |
3455 | return _gdi_.ImageList_Remove(*args, **kwargs) | |
3456 | ||
3457 | def RemoveAll(*args, **kwargs): | |
3458 | """RemoveAll(self) -> bool""" | |
3459 | return _gdi_.ImageList_RemoveAll(*args, **kwargs) | |
3460 | ||
3461 | def GetSize(*args, **kwargs): | |
3462 | """GetSize() -> (width,height)""" | |
3463 | return _gdi_.ImageList_GetSize(*args, **kwargs) | |
3464 | ||
3465 | ||
3466 | class ImageListPtr(ImageList): | |
3467 | def __init__(self, this): | |
3468 | self.this = this | |
3469 | if not hasattr(self,"thisown"): self.thisown = 0 | |
3470 | self.__class__ = ImageList | |
3471 | _gdi_.ImageList_swigregister(ImageListPtr) | |
3472 | ||
3473 | #--------------------------------------------------------------------------- | |
3474 | ||
3475 | class PenList(_core.Object): | |
3476 | def __init__(self): raise RuntimeError, "No constructor defined" | |
3477 | def __repr__(self): | |
3478 | return "<%s.%s; proxy of C++ wxPenList instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,) | |
3479 | def AddPen(*args, **kwargs): | |
3480 | """AddPen(self, Pen pen)""" | |
3481 | return _gdi_.PenList_AddPen(*args, **kwargs) | |
3482 | ||
3483 | def FindOrCreatePen(*args, **kwargs): | |
3484 | """FindOrCreatePen(self, Colour colour, int width, int style) -> Pen""" | |
3485 | return _gdi_.PenList_FindOrCreatePen(*args, **kwargs) | |
3486 | ||
3487 | def RemovePen(*args, **kwargs): | |
3488 | """RemovePen(self, Pen pen)""" | |
3489 | return _gdi_.PenList_RemovePen(*args, **kwargs) | |
3490 | ||
3491 | def GetCount(*args, **kwargs): | |
3492 | """GetCount(self) -> int""" | |
3493 | return _gdi_.PenList_GetCount(*args, **kwargs) | |
3494 | ||
3495 | ||
3496 | class PenListPtr(PenList): | |
3497 | def __init__(self, this): | |
3498 | self.this = this | |
3499 | if not hasattr(self,"thisown"): self.thisown = 0 | |
3500 | self.__class__ = PenList | |
3501 | _gdi_.PenList_swigregister(PenListPtr) | |
3502 | cvar = _gdi_.cvar | |
3503 | NORMAL_FONT = cvar.NORMAL_FONT | |
3504 | SMALL_FONT = cvar.SMALL_FONT | |
3505 | ITALIC_FONT = cvar.ITALIC_FONT | |
3506 | SWISS_FONT = cvar.SWISS_FONT | |
3507 | RED_PEN = cvar.RED_PEN | |
3508 | CYAN_PEN = cvar.CYAN_PEN | |
3509 | GREEN_PEN = cvar.GREEN_PEN | |
3510 | BLACK_PEN = cvar.BLACK_PEN | |
3511 | WHITE_PEN = cvar.WHITE_PEN | |
3512 | TRANSPARENT_PEN = cvar.TRANSPARENT_PEN | |
3513 | BLACK_DASHED_PEN = cvar.BLACK_DASHED_PEN | |
3514 | GREY_PEN = cvar.GREY_PEN | |
3515 | MEDIUM_GREY_PEN = cvar.MEDIUM_GREY_PEN | |
3516 | LIGHT_GREY_PEN = cvar.LIGHT_GREY_PEN | |
3517 | BLUE_BRUSH = cvar.BLUE_BRUSH | |
3518 | GREEN_BRUSH = cvar.GREEN_BRUSH | |
3519 | WHITE_BRUSH = cvar.WHITE_BRUSH | |
3520 | BLACK_BRUSH = cvar.BLACK_BRUSH | |
3521 | TRANSPARENT_BRUSH = cvar.TRANSPARENT_BRUSH | |
3522 | CYAN_BRUSH = cvar.CYAN_BRUSH | |
3523 | RED_BRUSH = cvar.RED_BRUSH | |
3524 | GREY_BRUSH = cvar.GREY_BRUSH | |
3525 | MEDIUM_GREY_BRUSH = cvar.MEDIUM_GREY_BRUSH | |
3526 | LIGHT_GREY_BRUSH = cvar.LIGHT_GREY_BRUSH | |
3527 | BLACK = cvar.BLACK | |
3528 | WHITE = cvar.WHITE | |
3529 | RED = cvar.RED | |
3530 | BLUE = cvar.BLUE | |
3531 | GREEN = cvar.GREEN | |
3532 | CYAN = cvar.CYAN | |
3533 | LIGHT_GREY = cvar.LIGHT_GREY | |
3534 | STANDARD_CURSOR = cvar.STANDARD_CURSOR | |
3535 | HOURGLASS_CURSOR = cvar.HOURGLASS_CURSOR | |
3536 | CROSS_CURSOR = cvar.CROSS_CURSOR | |
3537 | NullBitmap = cvar.NullBitmap | |
3538 | NullIcon = cvar.NullIcon | |
3539 | NullCursor = cvar.NullCursor | |
3540 | NullPen = cvar.NullPen | |
3541 | NullBrush = cvar.NullBrush | |
3542 | NullPalette = cvar.NullPalette | |
3543 | NullFont = cvar.NullFont | |
3544 | NullColour = cvar.NullColour | |
3545 | ||
3546 | class BrushList(_core.Object): | |
3547 | def __init__(self): raise RuntimeError, "No constructor defined" | |
3548 | def __repr__(self): | |
3549 | return "<%s.%s; proxy of C++ wxBrushList instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,) | |
3550 | def AddBrush(*args, **kwargs): | |
3551 | """AddBrush(self, Brush brush)""" | |
3552 | return _gdi_.BrushList_AddBrush(*args, **kwargs) | |
3553 | ||
3554 | def FindOrCreateBrush(*args, **kwargs): | |
3555 | """FindOrCreateBrush(self, Colour colour, int style) -> Brush""" | |
3556 | return _gdi_.BrushList_FindOrCreateBrush(*args, **kwargs) | |
3557 | ||
3558 | def RemoveBrush(*args, **kwargs): | |
3559 | """RemoveBrush(self, Brush brush)""" | |
3560 | return _gdi_.BrushList_RemoveBrush(*args, **kwargs) | |
3561 | ||
3562 | def GetCount(*args, **kwargs): | |
3563 | """GetCount(self) -> int""" | |
3564 | return _gdi_.BrushList_GetCount(*args, **kwargs) | |
3565 | ||
3566 | ||
3567 | class BrushListPtr(BrushList): | |
3568 | def __init__(self, this): | |
3569 | self.this = this | |
3570 | if not hasattr(self,"thisown"): self.thisown = 0 | |
3571 | self.__class__ = BrushList | |
3572 | _gdi_.BrushList_swigregister(BrushListPtr) | |
3573 | ||
3574 | class ColourDatabase(_core.Object): | |
3575 | def __repr__(self): | |
3576 | return "<%s.%s; proxy of C++ wxColourDatabase instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,) | |
3577 | def __init__(self, *args, **kwargs): | |
3578 | """__init__(self) -> ColourDatabase""" | |
3579 | newobj = _gdi_.new_ColourDatabase(*args, **kwargs) | |
3580 | self.this = newobj.this | |
3581 | self.thisown = 1 | |
3582 | del newobj.thisown | |
3583 | def __del__(self, destroy=_gdi_.delete_ColourDatabase): | |
3584 | """__del__(self)""" | |
3585 | try: | |
3586 | if self.thisown: destroy(self) | |
3587 | except: pass | |
3588 | ||
3589 | def Find(*args, **kwargs): | |
3590 | """Find(self, String name) -> Colour""" | |
3591 | return _gdi_.ColourDatabase_Find(*args, **kwargs) | |
3592 | ||
3593 | def FindName(*args, **kwargs): | |
3594 | """FindName(self, Colour colour) -> String""" | |
3595 | return _gdi_.ColourDatabase_FindName(*args, **kwargs) | |
3596 | ||
3597 | FindColour = Find | |
3598 | def AddColour(*args, **kwargs): | |
3599 | """AddColour(self, String name, Colour colour)""" | |
3600 | return _gdi_.ColourDatabase_AddColour(*args, **kwargs) | |
3601 | ||
3602 | def Append(*args, **kwargs): | |
3603 | """Append(self, String name, int red, int green, int blue)""" | |
3604 | return _gdi_.ColourDatabase_Append(*args, **kwargs) | |
3605 | ||
3606 | ||
3607 | class ColourDatabasePtr(ColourDatabase): | |
3608 | def __init__(self, this): | |
3609 | self.this = this | |
3610 | if not hasattr(self,"thisown"): self.thisown = 0 | |
3611 | self.__class__ = ColourDatabase | |
3612 | _gdi_.ColourDatabase_swigregister(ColourDatabasePtr) | |
3613 | ||
3614 | class FontList(_core.Object): | |
3615 | def __init__(self): raise RuntimeError, "No constructor defined" | |
3616 | def __repr__(self): | |
3617 | return "<%s.%s; proxy of C++ wxFontList instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,) | |
3618 | def AddFont(*args, **kwargs): | |
3619 | """AddFont(self, Font font)""" | |
3620 | return _gdi_.FontList_AddFont(*args, **kwargs) | |
3621 | ||
3622 | def FindOrCreateFont(*args, **kwargs): | |
3623 | """ | |
3624 | FindOrCreateFont(self, int point_size, int family, int style, int weight, | |
3625 | bool underline=False, String facename=EmptyString, | |
3626 | int encoding=FONTENCODING_DEFAULT) -> Font | |
3627 | """ | |
3628 | return _gdi_.FontList_FindOrCreateFont(*args, **kwargs) | |
3629 | ||
3630 | def RemoveFont(*args, **kwargs): | |
3631 | """RemoveFont(self, Font font)""" | |
3632 | return _gdi_.FontList_RemoveFont(*args, **kwargs) | |
3633 | ||
3634 | def GetCount(*args, **kwargs): | |
3635 | """GetCount(self) -> int""" | |
3636 | return _gdi_.FontList_GetCount(*args, **kwargs) | |
3637 | ||
3638 | ||
3639 | class FontListPtr(FontList): | |
3640 | def __init__(self, this): | |
3641 | self.this = this | |
3642 | if not hasattr(self,"thisown"): self.thisown = 0 | |
3643 | self.__class__ = FontList | |
3644 | _gdi_.FontList_swigregister(FontListPtr) | |
3645 | ||
3646 | #--------------------------------------------------------------------------- | |
3647 | ||
3648 | NullColor = NullColour | |
3649 | #--------------------------------------------------------------------------- | |
3650 | ||
3651 | class Effects(_core.Object): | |
3652 | def __repr__(self): | |
3653 | return "<%s.%s; proxy of C++ wxEffects instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,) | |
3654 | def __init__(self, *args, **kwargs): | |
3655 | """__init__(self) -> Effects""" | |
3656 | newobj = _gdi_.new_Effects(*args, **kwargs) | |
3657 | self.this = newobj.this | |
3658 | self.thisown = 1 | |
3659 | del newobj.thisown | |
3660 | def GetHighlightColour(*args, **kwargs): | |
3661 | """GetHighlightColour(self) -> Colour""" | |
3662 | return _gdi_.Effects_GetHighlightColour(*args, **kwargs) | |
3663 | ||
3664 | def GetLightShadow(*args, **kwargs): | |
3665 | """GetLightShadow(self) -> Colour""" | |
3666 | return _gdi_.Effects_GetLightShadow(*args, **kwargs) | |
3667 | ||
3668 | def GetFaceColour(*args, **kwargs): | |
3669 | """GetFaceColour(self) -> Colour""" | |
3670 | return _gdi_.Effects_GetFaceColour(*args, **kwargs) | |
3671 | ||
3672 | def GetMediumShadow(*args, **kwargs): | |
3673 | """GetMediumShadow(self) -> Colour""" | |
3674 | return _gdi_.Effects_GetMediumShadow(*args, **kwargs) | |
3675 | ||
3676 | def GetDarkShadow(*args, **kwargs): | |
3677 | """GetDarkShadow(self) -> Colour""" | |
3678 | return _gdi_.Effects_GetDarkShadow(*args, **kwargs) | |
3679 | ||
3680 | def SetHighlightColour(*args, **kwargs): | |
3681 | """SetHighlightColour(self, Colour c)""" | |
3682 | return _gdi_.Effects_SetHighlightColour(*args, **kwargs) | |
3683 | ||
3684 | def SetLightShadow(*args, **kwargs): | |
3685 | """SetLightShadow(self, Colour c)""" | |
3686 | return _gdi_.Effects_SetLightShadow(*args, **kwargs) | |
3687 | ||
3688 | def SetFaceColour(*args, **kwargs): | |
3689 | """SetFaceColour(self, Colour c)""" | |
3690 | return _gdi_.Effects_SetFaceColour(*args, **kwargs) | |
3691 | ||
3692 | def SetMediumShadow(*args, **kwargs): | |
3693 | """SetMediumShadow(self, Colour c)""" | |
3694 | return _gdi_.Effects_SetMediumShadow(*args, **kwargs) | |
3695 | ||
3696 | def SetDarkShadow(*args, **kwargs): | |
3697 | """SetDarkShadow(self, Colour c)""" | |
3698 | return _gdi_.Effects_SetDarkShadow(*args, **kwargs) | |
3699 | ||
3700 | def Set(*args, **kwargs): | |
3701 | """ | |
3702 | Set(self, Colour highlightColour, Colour lightShadow, Colour faceColour, | |
3703 | Colour mediumShadow, Colour darkShadow) | |
3704 | """ | |
3705 | return _gdi_.Effects_Set(*args, **kwargs) | |
3706 | ||
3707 | def DrawSunkenEdge(*args, **kwargs): | |
3708 | """DrawSunkenEdge(self, DC dc, Rect rect, int borderSize=1)""" | |
3709 | return _gdi_.Effects_DrawSunkenEdge(*args, **kwargs) | |
3710 | ||
3711 | def TileBitmap(*args, **kwargs): | |
3712 | """TileBitmap(self, Rect rect, DC dc, Bitmap bitmap) -> bool""" | |
3713 | return _gdi_.Effects_TileBitmap(*args, **kwargs) | |
3714 | ||
3715 | ||
3716 | class EffectsPtr(Effects): | |
3717 | def __init__(self, this): | |
3718 | self.this = this | |
3719 | if not hasattr(self,"thisown"): self.thisown = 0 | |
3720 | self.__class__ = Effects | |
3721 | _gdi_.Effects_swigregister(EffectsPtr) | |
3722 | TheFontList = cvar.TheFontList | |
3723 | ThePenList = cvar.ThePenList | |
3724 | TheBrushList = cvar.TheBrushList | |
3725 | TheColourDatabase = cvar.TheColourDatabase | |
3726 | ||
3727 |