]> git.saurik.com Git - wxWidgets.git/blame - docs/latex/wx/mirrordc.tex
added \true and \false defs
[wxWidgets.git] / docs / latex / wx / mirrordc.tex
CommitLineData
8f20ea03
VZ
1%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2%% Name: mirrordc.tex
3%% Purpose: wxMirrorDC documentation
4%% Author: Vadim Zeitlin
5%% Modified by:
6%% Created: 21.07.03
7%% RCS-ID: $Id$
8%% Copyright: (c) 2003 Vadim Zeitlin
9%% License: wxWindows license
10%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
11
12\section{\class{wxMirrorDC}}\label{wxmirrordc}
13
14wxMirrorDC is a simple wrapper class which is always associated with a real
15\helpref{wxDC}{wxdc} object and either forwards all of its operations to it
16without changes (no mirroring takes place) or exchanges {\it x} and {\it y}
17coordinates which makes it possible to reuse the same code to draw a figure and
18its mirror -- i.e. reflection related to the diagonal line $x == y$.
19
20wxMirrorDC has been added in wxWindows version 2.5.0.
21
22\wxheading{Derived from}
23
24\helpref{wxDC}{wxdc}
25
26\wxheading{Include files}
27
28<wx/dcmirror.h>
29
30
31\helponly{\insertatlevel{2}{\wxheading{Members}}}
32
33\membersection{wxMirrorDC::wxMirrorDC}\label{wxmirrordcwxmirrordc}
34
35\func{}{wxMirrorDC}{\param{wxDC\& }{dc}, \param{bool }{mirror}}
36
b06ba076
JS
37Creates a (maybe) mirrored DC associated with the real \it{dc}. Everything
38drawn on wxMirrorDC will appear (and maybe mirrored) on \it{dc}.
8f20ea03 39
b06ba076
JS
40\it{mirror} specifies if we do mirror (if it is \it{true}) or not (if it is
41\it{false}).
8f20ea03
VZ
42
43