]> git.saurik.com Git - wxWidgets.git/blame_incremental - docs/latex/wx/display.tex
fixed SetAddress() for self-assignment (patch 1430703)
[wxWidgets.git] / docs / latex / wx / display.tex
... / ...
CommitLineData
1\section{\class{wxDisplay}}\label{wxdisplay}
2
3Determines the sizes and locations of displays connected to the system.
4
5\wxheading{Derived from}
6
7None
8
9\wxheading{Include files}
10
11<wx/display.h>
12
13\wxheading{See also}
14
15\helpref{wxClientDisplayRect}{wxclientdisplayrect}, \helpref{wxDisplaySize}{wxdisplaysize}, \helpref{wxDisplaySizeMM}{wxdisplaysizemm}
16
17\latexignore{\rtfignore{\wxheading{Members}}}
18
19
20\membersection{wxDisplay::wxDisplay}\label{wxdisplayctor}
21
22\func{}{wxDisplay}{\param{size\_t }{index = 0}}
23
24Constructor, setting up a wxDisplay instance with the specified display.
25
26\wxheading{Parameters}
27
28\docparam{index}{The index of the display to use. This must be non-negative
29and lower than the value returned by \helpref{GetCount()}{wxdisplaygetcount}.}
30
31
32\membersection{wxDisplay::\destruct{wxDisplay}}\label{wxdisplaydtor}
33
34\func{void}{\destruct{wxDisplay}}{\void}
35
36Destructor.
37
38
39\membersection{wxDisplay::ChangeMode}\label{wxdisplaychangemode}
40
41\func{bool }{ChangeMode}{\param{const wxVideoMode\& }{mode = wxDefaultVideoMode}}
42
43Changes the video mode of this display to the mode specified
44in the mode parameter.
45
46If wxDefaultVideoMode is passed in as the mode parameter,
47the defined behaviour is that wxDisplay will reset the video
48mode to the default mode used by the display. On Windows,
49the behavior is normal. However, there are differences on other
50platforms. On Unix variations using X11 extensions it should
51behave as defined, but some irregularities may occur.
52
53On wxMac passing in wxDefaultVideoMode as the mode
54parameter does nothing. This happens because carbon
55no longer has access to DMUseScreenPrefs, an undocumented
56function that changed the video mode to the system
57default by using the system's 'scrn' resource.
58
59
60\membersection{wxDisplay::GetCount}\label{wxdisplaygetcount}
61
62\func{static size\_t}{GetCount}{\void}
63
64Returns the number of connected displays.
65
66
67\membersection{wxDisplay::GetCurrentMode}\label{wxdisplaygetcurrentmode}
68
69\constfunc{wxVideoMode }{GetCurrentMode}{\void}
70
71Returns the current video mode that this display is in.
72
73
74\membersection{wxDisplay::GetDepth}\label{wxdisplaygetdepth}
75
76\constfunc{int }{GetDepth}{\void}
77
78Returns the bit depth of the display whose index was passed to the constructor.
79
80
81\membersection{wxDisplay::GetFromPoint}\label{wxdisplaygetfrompoint}
82
83\func{static int}{GetFromPoint}{\param{const wxPoint\& }{pt}}
84
85Returns the index of the display on which the given point lies. Returns
86\texttt{wxNOT\_FOUND} if the point is not on any connected display.
87
88\wxheading{Parameters}
89
90\docparam{pt}{The point to locate.}
91
92
93\membersection{wxDisplay::GetFromWindow}\label{wxdisplaygetfromwindow}
94
95\func{static int}{GetFromWindow}{\param{wxWindow* }{win}}
96
97Returns the index of the display on which the given window lies.
98
99If the window is on more than one display it gets the display that overlaps the window the most.
100
101Returns \texttt{wxNOT\_FOUND} if the window is not on any connected display.
102
103\wxheading{Parameters}
104
105\docparam{win}{The window to locate.}
106
107
108\membersection{wxDisplay::GetGeometry}\label{wxdisplaygetgeometry}
109
110\constfunc{wxRect }{GetGeometry}{\void}
111
112Returns the bounding rectangle of the display whose index was passed to the
113constructor.
114
115
116\membersection{wxDisplay::GetModes}\label{wxdisplaygetmodes}
117
118\constfunc{wxArrayVideoModes }{GetModes}{\param{const wxVideoMode\& }{mode = wxDefaultVideoMode}}
119
120Fills and returns an array with all the video modes that
121are supported by this display, or video modes that are
122supported by this display and match the mode parameter
123(if mode is not wxDefaultVideoMode).
124
125
126\membersection{wxDisplay::GetName}\label{wxdisplaygetname}
127
128\constfunc{wxString }{GetName}{\void}
129
130Returns the display's name. A name is not available on all platforms.
131
132
133\membersection{wxDisplay::IsPrimary}\label{wxdisplayisprimary}
134
135\func{bool }{IsPrimary}{\void}
136
137Returns true if the display is the primary display. The primary display is the
138one whose index is 0.
139