]> git.saurik.com Git - wxWidgets.git/blame - docs/latex/wx/display.tex
Added wxPATH_NORM_SHORTCUT
[wxWidgets.git] / docs / latex / wx / display.tex
CommitLineData
a7fee33e
JS
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
93255dad 19
a7fee33e
JS
20\membersection{wxDisplay::wxDisplay}\label{wxdisplayconstr}
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
93255dad
VZ
29and lower than the value returned by \helpref{GetCount()}{wxdisplaygetcount}.}
30
a7fee33e
JS
31
32\membersection{wxDisplay::\destruct{wxDisplay}}
33
34\func{void}{\destruct{wxDisplay}}{\void}
35
36Destructor.
37
93255dad 38
a7fee33e
JS
39\membersection{wxDisplay::GetCount}\label{wxdisplaygetcount}
40
41\func{static size\_t}{GetCount}{\void}
42
43Returns the number of connected displays.
44
93255dad 45
a7fee33e
JS
46\membersection{wxDisplay::GetDepth}\label{wxdisplaygetdepth}
47
48\constfunc{int }{GetDepth}{\void}
49
50Returns the bit depth of the display whose index was passed to the constructor.
51
93255dad 52
a7fee33e
JS
53\membersection{wxDisplay::GetFromPoint}\label{wxdisplaygetfrompoint}
54
55\func{static int}{GetFromPoint}{\param{const wxPoint\& }{pt}}
56
57Returns the index of the display on which the given point lies. Returns -1 if
58the point is not on any connected display.
59
60\wxheading{Parameters}
61
62\docparam{pt}{The point to locate.}
63
93255dad 64
a7fee33e
JS
65\membersection{wxDisplay::GetGeometry}\label{wxdisplaygetgeometry}
66
67\constfunc{wxRect }{GetGeometry}{\void}
68
69Returns the bounding rectangle of the display whose index was passed to the
70constructor.
71
93255dad 72
a7fee33e
JS
73\membersection{wxDisplay::GetName}\label{wxdisplaygetname}
74
75\constfunc{wxString }{GetName}{\void}
76
77Returns the display's name. A name is not available on all platforms.
78
93255dad 79
a7fee33e
JS
80\membersection{wxDisplay::IsColour}\label{wxdisplayiscolour}
81
82\constfunc{bool }{IsColour}{\void}
83
84Returns true if the display is color (has a depth greater than 1).
85
93255dad 86
a7fee33e
JS
87\membersection{wxDisplay::IsColor}\label{wxdisplayiscolor}
88
89\constfunc{bool }{IsColor}{\void}
90
91Same as \helpref{IsColour()}{wxdisplayiscolour}.
92
93255dad 93
a7fee33e
JS
94\membersection{wxDisplay::IsPrimary}\label{wxdisplayisprimary}
95
96\func{bool }{IsPrimary}{\void}
97
98Returns true if the display is the primary display. The primary display is the
99one whose index is 0.
100