]>
git.saurik.com Git - wxWidgets.git/blob - include/wx/dcmirror.h
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 WXDLLEXPORT wxMirrorDC
: public wxDC
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
30 // the cast to wxMirrorDC is a dirty hack done to allow us to call the
31 // protected methods of wxDCBase directly in our code below, without it it
32 // would be impossible (this is correct from C++ point of view but doesn't
33 // make any sense in this particular situation)
34 wxMirrorDC(wxDC
& dc
, bool mirror
) : m_dc((wxMirrorDC
&)dc
)
35 { m_mirror
= mirror
; }
37 // wxDCBase operations
38 virtual void Clear() { m_dc
.Clear(); }
39 virtual void SetFont(const wxFont
& font
) { m_dc
.SetFont(font
); }
40 virtual void SetPen(const wxPen
& pen
) { m_dc
.SetPen(pen
); }
41 virtual void SetBrush(const wxBrush
& brush
) { m_dc
.SetBrush(brush
); }
42 virtual void SetBackground(const wxBrush
& brush
)
43 { m_dc
.SetBackground(brush
); }
44 virtual void SetBackgroundMode(int mode
) { m_dc
.SetBackgroundMode(mode
); }
46 virtual void SetPalette(const wxPalette
& palette
)
47 { m_dc
.SetPalette(palette
); }
48 #endif // wxUSE_PALETTE
49 virtual void DestroyClippingRegion() { m_dc
.DestroyClippingRegion(); }
50 virtual wxCoord
GetCharHeight() const { return m_dc
.GetCharHeight(); }
51 virtual wxCoord
GetCharWidth() const { return m_dc
.GetCharWidth(); }
52 virtual bool CanDrawBitmap() const { return m_dc
.CanDrawBitmap(); }
53 virtual bool CanGetTextExtent() const { return m_dc
.CanGetTextExtent(); }
54 virtual int GetDepth() const { return m_dc
.GetDepth(); }
55 virtual wxSize
GetPPI() const { return m_dc
.GetPPI(); }
56 virtual bool Ok() const { return IsOk(); }
57 virtual bool IsOk() const { return m_dc
.Ok(); }
58 virtual void SetMapMode(int mode
) { m_dc
.SetMapMode(mode
); }
59 virtual void SetUserScale(double x
, double y
)
60 { m_dc
.SetUserScale(GetX(x
, y
), GetY(x
, y
)); }
61 virtual void SetLogicalOrigin(wxCoord x
, wxCoord y
)
62 { m_dc
.SetLogicalOrigin(GetX(x
, y
), GetY(x
, y
)); }
63 virtual void SetDeviceOrigin(wxCoord x
, wxCoord y
)
64 { m_dc
.SetDeviceOrigin(GetX(x
, y
), GetY(x
, y
)); }
65 virtual void SetAxisOrientation(bool xLeftRight
, bool yBottomUp
)
66 { m_dc
.SetAxisOrientation(GetX(xLeftRight
, yBottomUp
),
67 GetY(xLeftRight
, yBottomUp
)); }
68 virtual void SetLogicalFunction(int function
)
69 { m_dc
.SetLogicalFunction(function
); }
71 // helper functions which may be useful for the users of this class
72 wxSize
Reflect(const wxSize
& sizeOrig
)
74 return m_mirror
? wxSize(sizeOrig
.y
, sizeOrig
.x
) : sizeOrig
;
78 // returns x and y if not mirroring or y and x if mirroring
79 wxCoord
GetX(wxCoord x
, wxCoord y
) const { return m_mirror
? y
: x
; }
80 wxCoord
GetY(wxCoord x
, wxCoord y
) const { return m_mirror
? x
: y
; }
81 double GetX(double x
, double y
) const { return m_mirror
? y
: x
; }
82 double GetY(double x
, double y
) const { return m_mirror
? x
: y
; }
83 bool GetX(bool x
, bool y
) const { return m_mirror
? y
: x
; }
84 bool GetY(bool x
, bool y
) const { return m_mirror
? x
: y
; }
86 // same thing but for pointers
87 wxCoord
*GetX(wxCoord
*x
, wxCoord
*y
) const { return m_mirror
? y
: x
; }
88 wxCoord
*GetY(wxCoord
*x
, wxCoord
*y
) const { return m_mirror
? x
: y
; }
90 // exchange x and y unconditionally
91 static void Swap(wxCoord
& x
, wxCoord
& y
)
98 // exchange x and y components of all points in the array if necessary
99 void Mirror(int n
, wxPoint points
[]) const
103 for ( int i
= 0; i
< n
; i
++ )
105 Swap(points
[i
].x
, points
[i
].y
);
111 // wxDCBase functions
112 virtual bool DoFloodFill(wxCoord x
, wxCoord y
, const wxColour
& col
,
113 int style
= wxFLOOD_SURFACE
)
115 return m_dc
.DoFloodFill(GetX(x
, y
), GetY(x
, y
), col
, style
);
118 virtual bool DoGetPixel(wxCoord x
, wxCoord y
, wxColour
*col
) const
120 return m_dc
.DoGetPixel(GetX(x
, y
), GetY(x
, y
), col
);
124 virtual void DoDrawPoint(wxCoord x
, wxCoord y
)
126 m_dc
.DoDrawPoint(GetX(x
, y
), GetY(x
, y
));
129 virtual void DoDrawLine(wxCoord x1
, wxCoord y1
, wxCoord x2
, wxCoord y2
)
131 m_dc
.DoDrawLine(GetX(x1
, y1
), GetY(x1
, y1
), GetX(x2
, y2
), GetY(x2
, y2
));
134 virtual void DoDrawArc(wxCoord x1
, wxCoord y1
,
135 wxCoord x2
, wxCoord y2
,
136 wxCoord xc
, wxCoord yc
)
138 wxFAIL_MSG( _T("this is probably wrong") );
140 m_dc
.DoDrawArc(GetX(x1
, y1
), GetY(x1
, y1
),
141 GetX(x2
, y2
), GetY(x2
, y2
),
145 virtual void DoDrawCheckMark(wxCoord x
, wxCoord y
,
146 wxCoord w
, wxCoord h
)
148 m_dc
.DoDrawCheckMark(GetX(x
, y
), GetY(x
, y
),
149 GetX(w
, h
), GetY(w
, h
));
152 virtual void DoDrawEllipticArc(wxCoord x
, wxCoord y
, wxCoord w
, wxCoord h
,
153 double sa
, double ea
)
155 wxFAIL_MSG( _T("this is probably wrong") );
157 m_dc
.DoDrawEllipticArc(GetX(x
, y
), GetY(x
, y
),
158 GetX(w
, h
), GetY(w
, h
),
162 virtual void DoDrawRectangle(wxCoord x
, wxCoord y
, wxCoord w
, wxCoord h
)
164 m_dc
.DoDrawRectangle(GetX(x
, y
), GetY(x
, y
), GetX(w
, h
), GetY(w
, h
));
167 virtual void DoDrawRoundedRectangle(wxCoord x
, wxCoord y
,
168 wxCoord w
, wxCoord h
,
171 m_dc
.DoDrawRoundedRectangle(GetX(x
, y
), GetY(x
, y
),
172 GetX(w
, h
), GetY(w
, h
),
176 virtual void DoDrawEllipse(wxCoord x
, wxCoord y
, wxCoord w
, wxCoord h
)
178 m_dc
.DoDrawEllipse(GetX(x
, y
), GetY(x
, y
), GetX(w
, h
), GetY(w
, h
));
181 virtual void DoCrossHair(wxCoord x
, wxCoord y
)
183 m_dc
.DoCrossHair(GetX(x
, y
), GetY(x
, y
));
186 virtual void DoDrawIcon(const wxIcon
& icon
, wxCoord x
, wxCoord y
)
188 m_dc
.DoDrawIcon(icon
, GetX(x
, y
), GetY(x
, y
));
191 virtual void DoDrawBitmap(const wxBitmap
&bmp
, wxCoord x
, wxCoord y
,
192 bool useMask
= false)
194 m_dc
.DoDrawBitmap(bmp
, GetX(x
, y
), GetY(x
, y
), useMask
);
197 virtual void DoDrawText(const wxString
& text
, wxCoord x
, wxCoord y
)
199 // this is never mirrored
200 m_dc
.DoDrawText(text
, x
, y
);
203 virtual void DoDrawRotatedText(const wxString
& text
,
204 wxCoord x
, wxCoord y
, double angle
)
206 // this is never mirrored
207 m_dc
.DoDrawRotatedText(text
, x
, y
, angle
);
210 virtual bool DoBlit(wxCoord xdest
, wxCoord ydest
,
211 wxCoord w
, wxCoord h
,
212 wxDC
*source
, wxCoord xsrc
, wxCoord ysrc
,
213 int rop
= wxCOPY
, bool useMask
= false,
214 wxCoord xsrcMask
= wxDefaultCoord
, wxCoord ysrcMask
= wxDefaultCoord
)
216 return m_dc
.DoBlit(GetX(xdest
, ydest
), GetY(xdest
, ydest
),
217 GetX(w
, h
), GetY(w
, h
),
218 source
, GetX(xsrc
, ysrc
), GetY(xsrc
, ysrc
),
220 GetX(xsrcMask
, ysrcMask
), GetX(xsrcMask
, ysrcMask
));
223 virtual void DoGetSize(int *w
, int *h
) const
225 m_dc
.DoGetSize(GetX(w
, h
), GetY(w
, h
));
228 virtual void DoGetSizeMM(int *w
, int *h
) const
230 m_dc
.DoGetSizeMM(GetX(w
, h
), GetY(w
, h
));
233 virtual void DoDrawLines(int n
, wxPoint points
[],
234 wxCoord xoffset
, wxCoord yoffset
)
238 m_dc
.DoDrawLines(n
, points
,
239 GetX(xoffset
, yoffset
), GetY(xoffset
, yoffset
));
244 virtual void DoDrawPolygon(int n
, wxPoint points
[],
245 wxCoord xoffset
, wxCoord yoffset
,
246 int fillStyle
= wxODDEVEN_RULE
)
250 m_dc
.DoDrawPolygon(n
, points
,
251 GetX(xoffset
, yoffset
), GetY(xoffset
, yoffset
),
257 virtual void DoSetClippingRegionAsRegion(const wxRegion
& WXUNUSED(region
))
259 wxFAIL_MSG( _T("not implemented") );
262 virtual void DoSetClippingRegion(wxCoord x
, wxCoord y
,
263 wxCoord w
, wxCoord h
)
265 m_dc
.DoSetClippingRegion(GetX(x
, y
), GetY(x
, y
), GetX(w
, h
), GetY(w
, h
));
268 virtual void DoGetTextExtent(const wxString
& string
,
269 wxCoord
*x
, wxCoord
*y
,
270 wxCoord
*descent
= NULL
,
271 wxCoord
*externalLeading
= NULL
,
272 wxFont
*theFont
= NULL
) const
275 m_dc
.DoGetTextExtent(string
, x
, y
, descent
, externalLeading
, theFont
);
283 DECLARE_NO_COPY_CLASS(wxMirrorDC
)
286 #endif // _WX_DCMIRROR_H_