********** wx.Display ********** Inheritance diagram for `wx.Display`: | .. inheritance-diagram:: wx.Display | Description =========== Determines the sizes and locations of displays connected to the system. .. seealso:: `wx.ClientDisplayRect <../wxFunctions.html#ClientDisplayRect>`_, `wx.DisplaySize <../wxFunctions.html#DisplaySize>`_, `wx.DisplaySizeMM <../wxFunctions.html#DisplaySizeMM>`_ Methods Summary ^^^^^^^^^^^^^^^ * `__init__ <#__init__>`_ * `ChangeMode <#ChangeMode>`_ * `GetClientArea <#GetClientArea>`_ * `GetCount <#GetCount>`_ * `GetCurrentMode <#GetCurrentMode>`_ * `GetFromPoint <#GetFromPoint>`_ * `GetFromWindow <#GetFromWindow>`_ * `GetGeometry <#GetGeometry>`_ * `GetModes <#GetModes>`_ * `GetName <#GetName>`_ * `IsOk <#IsOk>`_ * `IsPrimary <#IsPrimary>`_ * `ResetMode <#ResetMode>`_ Properties Summary ^^^^^^^^^^^^^^^^^^ * `ClientArea <#ClientArea>`_ * `CurrentMode <#CurrentMode>`_ * `Geometry <#Geometry>`_ * `Modes <#Modes>`_ * `Name <#Name>`_ Class API ========= Methods ^^^^^^^ .. method:: __init__(index=0) Set up a `wx.Display` instance with the specified display. The displays are numbered from 0 to `GetCount() <#GetCount>`_ - 1, 0 is always the primary display and the only one which is always supported. **Parameters:** * `index` (int): The index of the display to use. This must be non-negative and lower than the value returned by `GetCount() <#GetCount>`_. | **Returns:** `wx.Display `_ -------- .. method:: ChangeMode(mode=wx.DefaultVideoMode) Changes the video mode of this display to the mode specified in the mode parameter. If `wx.DefaultVideoMode` is passed in as the mode parameter, the defined behaviour is that `wx.Display` will reset the video mode to the default mode used by the display. On Windows, the behavior is normal. However, there are differences on other platforms. On Unix variations using X11 extensions it should behave as defined, but some irregularities may occur. On wxMac passing in `wx.DefaultVideoMode` as the mode parameter does nothing. This happens because carbon no longer has access to DMUseScreenPrefs, an undocumented function that changed the video mode to the system default by using the system's 'scrn' resource. **Parameters:** * `mode` (int) | **Returns:** `bool` -------- .. method:: GetClientArea() Returns the client area of the display. The client area is the part of the display available for the normal (non full screen) windows, usually it is the same as `GetGeometry <#GetGeometry>`_ but it could be less if there is a taskbar (or equivalent) on this display. | **Returns:** `wx.Rect `_ -------- .. method:: GetCount() Returns the number of connected displays. | **Returns:** `int` -------- .. method:: GetCurrentMode() Returns the current video mode that this display is in. | **Returns:** `int` -------- .. method:: GetFromPoint(pt) Returns the index of the display on which the given point lies. Returns ``wx.NOT_FOUND`` if the point is not on any connected display. **Parameters:** * `pt` (`wx.Point `_): The point to locate. | **Returns:** `int` -------- .. method:: GetFromWindow(window) Returns the index of the display on which the given window lies. If the window is on more than one display it gets the display that overlaps the window the most. Returns ``wx.NOT_FOUND`` if the window is not on any connected display. **Parameters:** * `window` (`wx.Window `_) | **Returns:** `int` -------- .. method:: GetGeometry() Returns the bounding rectangle of the display whose index was passed to the constructor. | **Returns:** `wx.Rect `_ -------- .. method:: GetModes(mode=wx.DefaultVideoMode) Enumerate all video modes supported by this display matching the given one (in the sense of `VideoMode.Match()`). As any mode matches the default value of the argument and there is always at least one video mode supported by display, the returned array is only empty for the default value of the argument if this function is not supported at all on this platform. **Parameters:** * `mode` (int) | **Returns:** `list of integers` -------- .. method:: GetName() Returns the display's name. A name is not available on all platforms. | **Returns:** `string` -------- .. method:: IsOk() Return ``True`` if the object was initialized successfully | **Returns:** `bool` -------- .. method:: IsPrimary() Returns ``True`` if the display is the primary display. The primary display is the one whose index is 0. | **Returns:** `bool` -------- .. method:: ResetMode() Restore the default video mode (just a more readable synonym). -------- Properties ^^^^^^^^^^ .. attribute:: ClientArea See `GetClientArea <#GetClientArea>`_ .. attribute:: CurrentMode See `GetCurrentMode <#GetCurrentMode>`_ .. attribute:: Geometry See `GetGeometry <#GetGeometry>`_ .. attribute:: Modes See `GetModes <#GetModes>`_ .. attribute:: Name See `GetName <#GetName>`_