1 /////////////////////////////////////////////////////////////////////////////
2 // Name: wx/palmos/dc.h
4 // Author: William Osborne - minimal working wxPalmOS port
8 // Copyright: (c) William Osborne
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
15 #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
16 #pragma interface "dc.h"
22 // ---------------------------------------------------------------------------
24 // ---------------------------------------------------------------------------
28 * Cached blitting, maintaining a cache
29 * of bitmaps required for transparent blitting
30 * instead of constant creation/deletion
33 class wxDCCacheEntry
: public wxObject
36 wxDCCacheEntry(WXHBITMAP hBitmap
, int w
, int h
, int depth
);
37 wxDCCacheEntry(WXHDC hDC
, int depth
);
48 class WXDLLEXPORT wxDC
: public wxDCBase
54 // implement base class pure virtuals
55 // ----------------------------------
59 virtual bool StartDoc(const wxString
& message
);
60 virtual void EndDoc();
62 virtual void StartPage();
63 virtual void EndPage();
65 virtual void SetFont(const wxFont
& font
);
66 virtual void SetPen(const wxPen
& pen
);
67 virtual void SetBrush(const wxBrush
& brush
);
68 virtual void SetBackground(const wxBrush
& brush
);
69 virtual void SetBackgroundMode(int mode
);
71 virtual void SetPalette(const wxPalette
& palette
);
72 #endif // wxUSE_PALETTE
74 virtual void DestroyClippingRegion();
76 virtual wxCoord
GetCharHeight() const;
77 virtual wxCoord
GetCharWidth() const;
78 virtual void DoGetTextExtent(const wxString
& string
,
79 wxCoord
*x
, wxCoord
*y
,
80 wxCoord
*descent
= NULL
,
81 wxCoord
*externalLeading
= NULL
,
82 wxFont
*theFont
= NULL
) const;
83 virtual bool DoGetPartialTextExtents(const wxString
& text
, wxArrayInt
& widths
) const;
85 virtual bool CanDrawBitmap() const;
86 virtual bool CanGetTextExtent() const;
87 virtual int GetDepth() const;
88 virtual wxSize
GetPPI() const;
90 virtual void SetMapMode(int mode
);
91 virtual void SetUserScale(double x
, double y
);
92 virtual void SetSystemScale(double x
, double y
);
93 virtual void SetLogicalScale(double x
, double y
);
94 virtual void SetLogicalOrigin(wxCoord x
, wxCoord y
);
95 virtual void SetDeviceOrigin(wxCoord x
, wxCoord y
);
96 virtual void SetAxisOrientation(bool xLeftRight
, bool yBottomUp
);
97 virtual void SetLogicalFunction(int function
);
99 // implementation from now on
100 // --------------------------
102 virtual void SetRop(WXHDC cdc
);
103 virtual void SelectOldObjects(WXHDC dc
);
105 wxWindow
*GetWindow() const { return m_canvas
; }
106 void SetWindow(wxWindow
*win
)
111 // if we have palettes use the correct one for this window
113 #endif // wxUSE_PALETTE
116 WXHDC
GetHDC() const { return m_hDC
; }
117 void SetHDC(WXHDC dc
, bool bOwnsDC
= FALSE
)
122 // we might have a pre existing clipping region, make sure that we
123 // return it if asked -- but avoid calling ::GetClipBox() right now as
124 // it could be unnecessary wasteful
130 const wxBitmap
& GetSelectedBitmap() const { return m_selectedBitmap
; }
131 wxBitmap
& GetSelectedBitmap() { return m_selectedBitmap
; }
133 // update the internal clip box variables
134 void UpdateClipBox();
136 #if wxUSE_DC_CACHEING
137 static wxDCCacheEntry
* FindBitmapInCache(WXHDC hDC
, int w
, int h
);
138 static wxDCCacheEntry
* FindDCInCache(wxDCCacheEntry
* notThis
, WXHDC hDC
);
140 static void AddToBitmapCache(wxDCCacheEntry
* entry
);
141 static void AddToDCCache(wxDCCacheEntry
* entry
);
142 static void ClearCache();
146 virtual bool DoFloodFill(wxCoord x
, wxCoord y
, const wxColour
& col
,
147 int style
= wxFLOOD_SURFACE
);
149 virtual bool DoGetPixel(wxCoord x
, wxCoord y
, wxColour
*col
) const;
151 virtual void DoDrawPoint(wxCoord x
, wxCoord y
);
152 virtual void DoDrawLine(wxCoord x1
, wxCoord y1
, wxCoord x2
, wxCoord y2
);
154 virtual void DoDrawArc(wxCoord x1
, wxCoord y1
,
155 wxCoord x2
, wxCoord y2
,
156 wxCoord xc
, wxCoord yc
);
157 virtual void DoDrawCheckMark(wxCoord x
, wxCoord y
,
158 wxCoord width
, wxCoord height
);
159 virtual void DoDrawEllipticArc(wxCoord x
, wxCoord y
, wxCoord w
, wxCoord h
,
160 double sa
, double ea
);
162 virtual void DoDrawRectangle(wxCoord x
, wxCoord y
, wxCoord width
, wxCoord height
);
163 virtual void DoDrawRoundedRectangle(wxCoord x
, wxCoord y
,
164 wxCoord width
, wxCoord height
,
166 virtual void DoDrawEllipse(wxCoord x
, wxCoord y
, wxCoord width
, wxCoord height
);
168 virtual void DoCrossHair(wxCoord x
, wxCoord y
);
170 virtual void DoDrawIcon(const wxIcon
& icon
, wxCoord x
, wxCoord y
);
171 virtual void DoDrawBitmap(const wxBitmap
&bmp
, wxCoord x
, wxCoord y
,
172 bool useMask
= FALSE
);
174 virtual void DoDrawText(const wxString
& text
, wxCoord x
, wxCoord y
);
175 virtual void DoDrawRotatedText(const wxString
& text
, wxCoord x
, wxCoord y
,
178 virtual bool DoBlit(wxCoord xdest
, wxCoord ydest
, wxCoord width
, wxCoord height
,
179 wxDC
*source
, wxCoord xsrc
, wxCoord ysrc
,
180 int rop
= wxCOPY
, bool useMask
= FALSE
, wxCoord xsrcMask
= -1, wxCoord ysrcMask
= -1);
182 // this is gnarly - we can't even call this function DoSetClippingRegion()
183 // because of virtual function hiding
184 virtual void DoSetClippingRegionAsRegion(const wxRegion
& region
);
185 virtual void DoSetClippingRegion(wxCoord x
, wxCoord y
,
186 wxCoord width
, wxCoord height
);
187 virtual void DoGetClippingBox(wxCoord
*x
, wxCoord
*y
,
188 wxCoord
*w
, wxCoord
*h
) const;
190 virtual void DoGetSize(int *width
, int *height
) const;
191 virtual void DoGetSizeMM(int* width
, int* height
) const;
193 virtual void DoDrawLines(int n
, wxPoint points
[],
194 wxCoord xoffset
, wxCoord yoffset
);
195 virtual void DoDrawPolygon(int n
, wxPoint points
[],
196 wxCoord xoffset
, wxCoord yoffset
,
197 int fillStyle
= wxODDEVEN_RULE
);
198 virtual void DoDrawPolyPolygon(int n
, int count
[], wxPoint points
[],
199 wxCoord xoffset
, wxCoord yoffset
,
200 int fillStyle
= wxODDEVEN_RULE
);
204 // MSW specific, select a logical palette into the HDC
205 // (tell windows to translate pixel from other palettes to our custom one
207 // Realize tells it to also reset the system palette to this one.
208 void DoSelectPalette(bool realize
= FALSE
);
210 // Find out what palette our parent window has, then select it into the dc
211 void InitializePalette();
212 #endif // wxUSE_PALETTE
214 // common part of DoDrawText() and DoDrawRotatedText()
215 void DrawAnyText(const wxString
& text
, wxCoord x
, wxCoord y
);
217 // common part of DoSetClippingRegion() and DoSetClippingRegionAsRegion()
218 void SetClippingHrgn(WXHRGN hrgn
);
220 // MSW-specific member variables
221 // -----------------------------
223 // the window associated with this DC (may be NULL)
226 wxBitmap m_selectedBitmap
;
228 // TRUE => DeleteDC() in dtor, FALSE => only ReleaseDC() it
234 // Store all old GDI objects when do a SelectObject, so we can select them
235 // back in (this unselecting user's objects) so we can safely delete the
237 WXHBITMAP m_oldBitmap
;
243 WXHPALETTE m_oldPalette
;
244 #endif // wxUSE_PALETTE
246 #if wxUSE_DC_CACHEING
247 static wxList sm_bitmapCache
;
248 static wxList sm_dcCache
;
251 DECLARE_DYNAMIC_CLASS(wxDC
)
252 DECLARE_NO_COPY_CLASS(wxDC
)
255 // ----------------------------------------------------------------------------
256 // wxDCTemp: a wxDC which doesn't free the given HDC (used by wxWidgets
258 // ----------------------------------------------------------------------------
260 class WXDLLEXPORT wxDCTemp
: public wxDC
263 wxDCTemp(WXHDC hdc
) { SetHDC(hdc
); }
264 virtual ~wxDCTemp() { SetHDC((WXHDC
)NULL
); }
267 DECLARE_NO_COPY_CLASS(wxDCTemp
)