1 ///////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxMirrorDC class
4 // Author: Vadim Zeitlin
8 // Copyright: (c) 2003 Vadim Zeitlin <vadim@wxwidgets.org>
9 // Licence: wxWindows licence
10 ///////////////////////////////////////////////////////////////////////////////
12 #ifndef _WX_DCMIRROR_H_
13 #define _WX_DCMIRROR_H_
17 // ----------------------------------------------------------------------------
18 // wxMirrorDC allows to write the same code for horz/vertical layout
19 // ----------------------------------------------------------------------------
21 class WXDLLIMPEXP_CORE wxMirrorDCImpl
: public wxDCImpl
24 // constructs a mirror DC associated with the given real DC
26 // if mirror parameter is true, all vertical and horizontal coordinates are
27 // exchanged, otherwise this class behaves in exactly the same way as a
29 wxMirrorDCImpl(wxDC
*owner
, wxDCImpl
& dc
, bool mirror
)
36 // wxDCBase operations
37 virtual void Clear() { m_dc
.Clear(); }
38 virtual void SetFont(const wxFont
& font
) { m_dc
.SetFont(font
); }
39 virtual void SetPen(const wxPen
& pen
) { m_dc
.SetPen(pen
); }
40 virtual void SetBrush(const wxBrush
& brush
) { m_dc
.SetBrush(brush
); }
41 virtual void SetBackground(const wxBrush
& brush
)
42 { m_dc
.SetBackground(brush
); }
43 virtual void SetBackgroundMode(int mode
) { m_dc
.SetBackgroundMode(mode
); }
45 virtual void SetPalette(const wxPalette
& palette
)
46 { m_dc
.SetPalette(palette
); }
47 #endif // wxUSE_PALETTE
48 virtual void DestroyClippingRegion() { m_dc
.DestroyClippingRegion(); }
49 virtual wxCoord
GetCharHeight() const { return m_dc
.GetCharHeight(); }
50 virtual wxCoord
GetCharWidth() const { return m_dc
.GetCharWidth(); }
51 virtual bool CanDrawBitmap() const { return m_dc
.CanDrawBitmap(); }
52 virtual bool CanGetTextExtent() const { return m_dc
.CanGetTextExtent(); }
53 virtual int GetDepth() const { return m_dc
.GetDepth(); }
54 virtual wxSize
GetPPI() const { return m_dc
.GetPPI(); }
55 virtual bool IsOk() const { return m_dc
.IsOk(); }
56 virtual void SetMapMode(wxMappingMode mode
) { m_dc
.SetMapMode(mode
); }
57 virtual void SetUserScale(double x
, double y
)
58 { m_dc
.SetUserScale(GetX(x
, y
), GetY(x
, y
)); }
59 virtual void SetLogicalOrigin(wxCoord x
, wxCoord y
)
60 { m_dc
.SetLogicalOrigin(GetX(x
, y
), GetY(x
, y
)); }
61 virtual void SetDeviceOrigin(wxCoord x
, wxCoord y
)
62 { m_dc
.SetDeviceOrigin(GetX(x
, y
), GetY(x
, y
)); }
63 virtual void SetAxisOrientation(bool xLeftRight
, bool yBottomUp
)
64 { m_dc
.SetAxisOrientation(GetX(xLeftRight
, yBottomUp
),
65 GetY(xLeftRight
, yBottomUp
)); }
66 virtual void SetLogicalFunction(wxRasterOperationMode function
)
67 { m_dc
.SetLogicalFunction(function
); }
69 virtual void* GetHandle() const
70 { return m_dc
.GetHandle(); }
73 // returns x and y if not mirroring or y and x if mirroring
74 wxCoord
GetX(wxCoord x
, wxCoord y
) const { return m_mirror
? y
: x
; }
75 wxCoord
GetY(wxCoord x
, wxCoord y
) const { return m_mirror
? x
: y
; }
76 double GetX(double x
, double y
) const { return m_mirror
? y
: x
; }
77 double GetY(double x
, double y
) const { return m_mirror
? x
: y
; }
78 bool GetX(bool x
, bool y
) const { return m_mirror
? y
: x
; }
79 bool GetY(bool x
, bool y
) const { return m_mirror
? x
: y
; }
81 // same thing but for pointers
82 wxCoord
*GetX(wxCoord
*x
, wxCoord
*y
) const { return m_mirror
? y
: x
; }
83 wxCoord
*GetY(wxCoord
*x
, wxCoord
*y
) const { return m_mirror
? x
: y
; }
85 // exchange x and y components of all points in the array if necessary
86 wxPoint
* Mirror(int n
, const wxPoint
*& points
) const
88 wxPoint
* points_alloc
= NULL
;
91 points_alloc
= new wxPoint
[n
];
92 for ( int i
= 0; i
< n
; i
++ )
94 points_alloc
[i
].x
= points
[i
].y
;
95 points_alloc
[i
].y
= points
[i
].x
;
97 points
= points_alloc
;
102 // wxDCBase functions
103 virtual bool DoFloodFill(wxCoord x
, wxCoord y
, const wxColour
& col
,
104 wxFloodFillStyle style
= wxFLOOD_SURFACE
)
106 return m_dc
.DoFloodFill(GetX(x
, y
), GetY(x
, y
), col
, style
);
109 virtual bool DoGetPixel(wxCoord x
, wxCoord y
, wxColour
*col
) const
111 return m_dc
.DoGetPixel(GetX(x
, y
), GetY(x
, y
), col
);
115 virtual void DoDrawPoint(wxCoord x
, wxCoord y
)
117 m_dc
.DoDrawPoint(GetX(x
, y
), GetY(x
, y
));
120 virtual void DoDrawLine(wxCoord x1
, wxCoord y1
, wxCoord x2
, wxCoord y2
)
122 m_dc
.DoDrawLine(GetX(x1
, y1
), GetY(x1
, y1
), GetX(x2
, y2
), GetY(x2
, y2
));
125 virtual void DoDrawArc(wxCoord x1
, wxCoord y1
,
126 wxCoord x2
, wxCoord y2
,
127 wxCoord xc
, wxCoord yc
)
129 wxFAIL_MSG( wxT("this is probably wrong") );
131 m_dc
.DoDrawArc(GetX(x1
, y1
), GetY(x1
, y1
),
132 GetX(x2
, y2
), GetY(x2
, y2
),
136 virtual void DoDrawCheckMark(wxCoord x
, wxCoord y
,
137 wxCoord w
, wxCoord h
)
139 m_dc
.DoDrawCheckMark(GetX(x
, y
), GetY(x
, y
),
140 GetX(w
, h
), GetY(w
, h
));
143 virtual void DoDrawEllipticArc(wxCoord x
, wxCoord y
, wxCoord w
, wxCoord h
,
144 double sa
, double ea
)
146 wxFAIL_MSG( wxT("this is probably wrong") );
148 m_dc
.DoDrawEllipticArc(GetX(x
, y
), GetY(x
, y
),
149 GetX(w
, h
), GetY(w
, h
),
153 virtual void DoDrawRectangle(wxCoord x
, wxCoord y
, wxCoord w
, wxCoord h
)
155 m_dc
.DoDrawRectangle(GetX(x
, y
), GetY(x
, y
), GetX(w
, h
), GetY(w
, h
));
158 virtual void DoDrawRoundedRectangle(wxCoord x
, wxCoord y
,
159 wxCoord w
, wxCoord h
,
162 m_dc
.DoDrawRoundedRectangle(GetX(x
, y
), GetY(x
, y
),
163 GetX(w
, h
), GetY(w
, h
),
167 virtual void DoDrawEllipse(wxCoord x
, wxCoord y
, wxCoord w
, wxCoord h
)
169 m_dc
.DoDrawEllipse(GetX(x
, y
), GetY(x
, y
), GetX(w
, h
), GetY(w
, h
));
172 virtual void DoCrossHair(wxCoord x
, wxCoord y
)
174 m_dc
.DoCrossHair(GetX(x
, y
), GetY(x
, y
));
177 virtual void DoDrawIcon(const wxIcon
& icon
, wxCoord x
, wxCoord y
)
179 m_dc
.DoDrawIcon(icon
, GetX(x
, y
), GetY(x
, y
));
182 virtual void DoDrawBitmap(const wxBitmap
&bmp
, wxCoord x
, wxCoord y
,
183 bool useMask
= false)
185 m_dc
.DoDrawBitmap(bmp
, GetX(x
, y
), GetY(x
, y
), useMask
);
188 virtual void DoDrawText(const wxString
& text
, wxCoord x
, wxCoord y
)
190 // this is never mirrored
191 m_dc
.DoDrawText(text
, x
, y
);
194 virtual void DoDrawRotatedText(const wxString
& text
,
195 wxCoord x
, wxCoord y
, double angle
)
197 // this is never mirrored
198 m_dc
.DoDrawRotatedText(text
, x
, y
, angle
);
201 virtual bool DoBlit(wxCoord xdest
, wxCoord ydest
,
202 wxCoord w
, wxCoord h
,
203 wxDC
*source
, wxCoord xsrc
, wxCoord ysrc
,
204 wxRasterOperationMode rop
= wxCOPY
,
205 bool useMask
= false,
206 wxCoord xsrcMask
= wxDefaultCoord
, wxCoord ysrcMask
= wxDefaultCoord
)
208 return m_dc
.DoBlit(GetX(xdest
, ydest
), GetY(xdest
, ydest
),
209 GetX(w
, h
), GetY(w
, h
),
210 source
, GetX(xsrc
, ysrc
), GetY(xsrc
, ysrc
),
212 GetX(xsrcMask
, ysrcMask
), GetX(xsrcMask
, ysrcMask
));
215 virtual void DoGetSize(int *w
, int *h
) const
217 m_dc
.DoGetSize(GetX(w
, h
), GetY(w
, h
));
220 virtual void DoGetSizeMM(int *w
, int *h
) const
222 m_dc
.DoGetSizeMM(GetX(w
, h
), GetY(w
, h
));
225 virtual void DoDrawLines(int n
, const wxPoint points
[],
226 wxCoord xoffset
, wxCoord yoffset
)
228 wxPoint
* points_alloc
= Mirror(n
, points
);
230 m_dc
.DoDrawLines(n
, points
,
231 GetX(xoffset
, yoffset
), GetY(xoffset
, yoffset
));
233 delete[] points_alloc
;
236 virtual void DoDrawPolygon(int n
, const wxPoint points
[],
237 wxCoord xoffset
, wxCoord yoffset
,
238 wxPolygonFillMode fillStyle
= wxODDEVEN_RULE
)
240 wxPoint
* points_alloc
= Mirror(n
, points
);
242 m_dc
.DoDrawPolygon(n
, points
,
243 GetX(xoffset
, yoffset
), GetY(xoffset
, yoffset
),
246 delete[] points_alloc
;
249 virtual void DoSetDeviceClippingRegion(const wxRegion
& WXUNUSED(region
))
251 wxFAIL_MSG( wxT("not implemented") );
254 virtual void DoSetClippingRegion(wxCoord x
, wxCoord y
,
255 wxCoord w
, wxCoord h
)
257 m_dc
.DoSetClippingRegion(GetX(x
, y
), GetY(x
, y
), GetX(w
, h
), GetY(w
, h
));
260 virtual void DoGetTextExtent(const wxString
& string
,
261 wxCoord
*x
, wxCoord
*y
,
262 wxCoord
*descent
= NULL
,
263 wxCoord
*externalLeading
= NULL
,
264 const wxFont
*theFont
= NULL
) const
267 m_dc
.DoGetTextExtent(string
, x
, y
, descent
, externalLeading
, theFont
);
275 wxDECLARE_NO_COPY_CLASS(wxMirrorDCImpl
);
278 class WXDLLIMPEXP_CORE wxMirrorDC
: public wxDC
281 wxMirrorDC(wxDC
& dc
, bool mirror
)
282 : wxDC(new wxMirrorDCImpl(this, *dc
.GetImpl(), mirror
))
287 // helper functions which may be useful for the users of this class
288 wxSize
Reflect(const wxSize
& sizeOrig
)
290 return m_mirror
? wxSize(sizeOrig
.y
, sizeOrig
.x
) : sizeOrig
;
296 wxDECLARE_NO_COPY_CLASS(wxMirrorDC
);
299 #endif // _WX_DCMIRROR_H_