1 /////////////////////////////////////////////////////////////////////////////
4 // Author: Julian Smart
8 // Copyright: (c) Julian Smart
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
17 // ---------------------------------------------------------------------------
19 // ---------------------------------------------------------------------------
23 * Cached blitting, maintaining a cache
24 * of bitmaps required for transparent blitting
25 * instead of constant creation/deletion
28 class wxDCCacheEntry
: public wxObject
31 wxDCCacheEntry(WXHBITMAP hBitmap
, int w
, int h
, int depth
);
32 wxDCCacheEntry(WXHDC hDC
, int depth
);
43 // this is an ABC: use one of the derived classes to create a DC associated
44 // with a window, screen, printer and so on
45 class WXDLLEXPORT wxDC
: public wxDCBase
48 wxDC(WXHDC hDC
) { Init(); m_hDC
= hDC
; }
51 // implement base class pure virtuals
52 // ----------------------------------
56 virtual bool StartDoc(const wxString
& message
);
57 virtual void EndDoc();
59 virtual void StartPage();
60 virtual void EndPage();
62 virtual void SetFont(const wxFont
& font
);
63 virtual void SetPen(const wxPen
& pen
);
64 virtual void SetBrush(const wxBrush
& brush
);
65 virtual void SetBackground(const wxBrush
& brush
);
66 virtual void SetBackgroundMode(int mode
);
68 virtual void SetPalette(const wxPalette
& palette
);
69 #endif // wxUSE_PALETTE
71 virtual void DestroyClippingRegion();
73 virtual wxCoord
GetCharHeight() const;
74 virtual wxCoord
GetCharWidth() const;
76 virtual bool CanDrawBitmap() const;
77 virtual bool CanGetTextExtent() const;
78 virtual int GetDepth() const;
79 virtual wxSize
GetPPI() const;
81 virtual void SetMapMode(int mode
);
82 virtual void SetUserScale(double x
, double y
);
83 virtual void SetSystemScale(double x
, double y
);
84 virtual void SetLogicalScale(double x
, double y
);
85 virtual void SetLogicalOrigin(wxCoord x
, wxCoord y
);
86 virtual void SetDeviceOrigin(wxCoord x
, wxCoord y
);
87 virtual void SetAxisOrientation(bool xLeftRight
, bool yBottomUp
);
88 virtual void SetLogicalFunction(int function
);
90 // implementation from now on
91 // --------------------------
93 virtual void SetRop(WXHDC cdc
);
94 virtual void SelectOldObjects(WXHDC dc
);
96 wxWindow
*GetWindow() const { return m_canvas
; }
97 void SetWindow(wxWindow
*win
)
102 // if we have palettes use the correct one for this window
104 #endif // wxUSE_PALETTE
107 WXHDC
GetHDC() const { return m_hDC
; }
108 void SetHDC(WXHDC dc
, bool bOwnsDC
= false)
113 // we might have a pre existing clipping region, make sure that we
114 // return it if asked -- but avoid calling ::GetClipBox() right now as
115 // it could be unnecessary wasteful
121 const wxBitmap
& GetSelectedBitmap() const { return m_selectedBitmap
; }
122 wxBitmap
& GetSelectedBitmap() { return m_selectedBitmap
; }
124 // update the internal clip box variables
125 void UpdateClipBox();
127 #if wxUSE_DC_CACHEING
128 static wxDCCacheEntry
* FindBitmapInCache(WXHDC hDC
, int w
, int h
);
129 static wxDCCacheEntry
* FindDCInCache(wxDCCacheEntry
* notThis
, WXHDC hDC
);
131 static void AddToBitmapCache(wxDCCacheEntry
* entry
);
132 static void AddToDCCache(wxDCCacheEntry
* entry
);
133 static void ClearCache();
150 #endif // wxUSE_PALETTE
153 // create an uninitialized DC: this should be only used by the derived
157 virtual void DoGetTextExtent(const wxString
& string
,
158 wxCoord
*x
, wxCoord
*y
,
159 wxCoord
*descent
= NULL
,
160 wxCoord
*externalLeading
= NULL
,
161 wxFont
*theFont
= NULL
) const;
162 virtual bool DoGetPartialTextExtents(const wxString
& text
, wxArrayInt
& widths
) const;
164 virtual bool DoFloodFill(wxCoord x
, wxCoord y
, const wxColour
& col
,
165 int style
= wxFLOOD_SURFACE
);
167 virtual bool DoGetPixel(wxCoord x
, wxCoord y
, wxColour
*col
) const;
169 virtual void DoDrawPoint(wxCoord x
, wxCoord y
);
170 virtual void DoDrawLine(wxCoord x1
, wxCoord y1
, wxCoord x2
, wxCoord y2
);
172 virtual void DoDrawArc(wxCoord x1
, wxCoord y1
,
173 wxCoord x2
, wxCoord y2
,
174 wxCoord xc
, wxCoord yc
);
175 virtual void DoDrawCheckMark(wxCoord x
, wxCoord y
,
176 wxCoord width
, wxCoord height
);
177 virtual void DoDrawEllipticArc(wxCoord x
, wxCoord y
, wxCoord w
, wxCoord h
,
178 double sa
, double ea
);
180 virtual void DoDrawRectangle(wxCoord x
, wxCoord y
, wxCoord width
, wxCoord height
);
181 virtual void DoDrawRoundedRectangle(wxCoord x
, wxCoord y
,
182 wxCoord width
, wxCoord height
,
184 virtual void DoDrawEllipse(wxCoord x
, wxCoord y
, wxCoord width
, wxCoord height
);
187 virtual void DoDrawSpline(wxList
*points
);
190 virtual void DoCrossHair(wxCoord x
, wxCoord y
);
192 virtual void DoDrawIcon(const wxIcon
& icon
, wxCoord x
, wxCoord y
);
193 virtual void DoDrawBitmap(const wxBitmap
&bmp
, wxCoord x
, wxCoord y
,
194 bool useMask
= false);
196 virtual void DoDrawText(const wxString
& text
, wxCoord x
, wxCoord y
);
197 virtual void DoDrawRotatedText(const wxString
& text
, wxCoord x
, wxCoord y
,
200 virtual bool DoBlit(wxCoord xdest
, wxCoord ydest
, wxCoord width
, wxCoord height
,
201 wxDC
*source
, wxCoord xsrc
, wxCoord ysrc
,
202 int rop
= wxCOPY
, bool useMask
= false, wxCoord xsrcMask
= wxDefaultCoord
, wxCoord ysrcMask
= wxDefaultCoord
);
204 // this is gnarly - we can't even call this function DoSetClippingRegion()
205 // because of virtual function hiding
206 virtual void DoSetClippingRegionAsRegion(const wxRegion
& region
);
207 virtual void DoSetClippingRegion(wxCoord x
, wxCoord y
,
208 wxCoord width
, wxCoord height
);
209 virtual void DoGetClippingBox(wxCoord
*x
, wxCoord
*y
,
210 wxCoord
*w
, wxCoord
*h
) const;
212 virtual void DoGetSizeMM(int* width
, int* height
) const;
214 virtual void DoDrawLines(int n
, wxPoint points
[],
215 wxCoord xoffset
, wxCoord yoffset
);
216 virtual void DoDrawPolygon(int n
, wxPoint points
[],
217 wxCoord xoffset
, wxCoord yoffset
,
218 int fillStyle
= wxODDEVEN_RULE
);
219 virtual void DoDrawPolyPolygon(int n
, int count
[], wxPoint points
[],
220 wxCoord xoffset
, wxCoord yoffset
,
221 int fillStyle
= wxODDEVEN_RULE
);
225 // MSW specific, select a logical palette into the HDC
226 // (tell windows to translate pixel from other palettes to our custom one
228 // Realize tells it to also reset the system palette to this one.
229 void DoSelectPalette(bool realize
= false);
231 // Find out what palette our parent window has, then select it into the dc
232 void InitializePalette();
233 #endif // wxUSE_PALETTE
235 // common part of DoDrawText() and DoDrawRotatedText()
236 void DrawAnyText(const wxString
& text
, wxCoord x
, wxCoord y
);
238 // common part of DoSetClippingRegion() and DoSetClippingRegionAsRegion()
239 void SetClippingHrgn(WXHRGN hrgn
);
241 // implementation of DoGetSize() for wxScreen/PrinterDC: this simply
242 // returns the size of the entire device this DC is associated with
244 // notice that we intentionally put it in a separate function instead of
245 // DoGetSize() itself because we want it to remain pure virtual both
246 // because each derived class should take care to define it as needed (this
247 // implementation is not at all always appropriate) and because we want
248 // wxDC to be an ABC to prevent it from being created directly
249 void GetDeviceSize(int *width
, int *height
) const;
252 // MSW-specific member variables
253 // -----------------------------
255 // the window associated with this DC (may be NULL)
258 wxBitmap m_selectedBitmap
;
260 // TRUE => DeleteDC() in dtor, FALSE => only ReleaseDC() it
266 // Store all old GDI objects when do a SelectObject, so we can select them
267 // back in (this unselecting user's objects) so we can safely delete the
269 WXHBITMAP m_oldBitmap
;
275 WXHPALETTE m_oldPalette
;
276 #endif // wxUSE_PALETTE
278 #if wxUSE_DC_CACHEING
279 static wxList sm_bitmapCache
;
280 static wxList sm_dcCache
;
283 DECLARE_DYNAMIC_CLASS(wxDC
)
284 DECLARE_NO_COPY_CLASS(wxDC
)
287 // ----------------------------------------------------------------------------
288 // wxDCTemp: a wxDC which doesn't free the given HDC (used by wxWidgets
290 // ----------------------------------------------------------------------------
292 class WXDLLEXPORT wxDCTemp
: public wxDC
295 wxDCTemp(WXHDC hdc
) : wxDC(hdc
)
301 // prevent base class dtor from freeing it
306 virtual void DoGetSize(int *w
, int *h
) const
308 wxFAIL_MSG( _T("no way to retrieve the size of generic DC") );
317 DECLARE_NO_COPY_CLASS(wxDCTemp
)
320 #endif // _WX_MSW_DC_H_