]>
Commit | Line | Data |
---|---|---|
a660d684 KB |
1 | \section{\class{wxDC}}\label{wxdc} |
2 | ||
3 | A wxDC is a {\it device context} onto which graphics and text can be drawn. | |
4 | It is intended to represent a number of output devices in a generic way, | |
fe604ccd | 5 | so a window can have a device context associated with it, and a printer also has a device context. |
a660d684 KB |
6 | In this way, the same piece of code may write to a number of different devices, |
7 | if the device context is used as a parameter. | |
8 | ||
9 | Derived types of wxDC have documentation for specific features | |
10 | only, so refer to this section for most device context information. | |
11 | ||
eb750029 VZ |
12 | % VZ: we should really document them instead of this lame excuse, but I don't |
13 | % have time for it now, when it is done please remove this | |
14 | Please note that in addition to the versions of the methods documented here, | |
15 | there are also versions which accept single {\tt wxPoint} parameter instead of | |
16 | two {\tt wxCoord} ones or {\tt wxPoint} and {\tt wxSize} instead of four of | |
17 | them. | |
18 | ||
a660d684 KB |
19 | \wxheading{Derived from} |
20 | ||
21 | \helpref{wxObject}{wxobject} | |
22 | ||
954b8ae6 JS |
23 | \wxheading{Include files} |
24 | ||
25 | <wx/dc.h> | |
26 | ||
a660d684 KB |
27 | \wxheading{See also} |
28 | ||
29 | \helpref{Overview}{dcoverview} | |
30 | ||
31 | \latexignore{\rtfignore{\wxheading{Members}}} | |
32 | ||
6e76b35d | 33 | |
a660d684 KB |
34 | \membersection{wxDC::wxDC} |
35 | ||
36 | \func{}{wxDC}{\void} | |
37 | ||
38 | Constructor. | |
39 | ||
6e76b35d | 40 | |
a660d684 KB |
41 | \membersection{wxDC::\destruct{wxDC}} |
42 | ||
43 | \func{}{\destruct{wxDC}}{\void} | |
44 | ||
45 | Destructor. | |
46 | ||
6e76b35d | 47 | |
a660d684 KB |
48 | \membersection{wxDC::BeginDrawing}\label{wxdcbegindrawing} |
49 | ||
50 | \func{void}{BeginDrawing}{\void} | |
51 | ||
52 | Allows optimization of drawing code under MS Windows. Enclose | |
53 | drawing primitives between {\bf BeginDrawing} and {\bf EndDrawing}\rtfsp | |
54 | calls. | |
55 | ||
56 | Drawing to a wxDialog panel device context outside of a | |
57 | system-generated OnPaint event {\it requires} this pair of calls to | |
58 | enclose drawing code. This is because a Windows dialog box does not have | |
59 | a retained device context associated with it, and selections such as pen | |
60 | and brush settings would be lost if the device context were obtained and | |
61 | released for each drawing operation. | |
62 | ||
6e76b35d | 63 | |
a660d684 KB |
64 | \membersection{wxDC::Blit}\label{wxdcblit} |
65 | ||
1f897d25 VZ |
66 | \func{bool}{Blit}{\param{wxCoord}{ xdest}, \param{wxCoord}{ ydest}, \param{wxCoord}{ width}, \param{wxCoord}{ height}, |
67 | \param{wxDC* }{source}, \param{wxCoord}{ xsrc}, \param{wxCoord}{ ysrc}, \param{int}{ logicalFunc = wxCOPY}, | |
cc81d32f | 68 | \param{bool }{useMask = false}, \param{wxCoord}{ xsrcMask = -1}, \param{wxCoord}{ ysrcMask = -1}} |
a660d684 KB |
69 | |
70 | Copy from a source DC to this DC, specifying the destination | |
0cbff120 JS |
71 | coordinates, size of area to copy, source DC, source coordinates, |
72 | logical function, whether to use a bitmap mask, and mask source position. | |
a660d684 KB |
73 | |
74 | \wxheading{Parameters} | |
75 | ||
76 | \docparam{xdest}{Destination device context x position.} | |
77 | ||
78 | \docparam{ydest}{Destination device context y position.} | |
79 | ||
80 | \docparam{width}{Width of source area to be copied.} | |
81 | ||
82 | \docparam{height}{Height of source area to be copied.} | |
83 | ||
84 | \docparam{source}{Source device context.} | |
85 | ||
86 | \docparam{xsrc}{Source device context x position.} | |
87 | ||
88 | \docparam{ysrc}{Source device context y position.} | |
89 | ||
90 | \docparam{logicalFunc}{Logical function to use: see \helpref{wxDC::SetLogicalFunction}{wxdcsetlogicalfunction}.} | |
91 | ||
cc81d32f | 92 | \docparam{useMask}{If true, Blit does a transparent blit using the mask that is associated with the bitmap |
0cbff120 | 93 | selected into the source device context. The Windows implementation does the following if MaskBlt cannot be used: |
a660d684 KB |
94 | |
95 | \begin{enumerate} | |
96 | \item Creates a temporary bitmap and copies the destination area into it. | |
97 | \item Copies the source area into the temporary bitmap using the specified logical function. | |
98 | \item Sets the masked area in the temporary bitmap to BLACK by ANDing the | |
99 | mask bitmap with the temp bitmap with the foreground colour set to WHITE | |
100 | and the bg colour set to BLACK. | |
101 | \item Sets the unmasked area in the destination area to BLACK by ANDing the | |
102 | mask bitmap with the destination area with the foreground colour set to BLACK | |
103 | and the background colour set to WHITE. | |
104 | \item ORs the temporary bitmap with the destination area. | |
105 | \item Deletes the temporary bitmap. | |
106 | \end{enumerate} | |
107 | ||
108 | This sequence of operations ensures that the source's transparent area need not be black, | |
109 | and logical functions are supported. | |
0cbff120 | 110 | |
aef94d68 JS |
111 | {\bf Note:} on Windows, blitting with masks can be speeded up considerably by compiling |
112 | wxWindows with the wxUSE\_DC\_CACHE option enabled. You can also influence whether MaskBlt | |
0cbff120 JS |
113 | or the explicit mask blitting code above is used, by using \helpref{wxSystemOptions}{wxsystemoptions} and |
114 | setting the {\bf no-maskblt} option to 1. | |
115 | ||
a660d684 KB |
116 | } |
117 | ||
0cbff120 JS |
118 | \docparam{xsrcMask}{Source x position on the mask. If both xsrcMask and ysrcMask are -1, xsrc and ysrc |
119 | will be assumed for the mask source position. Currently only implemented on Windows.} | |
120 | ||
121 | \docparam{ysrcMask}{Source y position on the mask. If both xsrcMask and ysrcMask are -1, xsrc and ysrc | |
122 | will be assumed for the mask source position. Currently only implemented on Windows.} | |
123 | ||
124 | ||
a660d684 KB |
125 | \wxheading{Remarks} |
126 | ||
127 | There is partial support for Blit in wxPostScriptDC, under X. | |
128 | ||
129 | See \helpref{wxMemoryDC}{wxmemorydc} for typical usage. | |
130 | ||
ac1edf35 | 131 | \wxheading{See also} |
a660d684 KB |
132 | |
133 | \helpref{wxMemoryDC}{wxmemorydc}, \helpref{wxBitmap}{wxbitmap}, \helpref{wxMask}{wxmask} | |
134 | ||
aef94d68 | 135 | \begin{comment} |
6e76b35d | 136 | |
0cbff120 JS |
137 | \membersection{wxDC::CacheEnabled}\label{wxdccacheenabled} |
138 | ||
139 | \func{static bool}{CacheEnabled}{\void} | |
140 | ||
cc81d32f | 141 | On supported platforms (currently only Windows), returns true |
0cbff120 JS |
142 | if the DC cache is enabled. The DC cache |
143 | can speed up the \helpref{Blit}{wxdcblit} operation when | |
144 | drawing a large number of masked bitmaps. | |
145 | ||
146 | If using the cache functions in your code, please test for the | |
147 | wxUSE\_DC\_CACHEING preprocessor symbol for portability. | |
148 | ||
149 | \wxheading{See also} | |
150 | ||
151 | \helpref{wxDC::EnableCache}{wxdcenablecache}, \helpref{wxDC::ClearCache} | |
aef94d68 | 152 | \end{comment} |
0cbff120 | 153 | |
6e76b35d | 154 | |
f6bcfd97 BP |
155 | \membersection{wxDC::CalcBoundingBox}\label{wxdccalcboundingbox} |
156 | ||
157 | \func{void}{CalcBoundingBox}{\param{wxCoord }{x}, \param{wxCoord }{y}} | |
158 | ||
159 | Adds the specified point to the bounding box which can be retrieved with | |
160 | \helpref{MinX}{wxdcminx}, \helpref{MaxX}{wxdcmaxx} and | |
161 | \helpref{MinY}{wxdcminy}, \helpref{MaxY}{wxdcmaxy} functions. | |
162 | ||
163 | \wxheading{See also} | |
164 | ||
165 | \helpref{ResetBoundingBox}{wxdcresetboundingbox} | |
166 | ||
6e76b35d | 167 | |
a660d684 KB |
168 | \membersection{wxDC::Clear}\label{wxdcclear} |
169 | ||
170 | \func{void}{Clear}{\void} | |
171 | ||
172 | Clears the device context using the current background brush. | |
173 | ||
aef94d68 | 174 | \begin{comment} |
6e76b35d | 175 | |
0cbff120 JS |
176 | \membersection{wxDC::ClearCache}\label{wxdcclearcache} |
177 | ||
178 | \func{static void}{ClearCache}{\void} | |
179 | ||
180 | On supported platforms (currently only Windows), clears | |
181 | the contents of the DC cache (one bitmap and two Windows device contexts). The DC cache | |
182 | can speed up the \helpref{Blit}{wxdcblit} operation when | |
183 | drawing a large number of masked bitmaps. You should | |
184 | call ClearCache at the end of length DC operations if you wish to only use | |
185 | the cache transiently; you should also call it as your application exits. | |
186 | ||
187 | If using the cache functions in your code, please test for the | |
188 | wxUSE\_DC\_CACHEING preprocessor symbol for portability. | |
189 | ||
190 | \wxheading{See also} | |
191 | ||
192 | \helpref{wxDC::EnableCache}{wxdcenablecache}, \helpref{wxDC::CacheEnabled} | |
aef94d68 | 193 | \end{comment} |
0cbff120 | 194 | |
6e76b35d | 195 | |
a660d684 KB |
196 | \membersection{wxDC::CrossHair}\label{wxdccrosshair} |
197 | ||
1f897d25 | 198 | \func{void}{CrossHair}{\param{wxCoord}{ x}, \param{wxCoord}{ y}} |
a660d684 KB |
199 | |
200 | Displays a cross hair using the current pen. This is a vertical | |
fe604ccd | 201 | and horizontal line the height and width of the window, centred |
a660d684 KB |
202 | on the given point. |
203 | ||
6e76b35d | 204 | |
a660d684 KB |
205 | \membersection{wxDC::DestroyClippingRegion}\label{wxdcdestroyclippingregion} |
206 | ||
207 | \func{void}{DestroyClippingRegion}{\void} | |
208 | ||
209 | Destroys the current clipping region so that none of the DC is clipped. | |
210 | See also \helpref{wxDC::SetClippingRegion}{wxdcsetclippingregion}. | |
211 | ||
6e76b35d | 212 | |
a660d684 KB |
213 | \membersection{wxDC::DeviceToLogicalX}\label{wxdcdevicetologicalx} |
214 | ||
1f897d25 | 215 | \func{wxCoord}{DeviceToLogicalX}{\param{wxCoord}{ x}} |
a660d684 KB |
216 | |
217 | Convert device X coordinate to logical coordinate, using the current | |
218 | mapping mode. | |
219 | ||
6e76b35d | 220 | |
a660d684 KB |
221 | \membersection{wxDC::DeviceToLogicalXRel}\label{wxdcdevicetologicalxrel} |
222 | ||
1f897d25 | 223 | \func{wxCoord}{DeviceToLogicalXRel}{\param{wxCoord}{ x}} |
a660d684 KB |
224 | |
225 | Convert device X coordinate to relative logical coordinate, using the current | |
1387b68a GD |
226 | mapping mode but ignoring the x axis orientation. |
227 | Use this function for converting a width, for example. | |
a660d684 | 228 | |
6e76b35d | 229 | |
a660d684 KB |
230 | \membersection{wxDC::DeviceToLogicalY}\label{wxdcdevicetologicaly} |
231 | ||
1f897d25 | 232 | \func{wxCoord}{DeviceToLogicalY}{\param{wxCoord}{ y}} |
a660d684 KB |
233 | |
234 | Converts device Y coordinate to logical coordinate, using the current | |
235 | mapping mode. | |
236 | ||
6e76b35d | 237 | |
a660d684 KB |
238 | \membersection{wxDC::DeviceToLogicalYRel}\label{wxdcdevicetologicalyrel} |
239 | ||
1f897d25 | 240 | \func{wxCoord}{DeviceToLogicalYRel}{\param{wxCoord}{ y}} |
a660d684 KB |
241 | |
242 | Convert device Y coordinate to relative logical coordinate, using the current | |
1387b68a GD |
243 | mapping mode but ignoring the y axis orientation. |
244 | Use this function for converting a height, for example. | |
a660d684 | 245 | |
6e76b35d | 246 | |
a660d684 KB |
247 | \membersection{wxDC::DrawArc}\label{wxdcdrawarc} |
248 | ||
8bdd5efa | 249 | \func{void}{DrawArc}{\param{wxCoord}{ x1}, \param{wxCoord}{ y1}, \param{wxCoord}{ x2}, \param{wxCoord}{ y2}, \param{wxCoord}{ xc}, \param{wxCoord}{ yc}} |
a660d684 | 250 | |
b8de493f | 251 | Draws an arc of a circle, centred on ({\it xc, yc}), with starting point ({\it x1, y1}) |
a660d684 KB |
252 | and ending at ({\it x2, y2}). The current pen is used for the outline |
253 | and the current brush for filling the shape. | |
254 | ||
b8de493f JS |
255 | The arc is drawn in an anticlockwise direction from the start point to the end point. |
256 | ||
6e76b35d | 257 | |
72fd19a1 JS |
258 | \membersection{wxDC::DrawBitmap}\label{wxdcdrawbitmap} |
259 | ||
1f897d25 | 260 | \func{void}{DrawBitmap}{\param{const wxBitmap\&}{ bitmap}, \param{wxCoord}{ x}, \param{wxCoord}{ y}, \param{bool}{ transparent}} |
72fd19a1 | 261 | |
cc81d32f | 262 | Draw a bitmap on the device context at the specified point. If {\it transparent} is true and the bitmap has |
72fd19a1 JS |
263 | a transparency mask, the bitmap will be drawn transparently. |
264 | ||
41fbc841 | 265 | When drawing a mono-bitmap, the current text foreground colour will be used to draw the foreground |
9000c624 | 266 | of the bitmap (all bits set to 1), and the current text background colour to draw the background |
fa482912 | 267 | (all bits set to 0). See also \helpref{SetTextForeground}{wxdcsettextforeground}, |
9000c624 | 268 | \helpref{SetTextBackground}{wxdcsettextbackground} and \helpref{wxMemoryDC}{wxmemorydc}. |
41fbc841 | 269 | |
6e76b35d | 270 | |
cd9da200 VZ |
271 | \membersection{wxDC::DrawCheckMark}\label{wxdcdrawcheckmark} |
272 | ||
273 | \func{void}{DrawCheckMark}{\param{wxCoord}{ x}, \param{wxCoord}{ y}, \param{wxCoord}{ width}, \param{wxCoord}{ height}} | |
274 | ||
275 | \func{void}{DrawCheckMark}{\param{const wxRect \&}{rect}} | |
276 | ||
277 | Draws a check mark inside the given rectangle. | |
278 | ||
6e76b35d | 279 | |
0371e9a8 VZ |
280 | \membersection{wxDC::DrawCircle}\label{wxdcdrawcircle} |
281 | ||
282 | \func{void}{DrawCircle}{\param{wxCoord}{ x}, \param{wxCoord}{ y}, \param{wxCoord}{ radius}} | |
283 | ||
284 | \func{void}{DrawCircle}{\param{const wxPoint\&}{ pt}, \param{wxCoord}{ radius}} | |
285 | ||
286 | Draws a circle with the given centre and radius. | |
287 | ||
288 | \wxheading{See also} | |
289 | ||
290 | \helpref{DrawEllipse}{wxdcdrawellipse} | |
291 | ||
6e76b35d | 292 | |
a660d684 KB |
293 | \membersection{wxDC::DrawEllipse}\label{wxdcdrawellipse} |
294 | ||
1f897d25 | 295 | \func{void}{DrawEllipse}{\param{wxCoord}{ x}, \param{wxCoord}{ y}, \param{wxCoord}{ width}, \param{wxCoord}{ height}} |
a660d684 | 296 | |
0371e9a8 VZ |
297 | \func{void}{DrawEllipse}{\param{const wxPoint\&}{ pt}, \param{const wxSize\&}{ size}} |
298 | ||
299 | \func{void}{DrawEllipse}{\param{const wxRect\&}{ rect}} | |
300 | ||
301 | Draws an ellipse contained in the rectangle specified either with the given top | |
302 | left corner and the given size or directly. The current pen is used for the | |
303 | outline and the current brush for filling the shape. | |
304 | ||
305 | \wxheading{See also} | |
306 | ||
307 | \helpref{DrawCircle}{wxdcdrawcircle} | |
a660d684 | 308 | |
6e76b35d | 309 | |
a660d684 KB |
310 | \membersection{wxDC::DrawEllipticArc}\label{wxdcdrawellipticarc} |
311 | ||
1f897d25 | 312 | \func{void}{DrawEllipticArc}{\param{wxCoord}{ x}, \param{wxCoord}{ y}, \param{wxCoord}{ width}, \param{wxCoord}{ height}, |
a660d684 KB |
313 | \param{double}{ start}, \param{double}{ end}} |
314 | ||
06d20283 | 315 | Draws an arc of an ellipse. The current pen is used for drawing the arc and |
267a7108 | 316 | the current brush is used for drawing the pie. |
a660d684 KB |
317 | |
318 | {\it x} and {\it y} specify the x and y coordinates of the upper-left corner of the rectangle that contains | |
319 | the ellipse. | |
320 | ||
06d20283 | 321 | {\it width} and {\it height} specify the width and height of the rectangle that contains |
a660d684 KB |
322 | the ellipse. |
323 | ||
324 | {\it start} and {\it end} specify the start and end of the arc relative to the three-o'clock | |
325 | position from the center of the rectangle. Angles are specified | |
326 | in degrees (360 is a complete circle). Positive values mean | |
327 | counter-clockwise motion. If {\it start} is equal to {\it end}, a | |
328 | complete ellipse will be drawn. | |
329 | ||
6e76b35d | 330 | |
a660d684 KB |
331 | \membersection{wxDC::DrawIcon}\label{wxdcdrawicon} |
332 | ||
1f897d25 | 333 | \func{void}{DrawIcon}{\param{const wxIcon\&}{ icon}, \param{wxCoord}{ x}, \param{wxCoord}{ y}} |
a660d684 KB |
334 | |
335 | Draw an icon on the display (does nothing if the device context is PostScript). | |
fe604ccd | 336 | This can be the simplest way of drawing bitmaps on a window. |
a660d684 | 337 | |
6e76b35d | 338 | |
a660d684 KB |
339 | \membersection{wxDC::DrawLine}\label{wxdcdrawline} |
340 | ||
1f897d25 | 341 | \func{void}{DrawLine}{\param{wxCoord}{ x1}, \param{wxCoord}{ y1}, \param{wxCoord}{ x2}, \param{wxCoord}{ y2}} |
a660d684 KB |
342 | |
343 | Draws a line from the first point to the second. The current pen is used | |
90049178 VZ |
344 | for drawing the line. Note that the point $(x2, y2)$ is {\emph not} part of the |
345 | line and is not drawn by this function (this is consistent with the behaviour | |
346 | of many other toolkits). | |
a660d684 | 347 | |
6e76b35d | 348 | |
a660d684 KB |
349 | \membersection{wxDC::DrawLines}\label{wxdcdrawlines} |
350 | ||
1f897d25 | 351 | \func{void}{DrawLines}{\param{int}{ n}, \param{wxPoint}{ points[]}, \param{wxCoord}{ xoffset = 0}, \param{wxCoord}{ yoffset = 0}} |
a660d684 | 352 | |
1f897d25 | 353 | \func{void}{DrawLines}{\param{wxList *}{points}, \param{wxCoord}{ xoffset = 0}, \param{wxCoord}{ yoffset = 0}} |
a660d684 KB |
354 | |
355 | Draws lines using an array of {\it points} of size {\it n}, or list of | |
356 | pointers to points, adding the optional offset coordinate. The current | |
357 | pen is used for drawing the lines. The programmer is responsible for | |
358 | deleting the list of points. | |
359 | ||
06d20283 RD |
360 | \pythonnote{The wxPython version of this method accepts a Python list |
361 | of wxPoint objects.} | |
362 | ||
f3539882 VZ |
363 | \perlnote{The wxPerl version of this method accepts |
364 | as its first parameter a reference to an array | |
365 | of wxPoint objects.} | |
366 | ||
6e76b35d | 367 | |
a660d684 KB |
368 | \membersection{wxDC::DrawPolygon}\label{wxdcdrawpolygon} |
369 | ||
1f897d25 | 370 | \func{void}{DrawPolygon}{\param{int}{ n}, \param{wxPoint}{ points[]}, \param{wxCoord}{ xoffset = 0}, \param{wxCoord}{ yoffset = 0},\\ |
a660d684 KB |
371 | \param{int }{fill\_style = wxODDEVEN\_RULE}} |
372 | ||
1f897d25 | 373 | \func{void}{DrawPolygon}{\param{wxList *}{points}, \param{wxCoord}{ xoffset = 0}, \param{wxCoord}{ yoffset = 0},\\ |
a660d684 KB |
374 | \param{int }{fill\_style = wxODDEVEN\_RULE}} |
375 | ||
376 | Draws a filled polygon using an array of {\it points} of size {\it n}, | |
377 | or list of pointers to points, adding the optional offset coordinate. | |
378 | ||
379 | The last argument specifies the fill rule: {\bf wxODDEVEN\_RULE} (the | |
380 | default) or {\bf wxWINDING\_RULE}. | |
381 | ||
382 | The current pen is used for drawing the outline, and the current brush | |
383 | for filling the shape. Using a transparent brush suppresses filling. | |
384 | The programmer is responsible for deleting the list of points. | |
385 | ||
386 | Note that wxWindows automatically closes the first and last points. | |
387 | ||
06d20283 RD |
388 | \pythonnote{The wxPython version of this method accepts a Python list |
389 | of wxPoint objects.} | |
390 | ||
f3539882 VZ |
391 | \perlnote{The wxPerl version of this method accepts |
392 | as its first parameter a reference to an array | |
393 | of wxPoint objects.} | |
394 | ||
6e76b35d VZ |
395 | |
396 | \membersection{wxDC::DrawPolyPolygon}\label{wxdcdrawpolypolygon} | |
397 | ||
461fb267 | 398 | \func{void}{DrawPolyPolygon}{\param{int }{n}, \param{int }{start[]}, \param{wxPoint }{points[]}, \param{wxCoord }{xoffset}, \param{wxCoord }{yoffset}, \param{int }{fillStyle = \texttt{wxODDEVEN\_RULE}}} |
6e76b35d VZ |
399 | |
400 | Draw many polygons at once. For the platforms providing a native implementation | |
401 | of this function (Windows and PostScript-based wxDC), this is more efficient | |
402 | than using \helpref{DrawPolygon}{wxdcdrawpolygon} in a loop. | |
403 | ||
404 | ||
a660d684 KB |
405 | \membersection{wxDC::DrawPoint}\label{wxdcdrawpoint} |
406 | ||
1f897d25 | 407 | \func{void}{DrawPoint}{\param{wxCoord}{ x}, \param{wxCoord}{ y}} |
a660d684 KB |
408 | |
409 | Draws a point using the current pen. | |
410 | ||
6e76b35d | 411 | |
a660d684 KB |
412 | \membersection{wxDC::DrawRectangle}\label{wxdcdrawrectangle} |
413 | ||
1f897d25 | 414 | \func{void}{DrawRectangle}{\param{wxCoord}{ x}, \param{wxCoord}{ y}, \param{wxCoord}{ width}, \param{wxCoord}{ height}} |
a660d684 KB |
415 | |
416 | Draws a rectangle with the given top left corner, and with the given | |
417 | size. The current pen is used for the outline and the current brush | |
418 | for filling the shape. | |
419 | ||
6e76b35d | 420 | |
1f897d25 VZ |
421 | \membersection{wxDC::DrawRotatedText}\label{wxdcdrawrotatedtext} |
422 | ||
423 | \func{void}{DrawRotatedText}{\param{const wxString\& }{text}, \param{wxCoord}{ x}, \param{wxCoord}{ y}, \param{double}{ angle}} | |
424 | ||
425 | Draws the text rotated by {\it angle} degrees. | |
426 | ||
4770df95 VZ |
427 | {\bf NB:} Under Win9x only TrueType fonts can be drawn by this function. In |
428 | particular, a font different from {\tt wxNORMAL\_FONT} should be used as the | |
429 | latter is not a TrueType font. {\tt wxSWISS\_FONT} is an example of a font | |
430 | which is. | |
431 | ||
1f897d25 VZ |
432 | \wxheading{See also} |
433 | ||
434 | \helpref{DrawText}{wxdcdrawtext} | |
435 | ||
6e76b35d | 436 | |
a660d684 KB |
437 | \membersection{wxDC::DrawRoundedRectangle}\label{wxdcdrawroundedrectangle} |
438 | ||
1f897d25 | 439 | \func{void}{DrawRoundedRectangle}{\param{wxCoord}{ x}, \param{wxCoord}{ y}, \param{wxCoord}{ width}, \param{wxCoord}{ height}, \param{double}{ radius = 20}} |
a660d684 KB |
440 | |
441 | Draws a rectangle with the given top left corner, and with the given | |
442 | size. The corners are quarter-circles using the given radius. The | |
443 | current pen is used for the outline and the current brush for filling | |
444 | the shape. | |
445 | ||
446 | If {\it radius} is positive, the value is assumed to be the | |
447 | radius of the rounded corner. If {\it radius} is negative, | |
448 | the absolute value is assumed to be the {\it proportion} of the smallest | |
449 | dimension of the rectangle. This means that the corner can be | |
450 | a sensible size relative to the size of the rectangle, and also avoids | |
451 | the strange effects X produces when the corners are too big for | |
452 | the rectangle. | |
453 | ||
6e76b35d | 454 | |
a660d684 KB |
455 | \membersection{wxDC::DrawSpline}\label{wxdcdrawspline} |
456 | ||
457 | \func{void}{DrawSpline}{\param{wxList *}{points}} | |
458 | ||
459 | Draws a spline between all given control points, using the current | |
460 | pen. Doesn't delete the wxList and contents. The spline is drawn | |
461 | using a series of lines, using an algorithm taken from the X drawing | |
462 | program `XFIG'. | |
463 | ||
1f897d25 | 464 | \func{void}{DrawSpline}{\param{wxCoord}{ x1}, \param{wxCoord}{ y1}, \param{wxCoord}{ x2}, \param{wxCoord}{ y2}, \param{wxCoord}{ x3}, \param{wxCoord}{ y3}} |
a660d684 KB |
465 | |
466 | Draws a three-point spline using the current pen. | |
467 | ||
06d20283 RD |
468 | \pythonnote{The wxPython version of this method accepts a Python list |
469 | of wxPoint objects.} | |
470 | ||
f3539882 VZ |
471 | \perlnote{The wxPerl version of this method accepts a reference to an array |
472 | of wxPoint objects.} | |
473 | ||
6e76b35d | 474 | |
a660d684 KB |
475 | \membersection{wxDC::DrawText}\label{wxdcdrawtext} |
476 | ||
1f897d25 | 477 | \func{void}{DrawText}{\param{const wxString\& }{text}, \param{wxCoord}{ x}, \param{wxCoord}{ y}} |
a660d684 KB |
478 | |
479 | Draws a text string at the specified point, using the current text font, | |
480 | and the current text foreground and background colours. | |
481 | ||
482 | The coordinates refer to the top-left corner of the rectangle bounding | |
483 | the string. See \helpref{wxDC::GetTextExtent}{wxdcgettextextent} for how | |
484 | to get the dimensions of a text string, which can be used to position the | |
485 | text more precisely. | |
486 | ||
f6bcfd97 BP |
487 | {\bf NB:} under wxGTK the current |
488 | \helpref{logical function}{wxdcgetlogicalfunction} is used by this function | |
489 | but it is ignored by wxMSW. Thus, you should avoid using logical functions | |
490 | with this function in portable programs. | |
491 | ||
aef94d68 | 492 | \begin{comment} |
6e76b35d | 493 | |
0cbff120 JS |
494 | \membersection{wxDC::EnableCache}\label{wxdcenablecache} |
495 | ||
496 | \func{static void}{EnableCache}{\param{bool}{ enableCache}} | |
497 | ||
498 | On supported platforms (currently only Windows), enables the DC cache | |
499 | which can speed up the \helpref{Blit}{wxdcblit} operation when | |
500 | drawing a large number of masked bitmaps. | |
501 | ||
502 | If using the cache functions in your code, please test for the | |
503 | wxUSE\_DC\_CACHEING preprocessor symbol for portability. | |
504 | ||
505 | \wxheading{See also} | |
506 | ||
507 | \helpref{wxDC::CacheEnabled}{wxdccacheenabled}, \helpref{wxDC::ClearCache} | |
aef94d68 | 508 | \end{comment} |
0cbff120 | 509 | |
6e76b35d | 510 | |
a660d684 KB |
511 | \membersection{wxDC::EndDoc}\label{wxdcenddoc} |
512 | ||
513 | \func{void}{EndDoc}{\void} | |
514 | ||
515 | Ends a document (only relevant when outputting to a printer). | |
516 | ||
6e76b35d | 517 | |
a660d684 KB |
518 | \membersection{wxDC::EndDrawing}\label{wxdcenddrawing} |
519 | ||
520 | \func{void}{EndDrawing}{\void} | |
521 | ||
522 | Allows optimization of drawing code under MS Windows. Enclose | |
523 | drawing primitives between {\bf BeginDrawing} and {\bf EndDrawing}\rtfsp | |
524 | calls. | |
525 | ||
6e76b35d | 526 | |
a660d684 KB |
527 | \membersection{wxDC::EndPage}\label{wxdcendpage} |
528 | ||
529 | \func{void}{EndPage}{\void} | |
530 | ||
531 | Ends a document page (only relevant when outputting to a printer). | |
532 | ||
6e76b35d | 533 | |
a660d684 KB |
534 | \membersection{wxDC::FloodFill}\label{wxdcfloodfill} |
535 | ||
387ebd3e | 536 | \func{bool}{FloodFill}{\param{wxCoord}{ x}, \param{wxCoord}{ y}, \param{const wxColour\&}{ colour}, \param{int}{ style=wxFLOOD\_SURFACE}} |
a660d684 | 537 | |
15770d1a JS |
538 | Flood fills the device context starting from the given point, using |
539 | the {\it current brush colour}, and using a style: | |
a660d684 KB |
540 | |
541 | \begin{itemize}\itemsep=0pt | |
542 | \item wxFLOOD\_SURFACE: the flooding occurs until a colour other than the given colour is encountered. | |
543 | \item wxFLOOD\_BORDER: the area to be flooded is bounded by the given colour. | |
544 | \end{itemize} | |
545 | ||
cc81d32f | 546 | Returns false if the operation failed. |
387ebd3e | 547 | |
b1699cd3 | 548 | {\it Note:} The present implementation for non-Windows platforms may fail to find |
387ebd3e | 549 | colour borders if the pixels do not match the colour exactly. However the |
cc81d32f | 550 | function will still return true. |
a660d684 | 551 | |
6e76b35d | 552 | |
a660d684 KB |
553 | \membersection{wxDC::GetBackground}\label{wxdcgetbackground} |
554 | ||
c0ed460c | 555 | \func{wxBrush\&}{GetBackground}{\void} |
a660d684 | 556 | |
f6bcfd97 BP |
557 | \constfunc{const wxBrush\&}{GetBackground}{\void} |
558 | ||
a660d684 KB |
559 | Gets the brush used for painting the background (see \helpref{wxDC::SetBackground}{wxdcsetbackground}). |
560 | ||
6e76b35d | 561 | |
f6bcfd97 BP |
562 | \membersection{wxDC::GetBackgroundMode}\label{wxdcgetbackgroundmode} |
563 | ||
564 | \constfunc{int}{GetBackgroundMode}{\void} | |
565 | ||
566 | Returns the current background mode: {\tt wxSOLID} or {\tt wxTRANSPARENT}. | |
567 | ||
568 | \wxheading{See also} | |
569 | ||
570 | \helpref{SetBackgroundMode}{wxdcsetbackgroundmode} | |
571 | ||
6e76b35d | 572 | |
a660d684 KB |
573 | \membersection{wxDC::GetBrush}\label{wxdcgetbrush} |
574 | ||
c0ed460c | 575 | \func{wxBrush\&}{GetBrush}{\void} |
a660d684 | 576 | |
f6bcfd97 BP |
577 | \constfunc{const wxBrush\&}{GetBrush}{\void} |
578 | ||
a660d684 KB |
579 | Gets the current brush (see \helpref{wxDC::SetBrush}{wxdcsetbrush}). |
580 | ||
6e76b35d | 581 | |
a660d684 KB |
582 | \membersection{wxDC::GetCharHeight}\label{wxdcgetcharheight} |
583 | ||
1f897d25 | 584 | \func{wxCoord}{GetCharHeight}{\void} |
a660d684 KB |
585 | |
586 | Gets the character height of the currently set font. | |
587 | ||
6e76b35d | 588 | |
a660d684 KB |
589 | \membersection{wxDC::GetCharWidth}\label{wxdcgetcharwidth} |
590 | ||
1f897d25 | 591 | \func{wxCoord}{GetCharWidth}{\void} |
a660d684 KB |
592 | |
593 | Gets the average character width of the currently set font. | |
594 | ||
6e76b35d | 595 | |
fe604ccd | 596 | \membersection{wxDC::GetClippingBox}\label{wxdcgetclippingbox} |
a660d684 | 597 | |
1f897d25 | 598 | \func{void}{GetClippingBox}{\param{wxCoord}{ *x}, \param{wxCoord}{ *y}, \param{wxCoord}{ *width}, \param{wxCoord}{ *height}} |
a660d684 KB |
599 | |
600 | Gets the rectangle surrounding the current clipping region. | |
601 | ||
06d20283 RD |
602 | \pythonnote{No arguments are required and the four values defining the |
603 | rectangle are returned as a tuple.} | |
604 | ||
5873607e | 605 | \perlnote{This method takes no arguments and returns a four element list |
0a67eeac | 606 | {\tt ( x, y, width, height )}} |
5873607e | 607 | |
6e76b35d | 608 | |
a660d684 KB |
609 | \membersection{wxDC::GetFont}\label{wxdcgetfont} |
610 | ||
c0ed460c | 611 | \func{wxFont\&}{GetFont}{\void} |
a660d684 | 612 | |
f6bcfd97 BP |
613 | \constfunc{const wxFont\&}{GetFont}{\void} |
614 | ||
a660d684 KB |
615 | Gets the current font (see \helpref{wxDC::SetFont}{wxdcsetfont}). |
616 | ||
6e76b35d | 617 | |
a660d684 KB |
618 | \membersection{wxDC::GetLogicalFunction}\label{wxdcgetlogicalfunction} |
619 | ||
620 | \func{int}{GetLogicalFunction}{\void} | |
621 | ||
622 | Gets the current logical function (see \helpref{wxDC::SetLogicalFunction}{wxdcsetlogicalfunction}). | |
623 | ||
6e76b35d | 624 | |
a660d684 KB |
625 | \membersection{wxDC::GetMapMode}\label{wxdcgetmapmode} |
626 | ||
627 | \func{int}{GetMapMode}{\void} | |
628 | ||
629 | Gets the {\it mapping mode} for the device context (see \helpref{wxDC::SetMapMode}{wxdcsetmapmode}). | |
630 | ||
6e76b35d | 631 | |
a660d684 KB |
632 | \membersection{wxDC::GetOptimization}\label{wxdcgetoptimization} |
633 | ||
634 | \func{bool}{GetOptimization}{\void} | |
635 | ||
cc81d32f | 636 | Returns true if device context optimization is on. |
a660d684 KB |
637 | See \helpref{wxDC::SetOptimization}{wxsetoptimization} for details. |
638 | ||
6e76b35d | 639 | |
a660d684 KB |
640 | \membersection{wxDC::GetPen}\label{wxdcgetpen} |
641 | ||
c0ed460c | 642 | \func{wxPen\&}{GetPen}{\void} |
a660d684 | 643 | |
f6bcfd97 BP |
644 | \constfunc{const wxPen\&}{GetPen}{\void} |
645 | ||
a660d684 KB |
646 | Gets the current pen (see \helpref{wxDC::SetPen}{wxdcsetpen}). |
647 | ||
6e76b35d | 648 | |
a660d684 KB |
649 | \membersection{wxDC::GetPixel}\label{wxdcgetpixel} |
650 | ||
1f897d25 | 651 | \func{bool}{GetPixel}{\param{wxCoord}{ x}, \param{wxCoord}{ y}, \param{wxColour *}{colour}} |
a660d684 KB |
652 | |
653 | Sets {\it colour} to the colour at the specified location. Windows only; an X implementation | |
e2a6f233 | 654 | is being worked on. Not available for wxPostScriptDC or wxMetafileDC. |
a660d684 | 655 | |
86e78222 RD |
656 | \pythonnote{For wxPython the wxColour value is returned and is not |
657 | required as a parameter.} | |
658 | ||
5873607e VZ |
659 | \perlnote{This method only takes the parameters {\tt x} and {\tt y} and returns |
660 | a Wx::Colour value} | |
661 | ||
6e76b35d | 662 | |
a660d684 KB |
663 | \membersection{wxDC::GetSize}\label{wxdcgetsize} |
664 | ||
1f897d25 | 665 | \func{void}{GetSize}{\param{wxCoord *}{width}, \param{wxCoord *}{height}} |
a660d684 KB |
666 | |
667 | For a PostScript device context, this gets the maximum size of graphics | |
668 | drawn so far on the device context. | |
669 | ||
670 | For a Windows printer device context, this gets the horizontal and vertical | |
671 | resolution. It can be used to scale graphics to fit the page when using | |
672 | a Windows printer device context. For example, if {\it maxX} and {\it maxY}\rtfsp | |
673 | represent the maximum horizontal and vertical `pixel' values used in your | |
674 | application, the following code will scale the graphic to fit on the | |
675 | printer page: | |
676 | ||
677 | \begin{verbatim} | |
1f897d25 | 678 | wxCoord w, h; |
a660d684 KB |
679 | dc.GetSize(&w, &h); |
680 | double scaleX=(double)(maxX/w); | |
681 | double scaleY=(double)(maxY/h); | |
682 | dc.SetUserScale(min(scaleX,scaleY),min(scaleX,scaleY)); | |
683 | \end{verbatim} | |
684 | ||
2233e5b8 RD |
685 | \pythonnote{In place of a single overloaded method name, wxPython |
686 | implements the following methods:\par | |
687 | \indented{2cm}{\begin{twocollist} | |
c9110876 VS |
688 | \twocolitem{{\bf GetSize()}}{Returns a wxSize} |
689 | \twocolitem{{\bf GetSizeTuple()}}{Returns a 2-tuple (width, height)} | |
2233e5b8 RD |
690 | \end{twocollist}} |
691 | } | |
06d20283 | 692 | |
5873607e VZ |
693 | \perlnote{In place of a single overloaded method, wxPerl uses:\par |
694 | \indented{2cm}{\begin{twocollist} | |
695 | \twocolitem{{\bf GetSize()}}{Returns a Wx::Size} | |
696 | \twocolitem{{\bf GetSizeWH()}}{Returns a 2-element list | |
0a67eeac | 697 | {\tt ( width, height )}} |
5873607e VZ |
698 | \end{twocollist} |
699 | }} | |
700 | ||
6e76b35d | 701 | |
a660d684 KB |
702 | \membersection{wxDC::GetTextBackground}\label{wxdcgettextbackground} |
703 | ||
704 | \func{wxColour\&}{GetTextBackground}{\void} | |
705 | ||
f6bcfd97 BP |
706 | \constfunc{const wxColour\&}{GetTextBackground}{\void} |
707 | ||
a660d684 KB |
708 | Gets the current text background colour (see \helpref{wxDC::SetTextBackground}{wxdcsettextbackground}). |
709 | ||
6e76b35d | 710 | |
a660d684 KB |
711 | \membersection{wxDC::GetTextExtent}\label{wxdcgettextextent} |
712 | ||
1f897d25 VZ |
713 | \func{void}{GetTextExtent}{\param{const wxString\& }{string}, \param{wxCoord *}{w}, \param{wxCoord *}{h},\\ |
714 | \param{wxCoord *}{descent = NULL}, \param{wxCoord *}{externalLeading = NULL}, \param{wxFont *}{font = NULL}} | |
a660d684 KB |
715 | |
716 | Gets the dimensions of the string using the currently selected font. | |
717 | \rtfsp{\it string} is the text string to measure, {\it w} and {\it h} are | |
718 | the total width and height respectively, {\it descent} is the | |
719 | dimension from the baseline of the font to the bottom of the | |
720 | descender, and {\it externalLeading} is any extra vertical space added | |
721 | to the font by the font designer (usually is zero). | |
722 | ||
723 | The optional parameter {\it font} specifies an alternative | |
724 | to the currently selected font: but note that this does not | |
725 | yet work under Windows, so you need to set a font for | |
726 | the device context first. | |
727 | ||
728 | See also \helpref{wxFont}{wxfont}, \helpref{wxDC::SetFont}{wxdcsetfont}. | |
729 | ||
06d20283 RD |
730 | \pythonnote{The following methods are implemented in wxPython:\par |
731 | \indented{2cm}{\begin{twocollist} | |
c9110876 VS |
732 | \twocolitem{{\bf GetTextExtent(string)}}{Returns a 2-tuple, (width, height)} |
733 | \twocolitem{{\bf GetFullTextExtent(string, font=NULL)}}{Returns a | |
06d20283 RD |
734 | 4-tuple, (width, height, descent, externalLeading) } |
735 | \end{twocollist}} | |
736 | } | |
737 | ||
5873607e VZ |
738 | \perlnote{In wxPerl this method is implemented as |
739 | {\bf GetTextExtent( string, font = undef )} returning a four element | |
0a67eeac | 740 | array {\tt ( width, height, descent, externalLeading )} |
5873607e VZ |
741 | } |
742 | ||
6e76b35d | 743 | |
a660d684 KB |
744 | \membersection{wxDC::GetTextForeground}\label{wxdcgettextforeground} |
745 | ||
746 | \func{wxColour\&}{GetTextForeground}{\void} | |
747 | ||
f6bcfd97 BP |
748 | \constfunc{const wxColour\&}{GetTextForeground}{\void} |
749 | ||
a660d684 KB |
750 | Gets the current text foreground colour (see \helpref{wxDC::SetTextForeground}{wxdcsettextforeground}). |
751 | ||
16964b5e | 752 | |
6e76b35d | 753 | |
16964b5e VS |
754 | \membersection{wxDC::GetUserScale}\label{wxdcgetuserscale} |
755 | ||
756 | \func{void}{GetUserScale}{\param{double}{ *x}, \param{double}{ *y}} | |
757 | ||
758 | Gets the current user scale factor (set by \helpref{SetUserScale}{wxdcsetuserscale}). | |
759 | ||
2edb0bde | 760 | \perlnote{In wxPerl this method takes no arguments and return a two element |
0a67eeac | 761 | array {\tt ( x, y )}} |
16964b5e | 762 | |
6e76b35d | 763 | |
a660d684 KB |
764 | \membersection{wxDC::LogicalToDeviceX}\label{wxdclogicaltodevicex} |
765 | ||
1f897d25 | 766 | \func{wxCoord}{LogicalToDeviceX}{\param{wxCoord}{ x}} |
a660d684 KB |
767 | |
768 | Converts logical X coordinate to device coordinate, using the current | |
769 | mapping mode. | |
770 | ||
6e76b35d | 771 | |
a660d684 KB |
772 | \membersection{wxDC::LogicalToDeviceXRel}\label{wxdclogicaltodevicexrel} |
773 | ||
1f897d25 | 774 | \func{wxCoord}{LogicalToDeviceXRel}{\param{wxCoord}{ x}} |
a660d684 KB |
775 | |
776 | Converts logical X coordinate to relative device coordinate, using the current | |
1387b68a GD |
777 | mapping mode but ignoring the x axis orientation. |
778 | Use this for converting a width, for example. | |
a660d684 | 779 | |
6e76b35d | 780 | |
a660d684 KB |
781 | \membersection{wxDC::LogicalToDeviceY}\label{wxdclogicaltodevicey} |
782 | ||
1f897d25 | 783 | \func{wxCoord}{LogicalToDeviceY}{\param{wxCoord}{ y}} |
a660d684 KB |
784 | |
785 | Converts logical Y coordinate to device coordinate, using the current | |
786 | mapping mode. | |
787 | ||
6e76b35d | 788 | |
a660d684 KB |
789 | \membersection{wxDC::LogicalToDeviceYRel}\label{wxdclogicaltodeviceyrel} |
790 | ||
1f897d25 | 791 | \func{wxCoord}{LogicalToDeviceYRel}{\param{wxCoord}{ y}} |
a660d684 KB |
792 | |
793 | Converts logical Y coordinate to relative device coordinate, using the current | |
1387b68a GD |
794 | mapping mode but ignoring the y axis orientation. |
795 | Use this for converting a height, for example. | |
a660d684 | 796 | |
6e76b35d | 797 | |
a660d684 KB |
798 | \membersection{wxDC::MaxX}\label{wxdcmaxx} |
799 | ||
1f897d25 | 800 | \func{wxCoord}{MaxX}{\void} |
a660d684 KB |
801 | |
802 | Gets the maximum horizontal extent used in drawing commands so far. | |
803 | ||
6e76b35d | 804 | |
a660d684 KB |
805 | \membersection{wxDC::MaxY}\label{wxdcmaxy} |
806 | ||
1f897d25 | 807 | \func{wxCoord}{MaxY}{\void} |
a660d684 KB |
808 | |
809 | Gets the maximum vertical extent used in drawing commands so far. | |
810 | ||
6e76b35d | 811 | |
a660d684 KB |
812 | \membersection{wxDC::MinX}\label{wxdcminx} |
813 | ||
1f897d25 | 814 | \func{wxCoord}{MinX}{\void} |
a660d684 KB |
815 | |
816 | Gets the minimum horizontal extent used in drawing commands so far. | |
817 | ||
6e76b35d | 818 | |
a660d684 KB |
819 | \membersection{wxDC::MinY}\label{wxdcminy} |
820 | ||
1f897d25 | 821 | \func{wxCoord}{MinY}{\void} |
a660d684 KB |
822 | |
823 | Gets the minimum vertical extent used in drawing commands so far. | |
824 | ||
6e76b35d | 825 | |
a660d684 KB |
826 | \membersection{wxDC::Ok}\label{wxdcok} |
827 | ||
828 | \func{bool}{Ok}{\void} | |
829 | ||
cc81d32f | 830 | Returns true if the DC is ok to use. |
a660d684 | 831 | |
6e76b35d | 832 | |
f6bcfd97 BP |
833 | \membersection{wxDC::ResetBoundingBox}\label{wxdcresetboundingbox} |
834 | ||
835 | \func{void}{ResetBoundingBox}{\void} | |
836 | ||
837 | Resets the bounding box: after a call to this function, the bounding box | |
838 | doesn't contain anything. | |
839 | ||
840 | \wxheading{See also} | |
841 | ||
842 | \helpref{CalcBoundingBox}{wxdccalcboundingbox} | |
843 | ||
6e76b35d | 844 | |
1387b68a GD |
845 | \membersection{wxDC::SetAxisOrientation}\label{wxdcsetaxisorientation} |
846 | ||
847 | \func{void}{SetAxisOrientation}{\param{bool}{ xLeftRight}, | |
848 | \param{bool}{ yBottomUp}} | |
849 | ||
850 | Sets the x and y axis orientation (i.e., the direction from lowest to | |
851 | highest values on the axis). The default orientation is the natural | |
852 | orientation, e.g. x axis from left to right and y axis from bottom up. | |
853 | ||
854 | \wxheading{Parameters} | |
855 | ||
856 | \docparam{xLeftRight}{True to set the x axis orientation to the natural | |
857 | left to right orientation, false to invert it.} | |
858 | ||
859 | \docparam{yBottomUp}{True to set the y axis orientation to the natural | |
860 | bottom up orientation, false to invert it.} | |
861 | ||
6e76b35d | 862 | |
a660d684 KB |
863 | \membersection{wxDC::SetDeviceOrigin}\label{wxdcsetdeviceorigin} |
864 | ||
1f897d25 | 865 | \func{void}{SetDeviceOrigin}{\param{wxCoord}{ x}, \param{wxCoord}{ y}} |
a660d684 KB |
866 | |
867 | Sets the device origin (i.e., the origin in pixels after scaling has been | |
868 | applied). | |
869 | ||
870 | This function may be useful in Windows printing | |
871 | operations for placing a graphic on a page. | |
872 | ||
6e76b35d | 873 | |
a660d684 KB |
874 | \membersection{wxDC::SetBackground}\label{wxdcsetbackground} |
875 | ||
876 | \func{void}{SetBackground}{\param{const wxBrush\& }{brush}} | |
877 | ||
878 | Sets the current background brush for the DC. | |
879 | ||
6e76b35d | 880 | |
a660d684 KB |
881 | \membersection{wxDC::SetBackgroundMode}\label{wxdcsetbackgroundmode} |
882 | ||
883 | \func{void}{SetBackgroundMode}{\param{int}{ mode}} | |
884 | ||
885 | {\it mode} may be one of wxSOLID and wxTRANSPARENT. This setting determines | |
886 | whether text will be drawn with a background colour or not. | |
887 | ||
6e76b35d | 888 | |
a660d684 KB |
889 | \membersection{wxDC::SetClippingRegion}\label{wxdcsetclippingregion} |
890 | ||
1f897d25 | 891 | \func{void}{SetClippingRegion}{\param{wxCoord}{ x}, \param{wxCoord}{ y}, \param{wxCoord}{ width}, \param{wxCoord}{ height}} |
a660d684 | 892 | |
5230934a VZ |
893 | \func{void}{SetClippingRegion}{\param{const wxPoint\& }{pt}, \param{const wxSize\& }{sz}} |
894 | ||
895 | \func{void}{SetClippingRegion}{\param{const wxRect\&}{ rect}} | |
896 | ||
a724d789 JS |
897 | \func{void}{SetClippingRegion}{\param{const wxRegion\&}{ region}} |
898 | ||
5230934a VZ |
899 | Sets the clipping region for this device context to the intersection of the |
900 | given region described by the parameters of this method and the previously set | |
901 | clipping region. You should call | |
902 | \helpref{DestroyClippingRegion}{wxdcdestroyclippingregion} if you want to set | |
903 | the clipping region exactly to the region specified. | |
904 | ||
905 | The clipping region is an area to which drawing is restricted. Possible uses | |
906 | for the clipping region are for clipping text or for speeding up window redraws | |
907 | when only a known area of the screen is damaged. | |
a660d684 | 908 | |
a724d789 JS |
909 | \wxheading{See also} |
910 | ||
911 | \helpref{wxDC::DestroyClippingRegion}{wxdcdestroyclippingregion}, \helpref{wxRegion}{wxregion} | |
a660d684 | 912 | |
6e76b35d | 913 | |
a660d684 KB |
914 | \membersection{wxDC::SetPalette}\label{wxdcsetpalette} |
915 | ||
916 | \func{void}{SetPalette}{\param{const wxPalette\& }{palette}} | |
917 | ||
fe604ccd | 918 | If this is a window DC or memory DC, assigns the given palette to the window |
a660d684 KB |
919 | or bitmap associated with the DC. If the argument is wxNullPalette, the current |
920 | palette is selected out of the device context, and the original palette | |
921 | restored. | |
922 | ||
923 | See \helpref{wxPalette}{wxpalette} for further details. | |
924 | ||
6e76b35d | 925 | |
a660d684 KB |
926 | \membersection{wxDC::SetBrush}\label{wxdcsetbrush} |
927 | ||
928 | \func{void}{SetBrush}{\param{const wxBrush\& }{brush}} | |
929 | ||
930 | Sets the current brush for the DC. | |
931 | ||
932 | If the argument is wxNullBrush, the current brush is selected out of the device | |
933 | context, and the original brush restored, allowing the current brush to | |
934 | be destroyed safely. | |
935 | ||
936 | See also \helpref{wxBrush}{wxbrush}. | |
937 | ||
9000c624 RR |
938 | See also \helpref{wxMemoryDC}{wxmemorydc} for the interpretation of colours |
939 | when drawing into a monochrome bitmap. | |
940 | ||
6e76b35d | 941 | |
a660d684 KB |
942 | \membersection{wxDC::SetFont}\label{wxdcsetfont} |
943 | ||
944 | \func{void}{SetFont}{\param{const wxFont\& }{font}} | |
945 | ||
3e482a64 VZ |
946 | Sets the current font for the DC. It must be a valid font, in particular you |
947 | should not pass {\tt wxNullFont} to this method. | |
a660d684 KB |
948 | |
949 | See also \helpref{wxFont}{wxfont}. | |
950 | ||
6e76b35d | 951 | |
a660d684 KB |
952 | \membersection{wxDC::SetLogicalFunction}\label{wxdcsetlogicalfunction} |
953 | ||
954 | \func{void}{SetLogicalFunction}{\param{int}{ function}} | |
955 | ||
fe604ccd | 956 | Sets the current logical function for the device context. This determines how |
a660d684 KB |
957 | a source pixel (from a pen or brush colour, or source device context if |
958 | using \helpref{wxDC::Blit}{wxdcblit}) combines with a destination pixel in the | |
959 | current device context. | |
960 | ||
961 | The possible values | |
962 | and their meaning in terms of source and destination pixel values are | |
963 | as follows: | |
964 | ||
965 | \begin{verbatim} | |
966 | wxAND src AND dst | |
967 | wxAND_INVERT (NOT src) AND dst | |
968 | wxAND_REVERSE src AND (NOT dst) | |
969 | wxCLEAR 0 | |
970 | wxCOPY src | |
971 | wxEQUIV (NOT src) XOR dst | |
972 | wxINVERT NOT dst | |
973 | wxNAND (NOT src) OR (NOT dst) | |
974 | wxNOR (NOT src) AND (NOT dst) | |
975 | wxNO_OP dst | |
976 | wxOR src OR dst | |
977 | wxOR_INVERT (NOT src) OR dst | |
978 | wxOR_REVERSE src OR (NOT dst) | |
979 | wxSET 1 | |
980 | wxSRC_INVERT NOT src | |
981 | wxXOR src XOR dst | |
982 | \end{verbatim} | |
983 | ||
984 | The default is wxCOPY, which simply draws with the current colour. | |
985 | The others combine the current colour and the background using a | |
6453876e | 986 | logical operation. wxINVERT is commonly used for drawing rubber bands or |
a660d684 KB |
987 | moving outlines, since drawing twice reverts to the original colour. |
988 | ||
6e76b35d | 989 | |
a660d684 KB |
990 | \membersection{wxDC::SetMapMode}\label{wxdcsetmapmode} |
991 | ||
992 | \func{void}{SetMapMode}{\param{int}{ int}} | |
993 | ||
994 | The {\it mapping mode} of the device context defines the unit of | |
995 | measurement used to convert logical units to device units. Note that | |
996 | in X, text drawing isn't handled consistently with the mapping mode; a | |
997 | font is always specified in point size. However, setting the {\it | |
998 | user scale} (see \helpref{wxDC::SetUserScale}{wxdcsetuserscale}) scales the text appropriately. In | |
2edb0bde | 999 | Windows, scalable TrueType fonts are always used; in X, results depend |
a660d684 KB |
1000 | on availability of fonts, but usually a reasonable match is found. |
1001 | ||
1002 | Note that the coordinate origin should ideally be selectable, but for | |
1003 | now is always at the top left of the screen/printer. | |
1004 | ||
1005 | Drawing to a Windows printer device context under UNIX | |
1006 | uses the current mapping mode, but mapping mode is currently ignored for | |
1007 | PostScript output. | |
1008 | ||
1009 | The mapping mode can be one of the following: | |
1010 | ||
1011 | \begin{twocollist}\itemsep=0pt | |
e3065973 | 1012 | \twocolitem{wxMM\_TWIPS}{Each logical unit is 1/20 of a point, or 1/1440 of |
a660d684 | 1013 | an inch.} |
e3065973 JS |
1014 | \twocolitem{wxMM\_POINTS}{Each logical unit is a point, or 1/72 of an inch.} |
1015 | \twocolitem{wxMM\_METRIC}{Each logical unit is 1 mm.} | |
1016 | \twocolitem{wxMM\_LOMETRIC}{Each logical unit is 1/10 of a mm.} | |
1017 | \twocolitem{wxMM\_TEXT}{Each logical unit is 1 pixel.} | |
a660d684 KB |
1018 | \end{twocollist} |
1019 | ||
6e76b35d | 1020 | |
a660d684 KB |
1021 | \membersection{wxDC::SetOptimization}\label{wxsetoptimization} |
1022 | ||
1023 | \func{void}{SetOptimization}{\param{bool }{optimize}} | |
1024 | ||
cc81d32f | 1025 | If {\it optimize} is true (the default), this function sets optimization mode on. |
a660d684 KB |
1026 | This currently means that under X, the device context will not try to set a pen or brush |
1027 | property if it is known to be set already. This approach can fall down | |
1028 | if non-wxWindows code is using the same device context or window, for example | |
1029 | when the window is a panel on which the windowing system draws panel items. | |
1030 | The wxWindows device context 'memory' will now be out of step with reality. | |
1031 | ||
1032 | Setting optimization off, drawing, then setting it back on again, is a trick | |
1033 | that must occasionally be employed. | |
1034 | ||
6e76b35d | 1035 | |
a660d684 KB |
1036 | \membersection{wxDC::SetPen}\label{wxdcsetpen} |
1037 | ||
1038 | \func{void}{SetPen}{\param{const wxPen\& }{pen}} | |
1039 | ||
1040 | Sets the current pen for the DC. | |
1041 | ||
1042 | If the argument is wxNullPen, the current pen is selected out of the device | |
1043 | context, and the original pen restored. | |
1044 | ||
9000c624 RR |
1045 | See also \helpref{wxMemoryDC}{wxmemorydc} for the interpretation of colours |
1046 | when drawing into a monochrome bitmap. | |
1047 | ||
6e76b35d | 1048 | |
a660d684 KB |
1049 | \membersection{wxDC::SetTextBackground}\label{wxdcsettextbackground} |
1050 | ||
1051 | \func{void}{SetTextBackground}{\param{const wxColour\& }{colour}} | |
1052 | ||
1053 | Sets the current text background colour for the DC. | |
1054 | ||
6e76b35d | 1055 | |
a660d684 KB |
1056 | \membersection{wxDC::SetTextForeground}\label{wxdcsettextforeground} |
1057 | ||
1058 | \func{void}{SetTextForeground}{\param{const wxColour\& }{colour}} | |
1059 | ||
1060 | Sets the current text foreground colour for the DC. | |
1061 | ||
9000c624 RR |
1062 | See also \helpref{wxMemoryDC}{wxmemorydc} for the interpretation of colours |
1063 | when drawing into a monochrome bitmap. | |
1064 | ||
6e76b35d | 1065 | |
a660d684 KB |
1066 | \membersection{wxDC::SetUserScale}\label{wxdcsetuserscale} |
1067 | ||
1068 | \func{void}{SetUserScale}{\param{double}{ xScale}, \param{double}{ yScale}} | |
1069 | ||
1070 | Sets the user scaling factor, useful for applications which require | |
1071 | `zooming'. | |
1072 | ||
6e76b35d | 1073 | |
a660d684 KB |
1074 | \membersection{wxDC::StartDoc}\label{wxdcstartdoc} |
1075 | ||
1076 | \func{bool}{StartDoc}{\param{const wxString\& }{message}} | |
1077 | ||
1078 | Starts a document (only relevant when outputting to a printer). | |
1079 | Message is a message to show whilst printing. | |
1080 | ||
6e76b35d | 1081 | |
a660d684 KB |
1082 | \membersection{wxDC::StartPage}\label{wxdcstartpage} |
1083 | ||
1084 | \func{bool}{StartPage}{\void} | |
1085 | ||
1086 | Starts a document page (only relevant when outputting to a printer). | |
1087 | ||
6c975af1 VZ |
1088 | \section{\class{wxDCClipper}}\label{wxdcclipper} |
1089 | ||
1090 | This is a small helper class which sets the specified to its constructor | |
2edb0bde | 1091 | clipping region and then automatically destroys it in its destructor. Using |
6c975af1 VZ |
1092 | it ensures that unwanted clipping region is not left set on the DC. |
1093 | ||
1094 | \wxheading{Derived from} | |
1095 | ||
1096 | No base class | |
1097 | ||
1098 | \wxheading{Include files} | |
1099 | ||
1100 | <wx/dc.h> | |
1101 | ||
1102 | \wxheading{See also} | |
1103 | ||
1104 | \helpref{wxDC}{wxdc} | |
1105 | ||
1106 | \latexignore{\rtfignore{\wxheading{Members}}} | |
1107 | ||
6e76b35d | 1108 | |
6c975af1 VZ |
1109 | \membersection{wxDCClipper::wxDCClipper} |
1110 | ||
1111 | \func{}{wxDCClipper}{\param{wxDC\& }{dc}, \param{wxCoord }{x},\param{wxCoord }{y},\param{wxCoord }{w},\param{wxCoord }{h},} | |
1112 | ||
1113 | \func{}{wxDCClipper}{\param{wxDC\& }{dc}, \param{const wxRect\&}{ rect}} | |
1114 | ||
1115 | Constructor: sets the the clipping region for the given device context to the | |
1116 | specified rectangle. | |
1117 | ||
6e76b35d | 1118 | |
6c975af1 VZ |
1119 | \membersection{wxDCClipper::\destruct{wxDCClipper}} |
1120 | ||
1121 | \func{}{\destruct{wxDCClipper}}{\void} | |
1122 | ||
2edb0bde | 1123 | Destructor: destroys the clipping region set in the constructor. |
6c975af1 | 1124 |