]> git.saurik.com Git - wxWidgets.git/blob - docs/latex/wx/dc.tex
* Stream doc update.
[wxWidgets.git] / docs / latex / wx / dc.tex
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,
5 so a window can have a device context associated with it, and a printer also has a device context.
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
12 \wxheading{Derived from}
13
14 \helpref{wxObject}{wxobject}
15
16 \wxheading{See also}
17
18 \helpref{Overview}{dcoverview}
19
20 \latexignore{\rtfignore{\wxheading{Members}}}
21
22 \membersection{wxDC::wxDC}
23
24 \func{}{wxDC}{\void}
25
26 Constructor.
27
28 \membersection{wxDC::\destruct{wxDC}}
29
30 \func{}{\destruct{wxDC}}{\void}
31
32 Destructor.
33
34 \membersection{wxDC::BeginDrawing}\label{wxdcbegindrawing}
35
36 \func{void}{BeginDrawing}{\void}
37
38 Allows optimization of drawing code under MS Windows. Enclose
39 drawing primitives between {\bf BeginDrawing} and {\bf EndDrawing}\rtfsp
40 calls.
41
42 Drawing to a wxDialog panel device context outside of a
43 system-generated OnPaint event {\it requires} this pair of calls to
44 enclose drawing code. This is because a Windows dialog box does not have
45 a retained device context associated with it, and selections such as pen
46 and brush settings would be lost if the device context were obtained and
47 released for each drawing operation.
48
49 \membersection{wxDC::Blit}\label{wxdcblit}
50
51 \func{bool}{Blit}{\param{long}{ xdest}, \param{long}{ ydest}, \param{long}{ width}, \param{long}{ height},
52 \param{wxDC* }{source}, \param{long}{ xsrc}, \param{long}{ ysrc}, \param{int}{ logicalFunc},
53 \param{bool }{useMask}}
54
55 Copy from a source DC to this DC, specifying the destination
56 coordinates, size of area to copy, source DC, source coordinates, and
57 logical function.
58
59 \wxheading{Parameters}
60
61 \docparam{xdest}{Destination device context x position.}
62
63 \docparam{ydest}{Destination device context y position.}
64
65 \docparam{width}{Width of source area to be copied.}
66
67 \docparam{height}{Height of source area to be copied.}
68
69 \docparam{source}{Source device context.}
70
71 \docparam{xsrc}{Source device context x position.}
72
73 \docparam{ysrc}{Source device context y position.}
74
75 \docparam{logicalFunc}{Logical function to use: see \helpref{wxDC::SetLogicalFunction}{wxdcsetlogicalfunction}.}
76
77 \docparam{useMask}{If TRUE, Blit does a transparent blit using the mask that is associated with the bitmap
78 selected into the source device context. The Windows implementation does the following:
79
80 \begin{enumerate}
81 \item Creates a temporary bitmap and copies the destination area into it.
82 \item Copies the source area into the temporary bitmap using the specified logical function.
83 \item Sets the masked area in the temporary bitmap to BLACK by ANDing the
84 mask bitmap with the temp bitmap with the foreground colour set to WHITE
85 and the bg colour set to BLACK.
86 \item Sets the unmasked area in the destination area to BLACK by ANDing the
87 mask bitmap with the destination area with the foreground colour set to BLACK
88 and the background colour set to WHITE.
89 \item ORs the temporary bitmap with the destination area.
90 \item Deletes the temporary bitmap.
91 \end{enumerate}
92
93 This sequence of operations ensures that the source's transparent area need not be black,
94 and logical functions are supported.
95 }
96
97 \wxheading{Remarks}
98
99 There is partial support for Blit in wxPostScriptDC, under X.
100
101 See \helpref{wxMemoryDC}{wxmemorydc} for typical usage.
102
103 wxheading{See also}
104
105 \helpref{wxMemoryDC}{wxmemorydc}, \helpref{wxBitmap}{wxbitmap}, \helpref{wxMask}{wxmask}
106
107 \membersection{wxDC::Clear}\label{wxdcclear}
108
109 \func{void}{Clear}{\void}
110
111 Clears the device context using the current background brush.
112
113 \membersection{wxDC::CrossHair}\label{wxdccrosshair}
114
115 \func{void}{CrossHair}{\param{long}{ x}, \param{long}{ y}}
116
117 Displays a cross hair using the current pen. This is a vertical
118 and horizontal line the height and width of the window, centred
119 on the given point.
120
121 \membersection{wxDC::DestroyClippingRegion}\label{wxdcdestroyclippingregion}
122
123 \func{void}{DestroyClippingRegion}{\void}
124
125 Destroys the current clipping region so that none of the DC is clipped.
126 See also \helpref{wxDC::SetClippingRegion}{wxdcsetclippingregion}.
127
128 \membersection{wxDC::DeviceToLogicalX}\label{wxdcdevicetologicalx}
129
130 \func{long}{DeviceToLogicalX}{\param{long}{ x}}
131
132 Convert device X coordinate to logical coordinate, using the current
133 mapping mode.
134
135 \membersection{wxDC::DeviceToLogicalXRel}\label{wxdcdevicetologicalxrel}
136
137 \func{long}{DeviceToLogicalXRel}{\param{long}{ x}}
138
139 Convert device X coordinate to relative logical coordinate, using the current
140 mapping mode. Use this function for converting a width, for example.
141
142 \membersection{wxDC::DeviceToLogicalY}\label{wxdcdevicetologicaly}
143
144 \func{long}{DeviceToLogicalY}{\param{long}{ y}}
145
146 Converts device Y coordinate to logical coordinate, using the current
147 mapping mode.
148
149 \membersection{wxDC::DeviceToLogicalYRel}\label{wxdcdevicetologicalyrel}
150
151 \func{long}{DeviceToLogicalYRel}{\param{long}{ y}}
152
153 Convert device Y coordinate to relative logical coordinate, using the current
154 mapping mode. Use this function for converting a height, for example.
155
156 \membersection{wxDC::DrawArc}\label{wxdcdrawarc}
157
158 \func{void}{DrawArc}{\param{long}{ x1}, \param{long}{ y1}, \param{long}{ x2}, \param{long}{ y2}, \param{double}{ xc}, \param{double}{ yc}}
159
160 Draws an arc of a circle, centred on ({\it xc, yc}), with starting point ({\it x1, y1})
161 and ending at ({\it x2, y2}). The current pen is used for the outline
162 and the current brush for filling the shape.
163
164 The arc is drawn in an anticlockwise direction from the start point to the end point.
165
166 \membersection{wxDC::DrawBitmap}\label{wxdcdrawbitmap}
167
168 \func{void}{DrawBitmap}{\param{const wxBitmap\&}{ bitmap}, \param{long}{ x}, \param{long}{ y}, \param{bool}{ transparent}}
169
170 Draw a bitmap on the device context at the specified point. If {\it transparent} is TRUE and the bitmap has
171 a transparency mask, the bitmap will be drawn transparently.
172
173 \membersection{wxDC::DrawEllipse}\label{wxdcdrawellipse}
174
175 \func{void}{DrawEllipse}{\param{long}{ x}, \param{long}{ y}, \param{long}{ width}, \param{long}{ height}}
176
177 Draws an ellipse contained in the rectangle with the given top left corner, and with the
178 given size. The current pen is used for the outline and the current brush for
179 filling the shape.
180
181 \membersection{wxDC::DrawEllipticArc}\label{wxdcdrawellipticarc}
182
183 \func{void}{DrawEllipticArc}{\param{long}{ x}, \param{long}{ y}, \param{long}{ width}, \param{long}{ height},
184 \param{double}{ start}, \param{double}{ end}}
185
186 Draws an arc of an ellipse. The current pen is used for drawing the arc and
187 the current brush is used for drawing the pie. This function is currently only available for
188 X window and PostScript device contexts.
189
190 {\it x} and {\it y} specify the x and y coordinates of the upper-left corner of the rectangle that contains
191 the ellipse.
192
193 {\it width} and {\it height} specify the width and height of the rectangle that contains
194 the ellipse.
195
196 {\it start} and {\it end} specify the start and end of the arc relative to the three-o'clock
197 position from the center of the rectangle. Angles are specified
198 in degrees (360 is a complete circle). Positive values mean
199 counter-clockwise motion. If {\it start} is equal to {\it end}, a
200 complete ellipse will be drawn.
201
202 \membersection{wxDC::DrawIcon}\label{wxdcdrawicon}
203
204 \func{void}{DrawIcon}{\param{const wxIcon\&}{ icon}, \param{long}{ x}, \param{long}{ y}}
205
206 Draw an icon on the display (does nothing if the device context is PostScript).
207 This can be the simplest way of drawing bitmaps on a window.
208
209 \membersection{wxDC::DrawLine}\label{wxdcdrawline}
210
211 \func{void}{DrawLine}{\param{long}{ x1}, \param{long}{ y1}, \param{long}{ x2}, \param{long}{ y2}}
212
213 Draws a line from the first point to the second. The current pen is used
214 for drawing the line.
215
216 \membersection{wxDC::DrawLines}\label{wxdcdrawlines}
217
218 \func{void}{DrawLines}{\param{int}{ n}, \param{wxPoint}{ points[]}, \param{long}{ xoffset = 0}, \param{long}{ yoffset = 0}}
219
220 \func{void}{DrawLines}{\param{wxList *}{points}, \param{long}{ xoffset = 0}, \param{long}{ yoffset = 0}}
221
222 Draws lines using an array of {\it points} of size {\it n}, or list of
223 pointers to points, adding the optional offset coordinate. The current
224 pen is used for drawing the lines. The programmer is responsible for
225 deleting the list of points.
226
227 \membersection{wxDC::DrawPolygon}\label{wxdcdrawpolygon}
228
229 \func{void}{DrawPolygon}{\param{int}{ n}, \param{wxPoint}{ points[]}, \param{long}{ xoffset = 0}, \param{long}{ yoffset = 0},\\
230 \param{int }{fill\_style = wxODDEVEN\_RULE}}
231
232 \func{void}{DrawPolygon}{\param{wxList *}{points}, \param{long}{ xoffset = 0}, \param{long}{ yoffset = 0},\\
233 \param{int }{fill\_style = wxODDEVEN\_RULE}}
234
235 Draws a filled polygon using an array of {\it points} of size {\it n},
236 or list of pointers to points, adding the optional offset coordinate.
237
238 The last argument specifies the fill rule: {\bf wxODDEVEN\_RULE} (the
239 default) or {\bf wxWINDING\_RULE}.
240
241 The current pen is used for drawing the outline, and the current brush
242 for filling the shape. Using a transparent brush suppresses filling.
243 The programmer is responsible for deleting the list of points.
244
245 Note that wxWindows automatically closes the first and last points.
246
247 \membersection{wxDC::DrawPoint}\label{wxdcdrawpoint}
248
249 \func{void}{DrawPoint}{\param{long}{ x}, \param{long}{ y}}
250
251 Draws a point using the current pen.
252
253 \membersection{wxDC::DrawRectangle}\label{wxdcdrawrectangle}
254
255 \func{void}{DrawRectangle}{\param{long}{ x}, \param{long}{ y}, \param{long}{ width}, \param{long}{ height}}
256
257 Draws a rectangle with the given top left corner, and with the given
258 size. The current pen is used for the outline and the current brush
259 for filling the shape.
260
261 \membersection{wxDC::DrawRoundedRectangle}\label{wxdcdrawroundedrectangle}
262
263 \func{void}{DrawRoundedRectangle}{\param{long}{ x}, \param{long}{ y}, \param{long}{ width}, \param{long}{ height}, \param{double}{ radius = 20}}
264
265 Draws a rectangle with the given top left corner, and with the given
266 size. The corners are quarter-circles using the given radius. The
267 current pen is used for the outline and the current brush for filling
268 the shape.
269
270 If {\it radius} is positive, the value is assumed to be the
271 radius of the rounded corner. If {\it radius} is negative,
272 the absolute value is assumed to be the {\it proportion} of the smallest
273 dimension of the rectangle. This means that the corner can be
274 a sensible size relative to the size of the rectangle, and also avoids
275 the strange effects X produces when the corners are too big for
276 the rectangle.
277
278 \membersection{wxDC::DrawSpline}\label{wxdcdrawspline}
279
280 \func{void}{DrawSpline}{\param{wxList *}{points}}
281
282 Draws a spline between all given control points, using the current
283 pen. Doesn't delete the wxList and contents. The spline is drawn
284 using a series of lines, using an algorithm taken from the X drawing
285 program `XFIG'.
286
287 \func{void}{DrawSpline}{\param{long}{ x1}, \param{long}{ y1}, \param{long}{ x2}, \param{long}{ y2}, \param{long}{ x3}, \param{long}{ y3}}
288
289 Draws a three-point spline using the current pen.
290
291 \membersection{wxDC::DrawText}\label{wxdcdrawtext}
292
293 \func{void}{DrawText}{\param{const wxString\& }{text}, \param{long}{ x}, \param{long}{ y}}
294
295 Draws a text string at the specified point, using the current text font,
296 and the current text foreground and background colours.
297
298 The coordinates refer to the top-left corner of the rectangle bounding
299 the string. See \helpref{wxDC::GetTextExtent}{wxdcgettextextent} for how
300 to get the dimensions of a text string, which can be used to position the
301 text more precisely.
302
303 \membersection{wxDC::EndDoc}\label{wxdcenddoc}
304
305 \func{void}{EndDoc}{\void}
306
307 Ends a document (only relevant when outputting to a printer).
308
309 \membersection{wxDC::EndDrawing}\label{wxdcenddrawing}
310
311 \func{void}{EndDrawing}{\void}
312
313 Allows optimization of drawing code under MS Windows. Enclose
314 drawing primitives between {\bf BeginDrawing} and {\bf EndDrawing}\rtfsp
315 calls.
316
317 \membersection{wxDC::EndPage}\label{wxdcendpage}
318
319 \func{void}{EndPage}{\void}
320
321 Ends a document page (only relevant when outputting to a printer).
322
323 \membersection{wxDC::FloodFill}\label{wxdcfloodfill}
324
325 \func{void}{FloodFill}{\param{long}{ x}, \param{long}{ y}, \param{wxColour *}{colour}, \param{int}{ style=wxFLOOD\_SURFACE}}
326
327 Flood fills the device context starting from the given point, in the given colour,
328 and using a style:
329
330 \begin{itemize}\itemsep=0pt
331 \item wxFLOOD\_SURFACE: the flooding occurs until a colour other than the given colour is encountered.
332 \item wxFLOOD\_BORDER: the area to be flooded is bounded by the given colour.
333 \end{itemize}
334
335 {\it Note:} this function is available in MS Windows only.
336
337 \membersection{wxDC::GetBackground}\label{wxdcgetbackground}
338
339 \func{wxBrush\&}{GetBackground}{\void}
340
341 Gets the brush used for painting the background (see \helpref{wxDC::SetBackground}{wxdcsetbackground}).
342
343 \membersection{wxDC::GetBrush}\label{wxdcgetbrush}
344
345 \func{wxBrush\&}{GetBrush}{\void}
346
347 Gets the current brush (see \helpref{wxDC::SetBrush}{wxdcsetbrush}).
348
349 \membersection{wxDC::GetCharHeight}\label{wxdcgetcharheight}
350
351 \func{long}{GetCharHeight}{\void}
352
353 Gets the character height of the currently set font.
354
355 \membersection{wxDC::GetCharWidth}\label{wxdcgetcharwidth}
356
357 \func{long}{GetCharWidth}{\void}
358
359 Gets the average character width of the currently set font.
360
361 \membersection{wxDC::GetClippingBox}\label{wxdcgetclippingbox}
362
363 \func{void}{GetClippingBox}{\param{long}{ *x}, \param{long}{ *y}, \param{long}{ *width}, \param{long}{ *height}}
364
365 Gets the rectangle surrounding the current clipping region.
366
367 \membersection{wxDC::GetFont}\label{wxdcgetfont}
368
369 \func{wxFont\&}{GetFont}{\void}
370
371 Gets the current font (see \helpref{wxDC::SetFont}{wxdcsetfont}).
372
373 \membersection{wxDC::GetLogicalFunction}\label{wxdcgetlogicalfunction}
374
375 \func{int}{GetLogicalFunction}{\void}
376
377 Gets the current logical function (see \helpref{wxDC::SetLogicalFunction}{wxdcsetlogicalfunction}).
378
379 \membersection{wxDC::GetMapMode}\label{wxdcgetmapmode}
380
381 \func{int}{GetMapMode}{\void}
382
383 Gets the {\it mapping mode} for the device context (see \helpref{wxDC::SetMapMode}{wxdcsetmapmode}).
384
385 \membersection{wxDC::GetOptimization}\label{wxdcgetoptimization}
386
387 \func{bool}{GetOptimization}{\void}
388
389 Returns TRUE if device context optimization is on.
390 See \helpref{wxDC::SetOptimization}{wxsetoptimization} for details.
391
392 \membersection{wxDC::GetPen}\label{wxdcgetpen}
393
394 \func{wxPen\&}{GetPen}{\void}
395
396 Gets the current pen (see \helpref{wxDC::SetPen}{wxdcsetpen}).
397
398 \membersection{wxDC::GetPixel}\label{wxdcgetpixel}
399
400 \func{bool}{GetPixel}{\param{long}{ x}, \param{long}{ y}, \param{wxColour *}{colour}}
401
402 Sets {\it colour} to the colour at the specified location. Windows only; an X implementation
403 is being worked on. Not available for wxPostScriptDC or wxMetaFileDC.
404
405 \membersection{wxDC::GetSize}\label{wxdcgetsize}
406
407 \func{void}{GetSize}{\param{long *}{width}, \param{long *}{height}}
408
409 For a PostScript device context, this gets the maximum size of graphics
410 drawn so far on the device context.
411
412 For a Windows printer device context, this gets the horizontal and vertical
413 resolution. It can be used to scale graphics to fit the page when using
414 a Windows printer device context. For example, if {\it maxX} and {\it maxY}\rtfsp
415 represent the maximum horizontal and vertical `pixel' values used in your
416 application, the following code will scale the graphic to fit on the
417 printer page:
418
419 \begin{verbatim}
420 long w, h;
421 dc.GetSize(&w, &h);
422 double scaleX=(double)(maxX/w);
423 double scaleY=(double)(maxY/h);
424 dc.SetUserScale(min(scaleX,scaleY),min(scaleX,scaleY));
425 \end{verbatim}
426
427 \membersection{wxDC::GetTextBackground}\label{wxdcgettextbackground}
428
429 \func{wxColour\&}{GetTextBackground}{\void}
430
431 Gets the current text background colour (see \helpref{wxDC::SetTextBackground}{wxdcsettextbackground}).
432
433 \membersection{wxDC::GetTextExtent}\label{wxdcgettextextent}
434
435 \func{void}{GetTextExtent}{\param{const wxString\& }{string}, \param{long *}{w}, \param{long *}{h},\\
436 \param{long *}{descent = NULL}, \param{long *}{externalLeading = NULL}, \param{wxFont *}{font = NULL}}
437
438 Gets the dimensions of the string using the currently selected font.
439 \rtfsp{\it string} is the text string to measure, {\it w} and {\it h} are
440 the total width and height respectively, {\it descent} is the
441 dimension from the baseline of the font to the bottom of the
442 descender, and {\it externalLeading} is any extra vertical space added
443 to the font by the font designer (usually is zero).
444
445 The optional parameter {\it font} specifies an alternative
446 to the currently selected font: but note that this does not
447 yet work under Windows, so you need to set a font for
448 the device context first.
449
450 See also \helpref{wxFont}{wxfont}, \helpref{wxDC::SetFont}{wxdcsetfont}.
451
452 \membersection{wxDC::GetTextForeground}\label{wxdcgettextforeground}
453
454 \func{wxColour\&}{GetTextForeground}{\void}
455
456 Gets the current text foreground colour (see \helpref{wxDC::SetTextForeground}{wxdcsettextforeground}).
457
458 \membersection{wxDC::LogicalToDeviceX}\label{wxdclogicaltodevicex}
459
460 \func{long}{LogicalToDeviceX}{\param{long}{ x}}
461
462 Converts logical X coordinate to device coordinate, using the current
463 mapping mode.
464
465 \membersection{wxDC::LogicalToDeviceXRel}\label{wxdclogicaltodevicexrel}
466
467 \func{long}{LogicalToDeviceXRel}{\param{long}{ x}}
468
469 Converts logical X coordinate to relative device coordinate, using the current
470 mapping mode. Use this for converting a width, for example.
471
472 \membersection{wxDC::LogicalToDeviceY}\label{wxdclogicaltodevicey}
473
474 \func{long}{LogicalToDeviceY}{\param{long}{ y}}
475
476 Converts logical Y coordinate to device coordinate, using the current
477 mapping mode.
478
479 \membersection{wxDC::LogicalToDeviceYRel}\label{wxdclogicaltodeviceyrel}
480
481 \func{long}{LogicalToDeviceYRel}{\param{long}{ y}}
482
483 Converts logical Y coordinate to relative device coordinate, using the current
484 mapping mode. Use this for converting a height, for example.
485
486 \membersection{wxDC::MaxX}\label{wxdcmaxx}
487
488 \func{long}{MaxX}{\void}
489
490 Gets the maximum horizontal extent used in drawing commands so far.
491
492 \membersection{wxDC::MaxY}\label{wxdcmaxy}
493
494 \func{long}{MaxY}{\void}
495
496 Gets the maximum vertical extent used in drawing commands so far.
497
498 \membersection{wxDC::MinX}\label{wxdcminx}
499
500 \func{long}{MinX}{\void}
501
502 Gets the minimum horizontal extent used in drawing commands so far.
503
504 \membersection{wxDC::MinY}\label{wxdcminy}
505
506 \func{long}{MinY}{\void}
507
508 Gets the minimum vertical extent used in drawing commands so far.
509
510 \membersection{wxDC::Ok}\label{wxdcok}
511
512 \func{bool}{Ok}{\void}
513
514 Returns TRUE if the DC is ok to use.
515
516 \membersection{wxDC::SetDeviceOrigin}\label{wxdcsetdeviceorigin}
517
518 \func{void}{SetDeviceOrigin}{\param{long}{ x}, \param{long}{ y}}
519
520 Sets the device origin (i.e., the origin in pixels after scaling has been
521 applied).
522
523 This function may be useful in Windows printing
524 operations for placing a graphic on a page.
525
526 \membersection{wxDC::SetBackground}\label{wxdcsetbackground}
527
528 \func{void}{SetBackground}{\param{const wxBrush\& }{brush}}
529
530 Sets the current background brush for the DC.
531
532 \membersection{wxDC::SetBackgroundMode}\label{wxdcsetbackgroundmode}
533
534 \func{void}{SetBackgroundMode}{\param{int}{ mode}}
535
536 {\it mode} may be one of wxSOLID and wxTRANSPARENT. This setting determines
537 whether text will be drawn with a background colour or not.
538
539 \membersection{wxDC::SetClippingRegion}\label{wxdcsetclippingregion}
540
541 \func{void}{SetClippingRegion}{\param{long}{ x}, \param{long}{ y}, \param{long}{ width}, \param{long}{ height}}
542
543 \func{void}{SetClippingRegion}{\param{const wxRegion\&}{ region}}
544
545 Sets the clipping region for the DC. The clipping region is an area
546 to which drawing is restricted. Possible uses for the clipping region are for clipping text
547 or for speeding up window redraws when only a known area of the screen is damaged.
548
549 \wxheading{See also}
550
551 \helpref{wxDC::DestroyClippingRegion}{wxdcdestroyclippingregion}, \helpref{wxRegion}{wxregion}
552
553 \membersection{wxDC::SetPalette}\label{wxdcsetpalette}
554
555 \func{void}{SetPalette}{\param{const wxPalette\& }{palette}}
556
557 If this is a window DC or memory DC, assigns the given palette to the window
558 or bitmap associated with the DC. If the argument is wxNullPalette, the current
559 palette is selected out of the device context, and the original palette
560 restored.
561
562 See \helpref{wxPalette}{wxpalette} for further details.
563
564 \membersection{wxDC::SetBrush}\label{wxdcsetbrush}
565
566 \func{void}{SetBrush}{\param{const wxBrush\& }{brush}}
567
568 Sets the current brush for the DC.
569
570 If the argument is wxNullBrush, the current brush is selected out of the device
571 context, and the original brush restored, allowing the current brush to
572 be destroyed safely.
573
574 See also \helpref{wxBrush}{wxbrush}.
575
576 \membersection{wxDC::SetFont}\label{wxdcsetfont}
577
578 \func{void}{SetFont}{\param{const wxFont\& }{font}}
579
580 Sets the current font for the DC.
581
582 If the argument is wxNullFont, the current font is selected out of the device
583 context, and the original font restored, allowing the current font to
584 be destroyed safely.
585
586 See also \helpref{wxFont}{wxfont}.
587
588 \membersection{wxDC::SetLogicalFunction}\label{wxdcsetlogicalfunction}
589
590 \func{void}{SetLogicalFunction}{\param{int}{ function}}
591
592 Sets the current logical function for the device context. This determines how
593 a source pixel (from a pen or brush colour, or source device context if
594 using \helpref{wxDC::Blit}{wxdcblit}) combines with a destination pixel in the
595 current device context.
596
597 The possible values
598 and their meaning in terms of source and destination pixel values are
599 as follows:
600
601 \begin{verbatim}
602 wxAND src AND dst
603 wxAND_INVERT (NOT src) AND dst
604 wxAND_REVERSE src AND (NOT dst)
605 wxCLEAR 0
606 wxCOPY src
607 wxEQUIV (NOT src) XOR dst
608 wxINVERT NOT dst
609 wxNAND (NOT src) OR (NOT dst)
610 wxNOR (NOT src) AND (NOT dst)
611 wxNO_OP dst
612 wxOR src OR dst
613 wxOR_INVERT (NOT src) OR dst
614 wxOR_REVERSE src OR (NOT dst)
615 wxSET 1
616 wxSRC_INVERT NOT src
617 wxXOR src XOR dst
618 \end{verbatim}
619
620 The default is wxCOPY, which simply draws with the current colour.
621 The others combine the current colour and the background using a
622 logical operation. wxXOR is commonly used for drawing rubber bands or
623 moving outlines, since drawing twice reverts to the original colour.
624
625 \membersection{wxDC::SetMapMode}\label{wxdcsetmapmode}
626
627 \func{void}{SetMapMode}{\param{int}{ int}}
628
629 The {\it mapping mode} of the device context defines the unit of
630 measurement used to convert logical units to device units. Note that
631 in X, text drawing isn't handled consistently with the mapping mode; a
632 font is always specified in point size. However, setting the {\it
633 user scale} (see \helpref{wxDC::SetUserScale}{wxdcsetuserscale}) scales the text appropriately. In
634 Windows, scaleable TrueType fonts are always used; in X, results depend
635 on availability of fonts, but usually a reasonable match is found.
636
637 Note that the coordinate origin should ideally be selectable, but for
638 now is always at the top left of the screen/printer.
639
640 Drawing to a Windows printer device context under UNIX
641 uses the current mapping mode, but mapping mode is currently ignored for
642 PostScript output.
643
644 The mapping mode can be one of the following:
645
646 \begin{twocollist}\itemsep=0pt
647 \twocolitem{MM\_TWIPS}{Each logical unit is 1/20 of a point, or 1/1440 of
648 an inch.}
649 \twocolitem{MM\_POINTS}{Each logical unit is a point, or 1/72 of an inch.}
650 \twocolitem{MM\_METRIC}{Each logical unit is 1 mm.}
651 \twocolitem{MM\_LOMETRIC}{Each logical unit is 1/10 of a mm.}
652 \twocolitem{MM\_TEXT}{Each logical unit is 1 pixel.}
653 \end{twocollist}
654
655 \membersection{wxDC::SetOptimization}\label{wxsetoptimization}
656
657 \func{void}{SetOptimization}{\param{bool }{optimize}}
658
659 If {\it optimize} is TRUE (the default), this function sets optimization mode on.
660 This currently means that under X, the device context will not try to set a pen or brush
661 property if it is known to be set already. This approach can fall down
662 if non-wxWindows code is using the same device context or window, for example
663 when the window is a panel on which the windowing system draws panel items.
664 The wxWindows device context 'memory' will now be out of step with reality.
665
666 Setting optimization off, drawing, then setting it back on again, is a trick
667 that must occasionally be employed.
668
669 \membersection{wxDC::SetPen}\label{wxdcsetpen}
670
671 \func{void}{SetPen}{\param{const wxPen\& }{pen}}
672
673 Sets the current pen for the DC.
674
675 If the argument is wxNullPen, the current pen is selected out of the device
676 context, and the original pen restored.
677
678 \membersection{wxDC::SetTextBackground}\label{wxdcsettextbackground}
679
680 \func{void}{SetTextBackground}{\param{const wxColour\& }{colour}}
681
682 Sets the current text background colour for the DC.
683
684 \membersection{wxDC::SetTextForeground}\label{wxdcsettextforeground}
685
686 \func{void}{SetTextForeground}{\param{const wxColour\& }{colour}}
687
688 Sets the current text foreground colour for the DC.
689
690 \membersection{wxDC::SetUserScale}\label{wxdcsetuserscale}
691
692 \func{void}{SetUserScale}{\param{double}{ xScale}, \param{double}{ yScale}}
693
694 Sets the user scaling factor, useful for applications which require
695 `zooming'.
696
697 \membersection{wxDC::StartDoc}\label{wxdcstartdoc}
698
699 \func{bool}{StartDoc}{\param{const wxString\& }{message}}
700
701 Starts a document (only relevant when outputting to a printer).
702 Message is a message to show whilst printing.
703
704 \membersection{wxDC::StartPage}\label{wxdcstartpage}
705
706 \func{bool}{StartPage}{\void}
707
708 Starts a document page (only relevant when outputting to a printer).
709