1 \section{\class{wxDC
}}\label{wxdc
}
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.
9 Derived types of wxDC have documentation for specific features
10 only, so refer to this section for most device context information.
12 \wxheading{Derived from
}
14 \helpref{wxObject
}{wxobject
}
18 \helpref{Overview
}{dcoverview
}
20 \latexignore{\rtfignore{\wxheading{Members
}}}
22 \membersection{wxDC::wxDC
}
28 \membersection{wxDC::
\destruct{wxDC
}}
30 \func{}{\destruct{wxDC
}}{\void}
34 \membersection{wxDC::BeginDrawing
}\label{wxdcbegindrawing
}
36 \func{void
}{BeginDrawing
}{\void}
38 Allows optimization of drawing code under MS Windows. Enclose
39 drawing primitives between
{\bf BeginDrawing
} and
{\bf EndDrawing
}\rtfsp
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.
49 \membersection{wxDC::Blit
}\label{wxdcblit
}
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
}}
55 Copy from a source DC to this DC, specifying the destination
56 coordinates, size of area to copy, source DC, source coordinates, and
59 \wxheading{Parameters
}
61 \docparam{xdest
}{Destination device context x position.
}
63 \docparam{ydest
}{Destination device context y position.
}
65 \docparam{width
}{Width of source area to be copied.
}
67 \docparam{height
}{Height of source area to be copied.
}
69 \docparam{source
}{Source device context.
}
71 \docparam{xsrc
}{Source device context x position.
}
73 \docparam{ysrc
}{Source device context y position.
}
75 \docparam{logicalFunc
}{Logical function to use: see
\helpref{wxDC::SetLogicalFunction
}{wxdcsetlogicalfunction
}.
}
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:
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.
93 This sequence of operations ensures that the source's transparent area need not be black,
94 and logical functions are supported.
99 There is partial support for Blit in wxPostScriptDC, under X.
101 See
\helpref{wxMemoryDC
}{wxmemorydc
} for typical usage.
105 \helpref{wxMemoryDC
}{wxmemorydc
},
\helpref{wxBitmap
}{wxbitmap
},
\helpref{wxMask
}{wxmask
}
107 \membersection{wxDC::Clear
}\label{wxdcclear
}
109 \func{void
}{Clear
}{\void}
111 Clears the device context using the current background brush.
113 \membersection{wxDC::CrossHair
}\label{wxdccrosshair
}
115 \func{void
}{CrossHair
}{\param{long
}{ x
},
\param{long
}{ y
}}
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
121 \membersection{wxDC::DestroyClippingRegion
}\label{wxdcdestroyclippingregion
}
123 \func{void
}{DestroyClippingRegion
}{\void}
125 Destroys the current clipping region so that none of the DC is clipped.
126 See also
\helpref{wxDC::SetClippingRegion
}{wxdcsetclippingregion
}.
128 \membersection{wxDC::DeviceToLogicalX
}\label{wxdcdevicetologicalx
}
130 \func{long
}{DeviceToLogicalX
}{\param{long
}{ x
}}
132 Convert device X coordinate to logical coordinate, using the current
135 \membersection{wxDC::DeviceToLogicalXRel
}\label{wxdcdevicetologicalxrel
}
137 \func{long
}{DeviceToLogicalXRel
}{\param{long
}{ x
}}
139 Convert device X coordinate to relative logical coordinate, using the current
140 mapping mode. Use this function for converting a width, for example.
142 \membersection{wxDC::DeviceToLogicalY
}\label{wxdcdevicetologicaly
}
144 \func{long
}{DeviceToLogicalY
}{\param{long
}{ y
}}
146 Converts device Y coordinate to logical coordinate, using the current
149 \membersection{wxDC::DeviceToLogicalYRel
}\label{wxdcdevicetologicalyrel
}
151 \func{long
}{DeviceToLogicalYRel
}{\param{long
}{ y
}}
153 Convert device Y coordinate to relative logical coordinate, using the current
154 mapping mode. Use this function for converting a height, for example.
156 \membersection{wxDC::DrawArc
}\label{wxdcdrawarc
}
158 \func{void
}{DrawArc
}{\param{long
}{ x1
},
\param{long
}{ y1
},
\param{long
}{ x2
},
\param{long
}{ y2
},
\param{double
}{ xc
},
\param{double
}{ yc
}}
160 Draws an arc, 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.
164 \membersection{wxDC::DrawEllipse
}\label{wxdcdrawellipse
}
166 \func{void
}{DrawEllipse
}{\param{long
}{ x
},
\param{long
}{ y
},
\param{long
}{ width
},
\param{long
}{ height
}}
168 Draws an ellipse contained in the rectangle with the given top left corner, and with the
169 given size. The current pen is used for the outline and the current brush for
172 \membersection{wxDC::DrawEllipticArc
}\label{wxdcdrawellipticarc
}
174 \func{void
}{DrawEllipticArc
}{\param{long
}{ x
},
\param{long
}{ y
},
\param{long
}{ width
},
\param{long
}{ height
},
175 \param{double
}{ start
},
\param{double
}{ end
}}
177 Draws an arc of an ellipse. The current pen is used for drawing the arc and
178 the current brush is used for drawing the pie. This function is currently only available for
179 X window and PostScript device contexts.
181 {\it x
} and
{\it y
} specify the x and y coordinates of the upper-left corner of the rectangle that contains
184 {\it width
} and
{\it height
} specify the width and height of the rectangle that contains
187 {\it start
} and
{\it end
} specify the start and end of the arc relative to the three-o'clock
188 position from the center of the rectangle. Angles are specified
189 in degrees (
360 is a complete circle). Positive values mean
190 counter-clockwise motion. If
{\it start
} is equal to
{\it end
}, a
191 complete ellipse will be drawn.
193 \membersection{wxDC::DrawIcon
}\label{wxdcdrawicon
}
195 \func{void
}{DrawIcon
}{\param{const wxIcon\&
}{ icon
},
\param{long
}{ x
},
\param{long
}{ y
}}
197 Draw an icon on the display (does nothing if the device context is PostScript).
198 This can be the simplest way of drawing bitmaps on a window.
200 \membersection{wxDC::DrawLine
}\label{wxdcdrawline
}
202 \func{void
}{DrawLine
}{\param{long
}{ x1
},
\param{long
}{ y1
},
\param{long
}{ x2
},
\param{long
}{ y2
}}
204 Draws a line from the first point to the second. The current pen is used
205 for drawing the line.
207 \membersection{wxDC::DrawLines
}\label{wxdcdrawlines
}
209 \func{void
}{DrawLines
}{\param{int
}{ n
},
\param{wxPoint
}{ points
[]},
\param{long
}{ xoffset =
0},
\param{long
}{ yoffset =
0}}
211 \func{void
}{DrawLines
}{\param{wxList *
}{points
},
\param{long
}{ xoffset =
0},
\param{long
}{ yoffset =
0}}
213 Draws lines using an array of
{\it points
} of size
{\it n
}, or list of
214 pointers to points, adding the optional offset coordinate. The current
215 pen is used for drawing the lines. The programmer is responsible for
216 deleting the list of points.
218 \membersection{wxDC::DrawPolygon
}\label{wxdcdrawpolygon
}
220 \func{void
}{DrawPolygon
}{\param{int
}{ n
},
\param{wxPoint
}{ points
[]},
\param{long
}{ xoffset =
0},
\param{long
}{ yoffset =
0},\\
221 \param{int
}{fill
\_style = wxODDEVEN
\_RULE}}
223 \func{void
}{DrawPolygon
}{\param{wxList *
}{points
},
\param{long
}{ xoffset =
0},
\param{long
}{ yoffset =
0},\\
224 \param{int
}{fill
\_style = wxODDEVEN
\_RULE}}
226 Draws a filled polygon using an array of
{\it points
} of size
{\it n
},
227 or list of pointers to points, adding the optional offset coordinate.
229 The last argument specifies the fill rule:
{\bf wxODDEVEN
\_RULE} (the
230 default) or
{\bf wxWINDING
\_RULE}.
232 The current pen is used for drawing the outline, and the current brush
233 for filling the shape. Using a transparent brush suppresses filling.
234 The programmer is responsible for deleting the list of points.
236 Note that wxWindows automatically closes the first and last points.
238 \membersection{wxDC::DrawPoint
}\label{wxdcdrawpoint
}
240 \func{void
}{DrawPoint
}{\param{long
}{ x
},
\param{long
}{ y
}}
242 Draws a point using the current pen.
244 \membersection{wxDC::DrawRectangle
}\label{wxdcdrawrectangle
}
246 \func{void
}{DrawRectangle
}{\param{long
}{ x
},
\param{long
}{ y
},
\param{long
}{ width
},
\param{long
}{ height
}}
248 Draws a rectangle with the given top left corner, and with the given
249 size. The current pen is used for the outline and the current brush
250 for filling the shape.
252 \membersection{wxDC::DrawRoundedRectangle
}\label{wxdcdrawroundedrectangle
}
254 \func{void
}{DrawRoundedRectangle
}{\param{long
}{ x
},
\param{long
}{ y
},
\param{long
}{ width
},
\param{long
}{ height
},
\param{double
}{ radius =
20}}
256 Draws a rectangle with the given top left corner, and with the given
257 size. The corners are quarter-circles using the given radius. The
258 current pen is used for the outline and the current brush for filling
261 If
{\it radius
} is positive, the value is assumed to be the
262 radius of the rounded corner. If
{\it radius
} is negative,
263 the absolute value is assumed to be the
{\it proportion
} of the smallest
264 dimension of the rectangle. This means that the corner can be
265 a sensible size relative to the size of the rectangle, and also avoids
266 the strange effects X produces when the corners are too big for
269 \membersection{wxDC::DrawSpline
}\label{wxdcdrawspline
}
271 \func{void
}{DrawSpline
}{\param{wxList *
}{points
}}
273 Draws a spline between all given control points, using the current
274 pen. Doesn't delete the wxList and contents. The spline is drawn
275 using a series of lines, using an algorithm taken from the X drawing
278 \func{void
}{DrawSpline
}{\param{long
}{ x1
},
\param{long
}{ y1
},
\param{long
}{ x2
},
\param{long
}{ y2
},
\param{long
}{ x3
},
\param{long
}{ y3
}}
280 Draws a three-point spline using the current pen.
282 \membersection{wxDC::DrawText
}\label{wxdcdrawtext
}
284 \func{void
}{DrawText
}{\param{const wxString\&
}{text
},
\param{long
}{ x
},
\param{long
}{ y
}}
286 Draws a text string at the specified point, using the current text font,
287 and the current text foreground and background colours.
289 The coordinates refer to the top-left corner of the rectangle bounding
290 the string. See
\helpref{wxDC::GetTextExtent
}{wxdcgettextextent
} for how
291 to get the dimensions of a text string, which can be used to position the
294 \membersection{wxDC::EndDoc
}\label{wxdcenddoc
}
296 \func{void
}{EndDoc
}{\void}
298 Ends a
document (only relevant when outputting to a printer).
300 \membersection{wxDC::EndDrawing
}\label{wxdcenddrawing
}
302 \func{void
}{EndDrawing
}{\void}
304 Allows optimization of drawing code under MS Windows. Enclose
305 drawing primitives between
{\bf BeginDrawing
} and
{\bf EndDrawing
}\rtfsp
308 \membersection{wxDC::EndPage
}\label{wxdcendpage
}
310 \func{void
}{EndPage
}{\void}
312 Ends a
document page (only relevant when outputting to a printer).
314 \membersection{wxDC::FloodFill
}\label{wxdcfloodfill
}
316 \func{void
}{FloodFill
}{\param{long
}{ x
},
\param{long
}{ y
},
\param{wxColour *
}{colour
},
\param{int
}{ style=wxFLOOD
\_SURFACE}}
318 Flood fills the device context starting from the given point, in the given colour,
321 \begin{itemize
}\itemsep=
0pt
322 \item wxFLOOD
\_SURFACE: the flooding occurs until a colour other than the given colour is encountered.
323 \item wxFLOOD
\_BORDER: the area to be flooded is bounded by the given colour.
326 {\it Note:
} this function is available in MS Windows only.
328 \membersection{wxDC::GetBackground
}\label{wxdcgetbackground
}
330 \func{wxBrush *
}{GetBackground
}{\void}
332 Gets the brush used for painting the background (see
\helpref{wxDC::SetBackground
}{wxdcsetbackground
}).
334 \membersection{wxDC::GetBrush
}\label{wxdcgetbrush
}
336 \func{wxBrush *
}{GetBrush
}{\void}
338 Gets the current brush (see
\helpref{wxDC::SetBrush
}{wxdcsetbrush
}).
340 \membersection{wxDC::GetCharHeight
}\label{wxdcgetcharheight
}
342 \func{long
}{GetCharHeight
}{\void}
344 Gets the character height of the currently set font.
346 \membersection{wxDC::GetCharWidth
}\label{wxdcgetcharwidth
}
348 \func{long
}{GetCharWidth
}{\void}
350 Gets the average character width of the currently set font.
352 \membersection{wxDC::GetClippingBox
}\label{wxdcgetclippingbox
}
354 \func{void
}{GetClippingBox
}{\param{long
}{ *x
},
\param{long
}{ *y
},
\param{long
}{ *width
},
\param{long
}{ *height
}}
356 Gets the rectangle surrounding the current clipping region.
358 \membersection{wxDC::GetFont
}\label{wxdcgetfont
}
360 \func{wxFont *
}{GetFont
}{\void}
362 Gets the current font (see
\helpref{wxDC::SetFont
}{wxdcsetfont
}).
364 \membersection{wxDC::GetLogicalFunction
}\label{wxdcgetlogicalfunction
}
366 \func{int
}{GetLogicalFunction
}{\void}
368 Gets the current logical function (see
\helpref{wxDC::SetLogicalFunction
}{wxdcsetlogicalfunction
}).
370 \membersection{wxDC::GetMapMode
}\label{wxdcgetmapmode
}
372 \func{int
}{GetMapMode
}{\void}
374 Gets the
{\it mapping mode
} for the device context (see
\helpref{wxDC::SetMapMode
}{wxdcsetmapmode
}).
376 \membersection{wxDC::GetOptimization
}\label{wxdcgetoptimization
}
378 \func{bool
}{GetOptimization
}{\void}
380 Returns TRUE if device context optimization is on.
381 See
\helpref{wxDC::SetOptimization
}{wxsetoptimization
} for details.
383 \membersection{wxDC::GetPen
}\label{wxdcgetpen
}
385 \func{wxPen *
}{GetPen
}{\void}
387 Gets the current pen (see
\helpref{wxDC::SetPen
}{wxdcsetpen
}).
389 \membersection{wxDC::GetPixel
}\label{wxdcgetpixel
}
391 \func{bool
}{GetPixel
}{\param{long
}{ x
},
\param{long
}{ y
},
\param{wxColour *
}{colour
}}
393 Sets
{\it colour
} to the colour at the specified location. Windows only; an X implementation
394 is being worked on. Not available for wxPostScriptDC or wxMetaFileDC.
396 \membersection{wxDC::GetSize
}\label{wxdcgetsize
}
398 \func{void
}{GetSize
}{\param{long *
}{width
},
\param{long *
}{height
}}
400 For a PostScript device context, this gets the maximum size of graphics
401 drawn so far on the device context.
403 For a Windows printer device context, this gets the horizontal and vertical
404 resolution. It can be used to scale graphics to fit the page when using
405 a Windows printer device context. For example, if
{\it maxX
} and
{\it maxY
}\rtfsp
406 represent the maximum horizontal and vertical `pixel' values used in your
407 application, the following code will scale the graphic to fit on the
413 double scaleX=(double)(maxX/w);
414 double scaleY=(double)(maxY/h);
415 dc.SetUserScale(min(scaleX,scaleY),min(scaleX,scaleY));
418 \membersection{wxDC::GetTextBackground
}\label{wxdcgettextbackground
}
420 \func{wxColour\&
}{GetTextBackground
}{\void}
422 Gets the current text background colour (see
\helpref{wxDC::SetTextBackground
}{wxdcsettextbackground
}).
424 \membersection{wxDC::GetTextExtent
}\label{wxdcgettextextent
}
426 \func{void
}{GetTextExtent
}{\param{const wxString\&
}{string
},
\param{long *
}{w
},
\param{long *
}{h
},\\
427 \param{long *
}{descent = NULL
},
\param{long *
}{externalLeading = NULL
},
\param{wxFont *
}{font = NULL
}}
429 Gets the dimensions of the string using the currently selected font.
430 \rtfsp{\it string
} is the text string to measure,
{\it w
} and
{\it h
} are
431 the total width and height respectively,
{\it descent
} is the
432 dimension from the baseline of the font to the bottom of the
433 descender, and
{\it externalLeading
} is any extra vertical space added
434 to the font by the font designer (usually is zero).
436 The optional parameter
{\it font
} specifies an alternative
437 to the currently selected font: but note that this does not
438 yet work under Windows, so you need to set a font for
439 the device context first.
441 See also
\helpref{wxFont
}{wxfont
},
\helpref{wxDC::SetFont
}{wxdcsetfont
}.
443 \membersection{wxDC::GetTextForeground
}\label{wxdcgettextforeground
}
445 \func{wxColour\&
}{GetTextForeground
}{\void}
447 Gets the current text foreground colour (see
\helpref{wxDC::SetTextForeground
}{wxdcsettextforeground
}).
449 \membersection{wxDC::LogicalToDeviceX
}\label{wxdclogicaltodevicex
}
451 \func{long
}{LogicalToDeviceX
}{\param{long
}{ x
}}
453 Converts logical X coordinate to device coordinate, using the current
456 \membersection{wxDC::LogicalToDeviceXRel
}\label{wxdclogicaltodevicexrel
}
458 \func{long
}{LogicalToDeviceXRel
}{\param{long
}{ x
}}
460 Converts logical X coordinate to relative device coordinate, using the current
461 mapping mode. Use this for converting a width, for example.
463 \membersection{wxDC::LogicalToDeviceY
}\label{wxdclogicaltodevicey
}
465 \func{long
}{LogicalToDeviceY
}{\param{long
}{ y
}}
467 Converts logical Y coordinate to device coordinate, using the current
470 \membersection{wxDC::LogicalToDeviceYRel
}\label{wxdclogicaltodeviceyrel
}
472 \func{long
}{LogicalToDeviceYRel
}{\param{long
}{ y
}}
474 Converts logical Y coordinate to relative device coordinate, using the current
475 mapping mode. Use this for converting a height, for example.
477 \membersection{wxDC::MaxX
}\label{wxdcmaxx
}
479 \func{long
}{MaxX
}{\void}
481 Gets the maximum horizontal extent used in drawing commands so far.
483 \membersection{wxDC::MaxY
}\label{wxdcmaxy
}
485 \func{long
}{MaxY
}{\void}
487 Gets the maximum vertical extent used in drawing commands so far.
489 \membersection{wxDC::MinX
}\label{wxdcminx
}
491 \func{long
}{MinX
}{\void}
493 Gets the minimum horizontal extent used in drawing commands so far.
495 \membersection{wxDC::MinY
}\label{wxdcminy
}
497 \func{long
}{MinY
}{\void}
499 Gets the minimum vertical extent used in drawing commands so far.
501 \membersection{wxDC::Ok
}\label{wxdcok
}
503 \func{bool
}{Ok
}{\void}
505 Returns TRUE if the DC is ok to use.
507 \membersection{wxDC::SetDeviceOrigin
}\label{wxdcsetdeviceorigin
}
509 \func{void
}{SetDeviceOrigin
}{\param{long
}{ x
},
\param{long
}{ y
}}
511 Sets the device origin (i.e., the origin in pixels after scaling has been
514 This function may be useful in Windows printing
515 operations for placing a graphic on a page.
517 \membersection{wxDC::SetBackground
}\label{wxdcsetbackground
}
519 \func{void
}{SetBackground
}{\param{const wxBrush\&
}{brush
}}
521 Sets the current background brush for the DC.
523 \membersection{wxDC::SetBackgroundMode
}\label{wxdcsetbackgroundmode
}
525 \func{void
}{SetBackgroundMode
}{\param{int
}{ mode
}}
527 {\it mode
} may be one of wxSOLID and wxTRANSPARENT. This setting determines
528 whether text will be drawn with a background colour or not.
530 \membersection{wxDC::SetClippingRegion
}\label{wxdcsetclippingregion
}
532 \func{void
}{SetClippingRegion
}{\param{long
}{ x
},
\param{long
}{ y
},
\param{long
}{ width
},
\param{long
}{ height
}}
534 Sets the clipping region for the DC. The clipping region is a rectangular area
535 to which drawing is restricted. Possible uses for the clipping region are for clipping text
536 or for speeding up window redraws when only a known area of the screen is damaged.
538 See also
\helpref{wxDC::DestroyClippingRegion
}{wxdcdestroyclippingregion
}.
540 \membersection{wxDC::SetPalette
}\label{wxdcsetpalette
}
542 \func{void
}{SetPalette
}{\param{const wxPalette\&
}{palette
}}
544 If this is a window DC or memory DC, assigns the given palette to the window
545 or bitmap associated with the DC. If the argument is wxNullPalette, the current
546 palette is selected out of the device context, and the original palette
549 See
\helpref{wxPalette
}{wxpalette
} for further details.
551 \membersection{wxDC::SetBrush
}\label{wxdcsetbrush
}
553 \func{void
}{SetBrush
}{\param{const wxBrush\&
}{brush
}}
555 Sets the current brush for the DC.
557 If the argument is wxNullBrush, the current brush is selected out of the device
558 context, and the original brush restored, allowing the current brush to
561 See also
\helpref{wxBrush
}{wxbrush
}.
563 \membersection{wxDC::SetFont
}\label{wxdcsetfont
}
565 \func{void
}{SetFont
}{\param{const wxFont\&
}{font
}}
567 Sets the current font for the DC.
569 If the argument is wxNullFont, the current font is selected out of the device
570 context, and the original font restored, allowing the current font to
573 See also
\helpref{wxFont
}{wxfont
}.
575 \membersection{wxDC::SetLogicalFunction
}\label{wxdcsetlogicalfunction
}
577 \func{void
}{SetLogicalFunction
}{\param{int
}{ function
}}
579 Sets the current logical function for the device context. This determines how
580 a source pixel (from a pen or brush colour, or source device context if
581 using
\helpref{wxDC::Blit
}{wxdcblit
}) combines with a destination pixel in the
582 current device context.
585 and their meaning in terms of source and destination pixel values are
590 wxAND_INVERT (NOT src) AND dst
591 wxAND_REVERSE src AND (NOT dst)
594 wxEQUIV (NOT src) XOR dst
596 wxNAND (NOT src) OR (NOT dst)
597 wxNOR (NOT src) AND (NOT dst)
600 wxOR_INVERT (NOT src) OR dst
601 wxOR_REVERSE src OR (NOT dst)
607 The default is wxCOPY, which simply draws with the current colour.
608 The others combine the current colour and the background using a
609 logical operation. wxXOR is commonly used for drawing rubber bands or
610 moving outlines, since drawing twice reverts to the original colour.
612 \membersection{wxDC::SetMapMode
}\label{wxdcsetmapmode
}
614 \func{void
}{SetMapMode
}{\param{int
}{ int
}}
616 The
{\it mapping mode
} of the device context defines the unit of
617 measurement used to convert logical units to device units. Note that
618 in X, text drawing isn't handled consistently with the mapping mode; a
619 font is always specified in point size. However, setting the
{\it
620 user scale
} (see
\helpref{wxDC::SetUserScale
}{wxdcsetuserscale
}) scales the text appropriately. In
621 Windows, scaleable TrueType fonts are always used; in X, results depend
622 on availability of fonts, but usually a reasonable match is found.
624 Note that the coordinate origin should ideally be selectable, but for
625 now is always at the top left of the screen/printer.
627 Drawing to a Windows printer device context under UNIX
628 uses the current mapping mode, but mapping mode is currently ignored for
631 The mapping mode can be one of the following:
633 \begin{twocollist
}\itemsep=
0pt
634 \twocolitem{MM
\_TWIPS}{Each logical unit is
1/
20 of a point, or
1/
1440 of
636 \twocolitem{MM
\_POINTS}{Each logical unit is a point, or
1/
72 of an inch.
}
637 \twocolitem{MM
\_METRIC}{Each logical unit is
1 mm.
}
638 \twocolitem{MM
\_LOMETRIC}{Each logical unit is
1/
10 of a mm.
}
639 \twocolitem{MM
\_TEXT}{Each logical unit is
1 pixel.
}
642 \membersection{wxDC::SetOptimization
}\label{wxsetoptimization
}
644 \func{void
}{SetOptimization
}{\param{bool
}{optimize
}}
646 If
{\it optimize
} is TRUE (the default), this function sets optimization mode on.
647 This currently means that under X, the device context will not try to set a pen or brush
648 property if it is known to be set already. This approach can fall down
649 if non-wxWindows code is using the same device context or window, for example
650 when the window is a panel on which the windowing system draws panel items.
651 The wxWindows device context 'memory' will now be out of step with reality.
653 Setting optimization off, drawing, then setting it back on again, is a trick
654 that must occasionally be employed.
656 \membersection{wxDC::SetPen
}\label{wxdcsetpen
}
658 \func{void
}{SetPen
}{\param{const wxPen\&
}{pen
}}
660 Sets the current pen for the DC.
662 If the argument is wxNullPen, the current pen is selected out of the device
663 context, and the original pen restored.
665 \membersection{wxDC::SetTextBackground
}\label{wxdcsettextbackground
}
667 \func{void
}{SetTextBackground
}{\param{const wxColour\&
}{colour
}}
669 Sets the current text background colour for the DC.
671 \membersection{wxDC::SetTextForeground
}\label{wxdcsettextforeground
}
673 \func{void
}{SetTextForeground
}{\param{const wxColour\&
}{colour
}}
675 Sets the current text foreground colour for the DC.
677 \membersection{wxDC::SetUserScale
}\label{wxdcsetuserscale
}
679 \func{void
}{SetUserScale
}{\param{double
}{ xScale
},
\param{double
}{ yScale
}}
681 Sets the user scaling factor, useful for applications which require
684 \membersection{wxDC::StartDoc
}\label{wxdcstartdoc
}
686 \func{bool
}{StartDoc
}{\param{const wxString\&
}{message
}}
688 Starts a
document (only relevant when outputting to a printer).
689 Message is a message to show whilst printing.
691 \membersection{wxDC::StartPage
}\label{wxdcstartpage
}
693 \func{bool
}{StartPage
}{\void}
695 Starts a
document page (only relevant when outputting to a printer).