]> git.saurik.com Git - wxWidgets.git/blame - interface/dcmirror.h
More interface header reviews by Azriel Fasten, and added skeleton docs for wxBookCtr...
[wxWidgets.git] / interface / dcmirror.h
CommitLineData
23324ae1
FM
1/////////////////////////////////////////////////////////////////////////////
2// Name: dcmirror.h
e54c96f1 3// Purpose: interface of wxMirrorDC
23324ae1
FM
4// Author: wxWidgets team
5// RCS-ID: $Id$
6// Licence: wxWindows license
7/////////////////////////////////////////////////////////////////////////////
8
9/**
10 @class wxMirrorDC
11 @wxheader{dcmirror.h}
7c913512
FM
12
13 wxMirrorDC is a simple wrapper class which is always associated with a real
3a7fb603
BP
14 wxDC object and either forwards all of its operations to it without changes
15 (no mirroring takes place) or exchanges @e x and @e y coordinates which
16 makes it possible to reuse the same code to draw a figure and its mirror --
17 i.e. reflection related to the diagonal line x == y.
7c913512 18
1e24c2af 19 @since 2.5.0
7c913512 20
23324ae1
FM
21 @library{wxcore}
22 @category{dc}
23*/
24class wxMirrorDC : public wxDC
25{
26public:
27 /**
3a7fb603
BP
28 Creates a (maybe) mirrored DC associated with the real @a dc.
29 Everything drawn on wxMirrorDC will appear (and maybe mirrored) on
30 @a dc.
31
4cc4bfaf 32 @a mirror specifies if we do mirror (if it is @true) or not (if it is
23324ae1
FM
33 @false).
34 */
35 wxMirrorDC(wxDC& dc, bool mirror);
36};
e54c96f1 37