]> git.saurik.com Git - wxWidgets.git/blame - docs/latex/wx/rect.tex
As per the wx-dev discussion in early Jan, replaced
[wxWidgets.git] / docs / latex / wx / rect.tex
CommitLineData
a660d684
KB
1\section{\class{wxRect}}\label{wxrect}
2
3A class for manipulating rectangles.
4
5\wxheading{Derived from}
6
9838df2c 7None
a660d684 8
954b8ae6
JS
9\wxheading{Include files}
10
11<wx/gdicmn.h>
12
a660d684
KB
13\wxheading{See also}
14
15\helpref{wxPoint}{wxpoint}, \helpref{wxSize}{wxsize}
16
17\latexignore{\rtfignore{\wxheading{Members}}}
18
19\membersection{wxRect::wxRect}
20
21\func{}{wxRect}{\void}
22
23Default constructor.
24
eaaa6a06 25\func{}{wxRect}{\param{int}{ x}, \param{int}{ y}, \param{int}{ width}, \param{int}{ height}}
a660d684
KB
26
27Creates a wxRect object from x, y, width and height values.
28
29\func{}{wxRect}{\param{const wxPoint\&}{ topLeft}, \param{const wxPoint\&}{ bottomRight}}
30
31Creates a wxRect object from top-left and bottom-right points.
32
33\func{}{wxRect}{\param{const wxPoint\&}{ pos}, \param{const wxSize\&}{ size}}
34
35Creates a wxRect object from position and size values.
36
37\membersection{wxRect::x}
38
39\member{int}{x}
40
f6bcfd97 41x coordinate of the top-level corner of the rectangle.
a660d684
KB
42
43\membersection{wxRect::y}
44
45\member{int}{y}
46
f6bcfd97 47y coordinate of the top-level corner of the rectangle.
a660d684
KB
48
49\membersection{wxRect::width}
50
51\member{int}{width}
52
53Width member.
54
55\membersection{wxRect::height}
56
57\member{int}{height}
58
59Height member.
60
61\membersection{wxRect::GetBottom}\label{wxrectgetbottom}
62
63\constfunc{int}{GetBottom}{\void}
64
65Gets the bottom point of the rectangle.
66
67\membersection{wxRect::GetHeight}\label{wxrectgetheight}
68
69\constfunc{int}{GetHeight}{\void}
70
71Gets the height member.
72
73\membersection{wxRect::GetLeft}\label{wxrectgetleft}
74
75\constfunc{int}{GetLeft}{\void}
76
77Gets the left point of the rectangle (the same as \helpref{wxRect::GetX}{wxrectgetx}).
78
79\membersection{wxRect::GetPosition}\label{wxrectgetposition}
80
81\constfunc{wxPoint}{GetPosition}{\void}
82
83Gets the position.
84
85\membersection{wxRect::GetRight}\label{wxrectgetright}
86
87\constfunc{int}{GetRight}{\void}
88
89Gets the right point of the rectangle.
90
91\membersection{wxRect::GetSize}\label{wxrectgetsize}
92
93\constfunc{wxSize}{GetSize}{\void}
94
95Gets the size.
96
97\membersection{wxRect::GetTop}\label{wxrectgettop}
98
99\constfunc{int}{GetTop}{\void}
100
101Gets the top point of the rectangle (the same as \helpref{wxRect::GetY}{wxrectgety}).
102
103\membersection{wxRect::GetWidth}\label{wxrectgetwidth}
104
105\constfunc{int}{GetWidth}{\void}
106
107Gets the width member.
108
109\membersection{wxRect::GetX}\label{wxrectgetx}
110
111\constfunc{int}{GetX}{\void}
112
113Gets the x member.
114
115\membersection{wxRect::GetY}\label{wxrectgety}
116
117\constfunc{int}{GetY}{\void}
118
119Gets the y member.
120
45816ddd
VZ
121\membersection{wxRect::Inflate}\label{wxrectinflate}
122
123\func{void}{Inflate}{\param{wxCoord }{dx}, \param{wxCoord }{dy}}
124
125\func{void}{Inflate}{\param{wxCoord }{diff}}
126
127Increase the rectangle size by {\it dx} in x direction and {\it dy} in y
128direction. Both (or one of) parameters may be negative to decrease the
129rectngle size.
130
131The second form uses the same {\it diff} for both {\it dx} and {\it dy}.
132
a660d684
KB
133\membersection{wxRect::SetHeight}\label{wxrectsetheight}
134
eaaa6a06 135\func{void}{SetHeight}{\param{int}{ height}}
a660d684
KB
136
137Sets the height.
138
139\membersection{wxRect::SetWidth}\label{wxrectsetwidth}
140
eaaa6a06 141\func{void}{SetWidth}{\param{int}{ width}}
a660d684
KB
142
143Sets the width.
144
145\membersection{wxRect::SetX}\label{wxrectsetx}
146
eaaa6a06 147\func{void}{SetX}{\param{int}{ x}}
a660d684
KB
148
149Sets the x position.
150
151\membersection{wxRect::SetY}\label{wxrectsety}
152
eaaa6a06 153\func{void}{SetY}{\param{int}{ y}}
a660d684
KB
154
155Sets the y position.
156
157\membersection{wxRect::operator $=$}
158
159\func{void}{operator $=$}{\param{const wxRect\& }{rect}}
160
161Assignment operator.
162
163\membersection{wxRect::operator $==$}
164
165\func{bool}{operator $==$}{\param{const wxRect\& }{rect}}
166
167Equality operator.
168
169\membersection{wxRect::operator $!=$}
170
171\func{bool}{operator $!=$}{\param{const wxRect\& }{rect}}
172
173Inequality operator.
174