1 # This file was created automatically by SWIG 1.3.29.
2 # Don't modify this file, modify the SWIG interface instead.
6 new_instancemethod
= new
.instancemethod
7 def _swig_setattr_nondynamic(self
,class_type
,name
,value
,static
=1):
8 if (name
== "thisown"): return self
.this
.own(value
)
10 if type(value
).__name
__ == 'PySwigObject':
11 self
.__dict
__[name
] = value
13 method
= class_type
.__swig
_setmethods
__.get(name
,None)
14 if method
: return method(self
,value
)
15 if (not static
) or hasattr(self
,name
):
16 self
.__dict
__[name
] = value
18 raise AttributeError("You cannot add attributes to %s" % self
)
20 def _swig_setattr(self
,class_type
,name
,value
):
21 return _swig_setattr_nondynamic(self
,class_type
,name
,value
,0)
23 def _swig_getattr(self
,class_type
,name
):
24 if (name
== "thisown"): return self
.this
.own()
25 method
= class_type
.__swig
_getmethods
__.get(name
,None)
26 if method
: return method(self
)
27 raise AttributeError,name
30 try: strthis
= "proxy of " + self
.this
.__repr
__()
32 return "<%s.%s; %s >" % (self
.__class
__.__module
__, self
.__class
__.__name
__, strthis
,)
36 _object
= types
.ObjectType
38 except AttributeError:
44 def _swig_setattr_nondynamic_method(set):
45 def set_attr(self
,name
,value
):
46 if (name
== "thisown"): return self
.this
.own(value
)
47 if hasattr(self
,name
) or (name
== "this"):
50 raise AttributeError("You cannot add attributes to %s" % self
)
56 #---------------------------------------------------------------------------
58 class GDIObject(_core
.Object
):
59 """Proxy of C++ GDIObject class"""
60 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
62 def __init__(self
, *args
, **kwargs
):
63 """__init__(self) -> GDIObject"""
64 _gdi_
.GDIObject_swiginit(self
,_gdi_
.new_GDIObject(*args
, **kwargs
))
65 __swig_destroy__
= _gdi_
.delete_GDIObject
66 __del__
= lambda self
: None;
67 def IsNull(*args
, **kwargs
):
68 """IsNull(self) -> bool"""
69 return _gdi_
.GDIObject_IsNull(*args
, **kwargs
)
71 _gdi_
.GDIObject_swigregister(GDIObject
)
73 #---------------------------------------------------------------------------
75 C2S_NAME
= _gdi_
.C2S_NAME
76 C2S_CSS_SYNTAX
= _gdi_
.C2S_CSS_SYNTAX
77 C2S_HTML_SYNTAX
= _gdi_
.C2S_HTML_SYNTAX
78 class Colour(_core
.Object
):
80 A colour is an object representing a combination of Red, Green, and
81 Blue (RGB) intensity values, and is used to determine drawing colours,
82 window colours, etc. Valid RGB values are in the range 0 to 255.
84 In wxPython there are typemaps that will automatically convert from a
85 colour name, from a '#RRGGBB' colour hex value string, or from a 3
86 integer tuple to a wx.Colour object when calling C++ methods that
87 expect a wxColour. This means that the following are all
90 win.SetBackgroundColour(wxColour(0,0,255))
91 win.SetBackgroundColour('BLUE')
92 win.SetBackgroundColour('#0000FF')
93 win.SetBackgroundColour((0,0,255))
95 Additional colour names and their coresponding values can be added
96 using `wx.ColourDatabase`. Various system colours (as set in the
97 user's system preferences) can be retrieved with
98 `wx.SystemSettings.GetColour`.
101 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
102 __repr__
= _swig_repr
103 def __init__(self
, *args
, **kwargs
):
105 __init__(self, byte red=0, byte green=0, byte blue=0) -> Colour
107 Constructs a colour from red, green and blue values.
109 :see: Alternate constructors `wx.NamedColour` and `wx.ColourRGB`.
112 _gdi_
.Colour_swiginit(self
,_gdi_
.new_Colour(*args
, **kwargs
))
113 __swig_destroy__
= _gdi_
.delete_Colour
114 __del__
= lambda self
: None;
115 def Red(*args
, **kwargs
):
119 Returns the red intensity.
121 return _gdi_
.Colour_Red(*args
, **kwargs
)
123 def Green(*args
, **kwargs
):
127 Returns the green intensity.
129 return _gdi_
.Colour_Green(*args
, **kwargs
)
131 def Blue(*args
, **kwargs
):
135 Returns the blue intensity.
137 return _gdi_
.Colour_Blue(*args
, **kwargs
)
139 def Ok(*args
, **kwargs
):
143 Returns True if the colour object is valid (the colour has been
144 initialised with RGB values).
146 return _gdi_
.Colour_Ok(*args
, **kwargs
)
148 def Set(*args
, **kwargs
):
150 Set(self, byte red, byte green, byte blue)
152 Sets the RGB intensity values.
154 return _gdi_
.Colour_Set(*args
, **kwargs
)
156 def SetRGB(*args
, **kwargs
):
158 SetRGB(self, unsigned long colRGB)
160 Sets the RGB intensity values from a packed RGB value.
162 return _gdi_
.Colour_SetRGB(*args
, **kwargs
)
164 def SetFromName(*args
, **kwargs
):
166 SetFromName(self, String colourName)
168 Sets the RGB intensity values using a colour name listed in
169 ``wx.TheColourDatabase``.
171 return _gdi_
.Colour_SetFromName(*args
, **kwargs
)
173 def GetAsString(*args
, **kwargs
):
175 GetAsString(self, long flags=wxC2S_NAME|wxC2S_CSS_SYNTAX) -> String
177 Return the colour as a string. Acceptable flags are:
179 =================== ==================================
180 wx.C2S_NAME return colour name, when possible
181 wx.C2S_CSS_SYNTAX return colour in rgb(r,g,b) syntax
182 wx.C2S_HTML_SYNTAX return colour in #rrggbb syntax
183 =================== ==================================
185 return _gdi_
.Colour_GetAsString(*args
, **kwargs
)
187 def GetPixel(*args
, **kwargs
):
189 GetPixel(self) -> long
191 Returns a pixel value which is platform-dependent. On Windows, a
192 COLORREF is returned. On X, an allocated pixel value is returned. -1
193 is returned if the pixel is invalid (on X, unallocated).
195 return _gdi_
.Colour_GetPixel(*args
, **kwargs
)
197 def __eq__(*args
, **kwargs
):
199 __eq__(self, PyObject other) -> bool
201 Compare colours for equality.
203 return _gdi_
.Colour___eq__(*args
, **kwargs
)
205 def __ne__(*args
, **kwargs
):
207 __ne__(self, PyObject other) -> bool
209 Compare colours for inequality.
211 return _gdi_
.Colour___ne__(*args
, **kwargs
)
213 def Get(*args
, **kwargs
):
217 Returns the RGB intensity values as a tuple.
219 return _gdi_
.Colour_Get(*args
, **kwargs
)
221 def GetRGB(*args
, **kwargs
):
223 GetRGB(self) -> unsigned long
225 Return the colour as a packed RGB value
227 return _gdi_
.Colour_GetRGB(*args
, **kwargs
)
229 asTuple
= wx
._deprecated
(Get
, "asTuple is deprecated, use `Get` instead")
230 def __str__(self
): return str(self
.Get())
231 def __repr__(self
): return 'wx.Colour' + str(self
.Get())
232 def __nonzero__(self
): return self
.Ok()
233 __safe_for_unpickling__
= True
234 def __reduce__(self
): return (Colour
, self
.Get())
236 _gdi_
.Colour_swigregister(Colour
)
238 def NamedColour(*args
, **kwargs
):
240 NamedColour(String colorName) -> Colour
242 Constructs a colour object using a colour name listed in
243 ``wx.TheColourDatabase``.
245 val
= _gdi_
.new_NamedColour(*args
, **kwargs
)
248 def ColourRGB(*args
, **kwargs
):
250 ColourRGB(unsigned long colRGB) -> Colour
252 Constructs a colour from a packed RGB value.
254 val
= _gdi_
.new_ColourRGB(*args
, **kwargs
)
258 NamedColor
= NamedColour
261 class Palette(GDIObject
):
262 """Proxy of C++ Palette class"""
263 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
264 __repr__
= _swig_repr
265 def __init__(self
, *args
, **kwargs
):
266 """__init__(self, int n, unsigned char red, unsigned char green, unsigned char blue) -> Palette"""
267 _gdi_
.Palette_swiginit(self
,_gdi_
.new_Palette(*args
, **kwargs
))
268 __swig_destroy__
= _gdi_
.delete_Palette
269 __del__
= lambda self
: None;
270 def GetPixel(*args
, **kwargs
):
271 """GetPixel(self, byte red, byte green, byte blue) -> int"""
272 return _gdi_
.Palette_GetPixel(*args
, **kwargs
)
274 def GetRGB(*args
, **kwargs
):
275 """GetRGB(self, int pixel) -> (R,G,B)"""
276 return _gdi_
.Palette_GetRGB(*args
, **kwargs
)
278 def GetColoursCount(*args
, **kwargs
):
279 """GetColoursCount(self) -> int"""
280 return _gdi_
.Palette_GetColoursCount(*args
, **kwargs
)
282 def Ok(*args
, **kwargs
):
283 """Ok(self) -> bool"""
284 return _gdi_
.Palette_Ok(*args
, **kwargs
)
286 def __nonzero__(self
): return self
.Ok()
287 _gdi_
.Palette_swigregister(Palette
)
289 #---------------------------------------------------------------------------
291 class Pen(GDIObject
):
292 """Proxy of C++ Pen class"""
293 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
294 __repr__
= _swig_repr
295 def __init__(self
, *args
, **kwargs
):
296 """__init__(self, Colour colour, int width=1, int style=SOLID) -> Pen"""
297 _gdi_
.Pen_swiginit(self
,_gdi_
.new_Pen(*args
, **kwargs
))
298 __swig_destroy__
= _gdi_
.delete_Pen
299 __del__
= lambda self
: None;
300 def GetCap(*args
, **kwargs
):
301 """GetCap(self) -> int"""
302 return _gdi_
.Pen_GetCap(*args
, **kwargs
)
304 def GetColour(*args
, **kwargs
):
305 """GetColour(self) -> Colour"""
306 return _gdi_
.Pen_GetColour(*args
, **kwargs
)
308 def GetJoin(*args
, **kwargs
):
309 """GetJoin(self) -> int"""
310 return _gdi_
.Pen_GetJoin(*args
, **kwargs
)
312 def GetStyle(*args
, **kwargs
):
313 """GetStyle(self) -> int"""
314 return _gdi_
.Pen_GetStyle(*args
, **kwargs
)
316 def GetWidth(*args
, **kwargs
):
317 """GetWidth(self) -> int"""
318 return _gdi_
.Pen_GetWidth(*args
, **kwargs
)
320 def Ok(*args
, **kwargs
):
321 """Ok(self) -> bool"""
322 return _gdi_
.Pen_Ok(*args
, **kwargs
)
324 def SetCap(*args
, **kwargs
):
325 """SetCap(self, int cap_style)"""
326 return _gdi_
.Pen_SetCap(*args
, **kwargs
)
328 def SetColour(*args
, **kwargs
):
329 """SetColour(self, Colour colour)"""
330 return _gdi_
.Pen_SetColour(*args
, **kwargs
)
332 def SetJoin(*args
, **kwargs
):
333 """SetJoin(self, int join_style)"""
334 return _gdi_
.Pen_SetJoin(*args
, **kwargs
)
336 def SetStyle(*args
, **kwargs
):
337 """SetStyle(self, int style)"""
338 return _gdi_
.Pen_SetStyle(*args
, **kwargs
)
340 def SetWidth(*args
, **kwargs
):
341 """SetWidth(self, int width)"""
342 return _gdi_
.Pen_SetWidth(*args
, **kwargs
)
344 def SetDashes(*args
, **kwargs
):
345 """SetDashes(self, int dashes)"""
346 return _gdi_
.Pen_SetDashes(*args
, **kwargs
)
348 def GetDashes(*args
, **kwargs
):
349 """GetDashes(self) -> PyObject"""
350 return _gdi_
.Pen_GetDashes(*args
, **kwargs
)
352 def _SetDashes(*args
, **kwargs
):
353 """_SetDashes(self, PyObject _self, PyObject pyDashes)"""
354 return _gdi_
.Pen__SetDashes(*args
, **kwargs
)
356 def SetDashes(self
, dashes
):
358 Associate a list of dash lengths with the Pen.
360 self
._SetDashes
(self
, dashes
)
362 def GetDashCount(*args
, **kwargs
):
363 """GetDashCount(self) -> int"""
364 return _gdi_
.Pen_GetDashCount(*args
, **kwargs
)
366 def __eq__(*args
, **kwargs
):
367 """__eq__(self, Pen other) -> bool"""
368 return _gdi_
.Pen___eq__(*args
, **kwargs
)
370 def __ne__(*args
, **kwargs
):
371 """__ne__(self, Pen other) -> bool"""
372 return _gdi_
.Pen___ne__(*args
, **kwargs
)
374 def __nonzero__(self
): return self
.Ok()
375 _gdi_
.Pen_swigregister(Pen
)
377 #---------------------------------------------------------------------------
379 class Brush(GDIObject
):
381 A brush is a drawing tool for filling in areas. It is used for
382 painting the background of rectangles, ellipses, etc. when drawing on
383 a `wx.DC`. It has a colour and a style.
385 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
386 __repr__
= _swig_repr
387 def __init__(self
, *args
, **kwargs
):
389 __init__(self, Colour colour, int style=SOLID) -> Brush
391 Constructs a brush from a `wx.Colour` object and a style.
393 _gdi_
.Brush_swiginit(self
,_gdi_
.new_Brush(*args
, **kwargs
))
394 __swig_destroy__
= _gdi_
.delete_Brush
395 __del__
= lambda self
: None;
396 def SetColour(*args
, **kwargs
):
398 SetColour(self, Colour col)
400 Set the brush's `wx.Colour`.
402 return _gdi_
.Brush_SetColour(*args
, **kwargs
)
404 def SetStyle(*args
, **kwargs
):
406 SetStyle(self, int style)
408 Sets the style of the brush. See `__init__` for a listing of styles.
410 return _gdi_
.Brush_SetStyle(*args
, **kwargs
)
412 def SetStipple(*args
, **kwargs
):
414 SetStipple(self, Bitmap stipple)
416 Sets the stipple `wx.Bitmap`.
418 return _gdi_
.Brush_SetStipple(*args
, **kwargs
)
420 def GetColour(*args
, **kwargs
):
422 GetColour(self) -> Colour
424 Returns the `wx.Colour` of the brush.
426 return _gdi_
.Brush_GetColour(*args
, **kwargs
)
428 def GetStyle(*args
, **kwargs
):
430 GetStyle(self) -> int
432 Returns the style of the brush. See `__init__` for a listing of
435 return _gdi_
.Brush_GetStyle(*args
, **kwargs
)
437 def GetStipple(*args
, **kwargs
):
439 GetStipple(self) -> Bitmap
441 Returns the stiple `wx.Bitmap` of the brush. If the brush does not
442 have a wx.STIPPLE style, then the return value may be non-None but an
443 uninitialised bitmap (`wx.Bitmap.Ok` returns False).
445 return _gdi_
.Brush_GetStipple(*args
, **kwargs
)
447 def IsHatch(*args
, **kwargs
):
449 IsHatch(self) -> bool
451 Is the current style a hatch type?
453 return _gdi_
.Brush_IsHatch(*args
, **kwargs
)
455 def Ok(*args
, **kwargs
):
459 Returns True if the brush is initialised and valid.
461 return _gdi_
.Brush_Ok(*args
, **kwargs
)
463 def __nonzero__(self
): return self
.Ok()
464 _gdi_
.Brush_swigregister(Brush
)
466 def BrushFromBitmap(*args
, **kwargs
):
468 BrushFromBitmap(Bitmap stippleBitmap) -> Brush
470 Constructs a stippled brush using a bitmap.
472 val
= _gdi_
.new_BrushFromBitmap(*args
, **kwargs
)
475 class Bitmap(GDIObject
):
477 The wx.Bitmap class encapsulates the concept of a platform-dependent
478 bitmap. It can be either monochrome or colour, and either loaded from
479 a file or created dynamically. A bitmap can be selected into a memory
480 device context (instance of `wx.MemoryDC`). This enables the bitmap to
481 be copied to a window or memory device context using `wx.DC.Blit`, or
482 to be used as a drawing surface.
484 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
485 __repr__
= _swig_repr
486 def __init__(self
, *args
, **kwargs
):
488 __init__(self, String name, int type=BITMAP_TYPE_ANY) -> Bitmap
490 Loads a bitmap from a file.
492 _gdi_
.Bitmap_swiginit(self
,_gdi_
.new_Bitmap(*args
, **kwargs
))
493 __swig_destroy__
= _gdi_
.delete_Bitmap
494 __del__
= lambda self
: None;
495 def Ok(*args
, **kwargs
):
496 """Ok(self) -> bool"""
497 return _gdi_
.Bitmap_Ok(*args
, **kwargs
)
499 def GetWidth(*args
, **kwargs
):
501 GetWidth(self) -> int
503 Gets the width of the bitmap in pixels.
505 return _gdi_
.Bitmap_GetWidth(*args
, **kwargs
)
507 def GetHeight(*args
, **kwargs
):
509 GetHeight(self) -> int
511 Gets the height of the bitmap in pixels.
513 return _gdi_
.Bitmap_GetHeight(*args
, **kwargs
)
515 def GetDepth(*args
, **kwargs
):
517 GetDepth(self) -> int
519 Gets the colour depth of the bitmap. A value of 1 indicates a
522 return _gdi_
.Bitmap_GetDepth(*args
, **kwargs
)
524 def GetSize(*args
, **kwargs
):
526 GetSize(self) -> Size
528 Get the size of the bitmap.
530 return _gdi_
.Bitmap_GetSize(*args
, **kwargs
)
532 def ConvertToImage(*args
, **kwargs
):
534 ConvertToImage(self) -> Image
536 Creates a platform-independent image from a platform-dependent
537 bitmap. This preserves mask information so that bitmaps and images can
538 be converted back and forth without loss in that respect.
540 return _gdi_
.Bitmap_ConvertToImage(*args
, **kwargs
)
542 def GetMask(*args
, **kwargs
):
544 GetMask(self) -> Mask
546 Gets the associated mask (if any) which may have been loaded from a
547 file or explpicitly set for the bitmap.
549 :see: `SetMask`, `wx.Mask`
552 return _gdi_
.Bitmap_GetMask(*args
, **kwargs
)
554 def SetMask(*args
, **kwargs
):
556 SetMask(self, Mask mask)
558 Sets the mask for this bitmap.
560 :see: `GetMask`, `wx.Mask`
563 return _gdi_
.Bitmap_SetMask(*args
, **kwargs
)
565 def SetMaskColour(*args
, **kwargs
):
567 SetMaskColour(self, Colour colour)
569 Create a Mask based on a specified colour in the Bitmap.
571 return _gdi_
.Bitmap_SetMaskColour(*args
, **kwargs
)
573 def GetSubBitmap(*args
, **kwargs
):
575 GetSubBitmap(self, Rect rect) -> Bitmap
577 Returns a sub-bitmap of the current one as long as the rect belongs
578 entirely to the bitmap. This function preserves bit depth and mask
581 return _gdi_
.Bitmap_GetSubBitmap(*args
, **kwargs
)
583 def SaveFile(*args
, **kwargs
):
585 SaveFile(self, String name, int type, Palette palette=None) -> bool
587 Saves a bitmap in the named file. See `__init__` for a description of
588 the ``type`` parameter.
590 return _gdi_
.Bitmap_SaveFile(*args
, **kwargs
)
592 def LoadFile(*args
, **kwargs
):
594 LoadFile(self, String name, int type) -> bool
596 Loads a bitmap from a file. See `__init__` for a description of the
599 return _gdi_
.Bitmap_LoadFile(*args
, **kwargs
)
601 def GetPalette(*args
, **kwargs
):
602 """GetPalette(self) -> Palette"""
603 return _gdi_
.Bitmap_GetPalette(*args
, **kwargs
)
605 def CopyFromIcon(*args
, **kwargs
):
606 """CopyFromIcon(self, Icon icon) -> bool"""
607 return _gdi_
.Bitmap_CopyFromIcon(*args
, **kwargs
)
609 def SetHeight(*args
, **kwargs
):
611 SetHeight(self, int height)
613 Set the height property (does not affect the existing bitmap data).
615 return _gdi_
.Bitmap_SetHeight(*args
, **kwargs
)
617 def SetWidth(*args
, **kwargs
):
619 SetWidth(self, int width)
621 Set the width property (does not affect the existing bitmap data).
623 return _gdi_
.Bitmap_SetWidth(*args
, **kwargs
)
625 def SetDepth(*args
, **kwargs
):
627 SetDepth(self, int depth)
629 Set the depth property (does not affect the existing bitmap data).
631 return _gdi_
.Bitmap_SetDepth(*args
, **kwargs
)
633 def SetSize(*args
, **kwargs
):
635 SetSize(self, Size size)
637 Set the bitmap size (does not affect the existing bitmap data).
639 return _gdi_
.Bitmap_SetSize(*args
, **kwargs
)
641 def __nonzero__(self
): return self
.Ok()
642 def __eq__(*args
, **kwargs
):
643 """__eq__(self, Bitmap other) -> bool"""
644 return _gdi_
.Bitmap___eq__(*args
, **kwargs
)
646 def __ne__(*args
, **kwargs
):
647 """__ne__(self, Bitmap other) -> bool"""
648 return _gdi_
.Bitmap___ne__(*args
, **kwargs
)
650 _gdi_
.Bitmap_swigregister(Bitmap
)
652 def EmptyBitmap(*args
, **kwargs
):
654 EmptyBitmap(int width, int height, int depth=-1) -> Bitmap
656 Creates a new bitmap of the given size. A depth of -1 indicates the
657 depth of the current screen or visual. Some platforms only support 1
658 for monochrome and -1 for the current display depth.
660 val
= _gdi_
.new_EmptyBitmap(*args
, **kwargs
)
663 def BitmapFromIcon(*args
, **kwargs
):
665 BitmapFromIcon(Icon icon) -> Bitmap
667 Create a new bitmap from a `wx.Icon` object.
669 val
= _gdi_
.new_BitmapFromIcon(*args
, **kwargs
)
672 def BitmapFromImage(*args
, **kwargs
):
674 BitmapFromImage(Image image, int depth=-1) -> Bitmap
676 Creates bitmap object from a `wx.Image`. This has to be done to
677 actually display a `wx.Image` as you cannot draw an image directly on
678 a window. The resulting bitmap will use the provided colour depth (or
679 that of the current screen colour depth if depth is -1) which entails
680 that a colour reduction may have to take place.
682 val
= _gdi_
.new_BitmapFromImage(*args
, **kwargs
)
685 def BitmapFromXPMData(*args
, **kwargs
):
687 BitmapFromXPMData(PyObject listOfStrings) -> Bitmap
689 Construct a Bitmap from a list of strings formatted as XPM data.
691 val
= _gdi_
.new_BitmapFromXPMData(*args
, **kwargs
)
694 def BitmapFromBits(*args
, **kwargs
):
696 BitmapFromBits(PyObject bits, int width, int height, int depth=1) -> Bitmap
698 Creates a bitmap from an array of bits. You should only use this
699 function for monochrome bitmaps (depth 1) in portable programs: in
700 this case the bits parameter should contain an XBM image. For other
701 bit depths, the behaviour is platform dependent.
703 val
= _gdi_
.new_BitmapFromBits(*args
, **kwargs
)
706 class Mask(_core
.Object
):
708 This class encapsulates a monochrome mask bitmap, where the masked
709 area is black and the unmasked area is white. When associated with a
710 bitmap and drawn in a device context, the unmasked area of the bitmap
711 will be drawn, and the masked area will not be drawn.
713 A mask may be associated with a `wx.Bitmap`. It is used in
714 `wx.DC.DrawBitmap` or `wx.DC.Blit` when the source device context is a
715 `wx.MemoryDC` with a `wx.Bitmap` selected into it that contains a
718 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
719 __repr__
= _swig_repr
720 def __init__(self
, *args
, **kwargs
):
722 __init__(self, Bitmap bitmap, Colour colour=NullColour) -> Mask
724 Constructs a mask from a `wx.Bitmap` and a `wx.Colour` in that bitmap
725 that indicates the transparent portions of the mask. In other words,
726 the pixels in ``bitmap`` that match ``colour`` will be the transparent
727 portions of the mask. If no ``colour`` or an invalid ``colour`` is
728 passed then BLACK is used.
730 :see: `wx.Bitmap`, `wx.Colour`
732 _gdi_
.Mask_swiginit(self
,_gdi_
.new_Mask(*args
, **kwargs
))
733 __swig_destroy__
= _gdi_
.delete_Mask
734 __del__
= lambda self
: None;
735 _gdi_
.Mask_swigregister(Mask
)
737 MaskColour
= wx
._deprecated
(Mask
, "wx.MaskColour is deprecated, use `wx.Mask` instead.")
738 class Icon(GDIObject
):
739 """Proxy of C++ Icon class"""
740 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
741 __repr__
= _swig_repr
742 def __init__(self
, *args
, **kwargs
):
743 """__init__(self, String name, int type, int desiredWidth=-1, int desiredHeight=-1) -> Icon"""
744 _gdi_
.Icon_swiginit(self
,_gdi_
.new_Icon(*args
, **kwargs
))
745 __swig_destroy__
= _gdi_
.delete_Icon
746 __del__
= lambda self
: None;
747 def LoadFile(*args
, **kwargs
):
748 """LoadFile(self, String name, int type) -> bool"""
749 return _gdi_
.Icon_LoadFile(*args
, **kwargs
)
751 def Ok(*args
, **kwargs
):
752 """Ok(self) -> bool"""
753 return _gdi_
.Icon_Ok(*args
, **kwargs
)
755 def GetWidth(*args
, **kwargs
):
756 """GetWidth(self) -> int"""
757 return _gdi_
.Icon_GetWidth(*args
, **kwargs
)
759 def GetHeight(*args
, **kwargs
):
760 """GetHeight(self) -> int"""
761 return _gdi_
.Icon_GetHeight(*args
, **kwargs
)
763 def GetDepth(*args
, **kwargs
):
764 """GetDepth(self) -> int"""
765 return _gdi_
.Icon_GetDepth(*args
, **kwargs
)
767 def SetWidth(*args
, **kwargs
):
768 """SetWidth(self, int w)"""
769 return _gdi_
.Icon_SetWidth(*args
, **kwargs
)
771 def SetHeight(*args
, **kwargs
):
772 """SetHeight(self, int h)"""
773 return _gdi_
.Icon_SetHeight(*args
, **kwargs
)
775 def SetDepth(*args
, **kwargs
):
776 """SetDepth(self, int d)"""
777 return _gdi_
.Icon_SetDepth(*args
, **kwargs
)
779 def CopyFromBitmap(*args
, **kwargs
):
780 """CopyFromBitmap(self, Bitmap bmp)"""
781 return _gdi_
.Icon_CopyFromBitmap(*args
, **kwargs
)
783 def __nonzero__(self
): return self
.Ok()
784 _gdi_
.Icon_swigregister(Icon
)
786 def EmptyIcon(*args
, **kwargs
):
787 """EmptyIcon() -> Icon"""
788 val
= _gdi_
.new_EmptyIcon(*args
, **kwargs
)
791 def IconFromLocation(*args
, **kwargs
):
792 """IconFromLocation(IconLocation loc) -> Icon"""
793 val
= _gdi_
.new_IconFromLocation(*args
, **kwargs
)
796 def IconFromBitmap(*args
, **kwargs
):
797 """IconFromBitmap(Bitmap bmp) -> Icon"""
798 val
= _gdi_
.new_IconFromBitmap(*args
, **kwargs
)
801 def IconFromXPMData(*args
, **kwargs
):
802 """IconFromXPMData(PyObject listOfStrings) -> Icon"""
803 val
= _gdi_
.new_IconFromXPMData(*args
, **kwargs
)
806 class IconLocation(object):
807 """Proxy of C++ IconLocation class"""
808 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
809 __repr__
= _swig_repr
810 def __init__(self
, *args
, **kwargs
):
811 """__init__(self, String filename=&wxPyEmptyString, int num=0) -> IconLocation"""
812 _gdi_
.IconLocation_swiginit(self
,_gdi_
.new_IconLocation(*args
, **kwargs
))
813 __swig_destroy__
= _gdi_
.delete_IconLocation
814 __del__
= lambda self
: None;
815 def IsOk(*args
, **kwargs
):
816 """IsOk(self) -> bool"""
817 return _gdi_
.IconLocation_IsOk(*args
, **kwargs
)
819 def __nonzero__(self
): return self
.Ok()
820 def SetFileName(*args
, **kwargs
):
821 """SetFileName(self, String filename)"""
822 return _gdi_
.IconLocation_SetFileName(*args
, **kwargs
)
824 def GetFileName(*args
, **kwargs
):
825 """GetFileName(self) -> String"""
826 return _gdi_
.IconLocation_GetFileName(*args
, **kwargs
)
828 def SetIndex(*args
, **kwargs
):
829 """SetIndex(self, int num)"""
830 return _gdi_
.IconLocation_SetIndex(*args
, **kwargs
)
832 def GetIndex(*args
, **kwargs
):
833 """GetIndex(self) -> int"""
834 return _gdi_
.IconLocation_GetIndex(*args
, **kwargs
)
836 _gdi_
.IconLocation_swigregister(IconLocation
)
838 class IconBundle(object):
839 """Proxy of C++ IconBundle class"""
840 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
841 __repr__
= _swig_repr
842 def __init__(self
, *args
, **kwargs
):
843 """__init__(self) -> IconBundle"""
844 _gdi_
.IconBundle_swiginit(self
,_gdi_
.new_IconBundle(*args
, **kwargs
))
845 __swig_destroy__
= _gdi_
.delete_IconBundle
846 __del__
= lambda self
: None;
847 def AddIcon(*args
, **kwargs
):
848 """AddIcon(self, Icon icon)"""
849 return _gdi_
.IconBundle_AddIcon(*args
, **kwargs
)
851 def AddIconFromFile(*args
, **kwargs
):
852 """AddIconFromFile(self, String file, long type)"""
853 return _gdi_
.IconBundle_AddIconFromFile(*args
, **kwargs
)
855 def GetIcon(*args
, **kwargs
):
856 """GetIcon(self, Size size) -> Icon"""
857 return _gdi_
.IconBundle_GetIcon(*args
, **kwargs
)
859 _gdi_
.IconBundle_swigregister(IconBundle
)
861 def IconBundleFromFile(*args
, **kwargs
):
862 """IconBundleFromFile(String file, long type) -> IconBundle"""
863 val
= _gdi_
.new_IconBundleFromFile(*args
, **kwargs
)
866 def IconBundleFromIcon(*args
, **kwargs
):
867 """IconBundleFromIcon(Icon icon) -> IconBundle"""
868 val
= _gdi_
.new_IconBundleFromIcon(*args
, **kwargs
)
871 class Cursor(GDIObject
):
873 A cursor is a small bitmap usually used for denoting where the mouse
874 pointer is, with a picture that might indicate the interpretation of a
877 A single cursor object may be used in many windows (any subwindow
878 type). The wxWindows convention is to set the cursor for a window, as
879 in X, rather than to set it globally as in MS Windows, although a
880 global `wx.SetCursor` function is also available for use on MS Windows.
883 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
884 __repr__
= _swig_repr
885 def __init__(self
, *args
, **kwargs
):
887 __init__(self, String cursorName, long type, int hotSpotX=0, int hotSpotY=0) -> Cursor
889 Construct a Cursor from a file. Specify the type of file using
890 wx.BITAMP_TYPE* constants, and specify the hotspot if not using a .cur
893 _gdi_
.Cursor_swiginit(self
,_gdi_
.new_Cursor(*args
, **kwargs
))
894 __swig_destroy__
= _gdi_
.delete_Cursor
895 __del__
= lambda self
: None;
896 def Ok(*args
, **kwargs
):
897 """Ok(self) -> bool"""
898 return _gdi_
.Cursor_Ok(*args
, **kwargs
)
900 def __nonzero__(self
): return self
.Ok()
901 _gdi_
.Cursor_swigregister(Cursor
)
903 def StockCursor(*args
, **kwargs
):
905 StockCursor(int id) -> Cursor
907 Create a cursor using one of the stock cursors. Note that not all
908 stock cursors are available on all platforms.
910 val
= _gdi_
.new_StockCursor(*args
, **kwargs
)
913 def CursorFromImage(*args
, **kwargs
):
915 CursorFromImage(Image image) -> Cursor
917 Constructs a cursor from a `wx.Image`. The mask (if any) will be used
918 for setting the transparent portions of the cursor.
920 val
= _gdi_
.new_CursorFromImage(*args
, **kwargs
)
923 #---------------------------------------------------------------------------
925 OutRegion
= _gdi_
.OutRegion
926 PartRegion
= _gdi_
.PartRegion
927 InRegion
= _gdi_
.InRegion
928 class Region(GDIObject
):
929 """Proxy of C++ Region class"""
930 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
931 __repr__
= _swig_repr
932 def __init__(self
, *args
, **kwargs
):
933 """__init__(self, int x=0, int y=0, int width=0, int height=0) -> Region"""
934 _gdi_
.Region_swiginit(self
,_gdi_
.new_Region(*args
, **kwargs
))
935 __swig_destroy__
= _gdi_
.delete_Region
936 __del__
= lambda self
: None;
937 def Clear(*args
, **kwargs
):
939 return _gdi_
.Region_Clear(*args
, **kwargs
)
941 def Offset(*args
, **kwargs
):
942 """Offset(self, int x, int y) -> bool"""
943 return _gdi_
.Region_Offset(*args
, **kwargs
)
945 def Contains(*args
, **kwargs
):
946 """Contains(self, int x, int y) -> int"""
947 return _gdi_
.Region_Contains(*args
, **kwargs
)
949 def ContainsPoint(*args
, **kwargs
):
950 """ContainsPoint(self, Point pt) -> int"""
951 return _gdi_
.Region_ContainsPoint(*args
, **kwargs
)
953 def ContainsRect(*args
, **kwargs
):
954 """ContainsRect(self, Rect rect) -> int"""
955 return _gdi_
.Region_ContainsRect(*args
, **kwargs
)
957 def ContainsRectDim(*args
, **kwargs
):
958 """ContainsRectDim(self, int x, int y, int w, int h) -> int"""
959 return _gdi_
.Region_ContainsRectDim(*args
, **kwargs
)
961 def GetBox(*args
, **kwargs
):
962 """GetBox(self) -> Rect"""
963 return _gdi_
.Region_GetBox(*args
, **kwargs
)
965 def Intersect(*args
, **kwargs
):
966 """Intersect(self, int x, int y, int width, int height) -> bool"""
967 return _gdi_
.Region_Intersect(*args
, **kwargs
)
969 def IntersectRect(*args
, **kwargs
):
970 """IntersectRect(self, Rect rect) -> bool"""
971 return _gdi_
.Region_IntersectRect(*args
, **kwargs
)
973 def IntersectRegion(*args
, **kwargs
):
974 """IntersectRegion(self, Region region) -> bool"""
975 return _gdi_
.Region_IntersectRegion(*args
, **kwargs
)
977 def IsEmpty(*args
, **kwargs
):
978 """IsEmpty(self) -> bool"""
979 return _gdi_
.Region_IsEmpty(*args
, **kwargs
)
981 def Union(*args
, **kwargs
):
982 """Union(self, int x, int y, int width, int height) -> bool"""
983 return _gdi_
.Region_Union(*args
, **kwargs
)
985 def UnionRect(*args
, **kwargs
):
986 """UnionRect(self, Rect rect) -> bool"""
987 return _gdi_
.Region_UnionRect(*args
, **kwargs
)
989 def UnionRegion(*args
, **kwargs
):
990 """UnionRegion(self, Region region) -> bool"""
991 return _gdi_
.Region_UnionRegion(*args
, **kwargs
)
993 def Subtract(*args
, **kwargs
):
994 """Subtract(self, int x, int y, int width, int height) -> bool"""
995 return _gdi_
.Region_Subtract(*args
, **kwargs
)
997 def SubtractRect(*args
, **kwargs
):
998 """SubtractRect(self, Rect rect) -> bool"""
999 return _gdi_
.Region_SubtractRect(*args
, **kwargs
)
1001 def SubtractRegion(*args
, **kwargs
):
1002 """SubtractRegion(self, Region region) -> bool"""
1003 return _gdi_
.Region_SubtractRegion(*args
, **kwargs
)
1005 def Xor(*args
, **kwargs
):
1006 """Xor(self, int x, int y, int width, int height) -> bool"""
1007 return _gdi_
.Region_Xor(*args
, **kwargs
)
1009 def XorRect(*args
, **kwargs
):
1010 """XorRect(self, Rect rect) -> bool"""
1011 return _gdi_
.Region_XorRect(*args
, **kwargs
)
1013 def XorRegion(*args
, **kwargs
):
1014 """XorRegion(self, Region region) -> bool"""
1015 return _gdi_
.Region_XorRegion(*args
, **kwargs
)
1017 def ConvertToBitmap(*args
, **kwargs
):
1018 """ConvertToBitmap(self) -> Bitmap"""
1019 return _gdi_
.Region_ConvertToBitmap(*args
, **kwargs
)
1021 def UnionBitmap(*args
, **kwargs
):
1022 """UnionBitmap(self, Bitmap bmp) -> bool"""
1023 return _gdi_
.Region_UnionBitmap(*args
, **kwargs
)
1025 def UnionBitmapColour(*args
, **kwargs
):
1026 """UnionBitmapColour(self, Bitmap bmp, Colour transColour, int tolerance=0) -> bool"""
1027 return _gdi_
.Region_UnionBitmapColour(*args
, **kwargs
)
1029 _gdi_
.Region_swigregister(Region
)
1031 def RegionFromBitmap(*args
, **kwargs
):
1032 """RegionFromBitmap(Bitmap bmp) -> Region"""
1033 val
= _gdi_
.new_RegionFromBitmap(*args
, **kwargs
)
1036 def RegionFromBitmapColour(*args
, **kwargs
):
1037 """RegionFromBitmapColour(Bitmap bmp, Colour transColour, int tolerance=0) -> Region"""
1038 val
= _gdi_
.new_RegionFromBitmapColour(*args
, **kwargs
)
1041 def RegionFromPoints(*args
, **kwargs
):
1042 """RegionFromPoints(int points, int fillStyle=WINDING_RULE) -> Region"""
1043 val
= _gdi_
.new_RegionFromPoints(*args
, **kwargs
)
1046 class RegionIterator(_core
.Object
):
1047 """Proxy of C++ RegionIterator class"""
1048 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
1049 __repr__
= _swig_repr
1050 def __init__(self
, *args
, **kwargs
):
1051 """__init__(self, Region region) -> RegionIterator"""
1052 _gdi_
.RegionIterator_swiginit(self
,_gdi_
.new_RegionIterator(*args
, **kwargs
))
1053 __swig_destroy__
= _gdi_
.delete_RegionIterator
1054 __del__
= lambda self
: None;
1055 def GetX(*args
, **kwargs
):
1056 """GetX(self) -> int"""
1057 return _gdi_
.RegionIterator_GetX(*args
, **kwargs
)
1059 def GetY(*args
, **kwargs
):
1060 """GetY(self) -> int"""
1061 return _gdi_
.RegionIterator_GetY(*args
, **kwargs
)
1063 def GetW(*args
, **kwargs
):
1064 """GetW(self) -> int"""
1065 return _gdi_
.RegionIterator_GetW(*args
, **kwargs
)
1067 def GetWidth(*args
, **kwargs
):
1068 """GetWidth(self) -> int"""
1069 return _gdi_
.RegionIterator_GetWidth(*args
, **kwargs
)
1071 def GetH(*args
, **kwargs
):
1072 """GetH(self) -> int"""
1073 return _gdi_
.RegionIterator_GetH(*args
, **kwargs
)
1075 def GetHeight(*args
, **kwargs
):
1076 """GetHeight(self) -> int"""
1077 return _gdi_
.RegionIterator_GetHeight(*args
, **kwargs
)
1079 def GetRect(*args
, **kwargs
):
1080 """GetRect(self) -> Rect"""
1081 return _gdi_
.RegionIterator_GetRect(*args
, **kwargs
)
1083 def HaveRects(*args
, **kwargs
):
1084 """HaveRects(self) -> bool"""
1085 return _gdi_
.RegionIterator_HaveRects(*args
, **kwargs
)
1087 def Reset(*args
, **kwargs
):
1089 return _gdi_
.RegionIterator_Reset(*args
, **kwargs
)
1091 def Next(*args
, **kwargs
):
1093 return _gdi_
.RegionIterator_Next(*args
, **kwargs
)
1095 def __nonzero__(*args
, **kwargs
):
1096 """__nonzero__(self) -> bool"""
1097 return _gdi_
.RegionIterator___nonzero__(*args
, **kwargs
)
1099 _gdi_
.RegionIterator_swigregister(RegionIterator
)
1101 #---------------------------------------------------------------------------
1103 FONTFAMILY_DEFAULT
= _gdi_
.FONTFAMILY_DEFAULT
1104 FONTFAMILY_DECORATIVE
= _gdi_
.FONTFAMILY_DECORATIVE
1105 FONTFAMILY_ROMAN
= _gdi_
.FONTFAMILY_ROMAN
1106 FONTFAMILY_SCRIPT
= _gdi_
.FONTFAMILY_SCRIPT
1107 FONTFAMILY_SWISS
= _gdi_
.FONTFAMILY_SWISS
1108 FONTFAMILY_MODERN
= _gdi_
.FONTFAMILY_MODERN
1109 FONTFAMILY_TELETYPE
= _gdi_
.FONTFAMILY_TELETYPE
1110 FONTFAMILY_MAX
= _gdi_
.FONTFAMILY_MAX
1111 FONTFAMILY_UNKNOWN
= _gdi_
.FONTFAMILY_UNKNOWN
1112 FONTSTYLE_NORMAL
= _gdi_
.FONTSTYLE_NORMAL
1113 FONTSTYLE_ITALIC
= _gdi_
.FONTSTYLE_ITALIC
1114 FONTSTYLE_SLANT
= _gdi_
.FONTSTYLE_SLANT
1115 FONTSTYLE_MAX
= _gdi_
.FONTSTYLE_MAX
1116 FONTWEIGHT_NORMAL
= _gdi_
.FONTWEIGHT_NORMAL
1117 FONTWEIGHT_LIGHT
= _gdi_
.FONTWEIGHT_LIGHT
1118 FONTWEIGHT_BOLD
= _gdi_
.FONTWEIGHT_BOLD
1119 FONTWEIGHT_MAX
= _gdi_
.FONTWEIGHT_MAX
1120 FONTFLAG_DEFAULT
= _gdi_
.FONTFLAG_DEFAULT
1121 FONTFLAG_ITALIC
= _gdi_
.FONTFLAG_ITALIC
1122 FONTFLAG_SLANT
= _gdi_
.FONTFLAG_SLANT
1123 FONTFLAG_LIGHT
= _gdi_
.FONTFLAG_LIGHT
1124 FONTFLAG_BOLD
= _gdi_
.FONTFLAG_BOLD
1125 FONTFLAG_ANTIALIASED
= _gdi_
.FONTFLAG_ANTIALIASED
1126 FONTFLAG_NOT_ANTIALIASED
= _gdi_
.FONTFLAG_NOT_ANTIALIASED
1127 FONTFLAG_UNDERLINED
= _gdi_
.FONTFLAG_UNDERLINED
1128 FONTFLAG_STRIKETHROUGH
= _gdi_
.FONTFLAG_STRIKETHROUGH
1129 FONTFLAG_MASK
= _gdi_
.FONTFLAG_MASK
1130 FONTENCODING_SYSTEM
= _gdi_
.FONTENCODING_SYSTEM
1131 FONTENCODING_DEFAULT
= _gdi_
.FONTENCODING_DEFAULT
1132 FONTENCODING_ISO8859_1
= _gdi_
.FONTENCODING_ISO8859_1
1133 FONTENCODING_ISO8859_2
= _gdi_
.FONTENCODING_ISO8859_2
1134 FONTENCODING_ISO8859_3
= _gdi_
.FONTENCODING_ISO8859_3
1135 FONTENCODING_ISO8859_4
= _gdi_
.FONTENCODING_ISO8859_4
1136 FONTENCODING_ISO8859_5
= _gdi_
.FONTENCODING_ISO8859_5
1137 FONTENCODING_ISO8859_6
= _gdi_
.FONTENCODING_ISO8859_6
1138 FONTENCODING_ISO8859_7
= _gdi_
.FONTENCODING_ISO8859_7
1139 FONTENCODING_ISO8859_8
= _gdi_
.FONTENCODING_ISO8859_8
1140 FONTENCODING_ISO8859_9
= _gdi_
.FONTENCODING_ISO8859_9
1141 FONTENCODING_ISO8859_10
= _gdi_
.FONTENCODING_ISO8859_10
1142 FONTENCODING_ISO8859_11
= _gdi_
.FONTENCODING_ISO8859_11
1143 FONTENCODING_ISO8859_12
= _gdi_
.FONTENCODING_ISO8859_12
1144 FONTENCODING_ISO8859_13
= _gdi_
.FONTENCODING_ISO8859_13
1145 FONTENCODING_ISO8859_14
= _gdi_
.FONTENCODING_ISO8859_14
1146 FONTENCODING_ISO8859_15
= _gdi_
.FONTENCODING_ISO8859_15
1147 FONTENCODING_ISO8859_MAX
= _gdi_
.FONTENCODING_ISO8859_MAX
1148 FONTENCODING_KOI8
= _gdi_
.FONTENCODING_KOI8
1149 FONTENCODING_KOI8_U
= _gdi_
.FONTENCODING_KOI8_U
1150 FONTENCODING_ALTERNATIVE
= _gdi_
.FONTENCODING_ALTERNATIVE
1151 FONTENCODING_BULGARIAN
= _gdi_
.FONTENCODING_BULGARIAN
1152 FONTENCODING_CP437
= _gdi_
.FONTENCODING_CP437
1153 FONTENCODING_CP850
= _gdi_
.FONTENCODING_CP850
1154 FONTENCODING_CP852
= _gdi_
.FONTENCODING_CP852
1155 FONTENCODING_CP855
= _gdi_
.FONTENCODING_CP855
1156 FONTENCODING_CP866
= _gdi_
.FONTENCODING_CP866
1157 FONTENCODING_CP874
= _gdi_
.FONTENCODING_CP874
1158 FONTENCODING_CP932
= _gdi_
.FONTENCODING_CP932
1159 FONTENCODING_CP936
= _gdi_
.FONTENCODING_CP936
1160 FONTENCODING_CP949
= _gdi_
.FONTENCODING_CP949
1161 FONTENCODING_CP950
= _gdi_
.FONTENCODING_CP950
1162 FONTENCODING_CP1250
= _gdi_
.FONTENCODING_CP1250
1163 FONTENCODING_CP1251
= _gdi_
.FONTENCODING_CP1251
1164 FONTENCODING_CP1252
= _gdi_
.FONTENCODING_CP1252
1165 FONTENCODING_CP1253
= _gdi_
.FONTENCODING_CP1253
1166 FONTENCODING_CP1254
= _gdi_
.FONTENCODING_CP1254
1167 FONTENCODING_CP1255
= _gdi_
.FONTENCODING_CP1255
1168 FONTENCODING_CP1256
= _gdi_
.FONTENCODING_CP1256
1169 FONTENCODING_CP1257
= _gdi_
.FONTENCODING_CP1257
1170 FONTENCODING_CP12_MAX
= _gdi_
.FONTENCODING_CP12_MAX
1171 FONTENCODING_UTF7
= _gdi_
.FONTENCODING_UTF7
1172 FONTENCODING_UTF8
= _gdi_
.FONTENCODING_UTF8
1173 FONTENCODING_EUC_JP
= _gdi_
.FONTENCODING_EUC_JP
1174 FONTENCODING_UTF16BE
= _gdi_
.FONTENCODING_UTF16BE
1175 FONTENCODING_UTF16LE
= _gdi_
.FONTENCODING_UTF16LE
1176 FONTENCODING_UTF32BE
= _gdi_
.FONTENCODING_UTF32BE
1177 FONTENCODING_UTF32LE
= _gdi_
.FONTENCODING_UTF32LE
1178 FONTENCODING_MACROMAN
= _gdi_
.FONTENCODING_MACROMAN
1179 FONTENCODING_MACJAPANESE
= _gdi_
.FONTENCODING_MACJAPANESE
1180 FONTENCODING_MACCHINESETRAD
= _gdi_
.FONTENCODING_MACCHINESETRAD
1181 FONTENCODING_MACKOREAN
= _gdi_
.FONTENCODING_MACKOREAN
1182 FONTENCODING_MACARABIC
= _gdi_
.FONTENCODING_MACARABIC
1183 FONTENCODING_MACHEBREW
= _gdi_
.FONTENCODING_MACHEBREW
1184 FONTENCODING_MACGREEK
= _gdi_
.FONTENCODING_MACGREEK
1185 FONTENCODING_MACCYRILLIC
= _gdi_
.FONTENCODING_MACCYRILLIC
1186 FONTENCODING_MACDEVANAGARI
= _gdi_
.FONTENCODING_MACDEVANAGARI
1187 FONTENCODING_MACGURMUKHI
= _gdi_
.FONTENCODING_MACGURMUKHI
1188 FONTENCODING_MACGUJARATI
= _gdi_
.FONTENCODING_MACGUJARATI
1189 FONTENCODING_MACORIYA
= _gdi_
.FONTENCODING_MACORIYA
1190 FONTENCODING_MACBENGALI
= _gdi_
.FONTENCODING_MACBENGALI
1191 FONTENCODING_MACTAMIL
= _gdi_
.FONTENCODING_MACTAMIL
1192 FONTENCODING_MACTELUGU
= _gdi_
.FONTENCODING_MACTELUGU
1193 FONTENCODING_MACKANNADA
= _gdi_
.FONTENCODING_MACKANNADA
1194 FONTENCODING_MACMALAJALAM
= _gdi_
.FONTENCODING_MACMALAJALAM
1195 FONTENCODING_MACSINHALESE
= _gdi_
.FONTENCODING_MACSINHALESE
1196 FONTENCODING_MACBURMESE
= _gdi_
.FONTENCODING_MACBURMESE
1197 FONTENCODING_MACKHMER
= _gdi_
.FONTENCODING_MACKHMER
1198 FONTENCODING_MACTHAI
= _gdi_
.FONTENCODING_MACTHAI
1199 FONTENCODING_MACLAOTIAN
= _gdi_
.FONTENCODING_MACLAOTIAN
1200 FONTENCODING_MACGEORGIAN
= _gdi_
.FONTENCODING_MACGEORGIAN
1201 FONTENCODING_MACARMENIAN
= _gdi_
.FONTENCODING_MACARMENIAN
1202 FONTENCODING_MACCHINESESIMP
= _gdi_
.FONTENCODING_MACCHINESESIMP
1203 FONTENCODING_MACTIBETAN
= _gdi_
.FONTENCODING_MACTIBETAN
1204 FONTENCODING_MACMONGOLIAN
= _gdi_
.FONTENCODING_MACMONGOLIAN
1205 FONTENCODING_MACETHIOPIC
= _gdi_
.FONTENCODING_MACETHIOPIC
1206 FONTENCODING_MACCENTRALEUR
= _gdi_
.FONTENCODING_MACCENTRALEUR
1207 FONTENCODING_MACVIATNAMESE
= _gdi_
.FONTENCODING_MACVIATNAMESE
1208 FONTENCODING_MACARABICEXT
= _gdi_
.FONTENCODING_MACARABICEXT
1209 FONTENCODING_MACSYMBOL
= _gdi_
.FONTENCODING_MACSYMBOL
1210 FONTENCODING_MACDINGBATS
= _gdi_
.FONTENCODING_MACDINGBATS
1211 FONTENCODING_MACTURKISH
= _gdi_
.FONTENCODING_MACTURKISH
1212 FONTENCODING_MACCROATIAN
= _gdi_
.FONTENCODING_MACCROATIAN
1213 FONTENCODING_MACICELANDIC
= _gdi_
.FONTENCODING_MACICELANDIC
1214 FONTENCODING_MACROMANIAN
= _gdi_
.FONTENCODING_MACROMANIAN
1215 FONTENCODING_MACCELTIC
= _gdi_
.FONTENCODING_MACCELTIC
1216 FONTENCODING_MACGAELIC
= _gdi_
.FONTENCODING_MACGAELIC
1217 FONTENCODING_MACKEYBOARD
= _gdi_
.FONTENCODING_MACKEYBOARD
1218 FONTENCODING_MACMIN
= _gdi_
.FONTENCODING_MACMIN
1219 FONTENCODING_MACMAX
= _gdi_
.FONTENCODING_MACMAX
1220 FONTENCODING_MAX
= _gdi_
.FONTENCODING_MAX
1221 FONTENCODING_UTF16
= _gdi_
.FONTENCODING_UTF16
1222 FONTENCODING_UTF32
= _gdi_
.FONTENCODING_UTF32
1223 FONTENCODING_UNICODE
= _gdi_
.FONTENCODING_UNICODE
1224 FONTENCODING_GB2312
= _gdi_
.FONTENCODING_GB2312
1225 FONTENCODING_BIG5
= _gdi_
.FONTENCODING_BIG5
1226 FONTENCODING_SHIFT_JIS
= _gdi_
.FONTENCODING_SHIFT_JIS
1227 #---------------------------------------------------------------------------
1229 class NativeFontInfo(object):
1230 """Proxy of C++ NativeFontInfo class"""
1231 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
1232 __repr__
= _swig_repr
1233 def __init__(self
, *args
, **kwargs
):
1234 """__init__(self) -> NativeFontInfo"""
1235 _gdi_
.NativeFontInfo_swiginit(self
,_gdi_
.new_NativeFontInfo(*args
, **kwargs
))
1236 __swig_destroy__
= _gdi_
.delete_NativeFontInfo
1237 __del__
= lambda self
: None;
1238 def Init(*args
, **kwargs
):
1240 return _gdi_
.NativeFontInfo_Init(*args
, **kwargs
)
1242 def InitFromFont(*args
, **kwargs
):
1243 """InitFromFont(self, Font font)"""
1244 return _gdi_
.NativeFontInfo_InitFromFont(*args
, **kwargs
)
1246 def GetPointSize(*args
, **kwargs
):
1247 """GetPointSize(self) -> int"""
1248 return _gdi_
.NativeFontInfo_GetPointSize(*args
, **kwargs
)
1250 def GetStyle(*args
, **kwargs
):
1251 """GetStyle(self) -> int"""
1252 return _gdi_
.NativeFontInfo_GetStyle(*args
, **kwargs
)
1254 def GetWeight(*args
, **kwargs
):
1255 """GetWeight(self) -> int"""
1256 return _gdi_
.NativeFontInfo_GetWeight(*args
, **kwargs
)
1258 def GetUnderlined(*args
, **kwargs
):
1259 """GetUnderlined(self) -> bool"""
1260 return _gdi_
.NativeFontInfo_GetUnderlined(*args
, **kwargs
)
1262 def GetFaceName(*args
, **kwargs
):
1263 """GetFaceName(self) -> String"""
1264 return _gdi_
.NativeFontInfo_GetFaceName(*args
, **kwargs
)
1266 def GetFamily(*args
, **kwargs
):
1267 """GetFamily(self) -> int"""
1268 return _gdi_
.NativeFontInfo_GetFamily(*args
, **kwargs
)
1270 def GetEncoding(*args
, **kwargs
):
1271 """GetEncoding(self) -> int"""
1272 return _gdi_
.NativeFontInfo_GetEncoding(*args
, **kwargs
)
1274 def SetPointSize(*args
, **kwargs
):
1275 """SetPointSize(self, int pointsize)"""
1276 return _gdi_
.NativeFontInfo_SetPointSize(*args
, **kwargs
)
1278 def SetStyle(*args
, **kwargs
):
1279 """SetStyle(self, int style)"""
1280 return _gdi_
.NativeFontInfo_SetStyle(*args
, **kwargs
)
1282 def SetWeight(*args
, **kwargs
):
1283 """SetWeight(self, int weight)"""
1284 return _gdi_
.NativeFontInfo_SetWeight(*args
, **kwargs
)
1286 def SetUnderlined(*args
, **kwargs
):
1287 """SetUnderlined(self, bool underlined)"""
1288 return _gdi_
.NativeFontInfo_SetUnderlined(*args
, **kwargs
)
1290 def SetFaceName(*args
, **kwargs
):
1291 """SetFaceName(self, String facename) -> bool"""
1292 return _gdi_
.NativeFontInfo_SetFaceName(*args
, **kwargs
)
1294 def SetFamily(*args
, **kwargs
):
1295 """SetFamily(self, int family)"""
1296 return _gdi_
.NativeFontInfo_SetFamily(*args
, **kwargs
)
1298 def SetEncoding(*args
, **kwargs
):
1299 """SetEncoding(self, int encoding)"""
1300 return _gdi_
.NativeFontInfo_SetEncoding(*args
, **kwargs
)
1302 def FromString(*args
, **kwargs
):
1303 """FromString(self, String s) -> bool"""
1304 return _gdi_
.NativeFontInfo_FromString(*args
, **kwargs
)
1306 def ToString(*args
, **kwargs
):
1307 """ToString(self) -> String"""
1308 return _gdi_
.NativeFontInfo_ToString(*args
, **kwargs
)
1310 def __str__(*args
, **kwargs
):
1311 """__str__(self) -> String"""
1312 return _gdi_
.NativeFontInfo___str__(*args
, **kwargs
)
1314 def FromUserString(*args
, **kwargs
):
1315 """FromUserString(self, String s) -> bool"""
1316 return _gdi_
.NativeFontInfo_FromUserString(*args
, **kwargs
)
1318 def ToUserString(*args
, **kwargs
):
1319 """ToUserString(self) -> String"""
1320 return _gdi_
.NativeFontInfo_ToUserString(*args
, **kwargs
)
1322 _gdi_
.NativeFontInfo_swigregister(NativeFontInfo
)
1324 class NativeEncodingInfo(object):
1325 """Proxy of C++ NativeEncodingInfo class"""
1326 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
1327 __repr__
= _swig_repr
1328 facename
= property(_gdi_
.NativeEncodingInfo_facename_get
, _gdi_
.NativeEncodingInfo_facename_set
)
1329 encoding
= property(_gdi_
.NativeEncodingInfo_encoding_get
, _gdi_
.NativeEncodingInfo_encoding_set
)
1330 def __init__(self
, *args
, **kwargs
):
1331 """__init__(self) -> NativeEncodingInfo"""
1332 _gdi_
.NativeEncodingInfo_swiginit(self
,_gdi_
.new_NativeEncodingInfo(*args
, **kwargs
))
1333 __swig_destroy__
= _gdi_
.delete_NativeEncodingInfo
1334 __del__
= lambda self
: None;
1335 def FromString(*args
, **kwargs
):
1336 """FromString(self, String s) -> bool"""
1337 return _gdi_
.NativeEncodingInfo_FromString(*args
, **kwargs
)
1339 def ToString(*args
, **kwargs
):
1340 """ToString(self) -> String"""
1341 return _gdi_
.NativeEncodingInfo_ToString(*args
, **kwargs
)
1343 _gdi_
.NativeEncodingInfo_swigregister(NativeEncodingInfo
)
1346 def GetNativeFontEncoding(*args
, **kwargs
):
1347 """GetNativeFontEncoding(int encoding) -> NativeEncodingInfo"""
1348 return _gdi_
.GetNativeFontEncoding(*args
, **kwargs
)
1350 def TestFontEncoding(*args
, **kwargs
):
1351 """TestFontEncoding(NativeEncodingInfo info) -> bool"""
1352 return _gdi_
.TestFontEncoding(*args
, **kwargs
)
1353 #---------------------------------------------------------------------------
1355 class FontMapper(object):
1356 """Proxy of C++ FontMapper class"""
1357 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
1358 __repr__
= _swig_repr
1359 def __init__(self
, *args
, **kwargs
):
1360 """__init__(self) -> FontMapper"""
1361 _gdi_
.FontMapper_swiginit(self
,_gdi_
.new_FontMapper(*args
, **kwargs
))
1362 __swig_destroy__
= _gdi_
.delete_FontMapper
1363 __del__
= lambda self
: None;
1364 def Get(*args
, **kwargs
):
1365 """Get() -> FontMapper"""
1366 return _gdi_
.FontMapper_Get(*args
, **kwargs
)
1368 Get
= staticmethod(Get
)
1369 def Set(*args
, **kwargs
):
1370 """Set(FontMapper mapper) -> FontMapper"""
1371 return _gdi_
.FontMapper_Set(*args
, **kwargs
)
1373 Set
= staticmethod(Set
)
1374 def CharsetToEncoding(*args
, **kwargs
):
1375 """CharsetToEncoding(self, String charset, bool interactive=True) -> int"""
1376 return _gdi_
.FontMapper_CharsetToEncoding(*args
, **kwargs
)
1378 def GetSupportedEncodingsCount(*args
, **kwargs
):
1379 """GetSupportedEncodingsCount() -> size_t"""
1380 return _gdi_
.FontMapper_GetSupportedEncodingsCount(*args
, **kwargs
)
1382 GetSupportedEncodingsCount
= staticmethod(GetSupportedEncodingsCount
)
1383 def GetEncoding(*args
, **kwargs
):
1384 """GetEncoding(size_t n) -> int"""
1385 return _gdi_
.FontMapper_GetEncoding(*args
, **kwargs
)
1387 GetEncoding
= staticmethod(GetEncoding
)
1388 def GetEncodingName(*args
, **kwargs
):
1389 """GetEncodingName(int encoding) -> String"""
1390 return _gdi_
.FontMapper_GetEncodingName(*args
, **kwargs
)
1392 GetEncodingName
= staticmethod(GetEncodingName
)
1393 def GetEncodingDescription(*args
, **kwargs
):
1394 """GetEncodingDescription(int encoding) -> String"""
1395 return _gdi_
.FontMapper_GetEncodingDescription(*args
, **kwargs
)
1397 GetEncodingDescription
= staticmethod(GetEncodingDescription
)
1398 def GetEncodingFromName(*args
, **kwargs
):
1399 """GetEncodingFromName(String name) -> int"""
1400 return _gdi_
.FontMapper_GetEncodingFromName(*args
, **kwargs
)
1402 GetEncodingFromName
= staticmethod(GetEncodingFromName
)
1403 def SetConfigPath(*args
, **kwargs
):
1404 """SetConfigPath(self, String prefix)"""
1405 return _gdi_
.FontMapper_SetConfigPath(*args
, **kwargs
)
1407 def GetDefaultConfigPath(*args
, **kwargs
):
1408 """GetDefaultConfigPath() -> String"""
1409 return _gdi_
.FontMapper_GetDefaultConfigPath(*args
, **kwargs
)
1411 GetDefaultConfigPath
= staticmethod(GetDefaultConfigPath
)
1412 def GetAltForEncoding(*args
, **kwargs
):
1413 """GetAltForEncoding(self, int encoding, String facename=EmptyString, bool interactive=True) -> PyObject"""
1414 return _gdi_
.FontMapper_GetAltForEncoding(*args
, **kwargs
)
1416 def IsEncodingAvailable(*args
, **kwargs
):
1417 """IsEncodingAvailable(self, int encoding, String facename=EmptyString) -> bool"""
1418 return _gdi_
.FontMapper_IsEncodingAvailable(*args
, **kwargs
)
1420 def SetDialogParent(*args
, **kwargs
):
1421 """SetDialogParent(self, Window parent)"""
1422 return _gdi_
.FontMapper_SetDialogParent(*args
, **kwargs
)
1424 def SetDialogTitle(*args
, **kwargs
):
1425 """SetDialogTitle(self, String title)"""
1426 return _gdi_
.FontMapper_SetDialogTitle(*args
, **kwargs
)
1428 _gdi_
.FontMapper_swigregister(FontMapper
)
1430 def FontMapper_Get(*args
):
1431 """FontMapper_Get() -> FontMapper"""
1432 return _gdi_
.FontMapper_Get(*args
)
1434 def FontMapper_Set(*args
, **kwargs
):
1435 """FontMapper_Set(FontMapper mapper) -> FontMapper"""
1436 return _gdi_
.FontMapper_Set(*args
, **kwargs
)
1438 def FontMapper_GetSupportedEncodingsCount(*args
):
1439 """FontMapper_GetSupportedEncodingsCount() -> size_t"""
1440 return _gdi_
.FontMapper_GetSupportedEncodingsCount(*args
)
1442 def FontMapper_GetEncoding(*args
, **kwargs
):
1443 """FontMapper_GetEncoding(size_t n) -> int"""
1444 return _gdi_
.FontMapper_GetEncoding(*args
, **kwargs
)
1446 def FontMapper_GetEncodingName(*args
, **kwargs
):
1447 """FontMapper_GetEncodingName(int encoding) -> String"""
1448 return _gdi_
.FontMapper_GetEncodingName(*args
, **kwargs
)
1450 def FontMapper_GetEncodingDescription(*args
, **kwargs
):
1451 """FontMapper_GetEncodingDescription(int encoding) -> String"""
1452 return _gdi_
.FontMapper_GetEncodingDescription(*args
, **kwargs
)
1454 def FontMapper_GetEncodingFromName(*args
, **kwargs
):
1455 """FontMapper_GetEncodingFromName(String name) -> int"""
1456 return _gdi_
.FontMapper_GetEncodingFromName(*args
, **kwargs
)
1458 def FontMapper_GetDefaultConfigPath(*args
):
1459 """FontMapper_GetDefaultConfigPath() -> String"""
1460 return _gdi_
.FontMapper_GetDefaultConfigPath(*args
)
1462 #---------------------------------------------------------------------------
1464 class Font(GDIObject
):
1466 A font is an object which determines the appearance of text. Fonts are
1467 used for drawing text to a device context, and setting the appearance
1470 You can retrieve the current system font settings with `wx.SystemSettings`.
1472 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
1473 __repr__
= _swig_repr
1474 def __init__(self
, *args
, **kwargs
):
1476 __init__(self, int pointSize, int family, int style, int weight, bool underline=False,
1477 String face=EmptyString,
1478 int encoding=FONTENCODING_DEFAULT) -> Font
1480 Creates a font object with the specified attributes.
1482 :param pointSize: The size of the font in points.
1484 :param family: Font family. A generic way of referring to fonts
1485 without specifying actual facename. It can be One of
1486 the ``wx.FONTFAMILY_xxx`` constants.
1488 :param style: One of the ``wx.FONTSTYLE_xxx`` constants.
1490 :param weight: Font weight, sometimes also referred to as font
1491 boldness. One of the ``wx.FONTWEIGHT_xxx`` constants.
1493 :param underline: The value can be ``True`` or ``False`` and
1494 indicates whether the font will include an underline. This
1495 may not be supported on all platforms.
1497 :param face: An optional string specifying the actual typeface to
1498 be used. If it is an empty string, a default typeface will be
1499 chosen based on the family.
1501 :param encoding: An encoding which may be one of the
1502 ``wx.FONTENCODING_xxx`` constants. If the specified encoding isn't
1503 available, no font is created.
1505 :see: `wx.FFont`, `wx.FontFromPixelSize`, `wx.FFontFromPixelSize`,
1506 `wx.FontFromNativeInfoString`, `wx.FontFromNativeInfo`
1509 if kwargs
.has_key('faceName'): kwargs
['face'] = kwargs
['faceName'];del kwargs
['faceName']
1510 _gdi_
.Font_swiginit(self
,_gdi_
.new_Font(*args
, **kwargs
))
1511 __swig_destroy__
= _gdi_
.delete_Font
1512 __del__
= lambda self
: None;
1513 def Ok(*args
, **kwargs
):
1517 Returns ``True`` if this font was successfully created.
1519 return _gdi_
.Font_Ok(*args
, **kwargs
)
1521 def __nonzero__(self
): return self
.Ok()
1522 def __eq__(*args
, **kwargs
):
1523 """__eq__(self, Font other) -> bool"""
1524 return _gdi_
.Font___eq__(*args
, **kwargs
)
1526 def __ne__(*args
, **kwargs
):
1527 """__ne__(self, Font other) -> bool"""
1528 return _gdi_
.Font___ne__(*args
, **kwargs
)
1530 def GetPointSize(*args
, **kwargs
):
1532 GetPointSize(self) -> int
1534 Gets the point size.
1536 return _gdi_
.Font_GetPointSize(*args
, **kwargs
)
1538 def GetPixelSize(*args
, **kwargs
):
1540 GetPixelSize(self) -> Size
1542 Returns the size in pixels if the font was constructed with a pixel
1545 return _gdi_
.Font_GetPixelSize(*args
, **kwargs
)
1547 def IsUsingSizeInPixels(*args
, **kwargs
):
1549 IsUsingSizeInPixels(self) -> bool
1551 Returns ``True`` if the font is using a pixelSize.
1553 return _gdi_
.Font_IsUsingSizeInPixels(*args
, **kwargs
)
1555 def GetFamily(*args
, **kwargs
):
1557 GetFamily(self) -> int
1559 Gets the font family.
1561 return _gdi_
.Font_GetFamily(*args
, **kwargs
)
1563 def GetStyle(*args
, **kwargs
):
1565 GetStyle(self) -> int
1567 Gets the font style.
1569 return _gdi_
.Font_GetStyle(*args
, **kwargs
)
1571 def GetWeight(*args
, **kwargs
):
1573 GetWeight(self) -> int
1575 Gets the font weight.
1577 return _gdi_
.Font_GetWeight(*args
, **kwargs
)
1579 def GetUnderlined(*args
, **kwargs
):
1581 GetUnderlined(self) -> bool
1583 Returns ``True`` if the font is underlined, ``False`` otherwise.
1585 return _gdi_
.Font_GetUnderlined(*args
, **kwargs
)
1587 def GetFaceName(*args
, **kwargs
):
1589 GetFaceName(self) -> String
1591 Returns the typeface name associated with the font, or the empty
1592 string if there is no typeface information.
1594 return _gdi_
.Font_GetFaceName(*args
, **kwargs
)
1596 def GetEncoding(*args
, **kwargs
):
1598 GetEncoding(self) -> int
1600 Get the font's encoding.
1602 return _gdi_
.Font_GetEncoding(*args
, **kwargs
)
1604 def GetNativeFontInfo(*args
, **kwargs
):
1606 GetNativeFontInfo(self) -> NativeFontInfo
1608 Constructs a `wx.NativeFontInfo` object from this font.
1610 return _gdi_
.Font_GetNativeFontInfo(*args
, **kwargs
)
1612 def IsFixedWidth(*args
, **kwargs
):
1614 IsFixedWidth(self) -> bool
1616 Returns true if the font is a fixed width (or monospaced) font, false
1617 if it is a proportional one or font is invalid.
1619 return _gdi_
.Font_IsFixedWidth(*args
, **kwargs
)
1621 def GetNativeFontInfoDesc(*args
, **kwargs
):
1623 GetNativeFontInfoDesc(self) -> String
1625 Returns the platform-dependent string completely describing this font
1626 or an empty string if the font isn't valid.
1628 return _gdi_
.Font_GetNativeFontInfoDesc(*args
, **kwargs
)
1630 def GetNativeFontInfoUserDesc(*args
, **kwargs
):
1632 GetNativeFontInfoUserDesc(self) -> String
1634 Returns a human readable version of `GetNativeFontInfoDesc`.
1636 return _gdi_
.Font_GetNativeFontInfoUserDesc(*args
, **kwargs
)
1638 def SetPointSize(*args
, **kwargs
):
1640 SetPointSize(self, int pointSize)
1642 Sets the point size.
1644 return _gdi_
.Font_SetPointSize(*args
, **kwargs
)
1646 def SetPixelSize(*args
, **kwargs
):
1648 SetPixelSize(self, Size pixelSize)
1650 Sets the size in pixels rather than points. If there is platform API
1651 support for this then it is used, otherwise a font with the closest
1652 size is found using a binary search.
1654 return _gdi_
.Font_SetPixelSize(*args
, **kwargs
)
1656 def SetFamily(*args
, **kwargs
):
1658 SetFamily(self, int family)
1660 Sets the font family.
1662 return _gdi_
.Font_SetFamily(*args
, **kwargs
)
1664 def SetStyle(*args
, **kwargs
):
1666 SetStyle(self, int style)
1668 Sets the font style.
1670 return _gdi_
.Font_SetStyle(*args
, **kwargs
)
1672 def SetWeight(*args
, **kwargs
):
1674 SetWeight(self, int weight)
1676 Sets the font weight.
1678 return _gdi_
.Font_SetWeight(*args
, **kwargs
)
1680 def SetFaceName(*args
, **kwargs
):
1682 SetFaceName(self, String faceName) -> bool
1684 Sets the facename for the font. The facename, which should be a valid
1685 font installed on the end-user's system.
1687 To avoid portability problems, don't rely on a specific face, but
1688 specify the font family instead or as well. A suitable font will be
1689 found on the end-user's system. If both the family and the facename
1690 are specified, wxWidgets will first search for the specific face, and
1691 then for a font belonging to the same family.
1693 return _gdi_
.Font_SetFaceName(*args
, **kwargs
)
1695 def SetUnderlined(*args
, **kwargs
):
1697 SetUnderlined(self, bool underlined)
1701 return _gdi_
.Font_SetUnderlined(*args
, **kwargs
)
1703 def SetEncoding(*args
, **kwargs
):
1705 SetEncoding(self, int encoding)
1707 Set the font encoding.
1709 return _gdi_
.Font_SetEncoding(*args
, **kwargs
)
1711 def SetNativeFontInfo(*args
, **kwargs
):
1713 SetNativeFontInfo(self, NativeFontInfo info)
1715 Set the font's attributes from a `wx.NativeFontInfo` object.
1717 return _gdi_
.Font_SetNativeFontInfo(*args
, **kwargs
)
1719 def SetNativeFontInfoFromString(*args
, **kwargs
):
1721 SetNativeFontInfoFromString(self, String info) -> bool
1723 Set the font's attributes from string representation of a
1724 `wx.NativeFontInfo` object.
1726 return _gdi_
.Font_SetNativeFontInfoFromString(*args
, **kwargs
)
1728 def SetNativeFontInfoUserDesc(*args
, **kwargs
):
1730 SetNativeFontInfoUserDesc(self, String info) -> bool
1732 Set the font's attributes from a string formerly returned from
1733 `GetNativeFontInfoDesc`.
1735 return _gdi_
.Font_SetNativeFontInfoUserDesc(*args
, **kwargs
)
1737 def GetFamilyString(*args
, **kwargs
):
1739 GetFamilyString(self) -> String
1741 Returns a string representation of the font family.
1743 return _gdi_
.Font_GetFamilyString(*args
, **kwargs
)
1745 def GetStyleString(*args
, **kwargs
):
1747 GetStyleString(self) -> String
1749 Returns a string representation of the font style.
1751 return _gdi_
.Font_GetStyleString(*args
, **kwargs
)
1753 def GetWeightString(*args
, **kwargs
):
1755 GetWeightString(self) -> String
1757 Return a string representation of the font weight.
1759 return _gdi_
.Font_GetWeightString(*args
, **kwargs
)
1761 def SetNoAntiAliasing(*args
, **kwargs
):
1762 """SetNoAntiAliasing(self, bool no=True)"""
1763 return _gdi_
.Font_SetNoAntiAliasing(*args
, **kwargs
)
1765 def GetNoAntiAliasing(*args
, **kwargs
):
1766 """GetNoAntiAliasing(self) -> bool"""
1767 return _gdi_
.Font_GetNoAntiAliasing(*args
, **kwargs
)
1769 def GetDefaultEncoding(*args
, **kwargs
):
1771 GetDefaultEncoding() -> int
1773 Returns the encoding used for all fonts created with an encoding of
1774 ``wx.FONTENCODING_DEFAULT``.
1776 return _gdi_
.Font_GetDefaultEncoding(*args
, **kwargs
)
1778 GetDefaultEncoding
= staticmethod(GetDefaultEncoding
)
1779 def SetDefaultEncoding(*args
, **kwargs
):
1781 SetDefaultEncoding(int encoding)
1783 Sets the default font encoding.
1785 return _gdi_
.Font_SetDefaultEncoding(*args
, **kwargs
)
1787 SetDefaultEncoding
= staticmethod(SetDefaultEncoding
)
1788 _gdi_
.Font_swigregister(Font
)
1790 def FontFromNativeInfo(*args
, **kwargs
):
1792 FontFromNativeInfo(NativeFontInfo info) -> Font
1794 Construct a `wx.Font` from a `wx.NativeFontInfo` object.
1796 if kwargs
.has_key('faceName'): kwargs
['face'] = kwargs
['faceName'];del kwargs
['faceName']
1797 val
= _gdi_
.new_FontFromNativeInfo(*args
, **kwargs
)
1800 def FontFromNativeInfoString(*args
, **kwargs
):
1802 FontFromNativeInfoString(String info) -> Font
1804 Construct a `wx.Font` from the string representation of a
1805 `wx.NativeFontInfo` object.
1807 if kwargs
.has_key('faceName'): kwargs
['face'] = kwargs
['faceName'];del kwargs
['faceName']
1808 val
= _gdi_
.new_FontFromNativeInfoString(*args
, **kwargs
)
1811 def FFont(*args
, **kwargs
):
1813 FFont(int pointSize, int family, int flags=FONTFLAG_DEFAULT,
1814 String face=EmptyString, int encoding=FONTENCODING_DEFAULT) -> Font
1816 A bit of a simpler way to create a `wx.Font` using flags instead of
1817 individual attribute settings. The value of flags can be a
1818 combination of the following:
1820 ============================ ==
1826 wx.FONTFLAG_ANTIALIASED
1827 wx.FONTFLAG_NOT_ANTIALIASED
1828 wx.FONTFLAG_UNDERLINED
1829 wx.FONTFLAG_STRIKETHROUGH
1830 ============================ ==
1832 :see: `wx.Font.__init__`
1834 if kwargs
.has_key('faceName'): kwargs
['face'] = kwargs
['faceName'];del kwargs
['faceName']
1835 val
= _gdi_
.new_FFont(*args
, **kwargs
)
1838 def FontFromPixelSize(*args
, **kwargs
):
1840 FontFromPixelSize(Size pixelSize, int family, int style, int weight,
1841 bool underlined=False, String face=wxEmptyString,
1842 int encoding=FONTENCODING_DEFAULT) -> Font
1844 Creates a font using a size in pixels rather than points. If there is
1845 platform API support for this then it is used, otherwise a font with
1846 the closest size is found using a binary search.
1848 :see: `wx.Font.__init__`
1850 if kwargs
.has_key('faceName'): kwargs
['face'] = kwargs
['faceName'];del kwargs
['faceName']
1851 val
= _gdi_
.new_FontFromPixelSize(*args
, **kwargs
)
1854 def FFontFromPixelSize(*args
, **kwargs
):
1856 FFontFromPixelSize(Size pixelSize, int family, int flags=FONTFLAG_DEFAULT,
1857 String face=wxEmptyString, int encoding=FONTENCODING_DEFAULT) -> Font
1859 Creates a font using a size in pixels rather than points. If there is
1860 platform API support for this then it is used, otherwise a font with
1861 the closest size is found using a binary search.
1863 :see: `wx.Font.__init__`, `wx.FFont`
1865 if kwargs
.has_key('faceName'): kwargs
['face'] = kwargs
['faceName'];del kwargs
['faceName']
1866 val
= _gdi_
.new_FFontFromPixelSize(*args
, **kwargs
)
1869 def Font_GetDefaultEncoding(*args
):
1871 Font_GetDefaultEncoding() -> int
1873 Returns the encoding used for all fonts created with an encoding of
1874 ``wx.FONTENCODING_DEFAULT``.
1876 return _gdi_
.Font_GetDefaultEncoding(*args
)
1878 def Font_SetDefaultEncoding(*args
, **kwargs
):
1880 Font_SetDefaultEncoding(int encoding)
1882 Sets the default font encoding.
1884 return _gdi_
.Font_SetDefaultEncoding(*args
, **kwargs
)
1886 Font2
= wx
._deprecated
(FFont
, "Use `wx.FFont` instead.")
1887 #---------------------------------------------------------------------------
1889 class FontEnumerator(object):
1890 """Proxy of C++ FontEnumerator class"""
1891 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
1892 __repr__
= _swig_repr
1893 def __init__(self
, *args
, **kwargs
):
1894 """__init__(self) -> FontEnumerator"""
1895 _gdi_
.FontEnumerator_swiginit(self
,_gdi_
.new_FontEnumerator(*args
, **kwargs
))
1896 self
._setCallbackInfo
(self
, FontEnumerator
, 0)
1898 __swig_destroy__
= _gdi_
.delete_FontEnumerator
1899 __del__
= lambda self
: None;
1900 def _setCallbackInfo(*args
, **kwargs
):
1901 """_setCallbackInfo(self, PyObject self, PyObject _class, bool incref)"""
1902 return _gdi_
.FontEnumerator__setCallbackInfo(*args
, **kwargs
)
1904 def EnumerateFacenames(*args
, **kwargs
):
1905 """EnumerateFacenames(self, int encoding=FONTENCODING_SYSTEM, bool fixedWidthOnly=False) -> bool"""
1906 return _gdi_
.FontEnumerator_EnumerateFacenames(*args
, **kwargs
)
1908 def EnumerateEncodings(*args
, **kwargs
):
1909 """EnumerateEncodings(self, String facename=EmptyString) -> bool"""
1910 return _gdi_
.FontEnumerator_EnumerateEncodings(*args
, **kwargs
)
1912 def GetEncodings(*args
, **kwargs
):
1913 """GetEncodings() -> PyObject"""
1914 return _gdi_
.FontEnumerator_GetEncodings(*args
, **kwargs
)
1916 GetEncodings
= staticmethod(GetEncodings
)
1917 def GetFacenames(*args
, **kwargs
):
1918 """GetFacenames() -> PyObject"""
1919 return _gdi_
.FontEnumerator_GetFacenames(*args
, **kwargs
)
1921 GetFacenames
= staticmethod(GetFacenames
)
1922 def IsValidFacename(*args
, **kwargs
):
1924 IsValidFacename(String str) -> bool
1926 Convenience function that returns true if the given face name exist in
1929 return _gdi_
.FontEnumerator_IsValidFacename(*args
, **kwargs
)
1931 IsValidFacename
= staticmethod(IsValidFacename
)
1932 _gdi_
.FontEnumerator_swigregister(FontEnumerator
)
1934 def FontEnumerator_GetEncodings(*args
):
1935 """FontEnumerator_GetEncodings() -> PyObject"""
1936 return _gdi_
.FontEnumerator_GetEncodings(*args
)
1938 def FontEnumerator_GetFacenames(*args
):
1939 """FontEnumerator_GetFacenames() -> PyObject"""
1940 return _gdi_
.FontEnumerator_GetFacenames(*args
)
1942 def FontEnumerator_IsValidFacename(*args
, **kwargs
):
1944 FontEnumerator_IsValidFacename(String str) -> bool
1946 Convenience function that returns true if the given face name exist in
1949 return _gdi_
.FontEnumerator_IsValidFacename(*args
, **kwargs
)
1951 #---------------------------------------------------------------------------
1953 LANGUAGE_DEFAULT
= _gdi_
.LANGUAGE_DEFAULT
1954 LANGUAGE_UNKNOWN
= _gdi_
.LANGUAGE_UNKNOWN
1955 LANGUAGE_ABKHAZIAN
= _gdi_
.LANGUAGE_ABKHAZIAN
1956 LANGUAGE_AFAR
= _gdi_
.LANGUAGE_AFAR
1957 LANGUAGE_AFRIKAANS
= _gdi_
.LANGUAGE_AFRIKAANS
1958 LANGUAGE_ALBANIAN
= _gdi_
.LANGUAGE_ALBANIAN
1959 LANGUAGE_AMHARIC
= _gdi_
.LANGUAGE_AMHARIC
1960 LANGUAGE_ARABIC
= _gdi_
.LANGUAGE_ARABIC
1961 LANGUAGE_ARABIC_ALGERIA
= _gdi_
.LANGUAGE_ARABIC_ALGERIA
1962 LANGUAGE_ARABIC_BAHRAIN
= _gdi_
.LANGUAGE_ARABIC_BAHRAIN
1963 LANGUAGE_ARABIC_EGYPT
= _gdi_
.LANGUAGE_ARABIC_EGYPT
1964 LANGUAGE_ARABIC_IRAQ
= _gdi_
.LANGUAGE_ARABIC_IRAQ
1965 LANGUAGE_ARABIC_JORDAN
= _gdi_
.LANGUAGE_ARABIC_JORDAN
1966 LANGUAGE_ARABIC_KUWAIT
= _gdi_
.LANGUAGE_ARABIC_KUWAIT
1967 LANGUAGE_ARABIC_LEBANON
= _gdi_
.LANGUAGE_ARABIC_LEBANON
1968 LANGUAGE_ARABIC_LIBYA
= _gdi_
.LANGUAGE_ARABIC_LIBYA
1969 LANGUAGE_ARABIC_MOROCCO
= _gdi_
.LANGUAGE_ARABIC_MOROCCO
1970 LANGUAGE_ARABIC_OMAN
= _gdi_
.LANGUAGE_ARABIC_OMAN
1971 LANGUAGE_ARABIC_QATAR
= _gdi_
.LANGUAGE_ARABIC_QATAR
1972 LANGUAGE_ARABIC_SAUDI_ARABIA
= _gdi_
.LANGUAGE_ARABIC_SAUDI_ARABIA
1973 LANGUAGE_ARABIC_SUDAN
= _gdi_
.LANGUAGE_ARABIC_SUDAN
1974 LANGUAGE_ARABIC_SYRIA
= _gdi_
.LANGUAGE_ARABIC_SYRIA
1975 LANGUAGE_ARABIC_TUNISIA
= _gdi_
.LANGUAGE_ARABIC_TUNISIA
1976 LANGUAGE_ARABIC_UAE
= _gdi_
.LANGUAGE_ARABIC_UAE
1977 LANGUAGE_ARABIC_YEMEN
= _gdi_
.LANGUAGE_ARABIC_YEMEN
1978 LANGUAGE_ARMENIAN
= _gdi_
.LANGUAGE_ARMENIAN
1979 LANGUAGE_ASSAMESE
= _gdi_
.LANGUAGE_ASSAMESE
1980 LANGUAGE_AYMARA
= _gdi_
.LANGUAGE_AYMARA
1981 LANGUAGE_AZERI
= _gdi_
.LANGUAGE_AZERI
1982 LANGUAGE_AZERI_CYRILLIC
= _gdi_
.LANGUAGE_AZERI_CYRILLIC
1983 LANGUAGE_AZERI_LATIN
= _gdi_
.LANGUAGE_AZERI_LATIN
1984 LANGUAGE_BASHKIR
= _gdi_
.LANGUAGE_BASHKIR
1985 LANGUAGE_BASQUE
= _gdi_
.LANGUAGE_BASQUE
1986 LANGUAGE_BELARUSIAN
= _gdi_
.LANGUAGE_BELARUSIAN
1987 LANGUAGE_BENGALI
= _gdi_
.LANGUAGE_BENGALI
1988 LANGUAGE_BHUTANI
= _gdi_
.LANGUAGE_BHUTANI
1989 LANGUAGE_BIHARI
= _gdi_
.LANGUAGE_BIHARI
1990 LANGUAGE_BISLAMA
= _gdi_
.LANGUAGE_BISLAMA
1991 LANGUAGE_BRETON
= _gdi_
.LANGUAGE_BRETON
1992 LANGUAGE_BULGARIAN
= _gdi_
.LANGUAGE_BULGARIAN
1993 LANGUAGE_BURMESE
= _gdi_
.LANGUAGE_BURMESE
1994 LANGUAGE_CAMBODIAN
= _gdi_
.LANGUAGE_CAMBODIAN
1995 LANGUAGE_CATALAN
= _gdi_
.LANGUAGE_CATALAN
1996 LANGUAGE_CHINESE
= _gdi_
.LANGUAGE_CHINESE
1997 LANGUAGE_CHINESE_SIMPLIFIED
= _gdi_
.LANGUAGE_CHINESE_SIMPLIFIED
1998 LANGUAGE_CHINESE_TRADITIONAL
= _gdi_
.LANGUAGE_CHINESE_TRADITIONAL
1999 LANGUAGE_CHINESE_HONGKONG
= _gdi_
.LANGUAGE_CHINESE_HONGKONG
2000 LANGUAGE_CHINESE_MACAU
= _gdi_
.LANGUAGE_CHINESE_MACAU
2001 LANGUAGE_CHINESE_SINGAPORE
= _gdi_
.LANGUAGE_CHINESE_SINGAPORE
2002 LANGUAGE_CHINESE_TAIWAN
= _gdi_
.LANGUAGE_CHINESE_TAIWAN
2003 LANGUAGE_CORSICAN
= _gdi_
.LANGUAGE_CORSICAN
2004 LANGUAGE_CROATIAN
= _gdi_
.LANGUAGE_CROATIAN
2005 LANGUAGE_CZECH
= _gdi_
.LANGUAGE_CZECH
2006 LANGUAGE_DANISH
= _gdi_
.LANGUAGE_DANISH
2007 LANGUAGE_DUTCH
= _gdi_
.LANGUAGE_DUTCH
2008 LANGUAGE_DUTCH_BELGIAN
= _gdi_
.LANGUAGE_DUTCH_BELGIAN
2009 LANGUAGE_ENGLISH
= _gdi_
.LANGUAGE_ENGLISH
2010 LANGUAGE_ENGLISH_UK
= _gdi_
.LANGUAGE_ENGLISH_UK
2011 LANGUAGE_ENGLISH_US
= _gdi_
.LANGUAGE_ENGLISH_US
2012 LANGUAGE_ENGLISH_AUSTRALIA
= _gdi_
.LANGUAGE_ENGLISH_AUSTRALIA
2013 LANGUAGE_ENGLISH_BELIZE
= _gdi_
.LANGUAGE_ENGLISH_BELIZE
2014 LANGUAGE_ENGLISH_BOTSWANA
= _gdi_
.LANGUAGE_ENGLISH_BOTSWANA
2015 LANGUAGE_ENGLISH_CANADA
= _gdi_
.LANGUAGE_ENGLISH_CANADA
2016 LANGUAGE_ENGLISH_CARIBBEAN
= _gdi_
.LANGUAGE_ENGLISH_CARIBBEAN
2017 LANGUAGE_ENGLISH_DENMARK
= _gdi_
.LANGUAGE_ENGLISH_DENMARK
2018 LANGUAGE_ENGLISH_EIRE
= _gdi_
.LANGUAGE_ENGLISH_EIRE
2019 LANGUAGE_ENGLISH_JAMAICA
= _gdi_
.LANGUAGE_ENGLISH_JAMAICA
2020 LANGUAGE_ENGLISH_NEW_ZEALAND
= _gdi_
.LANGUAGE_ENGLISH_NEW_ZEALAND
2021 LANGUAGE_ENGLISH_PHILIPPINES
= _gdi_
.LANGUAGE_ENGLISH_PHILIPPINES
2022 LANGUAGE_ENGLISH_SOUTH_AFRICA
= _gdi_
.LANGUAGE_ENGLISH_SOUTH_AFRICA
2023 LANGUAGE_ENGLISH_TRINIDAD
= _gdi_
.LANGUAGE_ENGLISH_TRINIDAD
2024 LANGUAGE_ENGLISH_ZIMBABWE
= _gdi_
.LANGUAGE_ENGLISH_ZIMBABWE
2025 LANGUAGE_ESPERANTO
= _gdi_
.LANGUAGE_ESPERANTO
2026 LANGUAGE_ESTONIAN
= _gdi_
.LANGUAGE_ESTONIAN
2027 LANGUAGE_FAEROESE
= _gdi_
.LANGUAGE_FAEROESE
2028 LANGUAGE_FARSI
= _gdi_
.LANGUAGE_FARSI
2029 LANGUAGE_FIJI
= _gdi_
.LANGUAGE_FIJI
2030 LANGUAGE_FINNISH
= _gdi_
.LANGUAGE_FINNISH
2031 LANGUAGE_FRENCH
= _gdi_
.LANGUAGE_FRENCH
2032 LANGUAGE_FRENCH_BELGIAN
= _gdi_
.LANGUAGE_FRENCH_BELGIAN
2033 LANGUAGE_FRENCH_CANADIAN
= _gdi_
.LANGUAGE_FRENCH_CANADIAN
2034 LANGUAGE_FRENCH_LUXEMBOURG
= _gdi_
.LANGUAGE_FRENCH_LUXEMBOURG
2035 LANGUAGE_FRENCH_MONACO
= _gdi_
.LANGUAGE_FRENCH_MONACO
2036 LANGUAGE_FRENCH_SWISS
= _gdi_
.LANGUAGE_FRENCH_SWISS
2037 LANGUAGE_FRISIAN
= _gdi_
.LANGUAGE_FRISIAN
2038 LANGUAGE_GALICIAN
= _gdi_
.LANGUAGE_GALICIAN
2039 LANGUAGE_GEORGIAN
= _gdi_
.LANGUAGE_GEORGIAN
2040 LANGUAGE_GERMAN
= _gdi_
.LANGUAGE_GERMAN
2041 LANGUAGE_GERMAN_AUSTRIAN
= _gdi_
.LANGUAGE_GERMAN_AUSTRIAN
2042 LANGUAGE_GERMAN_BELGIUM
= _gdi_
.LANGUAGE_GERMAN_BELGIUM
2043 LANGUAGE_GERMAN_LIECHTENSTEIN
= _gdi_
.LANGUAGE_GERMAN_LIECHTENSTEIN
2044 LANGUAGE_GERMAN_LUXEMBOURG
= _gdi_
.LANGUAGE_GERMAN_LUXEMBOURG
2045 LANGUAGE_GERMAN_SWISS
= _gdi_
.LANGUAGE_GERMAN_SWISS
2046 LANGUAGE_GREEK
= _gdi_
.LANGUAGE_GREEK
2047 LANGUAGE_GREENLANDIC
= _gdi_
.LANGUAGE_GREENLANDIC
2048 LANGUAGE_GUARANI
= _gdi_
.LANGUAGE_GUARANI
2049 LANGUAGE_GUJARATI
= _gdi_
.LANGUAGE_GUJARATI
2050 LANGUAGE_HAUSA
= _gdi_
.LANGUAGE_HAUSA
2051 LANGUAGE_HEBREW
= _gdi_
.LANGUAGE_HEBREW
2052 LANGUAGE_HINDI
= _gdi_
.LANGUAGE_HINDI
2053 LANGUAGE_HUNGARIAN
= _gdi_
.LANGUAGE_HUNGARIAN
2054 LANGUAGE_ICELANDIC
= _gdi_
.LANGUAGE_ICELANDIC
2055 LANGUAGE_INDONESIAN
= _gdi_
.LANGUAGE_INDONESIAN
2056 LANGUAGE_INTERLINGUA
= _gdi_
.LANGUAGE_INTERLINGUA
2057 LANGUAGE_INTERLINGUE
= _gdi_
.LANGUAGE_INTERLINGUE
2058 LANGUAGE_INUKTITUT
= _gdi_
.LANGUAGE_INUKTITUT
2059 LANGUAGE_INUPIAK
= _gdi_
.LANGUAGE_INUPIAK
2060 LANGUAGE_IRISH
= _gdi_
.LANGUAGE_IRISH
2061 LANGUAGE_ITALIAN
= _gdi_
.LANGUAGE_ITALIAN
2062 LANGUAGE_ITALIAN_SWISS
= _gdi_
.LANGUAGE_ITALIAN_SWISS
2063 LANGUAGE_JAPANESE
= _gdi_
.LANGUAGE_JAPANESE
2064 LANGUAGE_JAVANESE
= _gdi_
.LANGUAGE_JAVANESE
2065 LANGUAGE_KANNADA
= _gdi_
.LANGUAGE_KANNADA
2066 LANGUAGE_KASHMIRI
= _gdi_
.LANGUAGE_KASHMIRI
2067 LANGUAGE_KASHMIRI_INDIA
= _gdi_
.LANGUAGE_KASHMIRI_INDIA
2068 LANGUAGE_KAZAKH
= _gdi_
.LANGUAGE_KAZAKH
2069 LANGUAGE_KERNEWEK
= _gdi_
.LANGUAGE_KERNEWEK
2070 LANGUAGE_KINYARWANDA
= _gdi_
.LANGUAGE_KINYARWANDA
2071 LANGUAGE_KIRGHIZ
= _gdi_
.LANGUAGE_KIRGHIZ
2072 LANGUAGE_KIRUNDI
= _gdi_
.LANGUAGE_KIRUNDI
2073 LANGUAGE_KONKANI
= _gdi_
.LANGUAGE_KONKANI
2074 LANGUAGE_KOREAN
= _gdi_
.LANGUAGE_KOREAN
2075 LANGUAGE_KURDISH
= _gdi_
.LANGUAGE_KURDISH
2076 LANGUAGE_LAOTHIAN
= _gdi_
.LANGUAGE_LAOTHIAN
2077 LANGUAGE_LATIN
= _gdi_
.LANGUAGE_LATIN
2078 LANGUAGE_LATVIAN
= _gdi_
.LANGUAGE_LATVIAN
2079 LANGUAGE_LINGALA
= _gdi_
.LANGUAGE_LINGALA
2080 LANGUAGE_LITHUANIAN
= _gdi_
.LANGUAGE_LITHUANIAN
2081 LANGUAGE_MACEDONIAN
= _gdi_
.LANGUAGE_MACEDONIAN
2082 LANGUAGE_MALAGASY
= _gdi_
.LANGUAGE_MALAGASY
2083 LANGUAGE_MALAY
= _gdi_
.LANGUAGE_MALAY
2084 LANGUAGE_MALAYALAM
= _gdi_
.LANGUAGE_MALAYALAM
2085 LANGUAGE_MALAY_BRUNEI_DARUSSALAM
= _gdi_
.LANGUAGE_MALAY_BRUNEI_DARUSSALAM
2086 LANGUAGE_MALAY_MALAYSIA
= _gdi_
.LANGUAGE_MALAY_MALAYSIA
2087 LANGUAGE_MALTESE
= _gdi_
.LANGUAGE_MALTESE
2088 LANGUAGE_MANIPURI
= _gdi_
.LANGUAGE_MANIPURI
2089 LANGUAGE_MAORI
= _gdi_
.LANGUAGE_MAORI
2090 LANGUAGE_MARATHI
= _gdi_
.LANGUAGE_MARATHI
2091 LANGUAGE_MOLDAVIAN
= _gdi_
.LANGUAGE_MOLDAVIAN
2092 LANGUAGE_MONGOLIAN
= _gdi_
.LANGUAGE_MONGOLIAN
2093 LANGUAGE_NAURU
= _gdi_
.LANGUAGE_NAURU
2094 LANGUAGE_NEPALI
= _gdi_
.LANGUAGE_NEPALI
2095 LANGUAGE_NEPALI_INDIA
= _gdi_
.LANGUAGE_NEPALI_INDIA
2096 LANGUAGE_NORWEGIAN_BOKMAL
= _gdi_
.LANGUAGE_NORWEGIAN_BOKMAL
2097 LANGUAGE_NORWEGIAN_NYNORSK
= _gdi_
.LANGUAGE_NORWEGIAN_NYNORSK
2098 LANGUAGE_OCCITAN
= _gdi_
.LANGUAGE_OCCITAN
2099 LANGUAGE_ORIYA
= _gdi_
.LANGUAGE_ORIYA
2100 LANGUAGE_OROMO
= _gdi_
.LANGUAGE_OROMO
2101 LANGUAGE_PASHTO
= _gdi_
.LANGUAGE_PASHTO
2102 LANGUAGE_POLISH
= _gdi_
.LANGUAGE_POLISH
2103 LANGUAGE_PORTUGUESE
= _gdi_
.LANGUAGE_PORTUGUESE
2104 LANGUAGE_PORTUGUESE_BRAZILIAN
= _gdi_
.LANGUAGE_PORTUGUESE_BRAZILIAN
2105 LANGUAGE_PUNJABI
= _gdi_
.LANGUAGE_PUNJABI
2106 LANGUAGE_QUECHUA
= _gdi_
.LANGUAGE_QUECHUA
2107 LANGUAGE_RHAETO_ROMANCE
= _gdi_
.LANGUAGE_RHAETO_ROMANCE
2108 LANGUAGE_ROMANIAN
= _gdi_
.LANGUAGE_ROMANIAN
2109 LANGUAGE_RUSSIAN
= _gdi_
.LANGUAGE_RUSSIAN
2110 LANGUAGE_RUSSIAN_UKRAINE
= _gdi_
.LANGUAGE_RUSSIAN_UKRAINE
2111 LANGUAGE_SAMOAN
= _gdi_
.LANGUAGE_SAMOAN
2112 LANGUAGE_SANGHO
= _gdi_
.LANGUAGE_SANGHO
2113 LANGUAGE_SANSKRIT
= _gdi_
.LANGUAGE_SANSKRIT
2114 LANGUAGE_SCOTS_GAELIC
= _gdi_
.LANGUAGE_SCOTS_GAELIC
2115 LANGUAGE_SERBIAN
= _gdi_
.LANGUAGE_SERBIAN
2116 LANGUAGE_SERBIAN_CYRILLIC
= _gdi_
.LANGUAGE_SERBIAN_CYRILLIC
2117 LANGUAGE_SERBIAN_LATIN
= _gdi_
.LANGUAGE_SERBIAN_LATIN
2118 LANGUAGE_SERBO_CROATIAN
= _gdi_
.LANGUAGE_SERBO_CROATIAN
2119 LANGUAGE_SESOTHO
= _gdi_
.LANGUAGE_SESOTHO
2120 LANGUAGE_SETSWANA
= _gdi_
.LANGUAGE_SETSWANA
2121 LANGUAGE_SHONA
= _gdi_
.LANGUAGE_SHONA
2122 LANGUAGE_SINDHI
= _gdi_
.LANGUAGE_SINDHI
2123 LANGUAGE_SINHALESE
= _gdi_
.LANGUAGE_SINHALESE
2124 LANGUAGE_SISWATI
= _gdi_
.LANGUAGE_SISWATI
2125 LANGUAGE_SLOVAK
= _gdi_
.LANGUAGE_SLOVAK
2126 LANGUAGE_SLOVENIAN
= _gdi_
.LANGUAGE_SLOVENIAN
2127 LANGUAGE_SOMALI
= _gdi_
.LANGUAGE_SOMALI
2128 LANGUAGE_SPANISH
= _gdi_
.LANGUAGE_SPANISH
2129 LANGUAGE_SPANISH_ARGENTINA
= _gdi_
.LANGUAGE_SPANISH_ARGENTINA
2130 LANGUAGE_SPANISH_BOLIVIA
= _gdi_
.LANGUAGE_SPANISH_BOLIVIA
2131 LANGUAGE_SPANISH_CHILE
= _gdi_
.LANGUAGE_SPANISH_CHILE
2132 LANGUAGE_SPANISH_COLOMBIA
= _gdi_
.LANGUAGE_SPANISH_COLOMBIA
2133 LANGUAGE_SPANISH_COSTA_RICA
= _gdi_
.LANGUAGE_SPANISH_COSTA_RICA
2134 LANGUAGE_SPANISH_DOMINICAN_REPUBLIC
= _gdi_
.LANGUAGE_SPANISH_DOMINICAN_REPUBLIC
2135 LANGUAGE_SPANISH_ECUADOR
= _gdi_
.LANGUAGE_SPANISH_ECUADOR
2136 LANGUAGE_SPANISH_EL_SALVADOR
= _gdi_
.LANGUAGE_SPANISH_EL_SALVADOR
2137 LANGUAGE_SPANISH_GUATEMALA
= _gdi_
.LANGUAGE_SPANISH_GUATEMALA
2138 LANGUAGE_SPANISH_HONDURAS
= _gdi_
.LANGUAGE_SPANISH_HONDURAS
2139 LANGUAGE_SPANISH_MEXICAN
= _gdi_
.LANGUAGE_SPANISH_MEXICAN
2140 LANGUAGE_SPANISH_MODERN
= _gdi_
.LANGUAGE_SPANISH_MODERN
2141 LANGUAGE_SPANISH_NICARAGUA
= _gdi_
.LANGUAGE_SPANISH_NICARAGUA
2142 LANGUAGE_SPANISH_PANAMA
= _gdi_
.LANGUAGE_SPANISH_PANAMA
2143 LANGUAGE_SPANISH_PARAGUAY
= _gdi_
.LANGUAGE_SPANISH_PARAGUAY
2144 LANGUAGE_SPANISH_PERU
= _gdi_
.LANGUAGE_SPANISH_PERU
2145 LANGUAGE_SPANISH_PUERTO_RICO
= _gdi_
.LANGUAGE_SPANISH_PUERTO_RICO
2146 LANGUAGE_SPANISH_URUGUAY
= _gdi_
.LANGUAGE_SPANISH_URUGUAY
2147 LANGUAGE_SPANISH_US
= _gdi_
.LANGUAGE_SPANISH_US
2148 LANGUAGE_SPANISH_VENEZUELA
= _gdi_
.LANGUAGE_SPANISH_VENEZUELA
2149 LANGUAGE_SUNDANESE
= _gdi_
.LANGUAGE_SUNDANESE
2150 LANGUAGE_SWAHILI
= _gdi_
.LANGUAGE_SWAHILI
2151 LANGUAGE_SWEDISH
= _gdi_
.LANGUAGE_SWEDISH
2152 LANGUAGE_SWEDISH_FINLAND
= _gdi_
.LANGUAGE_SWEDISH_FINLAND
2153 LANGUAGE_TAGALOG
= _gdi_
.LANGUAGE_TAGALOG
2154 LANGUAGE_TAJIK
= _gdi_
.LANGUAGE_TAJIK
2155 LANGUAGE_TAMIL
= _gdi_
.LANGUAGE_TAMIL
2156 LANGUAGE_TATAR
= _gdi_
.LANGUAGE_TATAR
2157 LANGUAGE_TELUGU
= _gdi_
.LANGUAGE_TELUGU
2158 LANGUAGE_THAI
= _gdi_
.LANGUAGE_THAI
2159 LANGUAGE_TIBETAN
= _gdi_
.LANGUAGE_TIBETAN
2160 LANGUAGE_TIGRINYA
= _gdi_
.LANGUAGE_TIGRINYA
2161 LANGUAGE_TONGA
= _gdi_
.LANGUAGE_TONGA
2162 LANGUAGE_TSONGA
= _gdi_
.LANGUAGE_TSONGA
2163 LANGUAGE_TURKISH
= _gdi_
.LANGUAGE_TURKISH
2164 LANGUAGE_TURKMEN
= _gdi_
.LANGUAGE_TURKMEN
2165 LANGUAGE_TWI
= _gdi_
.LANGUAGE_TWI
2166 LANGUAGE_UIGHUR
= _gdi_
.LANGUAGE_UIGHUR
2167 LANGUAGE_UKRAINIAN
= _gdi_
.LANGUAGE_UKRAINIAN
2168 LANGUAGE_URDU
= _gdi_
.LANGUAGE_URDU
2169 LANGUAGE_URDU_INDIA
= _gdi_
.LANGUAGE_URDU_INDIA
2170 LANGUAGE_URDU_PAKISTAN
= _gdi_
.LANGUAGE_URDU_PAKISTAN
2171 LANGUAGE_UZBEK
= _gdi_
.LANGUAGE_UZBEK
2172 LANGUAGE_UZBEK_CYRILLIC
= _gdi_
.LANGUAGE_UZBEK_CYRILLIC
2173 LANGUAGE_UZBEK_LATIN
= _gdi_
.LANGUAGE_UZBEK_LATIN
2174 LANGUAGE_VIETNAMESE
= _gdi_
.LANGUAGE_VIETNAMESE
2175 LANGUAGE_VOLAPUK
= _gdi_
.LANGUAGE_VOLAPUK
2176 LANGUAGE_WELSH
= _gdi_
.LANGUAGE_WELSH
2177 LANGUAGE_WOLOF
= _gdi_
.LANGUAGE_WOLOF
2178 LANGUAGE_XHOSA
= _gdi_
.LANGUAGE_XHOSA
2179 LANGUAGE_YIDDISH
= _gdi_
.LANGUAGE_YIDDISH
2180 LANGUAGE_YORUBA
= _gdi_
.LANGUAGE_YORUBA
2181 LANGUAGE_ZHUANG
= _gdi_
.LANGUAGE_ZHUANG
2182 LANGUAGE_ZULU
= _gdi_
.LANGUAGE_ZULU
2183 LANGUAGE_USER_DEFINED
= _gdi_
.LANGUAGE_USER_DEFINED
2184 class LanguageInfo(object):
2185 """Proxy of C++ LanguageInfo class"""
2186 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
2187 def __init__(self
): raise AttributeError, "No constructor defined"
2188 __repr__
= _swig_repr
2189 Language
= property(_gdi_
.LanguageInfo_Language_get
, _gdi_
.LanguageInfo_Language_set
)
2190 CanonicalName
= property(_gdi_
.LanguageInfo_CanonicalName_get
, _gdi_
.LanguageInfo_CanonicalName_set
)
2191 Description
= property(_gdi_
.LanguageInfo_Description_get
, _gdi_
.LanguageInfo_Description_set
)
2192 _gdi_
.LanguageInfo_swigregister(LanguageInfo
)
2194 LOCALE_CAT_NUMBER
= _gdi_
.LOCALE_CAT_NUMBER
2195 LOCALE_CAT_DATE
= _gdi_
.LOCALE_CAT_DATE
2196 LOCALE_CAT_MONEY
= _gdi_
.LOCALE_CAT_MONEY
2197 LOCALE_CAT_MAX
= _gdi_
.LOCALE_CAT_MAX
2198 LOCALE_THOUSANDS_SEP
= _gdi_
.LOCALE_THOUSANDS_SEP
2199 LOCALE_DECIMAL_POINT
= _gdi_
.LOCALE_DECIMAL_POINT
2200 LOCALE_LOAD_DEFAULT
= _gdi_
.LOCALE_LOAD_DEFAULT
2201 LOCALE_CONV_ENCODING
= _gdi_
.LOCALE_CONV_ENCODING
2202 class Locale(object):
2203 """Proxy of C++ Locale class"""
2204 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
2205 __repr__
= _swig_repr
2206 def __init__(self
, *args
, **kwargs
):
2207 """__init__(self, int language=-1, int flags=wxLOCALE_LOAD_DEFAULT|wxLOCALE_CONV_ENCODING) -> Locale"""
2208 _gdi_
.Locale_swiginit(self
,_gdi_
.new_Locale(*args
, **kwargs
))
2209 __swig_destroy__
= _gdi_
.delete_Locale
2210 __del__
= lambda self
: None;
2211 def Init1(*args
, **kwargs
):
2213 Init1(self, String szName, String szShort=EmptyString, String szLocale=EmptyString,
2214 bool bLoadDefault=True,
2215 bool bConvertEncoding=False) -> bool
2217 return _gdi_
.Locale_Init1(*args
, **kwargs
)
2219 def Init2(*args
, **kwargs
):
2220 """Init2(self, int language=LANGUAGE_DEFAULT, int flags=wxLOCALE_LOAD_DEFAULT|wxLOCALE_CONV_ENCODING) -> bool"""
2221 return _gdi_
.Locale_Init2(*args
, **kwargs
)
2223 def Init(self
, *_args
, **_kwargs
):
2224 if type(_args
[0]) in [type(''), type(u
'')]:
2225 val
= self
.Init1(*_args
, **_kwargs
)
2227 val
= self
.Init2(*_args
, **_kwargs
)
2230 def GetSystemLanguage(*args
, **kwargs
):
2231 """GetSystemLanguage() -> int"""
2232 return _gdi_
.Locale_GetSystemLanguage(*args
, **kwargs
)
2234 GetSystemLanguage
= staticmethod(GetSystemLanguage
)
2235 def GetSystemEncoding(*args
, **kwargs
):
2236 """GetSystemEncoding() -> int"""
2237 return _gdi_
.Locale_GetSystemEncoding(*args
, **kwargs
)
2239 GetSystemEncoding
= staticmethod(GetSystemEncoding
)
2240 def GetSystemEncodingName(*args
, **kwargs
):
2241 """GetSystemEncodingName() -> String"""
2242 return _gdi_
.Locale_GetSystemEncodingName(*args
, **kwargs
)
2244 GetSystemEncodingName
= staticmethod(GetSystemEncodingName
)
2245 def IsOk(*args
, **kwargs
):
2246 """IsOk(self) -> bool"""
2247 return _gdi_
.Locale_IsOk(*args
, **kwargs
)
2249 def __nonzero__(self
): return self
.IsOk()
2250 def GetLocale(*args
, **kwargs
):
2251 """GetLocale(self) -> String"""
2252 return _gdi_
.Locale_GetLocale(*args
, **kwargs
)
2254 def GetLanguage(*args
, **kwargs
):
2255 """GetLanguage(self) -> int"""
2256 return _gdi_
.Locale_GetLanguage(*args
, **kwargs
)
2258 def GetSysName(*args
, **kwargs
):
2259 """GetSysName(self) -> String"""
2260 return _gdi_
.Locale_GetSysName(*args
, **kwargs
)
2262 def GetCanonicalName(*args
, **kwargs
):
2263 """GetCanonicalName(self) -> String"""
2264 return _gdi_
.Locale_GetCanonicalName(*args
, **kwargs
)
2266 def AddCatalogLookupPathPrefix(*args
, **kwargs
):
2267 """AddCatalogLookupPathPrefix(String prefix)"""
2268 return _gdi_
.Locale_AddCatalogLookupPathPrefix(*args
, **kwargs
)
2270 AddCatalogLookupPathPrefix
= staticmethod(AddCatalogLookupPathPrefix
)
2271 def AddCatalog(*args
, **kwargs
):
2272 """AddCatalog(self, String szDomain) -> bool"""
2273 return _gdi_
.Locale_AddCatalog(*args
, **kwargs
)
2275 def IsLoaded(*args
, **kwargs
):
2276 """IsLoaded(self, String szDomain) -> bool"""
2277 return _gdi_
.Locale_IsLoaded(*args
, **kwargs
)
2279 def GetLanguageInfo(*args
, **kwargs
):
2280 """GetLanguageInfo(int lang) -> LanguageInfo"""
2281 return _gdi_
.Locale_GetLanguageInfo(*args
, **kwargs
)
2283 GetLanguageInfo
= staticmethod(GetLanguageInfo
)
2284 def GetLanguageName(*args
, **kwargs
):
2285 """GetLanguageName(int lang) -> String"""
2286 return _gdi_
.Locale_GetLanguageName(*args
, **kwargs
)
2288 GetLanguageName
= staticmethod(GetLanguageName
)
2289 def FindLanguageInfo(*args
, **kwargs
):
2290 """FindLanguageInfo(String locale) -> LanguageInfo"""
2291 return _gdi_
.Locale_FindLanguageInfo(*args
, **kwargs
)
2293 FindLanguageInfo
= staticmethod(FindLanguageInfo
)
2294 def AddLanguage(*args
, **kwargs
):
2295 """AddLanguage(LanguageInfo info)"""
2296 return _gdi_
.Locale_AddLanguage(*args
, **kwargs
)
2298 AddLanguage
= staticmethod(AddLanguage
)
2299 def GetString(*args
, **kwargs
):
2300 """GetString(self, String szOrigString, String szDomain=EmptyString) -> String"""
2301 return _gdi_
.Locale_GetString(*args
, **kwargs
)
2303 def GetName(*args
, **kwargs
):
2304 """GetName(self) -> String"""
2305 return _gdi_
.Locale_GetName(*args
, **kwargs
)
2307 _gdi_
.Locale_swigregister(Locale
)
2309 def Locale_GetSystemLanguage(*args
):
2310 """Locale_GetSystemLanguage() -> int"""
2311 return _gdi_
.Locale_GetSystemLanguage(*args
)
2313 def Locale_GetSystemEncoding(*args
):
2314 """Locale_GetSystemEncoding() -> int"""
2315 return _gdi_
.Locale_GetSystemEncoding(*args
)
2317 def Locale_GetSystemEncodingName(*args
):
2318 """Locale_GetSystemEncodingName() -> String"""
2319 return _gdi_
.Locale_GetSystemEncodingName(*args
)
2321 def Locale_AddCatalogLookupPathPrefix(*args
, **kwargs
):
2322 """Locale_AddCatalogLookupPathPrefix(String prefix)"""
2323 return _gdi_
.Locale_AddCatalogLookupPathPrefix(*args
, **kwargs
)
2325 def Locale_GetLanguageInfo(*args
, **kwargs
):
2326 """Locale_GetLanguageInfo(int lang) -> LanguageInfo"""
2327 return _gdi_
.Locale_GetLanguageInfo(*args
, **kwargs
)
2329 def Locale_GetLanguageName(*args
, **kwargs
):
2330 """Locale_GetLanguageName(int lang) -> String"""
2331 return _gdi_
.Locale_GetLanguageName(*args
, **kwargs
)
2333 def Locale_FindLanguageInfo(*args
, **kwargs
):
2334 """Locale_FindLanguageInfo(String locale) -> LanguageInfo"""
2335 return _gdi_
.Locale_FindLanguageInfo(*args
, **kwargs
)
2337 def Locale_AddLanguage(*args
, **kwargs
):
2338 """Locale_AddLanguage(LanguageInfo info)"""
2339 return _gdi_
.Locale_AddLanguage(*args
, **kwargs
)
2342 def GetLocale(*args
):
2343 """GetLocale() -> Locale"""
2344 return _gdi_
.GetLocale(*args
)
2345 #---------------------------------------------------------------------------
2347 CONVERT_STRICT
= _gdi_
.CONVERT_STRICT
2348 CONVERT_SUBSTITUTE
= _gdi_
.CONVERT_SUBSTITUTE
2349 PLATFORM_CURRENT
= _gdi_
.PLATFORM_CURRENT
2350 PLATFORM_UNIX
= _gdi_
.PLATFORM_UNIX
2351 PLATFORM_WINDOWS
= _gdi_
.PLATFORM_WINDOWS
2352 PLATFORM_OS2
= _gdi_
.PLATFORM_OS2
2353 PLATFORM_MAC
= _gdi_
.PLATFORM_MAC
2354 class EncodingConverter(_core
.Object
):
2355 """Proxy of C++ EncodingConverter class"""
2356 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
2357 __repr__
= _swig_repr
2358 def __init__(self
, *args
, **kwargs
):
2359 """__init__(self) -> EncodingConverter"""
2360 _gdi_
.EncodingConverter_swiginit(self
,_gdi_
.new_EncodingConverter(*args
, **kwargs
))
2361 __swig_destroy__
= _gdi_
.delete_EncodingConverter
2362 __del__
= lambda self
: None;
2363 def Init(*args
, **kwargs
):
2364 """Init(self, int input_enc, int output_enc, int method=CONVERT_STRICT) -> bool"""
2365 return _gdi_
.EncodingConverter_Init(*args
, **kwargs
)
2367 def Convert(*args
, **kwargs
):
2368 """Convert(self, String input) -> String"""
2369 return _gdi_
.EncodingConverter_Convert(*args
, **kwargs
)
2371 def GetPlatformEquivalents(*args
, **kwargs
):
2372 """GetPlatformEquivalents(int enc, int platform=PLATFORM_CURRENT) -> wxFontEncodingArray"""
2373 return _gdi_
.EncodingConverter_GetPlatformEquivalents(*args
, **kwargs
)
2375 GetPlatformEquivalents
= staticmethod(GetPlatformEquivalents
)
2376 def GetAllEquivalents(*args
, **kwargs
):
2377 """GetAllEquivalents(int enc) -> wxFontEncodingArray"""
2378 return _gdi_
.EncodingConverter_GetAllEquivalents(*args
, **kwargs
)
2380 GetAllEquivalents
= staticmethod(GetAllEquivalents
)
2381 def CanConvert(*args
, **kwargs
):
2382 """CanConvert(int encIn, int encOut) -> bool"""
2383 return _gdi_
.EncodingConverter_CanConvert(*args
, **kwargs
)
2385 CanConvert
= staticmethod(CanConvert
)
2386 def __nonzero__(self
): return self
.IsOk()
2387 _gdi_
.EncodingConverter_swigregister(EncodingConverter
)
2389 def GetTranslation(*args
):
2391 GetTranslation(String str) -> String
2392 GetTranslation(String str, String strPlural, size_t n) -> String
2394 return _gdi_
.GetTranslation(*args
)
2396 def EncodingConverter_GetPlatformEquivalents(*args
, **kwargs
):
2397 """EncodingConverter_GetPlatformEquivalents(int enc, int platform=PLATFORM_CURRENT) -> wxFontEncodingArray"""
2398 return _gdi_
.EncodingConverter_GetPlatformEquivalents(*args
, **kwargs
)
2400 def EncodingConverter_GetAllEquivalents(*args
, **kwargs
):
2401 """EncodingConverter_GetAllEquivalents(int enc) -> wxFontEncodingArray"""
2402 return _gdi_
.EncodingConverter_GetAllEquivalents(*args
, **kwargs
)
2404 def EncodingConverter_CanConvert(*args
, **kwargs
):
2405 """EncodingConverter_CanConvert(int encIn, int encOut) -> bool"""
2406 return _gdi_
.EncodingConverter_CanConvert(*args
, **kwargs
)
2408 #----------------------------------------------------------------------------
2409 # On MSW add the directory where the wxWidgets catalogs were installed
2410 # to the default catalog path.
2411 if wx
.Platform
== "__WXMSW__":
2413 _localedir
= os
.path
.join(os
.path
.split(__file__
)[0], "locale")
2414 Locale
.AddCatalogLookupPathPrefix(_localedir
)
2417 #----------------------------------------------------------------------------
2419 #---------------------------------------------------------------------------
2421 class DC(_core
.Object
):
2423 A wx.DC is a device context onto which graphics and text can be
2424 drawn. It is intended to represent a number of output devices in a
2425 generic way, so a window can have a device context associated with it,
2426 and a printer also has a device context. In this way, the same piece
2427 of code may write to a number of different devices, if the device
2428 context is used as a parameter.
2430 Derived types of wxDC have documentation for specific features only,
2431 so refer to this section for most device context information.
2433 The wx.DC class is abstract and can not be instantiated, you must use
2434 one of the derived classes instead. Which one will depend on the
2435 situation in which it is used.
2437 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
2438 def __init__(self
): raise AttributeError, "No constructor defined"
2439 __repr__
= _swig_repr
2440 __swig_destroy__
= _gdi_
.delete_DC
2441 __del__
= lambda self
: None;
2442 # These have been deprecated in wxWidgets. Since they never
2443 # really did anything to begin with, just make them be NOPs.
2444 def BeginDrawing(self
): pass
2445 def EndDrawing(self
): pass
2447 def FloodFill(*args
, **kwargs
):
2449 FloodFill(self, int x, int y, Colour col, int style=FLOOD_SURFACE) -> bool
2451 Flood fills the device context starting from the given point, using
2452 the current brush colour, and using a style:
2454 - **wxFLOOD_SURFACE**: the flooding occurs until a colour other than
2455 the given colour is encountered.
2457 - **wxFLOOD_BORDER**: the area to be flooded is bounded by the given
2460 Returns False if the operation failed.
2462 Note: The present implementation for non-Windows platforms may fail to
2463 find colour borders if the pixels do not match the colour
2464 exactly. However the function will still return true.
2466 return _gdi_
.DC_FloodFill(*args
, **kwargs
)
2468 def FloodFillPoint(*args
, **kwargs
):
2470 FloodFillPoint(self, Point pt, Colour col, int style=FLOOD_SURFACE) -> bool
2472 Flood fills the device context starting from the given point, using
2473 the current brush colour, and using a style:
2475 - **wxFLOOD_SURFACE**: the flooding occurs until a colour other than
2476 the given colour is encountered.
2478 - **wxFLOOD_BORDER**: the area to be flooded is bounded by the given
2481 Returns False if the operation failed.
2483 Note: The present implementation for non-Windows platforms may fail to
2484 find colour borders if the pixels do not match the colour
2485 exactly. However the function will still return true.
2487 return _gdi_
.DC_FloodFillPoint(*args
, **kwargs
)
2489 def GradientFillConcentric(*args
, **kwargs
):
2491 GradientFillConcentric(self, Rect rect, Colour initialColour, Colour destColour,
2494 Fill the area specified by rect with a radial gradient, starting from
2495 initialColour in the center of the circle and fading to destColour on
2496 the outside of the circle. The circleCenter argument is the relative
2497 coordinants of the center of the circle in the specified rect.
2499 Note: Currently this function is very slow, don't use it for real-time
2502 return _gdi_
.DC_GradientFillConcentric(*args
, **kwargs
)
2504 def GradientFillLinear(*args
, **kwargs
):
2506 GradientFillLinear(self, Rect rect, Colour initialColour, Colour destColour,
2507 int nDirection=EAST)
2509 Fill the area specified by rect with a linear gradient, starting from
2510 initialColour and eventually fading to destColour. The nDirection
2511 parameter specifies the direction of the colour change, default is to
2512 use initialColour on the left part of the rectangle and destColour on
2515 return _gdi_
.DC_GradientFillLinear(*args
, **kwargs
)
2517 def GetPixel(*args
, **kwargs
):
2519 GetPixel(self, int x, int y) -> Colour
2521 Gets the colour at the specified location on the DC.
2523 return _gdi_
.DC_GetPixel(*args
, **kwargs
)
2525 def GetPixelPoint(*args
, **kwargs
):
2526 """GetPixelPoint(self, Point pt) -> Colour"""
2527 return _gdi_
.DC_GetPixelPoint(*args
, **kwargs
)
2529 def DrawLine(*args
, **kwargs
):
2531 DrawLine(self, int x1, int y1, int x2, int y2)
2533 Draws a line from the first point to the second. The current pen is
2534 used for drawing the line. Note that the second point is *not* part of
2535 the line and is not drawn by this function (this is consistent with
2536 the behaviour of many other toolkits).
2538 return _gdi_
.DC_DrawLine(*args
, **kwargs
)
2540 def DrawLinePoint(*args
, **kwargs
):
2542 DrawLinePoint(self, Point pt1, Point pt2)
2544 Draws a line from the first point to the second. The current pen is
2545 used for drawing the line. Note that the second point is *not* part of
2546 the line and is not drawn by this function (this is consistent with
2547 the behaviour of many other toolkits).
2549 return _gdi_
.DC_DrawLinePoint(*args
, **kwargs
)
2551 def CrossHair(*args
, **kwargs
):
2553 CrossHair(self, int x, int y)
2555 Displays a cross hair using the current pen. This is a vertical and
2556 horizontal line the height and width of the window, centred on the
2559 return _gdi_
.DC_CrossHair(*args
, **kwargs
)
2561 def CrossHairPoint(*args
, **kwargs
):
2563 CrossHairPoint(self, Point pt)
2565 Displays a cross hair using the current pen. This is a vertical and
2566 horizontal line the height and width of the window, centred on the
2569 return _gdi_
.DC_CrossHairPoint(*args
, **kwargs
)
2571 def DrawArc(*args
, **kwargs
):
2573 DrawArc(self, int x1, int y1, int x2, int y2, int xc, int yc)
2575 Draws an arc of a circle, centred on the *center* point (xc, yc), from
2576 the first point to the second. The current pen is used for the outline
2577 and the current brush for filling the shape.
2579 The arc is drawn in an anticlockwise direction from the start point to
2582 return _gdi_
.DC_DrawArc(*args
, **kwargs
)
2584 def DrawArcPoint(*args
, **kwargs
):
2586 DrawArcPoint(self, Point pt1, Point pt2, Point center)
2588 Draws an arc of a circle, centred on the *center* point (xc, yc), from
2589 the first point to the second. The current pen is used for the outline
2590 and the current brush for filling the shape.
2592 The arc is drawn in an anticlockwise direction from the start point to
2595 return _gdi_
.DC_DrawArcPoint(*args
, **kwargs
)
2597 def DrawCheckMark(*args
, **kwargs
):
2599 DrawCheckMark(self, int x, int y, int width, int height)
2601 Draws a check mark inside the given rectangle.
2603 return _gdi_
.DC_DrawCheckMark(*args
, **kwargs
)
2605 def DrawCheckMarkRect(*args
, **kwargs
):
2607 DrawCheckMarkRect(self, Rect rect)
2609 Draws a check mark inside the given rectangle.
2611 return _gdi_
.DC_DrawCheckMarkRect(*args
, **kwargs
)
2613 def DrawEllipticArc(*args
, **kwargs
):
2615 DrawEllipticArc(self, int x, int y, int w, int h, double start, double end)
2617 Draws an arc of an ellipse, with the given rectangle defining the
2618 bounds of the ellipse. The current pen is used for drawing the arc and
2619 the current brush is used for drawing the pie.
2621 The *start* and *end* parameters specify the start and end of the arc
2622 relative to the three-o'clock position from the center of the
2623 rectangle. Angles are specified in degrees (360 is a complete
2624 circle). Positive values mean counter-clockwise motion. If start is
2625 equal to end, a complete ellipse will be drawn.
2627 return _gdi_
.DC_DrawEllipticArc(*args
, **kwargs
)
2629 def DrawEllipticArcPointSize(*args
, **kwargs
):
2631 DrawEllipticArcPointSize(self, Point pt, Size sz, double start, double end)
2633 Draws an arc of an ellipse, with the given rectangle defining the
2634 bounds of the ellipse. The current pen is used for drawing the arc and
2635 the current brush is used for drawing the pie.
2637 The *start* and *end* parameters specify the start and end of the arc
2638 relative to the three-o'clock position from the center of the
2639 rectangle. Angles are specified in degrees (360 is a complete
2640 circle). Positive values mean counter-clockwise motion. If start is
2641 equal to end, a complete ellipse will be drawn.
2643 return _gdi_
.DC_DrawEllipticArcPointSize(*args
, **kwargs
)
2645 def DrawPoint(*args
, **kwargs
):
2647 DrawPoint(self, int x, int y)
2649 Draws a point using the current pen.
2651 return _gdi_
.DC_DrawPoint(*args
, **kwargs
)
2653 def DrawPointPoint(*args
, **kwargs
):
2655 DrawPointPoint(self, Point pt)
2657 Draws a point using the current pen.
2659 return _gdi_
.DC_DrawPointPoint(*args
, **kwargs
)
2661 def DrawRectangle(*args
, **kwargs
):
2663 DrawRectangle(self, int x, int y, int width, int height)
2665 Draws a rectangle with the given top left corner, and with the given
2666 size. The current pen is used for the outline and the current brush
2667 for filling the shape.
2669 return _gdi_
.DC_DrawRectangle(*args
, **kwargs
)
2671 def DrawRectangleRect(*args
, **kwargs
):
2673 DrawRectangleRect(self, Rect rect)
2675 Draws a rectangle with the given top left corner, and with the given
2676 size. The current pen is used for the outline and the current brush
2677 for filling the shape.
2679 return _gdi_
.DC_DrawRectangleRect(*args
, **kwargs
)
2681 def DrawRectanglePointSize(*args
, **kwargs
):
2683 DrawRectanglePointSize(self, Point pt, Size sz)
2685 Draws a rectangle with the given top left corner, and with the given
2686 size. The current pen is used for the outline and the current brush
2687 for filling the shape.
2689 return _gdi_
.DC_DrawRectanglePointSize(*args
, **kwargs
)
2691 def DrawRoundedRectangle(*args
, **kwargs
):
2693 DrawRoundedRectangle(self, int x, int y, int width, int height, double radius)
2695 Draws a rectangle with the given top left corner, and with the given
2696 size. The corners are quarter-circles using the given radius. The
2697 current pen is used for the outline and the current brush for filling
2700 If radius is positive, the value is assumed to be the radius of the
2701 rounded corner. If radius is negative, the absolute value is assumed
2702 to be the proportion of the smallest dimension of the rectangle. This
2703 means that the corner can be a sensible size relative to the size of
2704 the rectangle, and also avoids the strange effects X produces when the
2705 corners are too big for the rectangle.
2707 return _gdi_
.DC_DrawRoundedRectangle(*args
, **kwargs
)
2709 def DrawRoundedRectangleRect(*args
, **kwargs
):
2711 DrawRoundedRectangleRect(self, Rect r, double radius)
2713 Draws a rectangle with the given top left corner, and with the given
2714 size. The corners are quarter-circles using the given radius. The
2715 current pen is used for the outline and the current brush for filling
2718 If radius is positive, the value is assumed to be the radius of the
2719 rounded corner. If radius is negative, the absolute value is assumed
2720 to be the proportion of the smallest dimension of the rectangle. This
2721 means that the corner can be a sensible size relative to the size of
2722 the rectangle, and also avoids the strange effects X produces when the
2723 corners are too big for the rectangle.
2725 return _gdi_
.DC_DrawRoundedRectangleRect(*args
, **kwargs
)
2727 def DrawRoundedRectanglePointSize(*args
, **kwargs
):
2729 DrawRoundedRectanglePointSize(self, Point pt, Size sz, double radius)
2731 Draws a rectangle with the given top left corner, and with the given
2732 size. The corners are quarter-circles using the given radius. The
2733 current pen is used for the outline and the current brush for filling
2736 If radius is positive, the value is assumed to be the radius of the
2737 rounded corner. If radius is negative, the absolute value is assumed
2738 to be the proportion of the smallest dimension of the rectangle. This
2739 means that the corner can be a sensible size relative to the size of
2740 the rectangle, and also avoids the strange effects X produces when the
2741 corners are too big for the rectangle.
2743 return _gdi_
.DC_DrawRoundedRectanglePointSize(*args
, **kwargs
)
2745 def DrawCircle(*args
, **kwargs
):
2747 DrawCircle(self, int x, int y, int radius)
2749 Draws a circle with the given center point and radius. The current
2750 pen is used for the outline and the current brush for filling the
2753 return _gdi_
.DC_DrawCircle(*args
, **kwargs
)
2755 def DrawCirclePoint(*args
, **kwargs
):
2757 DrawCirclePoint(self, Point pt, int radius)
2759 Draws a circle with the given center point and radius. The current
2760 pen is used for the outline and the current brush for filling the
2763 return _gdi_
.DC_DrawCirclePoint(*args
, **kwargs
)
2765 def DrawEllipse(*args
, **kwargs
):
2767 DrawEllipse(self, int x, int y, int width, int height)
2769 Draws an ellipse contained in the specified rectangle. The current pen
2770 is used for the outline and the current brush for filling the shape.
2772 return _gdi_
.DC_DrawEllipse(*args
, **kwargs
)
2774 def DrawEllipseRect(*args
, **kwargs
):
2776 DrawEllipseRect(self, Rect rect)
2778 Draws an ellipse contained in the specified rectangle. The current pen
2779 is used for the outline and the current brush for filling the shape.
2781 return _gdi_
.DC_DrawEllipseRect(*args
, **kwargs
)
2783 def DrawEllipsePointSize(*args
, **kwargs
):
2785 DrawEllipsePointSize(self, Point pt, Size sz)
2787 Draws an ellipse contained in the specified rectangle. The current pen
2788 is used for the outline and the current brush for filling the shape.
2790 return _gdi_
.DC_DrawEllipsePointSize(*args
, **kwargs
)
2792 def DrawIcon(*args
, **kwargs
):
2794 DrawIcon(self, Icon icon, int x, int y)
2796 Draw an icon on the display (does nothing if the device context is
2797 PostScript). This can be the simplest way of drawing bitmaps on a
2800 return _gdi_
.DC_DrawIcon(*args
, **kwargs
)
2802 def DrawIconPoint(*args
, **kwargs
):
2804 DrawIconPoint(self, Icon icon, Point pt)
2806 Draw an icon on the display (does nothing if the device context is
2807 PostScript). This can be the simplest way of drawing bitmaps on a
2810 return _gdi_
.DC_DrawIconPoint(*args
, **kwargs
)
2812 def DrawBitmap(*args
, **kwargs
):
2814 DrawBitmap(self, Bitmap bmp, int x, int y, bool useMask=False)
2816 Draw a bitmap on the device context at the specified point. If
2817 *transparent* is true and the bitmap has a transparency mask, (or
2818 alpha channel on the platforms that support it) then the bitmap will
2819 be drawn transparently.
2821 return _gdi_
.DC_DrawBitmap(*args
, **kwargs
)
2823 def DrawBitmapPoint(*args
, **kwargs
):
2825 DrawBitmapPoint(self, Bitmap bmp, Point pt, bool useMask=False)
2827 Draw a bitmap on the device context at the specified point. If
2828 *transparent* is true and the bitmap has a transparency mask, (or
2829 alpha channel on the platforms that support it) then the bitmap will
2830 be drawn transparently.
2832 return _gdi_
.DC_DrawBitmapPoint(*args
, **kwargs
)
2834 def DrawText(*args
, **kwargs
):
2836 DrawText(self, String text, int x, int y)
2838 Draws a text string at the specified point, using the current text
2839 font, and the current text foreground and background colours.
2841 The coordinates refer to the top-left corner of the rectangle bounding
2842 the string. See `GetTextExtent` for how to get the dimensions of a
2843 text string, which can be used to position the text more precisely.
2845 **NOTE**: under wxGTK the current logical function is used by this
2846 function but it is ignored by wxMSW. Thus, you should avoid using
2847 logical functions with this function in portable programs.
2849 return _gdi_
.DC_DrawText(*args
, **kwargs
)
2851 def DrawTextPoint(*args
, **kwargs
):
2853 DrawTextPoint(self, String text, Point pt)
2855 Draws a text string at the specified point, using the current text
2856 font, and the current text foreground and background colours.
2858 The coordinates refer to the top-left corner of the rectangle bounding
2859 the string. See `GetTextExtent` for how to get the dimensions of a
2860 text string, which can be used to position the text more precisely.
2862 **NOTE**: under wxGTK the current logical function is used by this
2863 function but it is ignored by wxMSW. Thus, you should avoid using
2864 logical functions with this function in portable programs.
2866 return _gdi_
.DC_DrawTextPoint(*args
, **kwargs
)
2868 def DrawRotatedText(*args
, **kwargs
):
2870 DrawRotatedText(self, String text, int x, int y, double angle)
2872 Draws the text rotated by *angle* degrees, if supported by the platform.
2874 **NOTE**: Under Win9x only TrueType fonts can be drawn by this
2875 function. In particular, a font different from ``wx.NORMAL_FONT``
2876 should be used as the it is not normally a TrueType
2877 font. ``wx.SWISS_FONT`` is an example of a font which is.
2879 return _gdi_
.DC_DrawRotatedText(*args
, **kwargs
)
2881 def DrawRotatedTextPoint(*args
, **kwargs
):
2883 DrawRotatedTextPoint(self, String text, Point pt, double angle)
2885 Draws the text rotated by *angle* degrees, if supported by the platform.
2887 **NOTE**: Under Win9x only TrueType fonts can be drawn by this
2888 function. In particular, a font different from ``wx.NORMAL_FONT``
2889 should be used as the it is not normally a TrueType
2890 font. ``wx.SWISS_FONT`` is an example of a font which is.
2892 return _gdi_
.DC_DrawRotatedTextPoint(*args
, **kwargs
)
2894 def Blit(*args
, **kwargs
):
2896 Blit(self, int xdest, int ydest, int width, int height, DC source,
2897 int xsrc, int ysrc, int rop=COPY, bool useMask=False,
2898 int xsrcMask=-1, int ysrcMask=-1) -> bool
2900 Copy from a source DC to this DC. Parameters specify the destination
2901 coordinates, size of area to copy, source DC, source coordinates,
2902 logical function, whether to use a bitmap mask, and mask source
2905 return _gdi_
.DC_Blit(*args
, **kwargs
)
2907 def BlitPointSize(*args
, **kwargs
):
2909 BlitPointSize(self, Point destPt, Size sz, DC source, Point srcPt, int rop=COPY,
2910 bool useMask=False, Point srcPtMask=DefaultPosition) -> bool
2912 Copy from a source DC to this DC. Parameters specify the destination
2913 coordinates, size of area to copy, source DC, source coordinates,
2914 logical function, whether to use a bitmap mask, and mask source
2917 return _gdi_
.DC_BlitPointSize(*args
, **kwargs
)
2919 def SetClippingRegion(*args
, **kwargs
):
2921 SetClippingRegion(self, int x, int y, int width, int height)
2923 Sets the clipping region for this device context to the intersection
2924 of the given region described by the parameters of this method and the
2925 previously set clipping region. You should call `DestroyClippingRegion`
2926 if you want to set the clipping region exactly to the region
2929 The clipping region is an area to which drawing is
2930 restricted. Possible uses for the clipping region are for clipping
2931 text or for speeding up window redraws when only a known area of the
2934 return _gdi_
.DC_SetClippingRegion(*args
, **kwargs
)
2936 def SetClippingRegionPointSize(*args
, **kwargs
):
2938 SetClippingRegionPointSize(self, Point pt, Size sz)
2940 Sets the clipping region for this device context to the intersection
2941 of the given region described by the parameters of this method and the
2942 previously set clipping region. You should call `DestroyClippingRegion`
2943 if you want to set the clipping region exactly to the region
2946 The clipping region is an area to which drawing is
2947 restricted. Possible uses for the clipping region are for clipping
2948 text or for speeding up window redraws when only a known area of the
2951 return _gdi_
.DC_SetClippingRegionPointSize(*args
, **kwargs
)
2953 def SetClippingRegionAsRegion(*args
, **kwargs
):
2955 SetClippingRegionAsRegion(self, Region region)
2957 Sets the clipping region for this device context to the intersection
2958 of the given region described by the parameters of this method and the
2959 previously set clipping region. You should call `DestroyClippingRegion`
2960 if you want to set the clipping region exactly to the region
2963 The clipping region is an area to which drawing is
2964 restricted. Possible uses for the clipping region are for clipping
2965 text or for speeding up window redraws when only a known area of the
2968 return _gdi_
.DC_SetClippingRegionAsRegion(*args
, **kwargs
)
2970 def SetClippingRect(*args
, **kwargs
):
2972 SetClippingRect(self, Rect rect)
2974 Sets the clipping region for this device context to the intersection
2975 of the given region described by the parameters of this method and the
2976 previously set clipping region. You should call `DestroyClippingRegion`
2977 if you want to set the clipping region exactly to the region
2980 The clipping region is an area to which drawing is
2981 restricted. Possible uses for the clipping region are for clipping
2982 text or for speeding up window redraws when only a known area of the
2985 return _gdi_
.DC_SetClippingRect(*args
, **kwargs
)
2987 def DrawLines(*args
, **kwargs
):
2989 DrawLines(self, List points, int xoffset=0, int yoffset=0)
2991 Draws lines using a sequence of `wx.Point` objects, adding the
2992 optional offset coordinate. The current pen is used for drawing the
2995 return _gdi_
.DC_DrawLines(*args
, **kwargs
)
2997 def DrawPolygon(*args
, **kwargs
):
2999 DrawPolygon(self, List points, int xoffset=0, int yoffset=0,
3000 int fillStyle=ODDEVEN_RULE)
3002 Draws a filled polygon using a sequence of `wx.Point` objects, adding
3003 the optional offset coordinate. The last argument specifies the fill
3004 rule: ``wx.ODDEVEN_RULE`` (the default) or ``wx.WINDING_RULE``.
3006 The current pen is used for drawing the outline, and the current brush
3007 for filling the shape. Using a transparent brush suppresses
3008 filling. Note that wxWidgets automatically closes the first and last
3011 return _gdi_
.DC_DrawPolygon(*args
, **kwargs
)
3013 def DrawLabel(*args
, **kwargs
):
3015 DrawLabel(self, String text, Rect rect, int alignment=wxALIGN_LEFT|wxALIGN_TOP,
3018 Draw *text* within the specified rectangle, abiding by the alignment
3019 flags. Will additionally emphasize the character at *indexAccel* if
3022 return _gdi_
.DC_DrawLabel(*args
, **kwargs
)
3024 def DrawImageLabel(*args
, **kwargs
):
3026 DrawImageLabel(self, String text, Bitmap image, Rect rect, int alignment=wxALIGN_LEFT|wxALIGN_TOP,
3027 int indexAccel=-1) -> Rect
3029 Draw *text* and an image (which may be ``wx.NullBitmap`` to skip
3030 drawing it) within the specified rectangle, abiding by the alignment
3031 flags. Will additionally emphasize the character at *indexAccel* if
3032 it is not -1. Returns the bounding rectangle.
3034 return _gdi_
.DC_DrawImageLabel(*args
, **kwargs
)
3036 def DrawSpline(*args
, **kwargs
):
3038 DrawSpline(self, List points)
3040 Draws a spline between all given control points, (a list of `wx.Point`
3041 objects) using the current pen. The spline is drawn using a series of
3042 lines, using an algorithm taken from the X drawing program 'XFIG'.
3044 return _gdi_
.DC_DrawSpline(*args
, **kwargs
)
3046 def Clear(*args
, **kwargs
):
3050 Clears the device context using the current background brush.
3052 return _gdi_
.DC_Clear(*args
, **kwargs
)
3054 def StartDoc(*args
, **kwargs
):
3056 StartDoc(self, String message) -> bool
3058 Starts a document (only relevant when outputting to a
3059 printer). *Message* is a message to show whilst printing.
3061 return _gdi_
.DC_StartDoc(*args
, **kwargs
)
3063 def EndDoc(*args
, **kwargs
):
3067 Ends a document (only relevant when outputting to a printer).
3069 return _gdi_
.DC_EndDoc(*args
, **kwargs
)
3071 def StartPage(*args
, **kwargs
):
3075 Starts a document page (only relevant when outputting to a printer).
3077 return _gdi_
.DC_StartPage(*args
, **kwargs
)
3079 def EndPage(*args
, **kwargs
):
3083 Ends a document page (only relevant when outputting to a printer).
3085 return _gdi_
.DC_EndPage(*args
, **kwargs
)
3087 def SetFont(*args
, **kwargs
):
3089 SetFont(self, Font font)
3091 Sets the current font for the DC. It must be a valid font, in
3092 particular you should not pass ``wx.NullFont`` to this method.
3094 return _gdi_
.DC_SetFont(*args
, **kwargs
)
3096 def SetPen(*args
, **kwargs
):
3098 SetPen(self, Pen pen)
3100 Sets the current pen for the DC.
3102 If the argument is ``wx.NullPen``, the current pen is selected out of the
3103 device context, and the original pen restored.
3105 return _gdi_
.DC_SetPen(*args
, **kwargs
)
3107 def SetBrush(*args
, **kwargs
):
3109 SetBrush(self, Brush brush)
3111 Sets the current brush for the DC.
3113 If the argument is ``wx.NullBrush``, the current brush is selected out
3114 of the device context, and the original brush restored, allowing the
3115 current brush to be destroyed safely.
3117 return _gdi_
.DC_SetBrush(*args
, **kwargs
)
3119 def SetBackground(*args
, **kwargs
):
3121 SetBackground(self, Brush brush)
3123 Sets the current background brush for the DC.
3125 return _gdi_
.DC_SetBackground(*args
, **kwargs
)
3127 def SetBackgroundMode(*args
, **kwargs
):
3129 SetBackgroundMode(self, int mode)
3131 *mode* may be one of ``wx.SOLID`` and ``wx.TRANSPARENT``. This setting
3132 determines whether text will be drawn with a background colour or
3135 return _gdi_
.DC_SetBackgroundMode(*args
, **kwargs
)
3137 def SetPalette(*args
, **kwargs
):
3139 SetPalette(self, Palette palette)
3141 If this is a window DC or memory DC, assigns the given palette to the
3142 window or bitmap associated with the DC. If the argument is
3143 ``wx.NullPalette``, the current palette is selected out of the device
3144 context, and the original palette restored.
3146 return _gdi_
.DC_SetPalette(*args
, **kwargs
)
3148 def DestroyClippingRegion(*args
, **kwargs
):
3150 DestroyClippingRegion(self)
3152 Destroys the current clipping region so that none of the DC is
3155 return _gdi_
.DC_DestroyClippingRegion(*args
, **kwargs
)
3157 def GetClippingBox(*args
, **kwargs
):
3159 GetClippingBox() -> (x, y, width, height)
3161 Gets the rectangle surrounding the current clipping region.
3163 return _gdi_
.DC_GetClippingBox(*args
, **kwargs
)
3165 def GetClippingRect(*args
, **kwargs
):
3167 GetClippingRect(self) -> Rect
3169 Gets the rectangle surrounding the current clipping region.
3171 return _gdi_
.DC_GetClippingRect(*args
, **kwargs
)
3173 def GetCharHeight(*args
, **kwargs
):
3175 GetCharHeight(self) -> int
3177 Gets the character height of the currently set font.
3179 return _gdi_
.DC_GetCharHeight(*args
, **kwargs
)
3181 def GetCharWidth(*args
, **kwargs
):
3183 GetCharWidth(self) -> int
3185 Gets the average character width of the currently set font.
3187 return _gdi_
.DC_GetCharWidth(*args
, **kwargs
)
3189 def GetTextExtent(*args
, **kwargs
):
3191 GetTextExtent(wxString string) -> (width, height)
3193 Get the width and height of the text using the current font. Only
3194 works for single line strings.
3196 return _gdi_
.DC_GetTextExtent(*args
, **kwargs
)
3198 def GetFullTextExtent(*args
, **kwargs
):
3200 GetFullTextExtent(wxString string, Font font=None) ->
3201 (width, height, descent, externalLeading)
3203 Get the width, height, decent and leading of the text using the
3204 current or specified font. Only works for single line strings.
3206 return _gdi_
.DC_GetFullTextExtent(*args
, **kwargs
)
3208 def GetMultiLineTextExtent(*args
, **kwargs
):
3210 GetMultiLineTextExtent(wxString string, Font font=None) ->
3211 (width, height, descent, externalLeading)
3213 Get the width, height, decent and leading of the text using the
3214 current or specified font. Works for single as well as multi-line
3217 return _gdi_
.DC_GetMultiLineTextExtent(*args
, **kwargs
)
3219 def GetPartialTextExtents(*args
, **kwargs
):
3221 GetPartialTextExtents(self, text) -> [widths]
3223 Returns a list of integers such that each value is the distance in
3224 pixels from the begining of text to the coresponding character of
3225 *text*. The generic version simply builds a running total of the widths
3226 of each character using GetTextExtent, however if the various
3227 platforms have a native API function that is faster or more accurate
3228 than the generic implementation then it will be used instead.
3230 return _gdi_
.DC_GetPartialTextExtents(*args
, **kwargs
)
3232 def GetSize(*args
, **kwargs
):
3234 GetSize(self) -> Size
3236 This gets the horizontal and vertical resolution in device units. It
3237 can be used to scale graphics to fit the page. For example, if *maxX*
3238 and *maxY* represent the maximum horizontal and vertical 'pixel' values
3239 used in your application, the following code will scale the graphic to
3240 fit on the printer page::
3243 scaleX = maxX*1.0 / w
3244 scaleY = maxY*1.0 / h
3245 dc.SetUserScale(min(scaleX,scaleY),min(scaleX,scaleY))
3248 return _gdi_
.DC_GetSize(*args
, **kwargs
)
3250 def GetSizeTuple(*args
, **kwargs
):
3252 GetSizeTuple() -> (width, height)
3254 This gets the horizontal and vertical resolution in device units. It
3255 can be used to scale graphics to fit the page. For example, if *maxX*
3256 and *maxY* represent the maximum horizontal and vertical 'pixel' values
3257 used in your application, the following code will scale the graphic to
3258 fit on the printer page::
3261 scaleX = maxX*1.0 / w
3262 scaleY = maxY*1.0 / h
3263 dc.SetUserScale(min(scaleX,scaleY),min(scaleX,scaleY))
3266 return _gdi_
.DC_GetSizeTuple(*args
, **kwargs
)
3268 def GetSizeMM(*args
, **kwargs
):
3270 GetSizeMM(self) -> Size
3272 Get the DC size in milimeters.
3274 return _gdi_
.DC_GetSizeMM(*args
, **kwargs
)
3276 def GetSizeMMTuple(*args
, **kwargs
):
3278 GetSizeMMTuple() -> (width, height)
3280 Get the DC size in milimeters.
3282 return _gdi_
.DC_GetSizeMMTuple(*args
, **kwargs
)
3284 def DeviceToLogicalX(*args
, **kwargs
):
3286 DeviceToLogicalX(self, int x) -> int
3288 Convert device X coordinate to logical coordinate, using the current
3291 return _gdi_
.DC_DeviceToLogicalX(*args
, **kwargs
)
3293 def DeviceToLogicalY(*args
, **kwargs
):
3295 DeviceToLogicalY(self, int y) -> int
3297 Converts device Y coordinate to logical coordinate, using the current
3300 return _gdi_
.DC_DeviceToLogicalY(*args
, **kwargs
)
3302 def DeviceToLogicalXRel(*args
, **kwargs
):
3304 DeviceToLogicalXRel(self, int x) -> int
3306 Convert device X coordinate to relative logical coordinate, using the
3307 current mapping mode but ignoring the x axis orientation. Use this
3308 function for converting a width, for example.
3310 return _gdi_
.DC_DeviceToLogicalXRel(*args
, **kwargs
)
3312 def DeviceToLogicalYRel(*args
, **kwargs
):
3314 DeviceToLogicalYRel(self, int y) -> int
3316 Convert device Y coordinate to relative logical coordinate, using the
3317 current mapping mode but ignoring the y axis orientation. Use this
3318 function for converting a height, for example.
3320 return _gdi_
.DC_DeviceToLogicalYRel(*args
, **kwargs
)
3322 def LogicalToDeviceX(*args
, **kwargs
):
3324 LogicalToDeviceX(self, int x) -> int
3326 Converts logical X coordinate to device coordinate, using the current
3329 return _gdi_
.DC_LogicalToDeviceX(*args
, **kwargs
)
3331 def LogicalToDeviceY(*args
, **kwargs
):
3333 LogicalToDeviceY(self, int y) -> int
3335 Converts logical Y coordinate to device coordinate, using the current
3338 return _gdi_
.DC_LogicalToDeviceY(*args
, **kwargs
)
3340 def LogicalToDeviceXRel(*args
, **kwargs
):
3342 LogicalToDeviceXRel(self, int x) -> int
3344 Converts logical X coordinate to relative device coordinate, using the
3345 current mapping mode but ignoring the x axis orientation. Use this for
3346 converting a width, for example.
3348 return _gdi_
.DC_LogicalToDeviceXRel(*args
, **kwargs
)
3350 def LogicalToDeviceYRel(*args
, **kwargs
):
3352 LogicalToDeviceYRel(self, int y) -> int
3354 Converts logical Y coordinate to relative device coordinate, using the
3355 current mapping mode but ignoring the y axis orientation. Use this for
3356 converting a height, for example.
3358 return _gdi_
.DC_LogicalToDeviceYRel(*args
, **kwargs
)
3360 def CanDrawBitmap(*args
, **kwargs
):
3361 """CanDrawBitmap(self) -> bool"""
3362 return _gdi_
.DC_CanDrawBitmap(*args
, **kwargs
)
3364 def CanGetTextExtent(*args
, **kwargs
):
3365 """CanGetTextExtent(self) -> bool"""
3366 return _gdi_
.DC_CanGetTextExtent(*args
, **kwargs
)
3368 def GetDepth(*args
, **kwargs
):
3370 GetDepth(self) -> int
3372 Returns the colour depth of the DC.
3374 return _gdi_
.DC_GetDepth(*args
, **kwargs
)
3376 def GetPPI(*args
, **kwargs
):
3378 GetPPI(self) -> Size
3380 Resolution in pixels per inch
3382 return _gdi_
.DC_GetPPI(*args
, **kwargs
)
3384 def Ok(*args
, **kwargs
):
3388 Returns true if the DC is ok to use.
3390 return _gdi_
.DC_Ok(*args
, **kwargs
)
3392 def GetBackgroundMode(*args
, **kwargs
):
3394 GetBackgroundMode(self) -> int
3396 Returns the current background mode, either ``wx.SOLID`` or
3399 return _gdi_
.DC_GetBackgroundMode(*args
, **kwargs
)
3401 def GetBackground(*args
, **kwargs
):
3403 GetBackground(self) -> Brush
3405 Gets the brush used for painting the background.
3407 return _gdi_
.DC_GetBackground(*args
, **kwargs
)
3409 def GetBrush(*args
, **kwargs
):
3411 GetBrush(self) -> Brush
3413 Gets the current brush
3415 return _gdi_
.DC_GetBrush(*args
, **kwargs
)
3417 def GetFont(*args
, **kwargs
):
3419 GetFont(self) -> Font
3421 Gets the current font
3423 return _gdi_
.DC_GetFont(*args
, **kwargs
)
3425 def GetPen(*args
, **kwargs
):
3429 Gets the current pen
3431 return _gdi_
.DC_GetPen(*args
, **kwargs
)
3433 def GetTextBackground(*args
, **kwargs
):
3435 GetTextBackground(self) -> Colour
3437 Gets the current text background colour
3439 return _gdi_
.DC_GetTextBackground(*args
, **kwargs
)
3441 def GetTextForeground(*args
, **kwargs
):
3443 GetTextForeground(self) -> Colour
3445 Gets the current text foreground colour
3447 return _gdi_
.DC_GetTextForeground(*args
, **kwargs
)
3449 def SetTextForeground(*args
, **kwargs
):
3451 SetTextForeground(self, Colour colour)
3453 Sets the current text foreground colour for the DC.
3455 return _gdi_
.DC_SetTextForeground(*args
, **kwargs
)
3457 def SetTextBackground(*args
, **kwargs
):
3459 SetTextBackground(self, Colour colour)
3461 Sets the current text background colour for the DC.
3463 return _gdi_
.DC_SetTextBackground(*args
, **kwargs
)
3465 def GetMapMode(*args
, **kwargs
):
3467 GetMapMode(self) -> int
3469 Gets the current *mapping mode* for the device context
3471 return _gdi_
.DC_GetMapMode(*args
, **kwargs
)
3473 def SetMapMode(*args
, **kwargs
):
3475 SetMapMode(self, int mode)
3477 The *mapping mode* of the device context defines the unit of
3478 measurement used to convert logical units to device units. The
3479 mapping mode can be one of the following:
3481 ================ =============================================
3482 wx.MM_TWIPS Each logical unit is 1/20 of a point, or 1/1440
3484 wx.MM_POINTS Each logical unit is a point, or 1/72 of an inch.
3485 wx.MM_METRIC Each logical unit is 1 mm.
3486 wx.MM_LOMETRIC Each logical unit is 1/10 of a mm.
3487 wx.MM_TEXT Each logical unit is 1 pixel.
3488 ================ =============================================
3491 return _gdi_
.DC_SetMapMode(*args
, **kwargs
)
3493 def GetUserScale(*args
, **kwargs
):
3495 GetUserScale(self) -> (xScale, yScale)
3497 Gets the current user scale factor (set by `SetUserScale`).
3499 return _gdi_
.DC_GetUserScale(*args
, **kwargs
)
3501 def SetUserScale(*args
, **kwargs
):
3503 SetUserScale(self, double x, double y)
3505 Sets the user scaling factor, useful for applications which require
3508 return _gdi_
.DC_SetUserScale(*args
, **kwargs
)
3510 def GetLogicalScale(*args
, **kwargs
):
3511 """GetLogicalScale() -> (xScale, yScale)"""
3512 return _gdi_
.DC_GetLogicalScale(*args
, **kwargs
)
3514 def SetLogicalScale(*args
, **kwargs
):
3515 """SetLogicalScale(self, double x, double y)"""
3516 return _gdi_
.DC_SetLogicalScale(*args
, **kwargs
)
3518 def GetLogicalOrigin(*args
, **kwargs
):
3519 """GetLogicalOrigin(self) -> Point"""
3520 return _gdi_
.DC_GetLogicalOrigin(*args
, **kwargs
)
3522 def GetLogicalOriginTuple(*args
, **kwargs
):
3523 """GetLogicalOriginTuple() -> (x,y)"""
3524 return _gdi_
.DC_GetLogicalOriginTuple(*args
, **kwargs
)
3526 def SetLogicalOrigin(*args
, **kwargs
):
3527 """SetLogicalOrigin(self, int x, int y)"""
3528 return _gdi_
.DC_SetLogicalOrigin(*args
, **kwargs
)
3530 def SetLogicalOriginPoint(*args
, **kwargs
):
3531 """SetLogicalOriginPoint(self, Point point)"""
3532 return _gdi_
.DC_SetLogicalOriginPoint(*args
, **kwargs
)
3534 def GetDeviceOrigin(*args
, **kwargs
):
3535 """GetDeviceOrigin(self) -> Point"""
3536 return _gdi_
.DC_GetDeviceOrigin(*args
, **kwargs
)
3538 def GetDeviceOriginTuple(*args
, **kwargs
):
3539 """GetDeviceOriginTuple() -> (x,y)"""
3540 return _gdi_
.DC_GetDeviceOriginTuple(*args
, **kwargs
)
3542 def SetDeviceOrigin(*args
, **kwargs
):
3543 """SetDeviceOrigin(self, int x, int y)"""
3544 return _gdi_
.DC_SetDeviceOrigin(*args
, **kwargs
)
3546 def SetDeviceOriginPoint(*args
, **kwargs
):
3547 """SetDeviceOriginPoint(self, Point point)"""
3548 return _gdi_
.DC_SetDeviceOriginPoint(*args
, **kwargs
)
3550 def SetAxisOrientation(*args
, **kwargs
):
3552 SetAxisOrientation(self, bool xLeftRight, bool yBottomUp)
3554 Sets the x and y axis orientation (i.e., the direction from lowest to
3555 highest values on the axis). The default orientation is the natural
3556 orientation, e.g. x axis from left to right and y axis from bottom up.
3558 return _gdi_
.DC_SetAxisOrientation(*args
, **kwargs
)
3560 def GetLogicalFunction(*args
, **kwargs
):
3562 GetLogicalFunction(self) -> int
3564 Gets the current logical function (set by `SetLogicalFunction`).
3566 return _gdi_
.DC_GetLogicalFunction(*args
, **kwargs
)
3568 def SetLogicalFunction(*args
, **kwargs
):
3570 SetLogicalFunction(self, int function)
3572 Sets the current logical function for the device context. This
3573 determines how a source pixel (from a pen or brush colour, or source
3574 device context if using `Blit`) combines with a destination pixel in
3575 the current device context.
3577 The possible values and their meaning in terms of source and
3578 destination pixel values are as follows:
3580 ================ ==========================
3582 wx.AND_INVERT (NOT src) AND dst
3583 wx.AND_REVERSE src AND (NOT dst)
3586 wx.EQUIV (NOT src) XOR dst
3588 wx.NAND (NOT src) OR (NOT dst)
3589 wx.NOR (NOT src) AND (NOT dst)
3592 wx.OR_INVERT (NOT src) OR dst
3593 wx.OR_REVERSE src OR (NOT dst)
3595 wx.SRC_INVERT NOT src
3597 ================ ==========================
3599 The default is wx.COPY, which simply draws with the current
3600 colour. The others combine the current colour and the background using
3601 a logical operation. wx.INVERT is commonly used for drawing rubber
3602 bands or moving outlines, since drawing twice reverts to the original
3606 return _gdi_
.DC_SetLogicalFunction(*args
, **kwargs
)
3608 def ComputeScaleAndOrigin(*args
, **kwargs
):
3610 ComputeScaleAndOrigin(self)
3612 Performs all necessary computations for given platform and context
3613 type after each change of scale and origin parameters. Usually called
3614 automatically internally after such changes.
3617 return _gdi_
.DC_ComputeScaleAndOrigin(*args
, **kwargs
)
3619 def SetOptimization(self
, optimize
):
3621 def GetOptimization(self
):
3624 SetOptimization
= wx
._deprecated
(SetOptimization
)
3625 GetOptimization
= wx
._deprecated
(GetOptimization
)
3627 def CalcBoundingBox(*args
, **kwargs
):
3629 CalcBoundingBox(self, int x, int y)
3631 Adds the specified point to the bounding box which can be retrieved
3632 with `MinX`, `MaxX` and `MinY`, `MaxY` or `GetBoundingBox` functions.
3634 return _gdi_
.DC_CalcBoundingBox(*args
, **kwargs
)
3636 def CalcBoundingBoxPoint(*args
, **kwargs
):
3638 CalcBoundingBoxPoint(self, Point point)
3640 Adds the specified point to the bounding box which can be retrieved
3641 with `MinX`, `MaxX` and `MinY`, `MaxY` or `GetBoundingBox` functions.
3643 return _gdi_
.DC_CalcBoundingBoxPoint(*args
, **kwargs
)
3645 def ResetBoundingBox(*args
, **kwargs
):
3647 ResetBoundingBox(self)
3649 Resets the bounding box: after a call to this function, the bounding
3650 box doesn't contain anything.
3652 return _gdi_
.DC_ResetBoundingBox(*args
, **kwargs
)
3654 def MinX(*args
, **kwargs
):
3658 Gets the minimum horizontal extent used in drawing commands so far.
3660 return _gdi_
.DC_MinX(*args
, **kwargs
)
3662 def MaxX(*args
, **kwargs
):
3666 Gets the maximum horizontal extent used in drawing commands so far.
3668 return _gdi_
.DC_MaxX(*args
, **kwargs
)
3670 def MinY(*args
, **kwargs
):
3674 Gets the minimum vertical extent used in drawing commands so far.
3676 return _gdi_
.DC_MinY(*args
, **kwargs
)
3678 def MaxY(*args
, **kwargs
):
3682 Gets the maximum vertical extent used in drawing commands so far.
3684 return _gdi_
.DC_MaxY(*args
, **kwargs
)
3686 def GetBoundingBox(*args
, **kwargs
):
3688 GetBoundingBox() -> (x1,y1, x2,y2)
3690 Returns the min and max points used in drawing commands so far.
3692 return _gdi_
.DC_GetBoundingBox(*args
, **kwargs
)
3694 def __nonzero__(self
): return self
.Ok()
3695 def _DrawPointList(*args
, **kwargs
):
3696 """_DrawPointList(self, PyObject pyCoords, PyObject pyPens, PyObject pyBrushes) -> PyObject"""
3697 return _gdi_
.DC__DrawPointList(*args
, **kwargs
)
3699 def _DrawLineList(*args
, **kwargs
):
3700 """_DrawLineList(self, PyObject pyCoords, PyObject pyPens, PyObject pyBrushes) -> PyObject"""
3701 return _gdi_
.DC__DrawLineList(*args
, **kwargs
)
3703 def _DrawRectangleList(*args
, **kwargs
):
3704 """_DrawRectangleList(self, PyObject pyCoords, PyObject pyPens, PyObject pyBrushes) -> PyObject"""
3705 return _gdi_
.DC__DrawRectangleList(*args
, **kwargs
)
3707 def _DrawEllipseList(*args
, **kwargs
):
3708 """_DrawEllipseList(self, PyObject pyCoords, PyObject pyPens, PyObject pyBrushes) -> PyObject"""
3709 return _gdi_
.DC__DrawEllipseList(*args
, **kwargs
)
3711 def _DrawPolygonList(*args
, **kwargs
):
3712 """_DrawPolygonList(self, PyObject pyCoords, PyObject pyPens, PyObject pyBrushes) -> PyObject"""
3713 return _gdi_
.DC__DrawPolygonList(*args
, **kwargs
)
3715 def _DrawTextList(*args
, **kwargs
):
3717 _DrawTextList(self, PyObject textList, PyObject pyPoints, PyObject foregroundList,
3718 PyObject backgroundList) -> PyObject
3720 return _gdi_
.DC__DrawTextList(*args
, **kwargs
)
3722 def DrawPointList(self
, points
, pens
=None):
3724 Draw a list of points as quickly as possible.
3726 :param points: A sequence of 2-element sequences representing
3727 each point to draw, (x,y).
3728 :param pens: If None, then the current pen is used. If a
3729 single pen then it will be used for all points. If
3730 a list of pens then there should be one for each point
3735 elif isinstance(pens
, wx
.Pen
):
3737 elif len(pens
) != len(points
):
3738 raise ValueError('points and pens must have same length')
3739 return self
._DrawPointList
(points
, pens
, [])
3742 def DrawLineList(self
, lines
, pens
=None):
3744 Draw a list of lines as quickly as possible.
3746 :param lines: A sequence of 4-element sequences representing
3747 each line to draw, (x1,y1, x2,y2).
3748 :param pens: If None, then the current pen is used. If a
3749 single pen then it will be used for all lines. If
3750 a list of pens then there should be one for each line
3755 elif isinstance(pens
, wx
.Pen
):
3757 elif len(pens
) != len(lines
):
3758 raise ValueError('lines and pens must have same length')
3759 return self
._DrawLineList
(lines
, pens
, [])
3762 def DrawRectangleList(self
, rectangles
, pens
=None, brushes
=None):
3764 Draw a list of rectangles as quickly as possible.
3766 :param rectangles: A sequence of 4-element sequences representing
3767 each rectangle to draw, (x,y, w,h).
3768 :param pens: If None, then the current pen is used. If a
3769 single pen then it will be used for all rectangles.
3770 If a list of pens then there should be one for each
3771 rectangle in rectangles.
3772 :param brushes: A brush or brushes to be used to fill the rectagles,
3773 with similar semantics as the pens parameter.
3777 elif isinstance(pens
, wx
.Pen
):
3779 elif len(pens
) != len(rectangles
):
3780 raise ValueError('rectangles and pens must have same length')
3783 elif isinstance(brushes
, wx
.Brush
):
3785 elif len(brushes
) != len(rectangles
):
3786 raise ValueError('rectangles and brushes must have same length')
3787 return self
._DrawRectangleList
(rectangles
, pens
, brushes
)
3790 def DrawEllipseList(self
, ellipses
, pens
=None, brushes
=None):
3792 Draw a list of ellipses as quickly as possible.
3794 :param ellipses: A sequence of 4-element sequences representing
3795 each ellipse to draw, (x,y, w,h).
3796 :param pens: If None, then the current pen is used. If a
3797 single pen then it will be used for all ellipses.
3798 If a list of pens then there should be one for each
3799 ellipse in ellipses.
3800 :param brushes: A brush or brushes to be used to fill the ellipses,
3801 with similar semantics as the pens parameter.
3805 elif isinstance(pens
, wx
.Pen
):
3807 elif len(pens
) != len(ellipses
):
3808 raise ValueError('ellipses and pens must have same length')
3811 elif isinstance(brushes
, wx
.Brush
):
3813 elif len(brushes
) != len(ellipses
):
3814 raise ValueError('ellipses and brushes must have same length')
3815 return self
._DrawEllipseList
(ellipses
, pens
, brushes
)
3818 def DrawPolygonList(self
, polygons
, pens
=None, brushes
=None):
3820 Draw a list of polygons, each of which is a list of points.
3822 :param polygons: A sequence of sequences of sequences.
3823 [[(x1,y1),(x2,y2),(x3,y3)...],
3824 [(x1,y1),(x2,y2),(x3,y3)...]]
3826 :param pens: If None, then the current pen is used. If a
3827 single pen then it will be used for all polygons.
3828 If a list of pens then there should be one for each
3830 :param brushes: A brush or brushes to be used to fill the polygons,
3831 with similar semantics as the pens parameter.
3835 elif isinstance(pens
, wx
.Pen
):
3837 elif len(pens
) != len(polygons
):
3838 raise ValueError('polygons and pens must have same length')
3841 elif isinstance(brushes
, wx
.Brush
):
3843 elif len(brushes
) != len(polygons
):
3844 raise ValueError('polygons and brushes must have same length')
3845 return self
._DrawPolygonList
(polygons
, pens
, brushes
)
3848 def DrawTextList(self
, textList
, coords
, foregrounds
= None, backgrounds
= None):
3850 Draw a list of strings using a list of coordinants for positioning each string.
3852 :param textList: A list of strings
3853 :param coords: A list of (x,y) positions
3854 :param foregrounds: A list of `wx.Colour` objects to use for the
3855 foregrounds of the strings.
3856 :param backgrounds: A list of `wx.Colour` objects to use for the
3857 backgrounds of the strings.
3859 NOTE: Make sure you set Background mode to wx.Solid (DC.SetBackgroundMode)
3860 If you want backgrounds to do anything.
3862 if type(textList
) == type(''):
3863 textList
= [textList
]
3864 elif len(textList
) != len(coords
):
3865 raise ValueError('textlist and coords must have same length')
3866 if foregrounds
is None:
3868 elif isinstance(foregrounds
, wx
.Colour
):
3869 foregrounds
= [foregrounds
]
3870 elif len(foregrounds
) != len(coords
):
3871 raise ValueError('foregrounds and coords must have same length')
3872 if backgrounds
is None:
3874 elif isinstance(backgrounds
, wx
.Colour
):
3875 backgrounds
= [backgrounds
]
3876 elif len(backgrounds
) != len(coords
):
3877 raise ValueError('backgrounds and coords must have same length')
3878 return self
._DrawTextList
(textList
, coords
, foregrounds
, backgrounds
)
3880 _gdi_
.DC_swigregister(DC
)
3882 #---------------------------------------------------------------------------
3886 A memory device context provides a means to draw graphics onto a
3887 bitmap. A bitmap must be selected into the new memory DC before it may
3888 be used for anything. Typical usage is as follows::
3891 dc.SelectObject(bitmap)
3892 # draw on the dc usign any of the Draw methods
3893 dc.SelectObject(wx.NullBitmap)
3894 # the bitmap now contains wahtever was drawn upon it
3896 Note that the memory DC *must* be deleted (or the bitmap selected out
3897 of it) before a bitmap can be reselected into another memory DC.
3900 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
3901 __repr__
= _swig_repr
3902 def __init__(self
, *args
, **kwargs
):
3904 __init__(self) -> MemoryDC
3906 Constructs a new memory device context.
3908 Use the Ok member to test whether the constructor was successful in
3909 creating a usable device context. Don't forget to select a bitmap into
3910 the DC before drawing on it.
3912 _gdi_
.MemoryDC_swiginit(self
,_gdi_
.new_MemoryDC(*args
, **kwargs
))
3913 def SelectObject(*args
, **kwargs
):
3915 SelectObject(self, Bitmap bitmap)
3917 Selects the bitmap into the device context, to use as the memory
3918 bitmap. Selecting the bitmap into a memory DC allows you to draw into
3919 the DC, and therefore the bitmap, and also to use Blit to copy the
3922 If the argument is wx.NullBitmap (or some other uninitialised
3923 `wx.Bitmap`) the current bitmap is selected out of the device context,
3924 and the original bitmap restored, allowing the current bitmap to be
3927 return _gdi_
.MemoryDC_SelectObject(*args
, **kwargs
)
3929 _gdi_
.MemoryDC_swigregister(MemoryDC
)
3931 def MemoryDCFromDC(*args
, **kwargs
):
3933 MemoryDCFromDC(DC oldDC) -> MemoryDC
3935 Creates a DC that is compatible with the oldDC.
3937 val
= _gdi_
.new_MemoryDCFromDC(*args
, **kwargs
)
3940 #---------------------------------------------------------------------------
3942 BUFFER_VIRTUAL_AREA
= _gdi_
.BUFFER_VIRTUAL_AREA
3943 BUFFER_CLIENT_AREA
= _gdi_
.BUFFER_CLIENT_AREA
3944 class BufferedDC(MemoryDC
):
3946 This simple class provides a simple way to avoid flicker: when drawing
3947 on it, everything is in fact first drawn on an in-memory buffer (a
3948 `wx.Bitmap`) and then copied to the screen only once, when this object
3951 It can be used in the same way as any other device
3952 context. wx.BufferedDC itself typically replaces `wx.ClientDC`, if you
3953 want to use it in your EVT_PAINT handler, you should look at
3954 `wx.BufferedPaintDC`.
3957 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
3958 __repr__
= _swig_repr
3959 def __init__(self
, *args
):
3961 __init__(self, DC dc, Bitmap buffer=NullBitmap, int style=BUFFER_CLIENT_AREA) -> BufferedDC
3962 __init__(self, DC dc, Size area, int style=BUFFER_CLIENT_AREA) -> BufferedDC
3964 Constructs a buffered DC.
3966 _gdi_
.BufferedDC_swiginit(self
,_gdi_
.new_BufferedDC(*args
))
3967 self
.__dc
= args
[0] # save a ref so the other dc will not be deleted before self
3969 __swig_destroy__
= _gdi_
.delete_BufferedDC
3970 __del__
= lambda self
: None;
3971 def UnMask(*args
, **kwargs
):
3975 Blits the buffer to the dc, and detaches the dc from the buffer (so it
3976 can be effectively used once only). This is usually only called in
3979 return _gdi_
.BufferedDC_UnMask(*args
, **kwargs
)
3981 _gdi_
.BufferedDC_swigregister(BufferedDC
)
3983 class BufferedPaintDC(BufferedDC
):
3985 This is a subclass of `wx.BufferedDC` which can be used inside of an
3986 EVT_PAINT event handler. Just create an object of this class instead
3987 of `wx.PaintDC` and that's all you have to do to (mostly) avoid
3988 flicker. The only thing to watch out for is that if you are using this
3989 class together with `wx.ScrolledWindow`, you probably do **not** want
3990 to call `wx.Window.PrepareDC` on it as it already does this internally
3991 for the real underlying `wx.PaintDC`.
3993 If your window is already fully buffered in a `wx.Bitmap` then your
3994 EVT_PAINT handler can be as simple as just creating a
3995 ``wx.BufferedPaintDC`` as it will `Blit` the buffer to the window
3996 automatically when it is destroyed. For example::
3998 def OnPaint(self, event):
3999 dc = wx.BufferedPaintDC(self, self.buffer)
4006 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
4007 __repr__
= _swig_repr
4008 def __init__(self
, *args
, **kwargs
):
4010 __init__(self, Window window, Bitmap buffer=NullBitmap, int style=BUFFER_CLIENT_AREA) -> BufferedPaintDC
4012 Create a buffered paint DC. As with `wx.BufferedDC`, you may either
4013 provide the bitmap to be used for buffering or let this object create
4014 one internally (in the latter case, the size of the client part of the
4015 window is automatically used).
4019 _gdi_
.BufferedPaintDC_swiginit(self
,_gdi_
.new_BufferedPaintDC(*args
, **kwargs
))
4020 _gdi_
.BufferedPaintDC_swigregister(BufferedPaintDC
)
4022 #---------------------------------------------------------------------------
4026 A wxScreenDC can be used to paint anywhere on the screen. This should
4027 normally be constructed as a temporary stack object; don't store a
4031 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
4032 __repr__
= _swig_repr
4033 def __init__(self
, *args
, **kwargs
):
4035 __init__(self) -> ScreenDC
4037 A wxScreenDC can be used to paint anywhere on the screen. This should
4038 normally be constructed as a temporary stack object; don't store a
4042 _gdi_
.ScreenDC_swiginit(self
,_gdi_
.new_ScreenDC(*args
, **kwargs
))
4043 def StartDrawingOnTopWin(*args
, **kwargs
):
4045 StartDrawingOnTopWin(self, Window window) -> bool
4047 Specify that the area of the screen to be drawn upon coincides with
4050 :see: `EndDrawingOnTop`
4052 return _gdi_
.ScreenDC_StartDrawingOnTopWin(*args
, **kwargs
)
4054 def StartDrawingOnTop(*args
, **kwargs
):
4056 StartDrawingOnTop(self, Rect rect=None) -> bool
4058 Specify that the area is the given rectangle, or the whole screen if
4061 :see: `EndDrawingOnTop`
4063 return _gdi_
.ScreenDC_StartDrawingOnTop(*args
, **kwargs
)
4065 def EndDrawingOnTop(*args
, **kwargs
):
4067 EndDrawingOnTop(self) -> bool
4069 Use this in conjunction with `StartDrawingOnTop` or
4070 `StartDrawingOnTopWin` to ensure that drawing to the screen occurs on
4071 top of existing windows. Without this, some window systems (such as X)
4072 only allow drawing to take place underneath other windows.
4074 You might use this pair of functions when implementing a drag feature,
4075 for example as in the `wx.SplitterWindow` implementation.
4077 These functions are probably obsolete since the X implementations
4078 allow drawing directly on the screen now. However, the fact that this
4079 function allows the screen to be refreshed afterwards may be useful
4080 to some applications.
4082 return _gdi_
.ScreenDC_EndDrawingOnTop(*args
, **kwargs
)
4084 _gdi_
.ScreenDC_swigregister(ScreenDC
)
4086 #---------------------------------------------------------------------------
4090 A wx.ClientDC must be constructed if an application wishes to paint on
4091 the client area of a window from outside an EVT_PAINT event. This should
4092 normally be constructed as a temporary stack object; don't store a
4093 wx.ClientDC object long term.
4095 To draw on a window from within an EVT_PAINT handler, construct a
4096 `wx.PaintDC` object.
4098 To draw on the whole window including decorations, construct a
4099 `wx.WindowDC` object (Windows only).
4102 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
4103 __repr__
= _swig_repr
4104 def __init__(self
, *args
, **kwargs
):
4106 __init__(self, Window win) -> ClientDC
4108 Constructor. Pass the window on which you wish to paint.
4110 _gdi_
.ClientDC_swiginit(self
,_gdi_
.new_ClientDC(*args
, **kwargs
))
4111 _gdi_
.ClientDC_swigregister(ClientDC
)
4113 #---------------------------------------------------------------------------
4117 A wx.PaintDC must be constructed if an application wishes to paint on
4118 the client area of a window from within an EVT_PAINT event
4119 handler. This should normally be constructed as a temporary stack
4120 object; don't store a wx.PaintDC object. If you have an EVT_PAINT
4121 handler, you **must** create a wx.PaintDC object within it even if you
4122 don't actually use it.
4124 Using wx.PaintDC within EVT_PAINT handlers is important because it
4125 automatically sets the clipping area to the damaged area of the
4126 window. Attempts to draw outside this area do not appear.
4128 To draw on a window from outside EVT_PAINT handlers, construct a
4129 `wx.ClientDC` object.
4132 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
4133 __repr__
= _swig_repr
4134 def __init__(self
, *args
, **kwargs
):
4136 __init__(self, Window win) -> PaintDC
4138 Constructor. Pass the window on which you wish to paint.
4140 _gdi_
.PaintDC_swiginit(self
,_gdi_
.new_PaintDC(*args
, **kwargs
))
4141 _gdi_
.PaintDC_swigregister(PaintDC
)
4143 #---------------------------------------------------------------------------
4147 A wx.WindowDC must be constructed if an application wishes to paint on
4148 the whole area of a window (client and decorations). This should
4149 normally be constructed as a temporary stack object; don't store a
4152 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
4153 __repr__
= _swig_repr
4154 def __init__(self
, *args
, **kwargs
):
4156 __init__(self, Window win) -> WindowDC
4158 Constructor. Pass the window on which you wish to paint.
4160 _gdi_
.WindowDC_swiginit(self
,_gdi_
.new_WindowDC(*args
, **kwargs
))
4161 _gdi_
.WindowDC_swigregister(WindowDC
)
4163 #---------------------------------------------------------------------------
4167 wx.MirrorDC is a simple wrapper class which is always associated with a
4168 real `wx.DC` object and either forwards all of its operations to it
4169 without changes (no mirroring takes place) or exchanges x and y
4170 coordinates which makes it possible to reuse the same code to draw a
4171 figure and its mirror -- i.e. reflection related to the diagonal line
4174 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
4175 __repr__
= _swig_repr
4176 def __init__(self
, *args
, **kwargs
):
4178 __init__(self, DC dc, bool mirror) -> MirrorDC
4180 Creates a mirrored DC associated with the real *dc*. Everything drawn
4181 on the wx.MirrorDC will appear on the *dc*, and will be mirrored if
4184 _gdi_
.MirrorDC_swiginit(self
,_gdi_
.new_MirrorDC(*args
, **kwargs
))
4185 _gdi_
.MirrorDC_swigregister(MirrorDC
)
4187 #---------------------------------------------------------------------------
4189 class PostScriptDC(DC
):
4190 """This is a `wx.DC` that can write to PostScript files on any platform."""
4191 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
4192 __repr__
= _swig_repr
4193 def __init__(self
, *args
, **kwargs
):
4195 __init__(self, wxPrintData printData) -> PostScriptDC
4197 Constructs a PostScript printer device context from a `wx.PrintData`
4200 _gdi_
.PostScriptDC_swiginit(self
,_gdi_
.new_PostScriptDC(*args
, **kwargs
))
4201 def GetPrintData(*args
, **kwargs
):
4202 """GetPrintData(self) -> wxPrintData"""
4203 return _gdi_
.PostScriptDC_GetPrintData(*args
, **kwargs
)
4205 def SetPrintData(*args
, **kwargs
):
4206 """SetPrintData(self, wxPrintData data)"""
4207 return _gdi_
.PostScriptDC_SetPrintData(*args
, **kwargs
)
4209 def SetResolution(*args
, **kwargs
):
4211 SetResolution(int ppi)
4213 Set resolution (in pixels per inch) that will be used in PostScript
4214 output. Default is 720ppi.
4216 return _gdi_
.PostScriptDC_SetResolution(*args
, **kwargs
)
4218 SetResolution
= staticmethod(SetResolution
)
4219 def GetResolution(*args
, **kwargs
):
4221 GetResolution() -> int
4223 Return resolution used in PostScript output.
4225 return _gdi_
.PostScriptDC_GetResolution(*args
, **kwargs
)
4227 GetResolution
= staticmethod(GetResolution
)
4228 _gdi_
.PostScriptDC_swigregister(PostScriptDC
)
4230 def PostScriptDC_SetResolution(*args
, **kwargs
):
4232 PostScriptDC_SetResolution(int ppi)
4234 Set resolution (in pixels per inch) that will be used in PostScript
4235 output. Default is 720ppi.
4237 return _gdi_
.PostScriptDC_SetResolution(*args
, **kwargs
)
4239 def PostScriptDC_GetResolution(*args
):
4241 PostScriptDC_GetResolution() -> int
4243 Return resolution used in PostScript output.
4245 return _gdi_
.PostScriptDC_GetResolution(*args
)
4247 #---------------------------------------------------------------------------
4249 class MetaFile(_core
.Object
):
4250 """Proxy of C++ MetaFile class"""
4251 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
4252 __repr__
= _swig_repr
4253 def __init__(self
, *args
, **kwargs
):
4254 """__init__(self, String filename=EmptyString) -> MetaFile"""
4255 _gdi_
.MetaFile_swiginit(self
,_gdi_
.new_MetaFile(*args
, **kwargs
))
4256 _gdi_
.MetaFile_swigregister(MetaFile
)
4258 class MetaFileDC(DC
):
4259 """Proxy of C++ MetaFileDC class"""
4260 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
4261 __repr__
= _swig_repr
4262 def __init__(self
, *args
, **kwargs
):
4264 __init__(self, String filename=EmptyString, int width=0, int height=0,
4265 String description=EmptyString) -> MetaFileDC
4267 _gdi_
.MetaFileDC_swiginit(self
,_gdi_
.new_MetaFileDC(*args
, **kwargs
))
4268 _gdi_
.MetaFileDC_swigregister(MetaFileDC
)
4270 class PrinterDC(DC
):
4271 """Proxy of C++ PrinterDC class"""
4272 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
4273 __repr__
= _swig_repr
4274 def __init__(self
, *args
, **kwargs
):
4275 """__init__(self, wxPrintData printData) -> PrinterDC"""
4276 _gdi_
.PrinterDC_swiginit(self
,_gdi_
.new_PrinterDC(*args
, **kwargs
))
4277 _gdi_
.PrinterDC_swigregister(PrinterDC
)
4279 #---------------------------------------------------------------------------
4281 IMAGELIST_DRAW_NORMAL
= _gdi_
.IMAGELIST_DRAW_NORMAL
4282 IMAGELIST_DRAW_TRANSPARENT
= _gdi_
.IMAGELIST_DRAW_TRANSPARENT
4283 IMAGELIST_DRAW_SELECTED
= _gdi_
.IMAGELIST_DRAW_SELECTED
4284 IMAGELIST_DRAW_FOCUSED
= _gdi_
.IMAGELIST_DRAW_FOCUSED
4285 IMAGE_LIST_NORMAL
= _gdi_
.IMAGE_LIST_NORMAL
4286 IMAGE_LIST_SMALL
= _gdi_
.IMAGE_LIST_SMALL
4287 IMAGE_LIST_STATE
= _gdi_
.IMAGE_LIST_STATE
4288 class ImageList(_core
.Object
):
4289 """Proxy of C++ ImageList class"""
4290 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
4291 __repr__
= _swig_repr
4292 def __init__(self
, *args
, **kwargs
):
4293 """__init__(self, int width, int height, int mask=True, int initialCount=1) -> ImageList"""
4294 _gdi_
.ImageList_swiginit(self
,_gdi_
.new_ImageList(*args
, **kwargs
))
4295 __swig_destroy__
= _gdi_
.delete_ImageList
4296 __del__
= lambda self
: None;
4297 def Add(*args
, **kwargs
):
4298 """Add(self, Bitmap bitmap, Bitmap mask=NullBitmap) -> int"""
4299 return _gdi_
.ImageList_Add(*args
, **kwargs
)
4301 def AddWithColourMask(*args
, **kwargs
):
4302 """AddWithColourMask(self, Bitmap bitmap, Colour maskColour) -> int"""
4303 return _gdi_
.ImageList_AddWithColourMask(*args
, **kwargs
)
4305 def AddIcon(*args
, **kwargs
):
4306 """AddIcon(self, Icon icon) -> int"""
4307 return _gdi_
.ImageList_AddIcon(*args
, **kwargs
)
4309 def GetBitmap(*args
, **kwargs
):
4310 """GetBitmap(self, int index) -> Bitmap"""
4311 return _gdi_
.ImageList_GetBitmap(*args
, **kwargs
)
4313 def GetIcon(*args
, **kwargs
):
4314 """GetIcon(self, int index) -> Icon"""
4315 return _gdi_
.ImageList_GetIcon(*args
, **kwargs
)
4317 def Replace(*args
, **kwargs
):
4318 """Replace(self, int index, Bitmap bitmap, Bitmap mask=NullBitmap) -> bool"""
4319 return _gdi_
.ImageList_Replace(*args
, **kwargs
)
4321 def Draw(*args
, **kwargs
):
4323 Draw(self, int index, DC dc, int x, int x, int flags=IMAGELIST_DRAW_NORMAL,
4324 bool solidBackground=False) -> bool
4326 return _gdi_
.ImageList_Draw(*args
, **kwargs
)
4328 def GetImageCount(*args
, **kwargs
):
4329 """GetImageCount(self) -> int"""
4330 return _gdi_
.ImageList_GetImageCount(*args
, **kwargs
)
4332 def Remove(*args
, **kwargs
):
4333 """Remove(self, int index) -> bool"""
4334 return _gdi_
.ImageList_Remove(*args
, **kwargs
)
4336 def RemoveAll(*args
, **kwargs
):
4337 """RemoveAll(self) -> bool"""
4338 return _gdi_
.ImageList_RemoveAll(*args
, **kwargs
)
4340 def GetSize(*args
, **kwargs
):
4341 """GetSize(index) -> (width,height)"""
4342 return _gdi_
.ImageList_GetSize(*args
, **kwargs
)
4344 _gdi_
.ImageList_swigregister(ImageList
)
4346 #---------------------------------------------------------------------------
4348 class StockGDI(object):
4349 """Proxy of C++ StockGDI class"""
4350 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
4351 __repr__
= _swig_repr
4352 BRUSH_BLACK
= _gdi_
.StockGDI_BRUSH_BLACK
4353 BRUSH_BLUE
= _gdi_
.StockGDI_BRUSH_BLUE
4354 BRUSH_CYAN
= _gdi_
.StockGDI_BRUSH_CYAN
4355 BRUSH_GREEN
= _gdi_
.StockGDI_BRUSH_GREEN
4356 BRUSH_GREY
= _gdi_
.StockGDI_BRUSH_GREY
4357 BRUSH_LIGHTGREY
= _gdi_
.StockGDI_BRUSH_LIGHTGREY
4358 BRUSH_MEDIUMGREY
= _gdi_
.StockGDI_BRUSH_MEDIUMGREY
4359 BRUSH_RED
= _gdi_
.StockGDI_BRUSH_RED
4360 BRUSH_TRANSPARENT
= _gdi_
.StockGDI_BRUSH_TRANSPARENT
4361 BRUSH_WHITE
= _gdi_
.StockGDI_BRUSH_WHITE
4362 COLOUR_BLACK
= _gdi_
.StockGDI_COLOUR_BLACK
4363 COLOUR_BLUE
= _gdi_
.StockGDI_COLOUR_BLUE
4364 COLOUR_CYAN
= _gdi_
.StockGDI_COLOUR_CYAN
4365 COLOUR_GREEN
= _gdi_
.StockGDI_COLOUR_GREEN
4366 COLOUR_LIGHTGREY
= _gdi_
.StockGDI_COLOUR_LIGHTGREY
4367 COLOUR_RED
= _gdi_
.StockGDI_COLOUR_RED
4368 COLOUR_WHITE
= _gdi_
.StockGDI_COLOUR_WHITE
4369 CURSOR_CROSS
= _gdi_
.StockGDI_CURSOR_CROSS
4370 CURSOR_HOURGLASS
= _gdi_
.StockGDI_CURSOR_HOURGLASS
4371 CURSOR_STANDARD
= _gdi_
.StockGDI_CURSOR_STANDARD
4372 FONT_ITALIC
= _gdi_
.StockGDI_FONT_ITALIC
4373 FONT_NORMAL
= _gdi_
.StockGDI_FONT_NORMAL
4374 FONT_SMALL
= _gdi_
.StockGDI_FONT_SMALL
4375 FONT_SWISS
= _gdi_
.StockGDI_FONT_SWISS
4376 PEN_BLACK
= _gdi_
.StockGDI_PEN_BLACK
4377 PEN_BLACKDASHED
= _gdi_
.StockGDI_PEN_BLACKDASHED
4378 PEN_CYAN
= _gdi_
.StockGDI_PEN_CYAN
4379 PEN_GREEN
= _gdi_
.StockGDI_PEN_GREEN
4380 PEN_GREY
= _gdi_
.StockGDI_PEN_GREY
4381 PEN_LIGHTGREY
= _gdi_
.StockGDI_PEN_LIGHTGREY
4382 PEN_MEDIUMGREY
= _gdi_
.StockGDI_PEN_MEDIUMGREY
4383 PEN_RED
= _gdi_
.StockGDI_PEN_RED
4384 PEN_TRANSPARENT
= _gdi_
.StockGDI_PEN_TRANSPARENT
4385 PEN_WHITE
= _gdi_
.StockGDI_PEN_WHITE
4386 ITEMCOUNT
= _gdi_
.StockGDI_ITEMCOUNT
4387 def __init__(self
, *args
, **kwargs
):
4388 """__init__(self) -> StockGDI"""
4389 _gdi_
.StockGDI_swiginit(self
,_gdi_
.new_StockGDI(*args
, **kwargs
))
4390 __swig_destroy__
= _gdi_
.delete_StockGDI
4391 __del__
= lambda self
: None;
4392 def DeleteAll(*args
, **kwargs
):
4394 return _gdi_
.StockGDI_DeleteAll(*args
, **kwargs
)
4396 DeleteAll
= staticmethod(DeleteAll
)
4397 def instance(*args
, **kwargs
):
4398 """instance() -> StockGDI"""
4399 return _gdi_
.StockGDI_instance(*args
, **kwargs
)
4401 instance
= staticmethod(instance
)
4402 def GetBrush(*args
, **kwargs
):
4403 """GetBrush(int item) -> Brush"""
4404 return _gdi_
.StockGDI_GetBrush(*args
, **kwargs
)
4406 GetBrush
= staticmethod(GetBrush
)
4407 def GetColour(*args
, **kwargs
):
4408 """GetColour(int item) -> Colour"""
4409 return _gdi_
.StockGDI_GetColour(*args
, **kwargs
)
4411 GetColour
= staticmethod(GetColour
)
4412 def GetCursor(*args
, **kwargs
):
4413 """GetCursor(int item) -> Cursor"""
4414 return _gdi_
.StockGDI_GetCursor(*args
, **kwargs
)
4416 GetCursor
= staticmethod(GetCursor
)
4417 def GetPen(*args
, **kwargs
):
4418 """GetPen(int item) -> Pen"""
4419 return _gdi_
.StockGDI_GetPen(*args
, **kwargs
)
4421 GetPen
= staticmethod(GetPen
)
4422 def GetFont(*args
, **kwargs
):
4423 """GetFont(self, int item) -> Font"""
4424 return _gdi_
.StockGDI_GetFont(*args
, **kwargs
)
4426 def _initStockObjects():
4428 wx
.ITALIC_FONT
.this
= StockGDI
.instance().GetFont(StockGDI
.FONT_ITALIC
).this
4429 wx
.NORMAL_FONT
.this
= StockGDI
.instance().GetFont(StockGDI
.FONT_NORMAL
).this
4430 wx
.SMALL_FONT
.this
= StockGDI
.instance().GetFont(StockGDI
.FONT_SMALL
).this
4431 wx
.SWISS_FONT
.this
= StockGDI
.instance().GetFont(StockGDI
.FONT_SWISS
).this
4433 wx
.BLACK_DASHED_PEN
.this
= StockGDI
.GetPen(StockGDI
.PEN_BLACKDASHED
).this
4434 wx
.BLACK_PEN
.this
= StockGDI
.GetPen(StockGDI
.PEN_BLACK
).this
4435 wx
.CYAN_PEN
.this
= StockGDI
.GetPen(StockGDI
.PEN_CYAN
).this
4436 wx
.GREEN_PEN
.this
= StockGDI
.GetPen(StockGDI
.PEN_GREEN
).this
4437 wx
.GREY_PEN
.this
= StockGDI
.GetPen(StockGDI
.PEN_GREY
).this
4438 wx
.LIGHT_GREY_PEN
.this
= StockGDI
.GetPen(StockGDI
.PEN_LIGHTGREY
).this
4439 wx
.MEDIUM_GREY_PEN
.this
= StockGDI
.GetPen(StockGDI
.PEN_MEDIUMGREY
).this
4440 wx
.RED_PEN
.this
= StockGDI
.GetPen(StockGDI
.PEN_RED
).this
4441 wx
.TRANSPARENT_PEN
.this
= StockGDI
.GetPen(StockGDI
.PEN_TRANSPARENT
).this
4442 wx
.WHITE_PEN
.this
= StockGDI
.GetPen(StockGDI
.PEN_WHITE
).this
4444 wx
.BLACK_BRUSH
.this
= StockGDI
.GetBrush(StockGDI
.BRUSH_BLACK
).this
4445 wx
.BLUE_BRUSH
.this
= StockGDI
.GetBrush(StockGDI
.BRUSH_BLUE
).this
4446 wx
.CYAN_BRUSH
.this
= StockGDI
.GetBrush(StockGDI
.BRUSH_CYAN
).this
4447 wx
.GREEN_BRUSH
.this
= StockGDI
.GetBrush(StockGDI
.BRUSH_GREEN
).this
4448 wx
.GREY_BRUSH
.this
= StockGDI
.GetBrush(StockGDI
.BRUSH_GREY
).this
4449 wx
.LIGHT_GREY_BRUSH
.this
= StockGDI
.GetBrush(StockGDI
.BRUSH_LIGHTGREY
).this
4450 wx
.MEDIUM_GREY_BRUSH
.this
= StockGDI
.GetBrush(StockGDI
.BRUSH_MEDIUMGREY
).this
4451 wx
.RED_BRUSH
.this
= StockGDI
.GetBrush(StockGDI
.BRUSH_RED
).this
4452 wx
.TRANSPARENT_BRUSH
.this
= StockGDI
.GetBrush(StockGDI
.BRUSH_TRANSPARENT
).this
4453 wx
.WHITE_BRUSH
.this
= StockGDI
.GetBrush(StockGDI
.BRUSH_WHITE
).this
4455 wx
.BLACK
.this
= StockGDI
.GetColour(StockGDI
.COLOUR_BLACK
).this
4456 wx
.BLUE
.this
= StockGDI
.GetColour(StockGDI
.COLOUR_BLUE
).this
4457 wx
.CYAN
.this
= StockGDI
.GetColour(StockGDI
.COLOUR_CYAN
).this
4458 wx
.GREEN
.this
= StockGDI
.GetColour(StockGDI
.COLOUR_GREEN
).this
4459 wx
.LIGHT_GREY
.this
= StockGDI
.GetColour(StockGDI
.COLOUR_LIGHTGREY
).this
4460 wx
.RED
.this
= StockGDI
.GetColour(StockGDI
.COLOUR_RED
).this
4461 wx
.WHITE
.this
= StockGDI
.GetColour(StockGDI
.COLOUR_WHITE
).this
4463 wx
.CROSS_CURSOR
.this
= StockGDI
.GetCursor(StockGDI
.CURSOR_CROSS
).this
4464 wx
.HOURGLASS_CURSOR
.this
= StockGDI
.GetCursor(StockGDI
.CURSOR_HOURGLASS
).this
4465 wx
.STANDARD_CURSOR
.this
= StockGDI
.GetCursor(StockGDI
.CURSOR_STANDARD
).this
4467 wx
.TheFontList
.this
= _wxPyInitTheFontList().this
4468 wx
.ThePenList
.this
= _wxPyInitThePenList().this
4469 wx
.TheBrushList
.this
= _wxPyInitTheBrushList().this
4470 wx
.TheColourDatabase
.this
= _wxPyInitTheColourDatabase().this
4473 _initStockObjects
= staticmethod(_initStockObjects
)
4475 _gdi_
.StockGDI_swigregister(StockGDI
)
4477 def StockGDI_DeleteAll(*args
):
4478 """StockGDI_DeleteAll()"""
4479 return _gdi_
.StockGDI_DeleteAll(*args
)
4481 def StockGDI_instance(*args
):
4482 """StockGDI_instance() -> StockGDI"""
4483 return _gdi_
.StockGDI_instance(*args
)
4485 def StockGDI_GetBrush(*args
, **kwargs
):
4486 """StockGDI_GetBrush(int item) -> Brush"""
4487 return _gdi_
.StockGDI_GetBrush(*args
, **kwargs
)
4489 def StockGDI_GetColour(*args
, **kwargs
):
4490 """StockGDI_GetColour(int item) -> Colour"""
4491 return _gdi_
.StockGDI_GetColour(*args
, **kwargs
)
4493 def StockGDI_GetCursor(*args
, **kwargs
):
4494 """StockGDI_GetCursor(int item) -> Cursor"""
4495 return _gdi_
.StockGDI_GetCursor(*args
, **kwargs
)
4497 def StockGDI_GetPen(*args
, **kwargs
):
4498 """StockGDI_GetPen(int item) -> Pen"""
4499 return _gdi_
.StockGDI_GetPen(*args
, **kwargs
)
4501 # Create an uninitialized instance for the stock objects, they will
4502 # be initialized later when the wx.App object is created.
4503 ITALIC_FONT
= Font
.__new
__(Font
)
4504 NORMAL_FONT
= Font
.__new
__(Font
)
4505 SMALL_FONT
= Font
.__new
__(Font
)
4506 SWISS_FONT
= Font
.__new
__(Font
)
4508 BLACK_DASHED_PEN
= Pen
.__new
__(Pen
)
4509 BLACK_PEN
= Pen
.__new
__(Pen
)
4510 CYAN_PEN
= Pen
.__new
__(Pen
)
4511 GREEN_PEN
= Pen
.__new
__(Pen
)
4512 GREY_PEN
= Pen
.__new
__(Pen
)
4513 LIGHT_GREY_PEN
= Pen
.__new
__(Pen
)
4514 MEDIUM_GREY_PEN
= Pen
.__new
__(Pen
)
4515 RED_PEN
= Pen
.__new
__(Pen
)
4516 TRANSPARENT_PEN
= Pen
.__new
__(Pen
)
4517 WHITE_PEN
= Pen
.__new
__(Pen
)
4519 BLACK_BRUSH
= Brush
.__new
__(Brush
)
4520 BLUE_BRUSH
= Brush
.__new
__(Brush
)
4521 CYAN_BRUSH
= Brush
.__new
__(Brush
)
4522 GREEN_BRUSH
= Brush
.__new
__(Brush
)
4523 GREY_BRUSH
= Brush
.__new
__(Brush
)
4524 LIGHT_GREY_BRUSH
= Brush
.__new
__(Brush
)
4525 MEDIUM_GREY_BRUSH
= Brush
.__new
__(Brush
)
4526 RED_BRUSH
= Brush
.__new
__(Brush
)
4527 TRANSPARENT_BRUSH
= Brush
.__new
__(Brush
)
4528 WHITE_BRUSH
= Brush
.__new
__(Brush
)
4530 BLACK
= Colour
.__new
__(Colour
)
4531 BLUE
= Colour
.__new
__(Colour
)
4532 CYAN
= Colour
.__new
__(Colour
)
4533 GREEN
= Colour
.__new
__(Colour
)
4534 LIGHT_GREY
= Colour
.__new
__(Colour
)
4535 RED
= Colour
.__new
__(Colour
)
4536 WHITE
= Colour
.__new
__(Colour
)
4538 CROSS_CURSOR
= Cursor
.__new
__(Cursor
)
4539 HOURGLASS_CURSOR
= Cursor
.__new
__(Cursor
)
4540 STANDARD_CURSOR
= Cursor
.__new
__(Cursor
)
4542 class GDIObjListBase(object):
4543 """Proxy of C++ GDIObjListBase class"""
4544 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
4545 __repr__
= _swig_repr
4546 def __init__(self
, *args
, **kwargs
):
4547 """__init__(self) -> GDIObjListBase"""
4548 _gdi_
.GDIObjListBase_swiginit(self
,_gdi_
.new_GDIObjListBase(*args
, **kwargs
))
4549 __swig_destroy__
= _gdi_
.delete_GDIObjListBase
4550 __del__
= lambda self
: None;
4551 _gdi_
.GDIObjListBase_swigregister(GDIObjListBase
)
4553 NullBitmap
= cvar
.NullBitmap
4554 NullIcon
= cvar
.NullIcon
4555 NullCursor
= cvar
.NullCursor
4556 NullPen
= cvar
.NullPen
4557 NullBrush
= cvar
.NullBrush
4558 NullPalette
= cvar
.NullPalette
4559 NullFont
= cvar
.NullFont
4560 NullColour
= cvar
.NullColour
4562 class PenList(GDIObjListBase
):
4563 """Proxy of C++ PenList class"""
4564 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
4565 def __init__(self
): raise AttributeError, "No constructor defined"
4566 __repr__
= _swig_repr
4567 def FindOrCreatePen(*args
, **kwargs
):
4568 """FindOrCreatePen(self, Colour colour, int width, int style) -> Pen"""
4569 return _gdi_
.PenList_FindOrCreatePen(*args
, **kwargs
)
4571 def AddPen(*args
, **kwargs
):
4572 """AddPen(self, Pen pen)"""
4573 return _gdi_
.PenList_AddPen(*args
, **kwargs
)
4575 def RemovePen(*args
, **kwargs
):
4576 """RemovePen(self, Pen pen)"""
4577 return _gdi_
.PenList_RemovePen(*args
, **kwargs
)
4579 AddPen
= wx
._deprecated
(AddPen
)
4580 RemovePen
= wx
._deprecated
(RemovePen
)
4582 _gdi_
.PenList_swigregister(PenList
)
4584 class BrushList(GDIObjListBase
):
4585 """Proxy of C++ BrushList class"""
4586 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
4587 def __init__(self
): raise AttributeError, "No constructor defined"
4588 __repr__
= _swig_repr
4589 def FindOrCreateBrush(*args
, **kwargs
):
4590 """FindOrCreateBrush(self, Colour colour, int style=SOLID) -> Brush"""
4591 return _gdi_
.BrushList_FindOrCreateBrush(*args
, **kwargs
)
4593 def AddBrush(*args
, **kwargs
):
4594 """AddBrush(self, Brush brush)"""
4595 return _gdi_
.BrushList_AddBrush(*args
, **kwargs
)
4597 def RemoveBrush(*args
, **kwargs
):
4598 """RemoveBrush(self, Brush brush)"""
4599 return _gdi_
.BrushList_RemoveBrush(*args
, **kwargs
)
4601 AddBrush
= wx
._deprecated
(AddBrush
)
4602 RemoveBrush
= wx
._deprecated
(RemoveBrush
)
4604 _gdi_
.BrushList_swigregister(BrushList
)
4606 class FontList(GDIObjListBase
):
4607 """Proxy of C++ FontList class"""
4608 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
4609 def __init__(self
): raise AttributeError, "No constructor defined"
4610 __repr__
= _swig_repr
4611 def FindOrCreateFont(*args
, **kwargs
):
4613 FindOrCreateFont(self, int point_size, int family, int style, int weight,
4614 bool underline=False, String facename=EmptyString,
4615 int encoding=FONTENCODING_DEFAULT) -> Font
4617 return _gdi_
.FontList_FindOrCreateFont(*args
, **kwargs
)
4619 def AddFont(*args
, **kwargs
):
4620 """AddFont(self, Font font)"""
4621 return _gdi_
.FontList_AddFont(*args
, **kwargs
)
4623 def RemoveFont(*args
, **kwargs
):
4624 """RemoveFont(self, Font font)"""
4625 return _gdi_
.FontList_RemoveFont(*args
, **kwargs
)
4627 AddFont
= wx
._deprecated
(AddFont
)
4628 RemoveFont
= wx
._deprecated
(RemoveFont
)
4630 _gdi_
.FontList_swigregister(FontList
)
4632 class ColourDatabase(object):
4633 """Proxy of C++ ColourDatabase class"""
4634 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
4635 __repr__
= _swig_repr
4636 def __init__(self
, *args
, **kwargs
):
4637 """__init__(self) -> ColourDatabase"""
4638 _gdi_
.ColourDatabase_swiginit(self
,_gdi_
.new_ColourDatabase(*args
, **kwargs
))
4639 __swig_destroy__
= _gdi_
.delete_ColourDatabase
4640 __del__
= lambda self
: None;
4641 def Find(*args
, **kwargs
):
4642 """Find(self, String name) -> Colour"""
4643 return _gdi_
.ColourDatabase_Find(*args
, **kwargs
)
4645 def FindName(*args
, **kwargs
):
4646 """FindName(self, Colour colour) -> String"""
4647 return _gdi_
.ColourDatabase_FindName(*args
, **kwargs
)
4650 def AddColour(*args
, **kwargs
):
4651 """AddColour(self, String name, Colour colour)"""
4652 return _gdi_
.ColourDatabase_AddColour(*args
, **kwargs
)
4654 def Append(*args
, **kwargs
):
4655 """Append(self, String name, int red, int green, int blue)"""
4656 return _gdi_
.ColourDatabase_Append(*args
, **kwargs
)
4658 _gdi_
.ColourDatabase_swigregister(ColourDatabase
)
4660 #---------------------------------------------------------------------------
4663 def _wxPyInitTheFontList(*args
):
4664 """_wxPyInitTheFontList() -> FontList"""
4665 return _gdi_
._wxPyInitTheFontList
(*args
)
4667 def _wxPyInitThePenList(*args
):
4668 """_wxPyInitThePenList() -> PenList"""
4669 return _gdi_
._wxPyInitThePenList
(*args
)
4671 def _wxPyInitTheBrushList(*args
):
4672 """_wxPyInitTheBrushList() -> BrushList"""
4673 return _gdi_
._wxPyInitTheBrushList
(*args
)
4675 def _wxPyInitTheColourDatabase(*args
):
4676 """_wxPyInitTheColourDatabase() -> ColourDatabase"""
4677 return _gdi_
._wxPyInitTheColourDatabase
(*args
)
4678 # Create an uninitialized instance for the stock objects, they will
4679 # be initialized later when the wx.App object is created.
4680 TheFontList
= FontList
.__new
__(FontList
)
4681 ThePenList
= PenList
.__new
__(PenList
)
4682 TheBrushList
= BrushList
.__new
__(BrushList
)
4683 TheColourDatabase
= ColourDatabase
.__new
__(ColourDatabase
)
4685 NullColor
= NullColour
4686 #---------------------------------------------------------------------------
4688 class Effects(_core
.Object
):
4689 """Proxy of C++ Effects class"""
4690 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
4691 __repr__
= _swig_repr
4692 def __init__(self
, *args
, **kwargs
):
4693 """__init__(self) -> Effects"""
4694 _gdi_
.Effects_swiginit(self
,_gdi_
.new_Effects(*args
, **kwargs
))
4695 def GetHighlightColour(*args
, **kwargs
):
4696 """GetHighlightColour(self) -> Colour"""
4697 return _gdi_
.Effects_GetHighlightColour(*args
, **kwargs
)
4699 def GetLightShadow(*args
, **kwargs
):
4700 """GetLightShadow(self) -> Colour"""
4701 return _gdi_
.Effects_GetLightShadow(*args
, **kwargs
)
4703 def GetFaceColour(*args
, **kwargs
):
4704 """GetFaceColour(self) -> Colour"""
4705 return _gdi_
.Effects_GetFaceColour(*args
, **kwargs
)
4707 def GetMediumShadow(*args
, **kwargs
):
4708 """GetMediumShadow(self) -> Colour"""
4709 return _gdi_
.Effects_GetMediumShadow(*args
, **kwargs
)
4711 def GetDarkShadow(*args
, **kwargs
):
4712 """GetDarkShadow(self) -> Colour"""
4713 return _gdi_
.Effects_GetDarkShadow(*args
, **kwargs
)
4715 def SetHighlightColour(*args
, **kwargs
):
4716 """SetHighlightColour(self, Colour c)"""
4717 return _gdi_
.Effects_SetHighlightColour(*args
, **kwargs
)
4719 def SetLightShadow(*args
, **kwargs
):
4720 """SetLightShadow(self, Colour c)"""
4721 return _gdi_
.Effects_SetLightShadow(*args
, **kwargs
)
4723 def SetFaceColour(*args
, **kwargs
):
4724 """SetFaceColour(self, Colour c)"""
4725 return _gdi_
.Effects_SetFaceColour(*args
, **kwargs
)
4727 def SetMediumShadow(*args
, **kwargs
):
4728 """SetMediumShadow(self, Colour c)"""
4729 return _gdi_
.Effects_SetMediumShadow(*args
, **kwargs
)
4731 def SetDarkShadow(*args
, **kwargs
):
4732 """SetDarkShadow(self, Colour c)"""
4733 return _gdi_
.Effects_SetDarkShadow(*args
, **kwargs
)
4735 def Set(*args
, **kwargs
):
4737 Set(self, Colour highlightColour, Colour lightShadow, Colour faceColour,
4738 Colour mediumShadow, Colour darkShadow)
4740 return _gdi_
.Effects_Set(*args
, **kwargs
)
4742 def DrawSunkenEdge(*args
, **kwargs
):
4743 """DrawSunkenEdge(self, DC dc, Rect rect, int borderSize=1)"""
4744 return _gdi_
.Effects_DrawSunkenEdge(*args
, **kwargs
)
4746 def TileBitmap(*args
, **kwargs
):
4747 """TileBitmap(self, Rect rect, DC dc, Bitmap bitmap) -> bool"""
4748 return _gdi_
.Effects_TileBitmap(*args
, **kwargs
)
4750 _gdi_
.Effects_swigregister(Effects
)
4752 #---------------------------------------------------------------------------
4754 CONTROL_DISABLED
= _gdi_
.CONTROL_DISABLED
4755 CONTROL_FOCUSED
= _gdi_
.CONTROL_FOCUSED
4756 CONTROL_PRESSED
= _gdi_
.CONTROL_PRESSED
4757 CONTROL_ISDEFAULT
= _gdi_
.CONTROL_ISDEFAULT
4758 CONTROL_ISSUBMENU
= _gdi_
.CONTROL_ISSUBMENU
4759 CONTROL_EXPANDED
= _gdi_
.CONTROL_EXPANDED
4760 CONTROL_CURRENT
= _gdi_
.CONTROL_CURRENT
4761 CONTROL_SELECTED
= _gdi_
.CONTROL_SELECTED
4762 CONTROL_CHECKED
= _gdi_
.CONTROL_CHECKED
4763 CONTROL_CHECKABLE
= _gdi_
.CONTROL_CHECKABLE
4764 CONTROL_UNDETERMINED
= _gdi_
.CONTROL_UNDETERMINED
4765 CONTROL_FLAGS_MASK
= _gdi_
.CONTROL_FLAGS_MASK
4766 CONTROL_DIRTY
= _gdi_
.CONTROL_DIRTY
4767 class SplitterRenderParams(object):
4769 This is just a simple struct used as a return value of
4770 `wx.RendererNative.GetSplitterParams` and contains some platform
4771 specific metrics about splitters.
4773 * widthSash: the width of the splitter sash.
4774 * border: the width of the border of the splitter window.
4775 * isHotSensitive: ``True`` if the splitter changes its
4776 appearance when the mouse is over it.
4780 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
4781 __repr__
= _swig_repr
4782 def __init__(self
, *args
, **kwargs
):
4784 __init__(self, int widthSash_, int border_, bool isSens_) -> SplitterRenderParams
4786 This is just a simple struct used as a return value of
4787 `wx.RendererNative.GetSplitterParams` and contains some platform
4788 specific metrics about splitters.
4790 * widthSash: the width of the splitter sash.
4791 * border: the width of the border of the splitter window.
4792 * isHotSensitive: ``True`` if the splitter changes its
4793 appearance when the mouse is over it.
4797 _gdi_
.SplitterRenderParams_swiginit(self
,_gdi_
.new_SplitterRenderParams(*args
, **kwargs
))
4798 __swig_destroy__
= _gdi_
.delete_SplitterRenderParams
4799 __del__
= lambda self
: None;
4800 widthSash
= property(_gdi_
.SplitterRenderParams_widthSash_get
)
4801 border
= property(_gdi_
.SplitterRenderParams_border_get
)
4802 isHotSensitive
= property(_gdi_
.SplitterRenderParams_isHotSensitive_get
)
4803 _gdi_
.SplitterRenderParams_swigregister(SplitterRenderParams
)
4805 class RendererVersion(object):
4807 This simple struct represents the `wx.RendererNative` interface
4808 version and is only used as the return value of
4809 `wx.RendererNative.GetVersion`.
4811 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
4812 __repr__
= _swig_repr
4813 def __init__(self
, *args
, **kwargs
):
4815 __init__(self, int version_, int age_) -> RendererVersion
4817 This simple struct represents the `wx.RendererNative` interface
4818 version and is only used as the return value of
4819 `wx.RendererNative.GetVersion`.
4821 _gdi_
.RendererVersion_swiginit(self
,_gdi_
.new_RendererVersion(*args
, **kwargs
))
4822 __swig_destroy__
= _gdi_
.delete_RendererVersion
4823 __del__
= lambda self
: None;
4824 Current_Version
= _gdi_
.RendererVersion_Current_Version
4825 Current_Age
= _gdi_
.RendererVersion_Current_Age
4826 def IsCompatible(*args
, **kwargs
):
4827 """IsCompatible(RendererVersion ver) -> bool"""
4828 return _gdi_
.RendererVersion_IsCompatible(*args
, **kwargs
)
4830 IsCompatible
= staticmethod(IsCompatible
)
4831 version
= property(_gdi_
.RendererVersion_version_get
)
4832 age
= property(_gdi_
.RendererVersion_age_get
)
4833 _gdi_
.RendererVersion_swigregister(RendererVersion
)
4835 def RendererVersion_IsCompatible(*args
, **kwargs
):
4836 """RendererVersion_IsCompatible(RendererVersion ver) -> bool"""
4837 return _gdi_
.RendererVersion_IsCompatible(*args
, **kwargs
)
4839 class RendererNative(object):
4841 One of the design principles of wxWidgets is to use the native widgets
4842 on every platform in order to be as close to the native look and feel
4843 on every platform. However there are still cases when some generic
4844 widgets are needed for various reasons, but it can sometimes take a
4845 lot of messy work to make them conform to the native LnF.
4847 The wx.RendererNative class is a collection of functions that have
4848 platform-specific implementations for drawing certain parts of
4849 genereic controls in ways that are as close to the native look as
4852 Note that each drawing function restores the `wx.DC` attributes if it
4853 changes them, so it is safe to assume that the same pen, brush and
4854 colours that were active before the call to this function are still in
4858 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
4859 def __init__(self
): raise AttributeError, "No constructor defined"
4860 __repr__
= _swig_repr
4861 def DrawHeaderButton(*args
, **kwargs
):
4863 DrawHeaderButton(self, Window win, DC dc, Rect rect, int flags=0)
4865 Draw the header control button (such as what is used by `wx.ListCtrl`
4868 return _gdi_
.RendererNative_DrawHeaderButton(*args
, **kwargs
)
4870 def DrawTreeItemButton(*args
, **kwargs
):
4872 DrawTreeItemButton(self, Window win, DC dc, Rect rect, int flags=0)
4874 Draw the expanded/collapsed icon for a tree control item.
4876 return _gdi_
.RendererNative_DrawTreeItemButton(*args
, **kwargs
)
4878 def DrawSplitterBorder(*args
, **kwargs
):
4880 DrawSplitterBorder(self, Window win, DC dc, Rect rect, int flags=0)
4882 Draw the border for a sash window: this border must be such that the
4883 sash drawn by `DrawSplitterSash` blends into it well.
4885 return _gdi_
.RendererNative_DrawSplitterBorder(*args
, **kwargs
)
4887 def DrawSplitterSash(*args
, **kwargs
):
4889 DrawSplitterSash(self, Window win, DC dc, Size size, int position, int orient,
4892 Draw a sash. The orient parameter defines whether the sash should be
4893 vertical or horizontal and how the position should be interpreted.
4895 return _gdi_
.RendererNative_DrawSplitterSash(*args
, **kwargs
)
4897 def DrawComboBoxDropButton(*args
, **kwargs
):
4899 DrawComboBoxDropButton(self, Window win, DC dc, Rect rect, int flags=0)
4901 Draw a button like the one used by `wx.ComboBox` to show a drop down
4902 window. The usual appearance is a downwards pointing arrow.
4904 The ``flags`` parameter may have the ``wx.CONTROL_PRESSED`` or
4905 ``wx.CONTROL_CURRENT`` bits set.
4907 return _gdi_
.RendererNative_DrawComboBoxDropButton(*args
, **kwargs
)
4909 def DrawDropArrow(*args
, **kwargs
):
4911 DrawDropArrow(self, Window win, DC dc, Rect rect, int flags=0)
4913 Draw a drop down arrow that is suitable for use outside a combo
4914 box. Arrow will have a transparent background.
4916 ``rect`` is not entirely filled by the arrow. Instead, you should use
4917 bounding rectangle of a drop down button which arrow matches the size
4918 you need. ``flags`` may have the ``wx.CONTROL_PRESSED`` or
4919 ``wx.CONTROL_CURRENT`` bit set.
4921 return _gdi_
.RendererNative_DrawDropArrow(*args
, **kwargs
)
4923 def DrawCheckBox(*args
, **kwargs
):
4925 DrawCheckBox(self, Window win, DC dc, Rect rect, int flags=0)
4927 Draw a check button. Flags may use wx.CONTROL_CHECKED,
4928 wx.CONTROL_UNDETERMINED and wx.CONTROL_CURRENT.
4930 return _gdi_
.RendererNative_DrawCheckBox(*args
, **kwargs
)
4932 def DrawPushButton(*args
, **kwargs
):
4934 DrawPushButton(self, Window win, DC dc, Rect rect, int flags=0)
4936 Draw a blank button. Flags may be wx.CONTROL_PRESSED, wx.CONTROL_CURRENT and
4937 wx.CONTROL_ISDEFAULT
4939 return _gdi_
.RendererNative_DrawPushButton(*args
, **kwargs
)
4941 def DrawItemSelectionRect(*args
, **kwargs
):
4943 DrawItemSelectionRect(self, Window win, DC dc, Rect rect, int flags=0)
4945 Draw rectangle indicating that an item in e.g. a list control has been
4948 The flags parameter may be:
4950 ==================== ============================================
4951 wx.CONTROL_SELECTED item is selected, e.g. draw background
4952 wx.CONTROL_CURRENT item is the current item, e.g. dotted border
4953 wx.CONTROL_FOCUSED the whole control has focus, e.g. blue
4954 background vs. grey otherwise
4955 ==================== ============================================
4958 return _gdi_
.RendererNative_DrawItemSelectionRect(*args
, **kwargs
)
4960 def GetSplitterParams(*args
, **kwargs
):
4962 GetSplitterParams(self, Window win) -> SplitterRenderParams
4964 Get the splitter parameters, see `wx.SplitterRenderParams`.
4966 return _gdi_
.RendererNative_GetSplitterParams(*args
, **kwargs
)
4968 def Get(*args
, **kwargs
):
4970 Get() -> RendererNative
4972 Return the currently used renderer
4974 return _gdi_
.RendererNative_Get(*args
, **kwargs
)
4976 Get
= staticmethod(Get
)
4977 def GetGeneric(*args
, **kwargs
):
4979 GetGeneric() -> RendererNative
4981 Return the generic implementation of the renderer. Under some
4982 platforms, this is the default renderer implementation, others have
4983 platform-specific default renderer which can be retrieved by calling
4984 `wx.RendererNative.GetDefault`.
4986 return _gdi_
.RendererNative_GetGeneric(*args
, **kwargs
)
4988 GetGeneric
= staticmethod(GetGeneric
)
4989 def GetDefault(*args
, **kwargs
):
4991 GetDefault() -> RendererNative
4993 Return the default (native) implementation for this platform -- this
4994 is also the one used by default but this may be changed by calling
4995 `wx.RendererNative.Set` in which case the return value of this method
4996 may be different from the return value of `wx.RendererNative.Get`.
4998 return _gdi_
.RendererNative_GetDefault(*args
, **kwargs
)
5000 GetDefault
= staticmethod(GetDefault
)
5001 def Set(*args
, **kwargs
):
5003 Set(RendererNative renderer) -> RendererNative
5005 Set the renderer to use, passing None reverts to using the default
5006 renderer. Returns the previous renderer used with Set or None.
5008 return _gdi_
.RendererNative_Set(*args
, **kwargs
)
5010 Set
= staticmethod(Set
)
5011 def GetVersion(*args
, **kwargs
):
5013 GetVersion(self) -> RendererVersion
5015 Returns the version of the renderer. Will be used for ensuring
5016 compatibility of dynamically loaded renderers.
5018 return _gdi_
.RendererNative_GetVersion(*args
, **kwargs
)
5020 _gdi_
.RendererNative_swigregister(RendererNative
)
5022 def RendererNative_Get(*args
):
5024 RendererNative_Get() -> RendererNative
5026 Return the currently used renderer
5028 return _gdi_
.RendererNative_Get(*args
)
5030 def RendererNative_GetGeneric(*args
):
5032 RendererNative_GetGeneric() -> RendererNative
5034 Return the generic implementation of the renderer. Under some
5035 platforms, this is the default renderer implementation, others have
5036 platform-specific default renderer which can be retrieved by calling
5037 `wx.RendererNative.GetDefault`.
5039 return _gdi_
.RendererNative_GetGeneric(*args
)
5041 def RendererNative_GetDefault(*args
):
5043 RendererNative_GetDefault() -> RendererNative
5045 Return the default (native) implementation for this platform -- this
5046 is also the one used by default but this may be changed by calling
5047 `wx.RendererNative.Set` in which case the return value of this method
5048 may be different from the return value of `wx.RendererNative.Get`.
5050 return _gdi_
.RendererNative_GetDefault(*args
)
5052 def RendererNative_Set(*args
, **kwargs
):
5054 RendererNative_Set(RendererNative renderer) -> RendererNative
5056 Set the renderer to use, passing None reverts to using the default
5057 renderer. Returns the previous renderer used with Set or None.
5059 return _gdi_
.RendererNative_Set(*args
, **kwargs
)
5061 #---------------------------------------------------------------------------
5063 class PseudoDC(_core
.Object
):
5065 A PseudoDC is an object that can be used as if it were a `wx.DC`. All
5066 commands issued to the PseudoDC are stored in a list. You can then
5067 play these commands back to a real DC object using the DrawToDC
5068 method. Commands in the command list are indexed by ID. You can use
5069 this to clear the operations associated with a single ID and then
5070 re-draw the object associated with that ID.
5072 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
5073 __repr__
= _swig_repr
5074 def __init__(self
, *args
, **kwargs
):
5076 __init__(self) -> PseudoDC
5078 Constructs a new Pseudo device context for recording dc operations
5080 _gdi_
.PseudoDC_swiginit(self
,_gdi_
.new_PseudoDC(*args
, **kwargs
))
5081 def BeginDrawing(*args
, **kwargs
):
5085 Allows for optimization of drawing code on platforms that need it. On
5086 other platforms this is just an empty function and is harmless. To
5087 take advantage of this postential optimization simply enclose each
5088 group of calls to the drawing primitives within calls to
5089 `BeginDrawing` and `EndDrawing`.
5091 return _gdi_
.PseudoDC_BeginDrawing(*args
, **kwargs
)
5093 def EndDrawing(*args
, **kwargs
):
5097 Ends the group of drawing primitives started with `BeginDrawing`, and
5098 invokes whatever optimization is available for this DC type on the
5101 return _gdi_
.PseudoDC_EndDrawing(*args
, **kwargs
)
5103 __swig_destroy__
= _gdi_
.delete_PseudoDC
5104 __del__
= lambda self
: None;
5105 def RemoveAll(*args
, **kwargs
):
5109 Removes all objects and operations from the recorded list.
5111 return _gdi_
.PseudoDC_RemoveAll(*args
, **kwargs
)
5113 def GetLen(*args
, **kwargs
):
5117 Returns the number of operations in the recorded list.
5119 return _gdi_
.PseudoDC_GetLen(*args
, **kwargs
)
5121 def SetId(*args
, **kwargs
):
5125 Sets the id to be associated with subsequent operations.
5127 return _gdi_
.PseudoDC_SetId(*args
, **kwargs
)
5129 def ClearId(*args
, **kwargs
):
5131 ClearId(self, int id)
5133 Removes all operations associated with id so the object can be redrawn.
5135 return _gdi_
.PseudoDC_ClearId(*args
, **kwargs
)
5137 def RemoveId(*args
, **kwargs
):
5139 RemoveId(self, int id)
5141 Remove the object node (and all operations) associated with an id.
5143 return _gdi_
.PseudoDC_RemoveId(*args
, **kwargs
)
5145 def TranslateId(*args
, **kwargs
):
5147 TranslateId(self, int id, int dx, int dy)
5149 Translate the operations of id by dx,dy.
5151 return _gdi_
.PseudoDC_TranslateId(*args
, **kwargs
)
5153 def DrawIdToDC(*args
, **kwargs
):
5155 DrawIdToDC(self, int id, DC dc)
5157 Draw recorded operations of id to dc.
5159 return _gdi_
.PseudoDC_DrawIdToDC(*args
, **kwargs
)
5161 def SetIdBounds(*args
, **kwargs
):
5163 SetIdBounds(self, int id, Rect rect)
5165 Set the bounding rect of a given object. This will create
5166 an object node if one doesn't exist.
5168 return _gdi_
.PseudoDC_SetIdBounds(*args
, **kwargs
)
5170 def GetIdBounds(*args
, **kwargs
):
5172 GetIdBounds(self, int id) -> Rect
5174 Returns the bounding rectangle previouly set with SetIdBounds. If
5175 no bounds have been set, it returns wx.Rect(0,0,0,0).
5177 return _gdi_
.PseudoDC_GetIdBounds(*args
, **kwargs
)
5179 def DrawToDCClipped(*args
, **kwargs
):
5181 DrawToDCClipped(self, DC dc, Rect rect)
5183 Draws the recorded operations to dc unless the operation is known to
5186 return _gdi_
.PseudoDC_DrawToDCClipped(*args
, **kwargs
)
5188 def DrawToDCClippedRgn(*args
, **kwargs
):
5190 DrawToDCClippedRgn(self, DC dc, Region region)
5192 Draws the recorded operations to dc unless the operation is known to
5195 return _gdi_
.PseudoDC_DrawToDCClippedRgn(*args
, **kwargs
)
5197 def DrawToDC(*args
, **kwargs
):
5199 DrawToDC(self, DC dc)
5201 Draws the recorded operations to dc.
5203 return _gdi_
.PseudoDC_DrawToDC(*args
, **kwargs
)
5205 def FloodFill(*args
, **kwargs
):
5207 FloodFill(self, int x, int y, Colour col, int style=FLOOD_SURFACE)
5209 Flood fills the device context starting from the given point, using
5210 the current brush colour, and using a style:
5212 - **wxFLOOD_SURFACE**: the flooding occurs until a colour other than
5213 the given colour is encountered.
5215 - **wxFLOOD_BORDER**: the area to be flooded is bounded by the given
5218 Returns False if the operation failed.
5220 Note: The present implementation for non-Windows platforms may fail to
5221 find colour borders if the pixels do not match the colour
5222 exactly. However the function will still return true.
5224 return _gdi_
.PseudoDC_FloodFill(*args
, **kwargs
)
5226 def FloodFillPoint(*args
, **kwargs
):
5228 FloodFillPoint(self, Point pt, Colour col, int style=FLOOD_SURFACE)
5230 Flood fills the device context starting from the given point, using
5231 the current brush colour, and using a style:
5233 - **wxFLOOD_SURFACE**: the flooding occurs until a colour other than
5234 the given colour is encountered.
5236 - **wxFLOOD_BORDER**: the area to be flooded is bounded by the given
5239 Returns False if the operation failed.
5241 Note: The present implementation for non-Windows platforms may fail to
5242 find colour borders if the pixels do not match the colour
5243 exactly. However the function will still return true.
5245 return _gdi_
.PseudoDC_FloodFillPoint(*args
, **kwargs
)
5247 def DrawLine(*args
, **kwargs
):
5249 DrawLine(self, int x1, int y1, int x2, int y2)
5251 Draws a line from the first point to the second. The current pen is
5252 used for drawing the line. Note that the second point is *not* part of
5253 the line and is not drawn by this function (this is consistent with
5254 the behaviour of many other toolkits).
5256 return _gdi_
.PseudoDC_DrawLine(*args
, **kwargs
)
5258 def DrawLinePoint(*args
, **kwargs
):
5260 DrawLinePoint(self, Point pt1, Point pt2)
5262 Draws a line from the first point to the second. The current pen is
5263 used for drawing the line. Note that the second point is *not* part of
5264 the line and is not drawn by this function (this is consistent with
5265 the behaviour of many other toolkits).
5267 return _gdi_
.PseudoDC_DrawLinePoint(*args
, **kwargs
)
5269 def CrossHair(*args
, **kwargs
):
5271 CrossHair(self, int x, int y)
5273 Displays a cross hair using the current pen. This is a vertical and
5274 horizontal line the height and width of the window, centred on the
5277 return _gdi_
.PseudoDC_CrossHair(*args
, **kwargs
)
5279 def CrossHairPoint(*args
, **kwargs
):
5281 CrossHairPoint(self, Point pt)
5283 Displays a cross hair using the current pen. This is a vertical and
5284 horizontal line the height and width of the window, centred on the
5287 return _gdi_
.PseudoDC_CrossHairPoint(*args
, **kwargs
)
5289 def DrawArc(*args
, **kwargs
):
5291 DrawArc(self, int x1, int y1, int x2, int y2, int xc, int yc)
5293 Draws an arc of a circle, centred on the *center* point (xc, yc), from
5294 the first point to the second. The current pen is used for the outline
5295 and the current brush for filling the shape.
5297 The arc is drawn in an anticlockwise direction from the start point to
5300 return _gdi_
.PseudoDC_DrawArc(*args
, **kwargs
)
5302 def DrawArcPoint(*args
, **kwargs
):
5304 DrawArcPoint(self, Point pt1, Point pt2, Point center)
5306 Draws an arc of a circle, centred on the *center* point (xc, yc), from
5307 the first point to the second. The current pen is used for the outline
5308 and the current brush for filling the shape.
5310 The arc is drawn in an anticlockwise direction from the start point to
5313 return _gdi_
.PseudoDC_DrawArcPoint(*args
, **kwargs
)
5315 def DrawCheckMark(*args
, **kwargs
):
5317 DrawCheckMark(self, int x, int y, int width, int height)
5319 Draws a check mark inside the given rectangle.
5321 return _gdi_
.PseudoDC_DrawCheckMark(*args
, **kwargs
)
5323 def DrawCheckMarkRect(*args
, **kwargs
):
5325 DrawCheckMarkRect(self, Rect rect)
5327 Draws a check mark inside the given rectangle.
5329 return _gdi_
.PseudoDC_DrawCheckMarkRect(*args
, **kwargs
)
5331 def DrawEllipticArc(*args
, **kwargs
):
5333 DrawEllipticArc(self, int x, int y, int w, int h, double start, double end)
5335 Draws an arc of an ellipse, with the given rectangle defining the
5336 bounds of the ellipse. The current pen is used for drawing the arc and
5337 the current brush is used for drawing the pie.
5339 The *start* and *end* parameters specify the start and end of the arc
5340 relative to the three-o'clock position from the center of the
5341 rectangle. Angles are specified in degrees (360 is a complete
5342 circle). Positive values mean counter-clockwise motion. If start is
5343 equal to end, a complete ellipse will be drawn.
5345 return _gdi_
.PseudoDC_DrawEllipticArc(*args
, **kwargs
)
5347 def DrawEllipticArcPointSize(*args
, **kwargs
):
5349 DrawEllipticArcPointSize(self, Point pt, Size sz, double start, double end)
5351 Draws an arc of an ellipse, with the given rectangle defining the
5352 bounds of the ellipse. The current pen is used for drawing the arc and
5353 the current brush is used for drawing the pie.
5355 The *start* and *end* parameters specify the start and end of the arc
5356 relative to the three-o'clock position from the center of the
5357 rectangle. Angles are specified in degrees (360 is a complete
5358 circle). Positive values mean counter-clockwise motion. If start is
5359 equal to end, a complete ellipse will be drawn.
5361 return _gdi_
.PseudoDC_DrawEllipticArcPointSize(*args
, **kwargs
)
5363 def DrawPoint(*args
, **kwargs
):
5365 DrawPoint(self, int x, int y)
5367 Draws a point using the current pen.
5369 return _gdi_
.PseudoDC_DrawPoint(*args
, **kwargs
)
5371 def DrawPointPoint(*args
, **kwargs
):
5373 DrawPointPoint(self, Point pt)
5375 Draws a point using the current pen.
5377 return _gdi_
.PseudoDC_DrawPointPoint(*args
, **kwargs
)
5379 def DrawRectangle(*args
, **kwargs
):
5381 DrawRectangle(self, int x, int y, int width, int height)
5383 Draws a rectangle with the given top left corner, and with the given
5384 size. The current pen is used for the outline and the current brush
5385 for filling the shape.
5387 return _gdi_
.PseudoDC_DrawRectangle(*args
, **kwargs
)
5389 def DrawRectangleRect(*args
, **kwargs
):
5391 DrawRectangleRect(self, Rect rect)
5393 Draws a rectangle with the given top left corner, and with the given
5394 size. The current pen is used for the outline and the current brush
5395 for filling the shape.
5397 return _gdi_
.PseudoDC_DrawRectangleRect(*args
, **kwargs
)
5399 def DrawRectanglePointSize(*args
, **kwargs
):
5401 DrawRectanglePointSize(self, Point pt, Size sz)
5403 Draws a rectangle with the given top left corner, and with the given
5404 size. The current pen is used for the outline and the current brush
5405 for filling the shape.
5407 return _gdi_
.PseudoDC_DrawRectanglePointSize(*args
, **kwargs
)
5409 def DrawRoundedRectangle(*args
, **kwargs
):
5411 DrawRoundedRectangle(self, int x, int y, int width, int height, double radius)
5413 Draws a rectangle with the given top left corner, and with the given
5414 size. The corners are quarter-circles using the given radius. The
5415 current pen is used for the outline and the current brush for filling
5418 If radius is positive, the value is assumed to be the radius of the
5419 rounded corner. If radius is negative, the absolute value is assumed
5420 to be the proportion of the smallest dimension of the rectangle. This
5421 means that the corner can be a sensible size relative to the size of
5422 the rectangle, and also avoids the strange effects X produces when the
5423 corners are too big for the rectangle.
5425 return _gdi_
.PseudoDC_DrawRoundedRectangle(*args
, **kwargs
)
5427 def DrawRoundedRectangleRect(*args
, **kwargs
):
5429 DrawRoundedRectangleRect(self, Rect r, double radius)
5431 Draws a rectangle with the given top left corner, and with the given
5432 size. The corners are quarter-circles using the given radius. The
5433 current pen is used for the outline and the current brush for filling
5436 If radius is positive, the value is assumed to be the radius of the
5437 rounded corner. If radius is negative, the absolute value is assumed
5438 to be the proportion of the smallest dimension of the rectangle. This
5439 means that the corner can be a sensible size relative to the size of
5440 the rectangle, and also avoids the strange effects X produces when the
5441 corners are too big for the rectangle.
5443 return _gdi_
.PseudoDC_DrawRoundedRectangleRect(*args
, **kwargs
)
5445 def DrawRoundedRectanglePointSize(*args
, **kwargs
):
5447 DrawRoundedRectanglePointSize(self, Point pt, Size sz, double radius)
5449 Draws a rectangle with the given top left corner, and with the given
5450 size. The corners are quarter-circles using the given radius. The
5451 current pen is used for the outline and the current brush for filling
5454 If radius is positive, the value is assumed to be the radius of the
5455 rounded corner. If radius is negative, the absolute value is assumed
5456 to be the proportion of the smallest dimension of the rectangle. This
5457 means that the corner can be a sensible size relative to the size of
5458 the rectangle, and also avoids the strange effects X produces when the
5459 corners are too big for the rectangle.
5461 return _gdi_
.PseudoDC_DrawRoundedRectanglePointSize(*args
, **kwargs
)
5463 def DrawCircle(*args
, **kwargs
):
5465 DrawCircle(self, int x, int y, int radius)
5467 Draws a circle with the given center point and radius. The current
5468 pen is used for the outline and the current brush for filling the
5471 return _gdi_
.PseudoDC_DrawCircle(*args
, **kwargs
)
5473 def DrawCirclePoint(*args
, **kwargs
):
5475 DrawCirclePoint(self, Point pt, int radius)
5477 Draws a circle with the given center point and radius. The current
5478 pen is used for the outline and the current brush for filling the
5481 return _gdi_
.PseudoDC_DrawCirclePoint(*args
, **kwargs
)
5483 def DrawEllipse(*args
, **kwargs
):
5485 DrawEllipse(self, int x, int y, int width, int height)
5487 Draws an ellipse contained in the specified rectangle. The current pen
5488 is used for the outline and the current brush for filling the shape.
5490 return _gdi_
.PseudoDC_DrawEllipse(*args
, **kwargs
)
5492 def DrawEllipseRect(*args
, **kwargs
):
5494 DrawEllipseRect(self, Rect rect)
5496 Draws an ellipse contained in the specified rectangle. The current pen
5497 is used for the outline and the current brush for filling the shape.
5499 return _gdi_
.PseudoDC_DrawEllipseRect(*args
, **kwargs
)
5501 def DrawEllipsePointSize(*args
, **kwargs
):
5503 DrawEllipsePointSize(self, Point pt, Size sz)
5505 Draws an ellipse contained in the specified rectangle. The current pen
5506 is used for the outline and the current brush for filling the shape.
5508 return _gdi_
.PseudoDC_DrawEllipsePointSize(*args
, **kwargs
)
5510 def DrawIcon(*args
, **kwargs
):
5512 DrawIcon(self, Icon icon, int x, int y)
5514 Draw an icon on the display (does nothing if the device context is
5515 PostScript). This can be the simplest way of drawing bitmaps on a
5518 return _gdi_
.PseudoDC_DrawIcon(*args
, **kwargs
)
5520 def DrawIconPoint(*args
, **kwargs
):
5522 DrawIconPoint(self, Icon icon, Point pt)
5524 Draw an icon on the display (does nothing if the device context is
5525 PostScript). This can be the simplest way of drawing bitmaps on a
5528 return _gdi_
.PseudoDC_DrawIconPoint(*args
, **kwargs
)
5530 def DrawBitmap(*args
, **kwargs
):
5532 DrawBitmap(self, Bitmap bmp, int x, int y, bool useMask=False)
5534 Draw a bitmap on the device context at the specified point. If
5535 *transparent* is true and the bitmap has a transparency mask, (or
5536 alpha channel on the platforms that support it) then the bitmap will
5537 be drawn transparently.
5539 return _gdi_
.PseudoDC_DrawBitmap(*args
, **kwargs
)
5541 def DrawBitmapPoint(*args
, **kwargs
):
5543 DrawBitmapPoint(self, Bitmap bmp, Point pt, bool useMask=False)
5545 Draw a bitmap on the device context at the specified point. If
5546 *transparent* is true and the bitmap has a transparency mask, (or
5547 alpha channel on the platforms that support it) then the bitmap will
5548 be drawn transparently.
5550 return _gdi_
.PseudoDC_DrawBitmapPoint(*args
, **kwargs
)
5552 def DrawText(*args
, **kwargs
):
5554 DrawText(self, String text, int x, int y)
5556 Draws a text string at the specified point, using the current text
5557 font, and the current text foreground and background colours.
5559 The coordinates refer to the top-left corner of the rectangle bounding
5560 the string. See `wx.DC.GetTextExtent` for how to get the dimensions of
5561 a text string, which can be used to position the text more precisely,
5562 (you will need to use a real DC with GetTextExtent as wx.PseudoDC does
5565 **NOTE**: under wxGTK the current logical function is used by this
5566 function but it is ignored by wxMSW. Thus, you should avoid using
5567 logical functions with this function in portable programs.
5569 return _gdi_
.PseudoDC_DrawText(*args
, **kwargs
)
5571 def DrawTextPoint(*args
, **kwargs
):
5573 DrawTextPoint(self, String text, Point pt)
5575 Draws a text string at the specified point, using the current text
5576 font, and the current text foreground and background colours.
5578 The coordinates refer to the top-left corner of the rectangle bounding
5579 the string. See `wx.DC.GetTextExtent` for how to get the dimensions of
5580 a text string, which can be used to position the text more precisely,
5581 (you will need to use a real DC with GetTextExtent as wx.PseudoDC does
5584 **NOTE**: under wxGTK the current logical function is used by this
5585 function but it is ignored by wxMSW. Thus, you should avoid using
5586 logical functions with this function in portable programs.
5588 return _gdi_
.PseudoDC_DrawTextPoint(*args
, **kwargs
)
5590 def DrawRotatedText(*args
, **kwargs
):
5592 DrawRotatedText(self, String text, int x, int y, double angle)
5594 Draws the text rotated by *angle* degrees, if supported by the platform.
5596 **NOTE**: Under Win9x only TrueType fonts can be drawn by this
5597 function. In particular, a font different from ``wx.NORMAL_FONT``
5598 should be used as the it is not normally a TrueType
5599 font. ``wx.SWISS_FONT`` is an example of a font which is.
5601 return _gdi_
.PseudoDC_DrawRotatedText(*args
, **kwargs
)
5603 def DrawRotatedTextPoint(*args
, **kwargs
):
5605 DrawRotatedTextPoint(self, String text, Point pt, double angle)
5607 Draws the text rotated by *angle* degrees, if supported by the platform.
5609 **NOTE**: Under Win9x only TrueType fonts can be drawn by this
5610 function. In particular, a font different from ``wx.NORMAL_FONT``
5611 should be used as the it is not normally a TrueType
5612 font. ``wx.SWISS_FONT`` is an example of a font which is.
5614 return _gdi_
.PseudoDC_DrawRotatedTextPoint(*args
, **kwargs
)
5616 def DrawLines(*args
, **kwargs
):
5618 DrawLines(self, List points, int xoffset=0, int yoffset=0)
5620 Draws lines using a sequence of `wx.Point` objects, adding the
5621 optional offset coordinate. The current pen is used for drawing the
5624 return _gdi_
.PseudoDC_DrawLines(*args
, **kwargs
)
5626 def DrawPolygon(*args
, **kwargs
):
5628 DrawPolygon(self, List points, int xoffset=0, int yoffset=0,
5629 int fillStyle=ODDEVEN_RULE)
5631 Draws a filled polygon using a sequence of `wx.Point` objects, adding
5632 the optional offset coordinate. The last argument specifies the fill
5633 rule: ``wx.ODDEVEN_RULE`` (the default) or ``wx.WINDING_RULE``.
5635 The current pen is used for drawing the outline, and the current brush
5636 for filling the shape. Using a transparent brush suppresses
5637 filling. Note that wxWidgets automatically closes the first and last
5640 return _gdi_
.PseudoDC_DrawPolygon(*args
, **kwargs
)
5642 def DrawLabel(*args
, **kwargs
):
5644 DrawLabel(self, String text, Rect rect, int alignment=wxALIGN_LEFT|wxALIGN_TOP,
5647 Draw *text* within the specified rectangle, abiding by the alignment
5648 flags. Will additionally emphasize the character at *indexAccel* if
5651 return _gdi_
.PseudoDC_DrawLabel(*args
, **kwargs
)
5653 def DrawImageLabel(*args
, **kwargs
):
5655 DrawImageLabel(self, String text, Bitmap image, Rect rect, int alignment=wxALIGN_LEFT|wxALIGN_TOP,
5658 Draw *text* and an image (which may be ``wx.NullBitmap`` to skip
5659 drawing it) within the specified rectangle, abiding by the alignment
5660 flags. Will additionally emphasize the character at *indexAccel* if
5663 return _gdi_
.PseudoDC_DrawImageLabel(*args
, **kwargs
)
5665 def DrawSpline(*args
, **kwargs
):
5667 DrawSpline(self, List points)
5669 Draws a spline between all given control points, (a list of `wx.Point`
5670 objects) using the current pen. The spline is drawn using a series of
5671 lines, using an algorithm taken from the X drawing program 'XFIG'.
5673 return _gdi_
.PseudoDC_DrawSpline(*args
, **kwargs
)
5675 def Clear(*args
, **kwargs
):
5679 Clears the device context using the current background brush.
5681 return _gdi_
.PseudoDC_Clear(*args
, **kwargs
)
5683 def SetFont(*args
, **kwargs
):
5685 SetFont(self, Font font)
5687 Sets the current font for the DC. It must be a valid font, in
5688 particular you should not pass ``wx.NullFont`` to this method.
5690 return _gdi_
.PseudoDC_SetFont(*args
, **kwargs
)
5692 def SetPen(*args
, **kwargs
):
5694 SetPen(self, Pen pen)
5696 Sets the current pen for the DC.
5698 If the argument is ``wx.NullPen``, the current pen is selected out of the
5699 device context, and the original pen restored.
5701 return _gdi_
.PseudoDC_SetPen(*args
, **kwargs
)
5703 def SetBrush(*args
, **kwargs
):
5705 SetBrush(self, Brush brush)
5707 Sets the current brush for the DC.
5709 If the argument is ``wx.NullBrush``, the current brush is selected out
5710 of the device context, and the original brush restored, allowing the
5711 current brush to be destroyed safely.
5713 return _gdi_
.PseudoDC_SetBrush(*args
, **kwargs
)
5715 def SetBackground(*args
, **kwargs
):
5717 SetBackground(self, Brush brush)
5719 Sets the current background brush for the DC.
5721 return _gdi_
.PseudoDC_SetBackground(*args
, **kwargs
)
5723 def SetBackgroundMode(*args
, **kwargs
):
5725 SetBackgroundMode(self, int mode)
5727 *mode* may be one of ``wx.SOLID`` and ``wx.TRANSPARENT``. This setting
5728 determines whether text will be drawn with a background colour or
5731 return _gdi_
.PseudoDC_SetBackgroundMode(*args
, **kwargs
)
5733 def SetPalette(*args
, **kwargs
):
5735 SetPalette(self, Palette palette)
5737 If this is a window DC or memory DC, assigns the given palette to the
5738 window or bitmap associated with the DC. If the argument is
5739 ``wx.NullPalette``, the current palette is selected out of the device
5740 context, and the original palette restored.
5742 return _gdi_
.PseudoDC_SetPalette(*args
, **kwargs
)
5744 def SetTextForeground(*args
, **kwargs
):
5746 SetTextForeground(self, Colour colour)
5748 Sets the current text foreground colour for the DC.
5750 return _gdi_
.PseudoDC_SetTextForeground(*args
, **kwargs
)
5752 def SetTextBackground(*args
, **kwargs
):
5754 SetTextBackground(self, Colour colour)
5756 Sets the current text background colour for the DC.
5758 return _gdi_
.PseudoDC_SetTextBackground(*args
, **kwargs
)
5760 def SetLogicalFunction(*args
, **kwargs
):
5762 SetLogicalFunction(self, int function)
5764 Sets the current logical function for the device context. This
5765 determines how a source pixel (from a pen or brush colour, combines
5766 with a destination pixel in the current device context.
5768 The possible values and their meaning in terms of source and
5769 destination pixel values are as follows:
5771 ================ ==========================
5773 wx.AND_INVERT (NOT src) AND dst
5774 wx.AND_REVERSE src AND (NOT dst)
5777 wx.EQUIV (NOT src) XOR dst
5779 wx.NAND (NOT src) OR (NOT dst)
5780 wx.NOR (NOT src) AND (NOT dst)
5783 wx.OR_INVERT (NOT src) OR dst
5784 wx.OR_REVERSE src OR (NOT dst)
5786 wx.SRC_INVERT NOT src
5788 ================ ==========================
5790 The default is wx.COPY, which simply draws with the current
5791 colour. The others combine the current colour and the background using
5792 a logical operation. wx.INVERT is commonly used for drawing rubber
5793 bands or moving outlines, since drawing twice reverts to the original
5797 return _gdi_
.PseudoDC_SetLogicalFunction(*args
, **kwargs
)
5799 _gdi_
.PseudoDC_swigregister(PseudoDC
)