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