]> git.saurik.com Git - wxWidgets.git/blame - include/wx/msw/dc.h
AddFile(wxImage&) -> AddFile(const wxImage&)
[wxWidgets.git] / include / wx / msw / dc.h
CommitLineData
2bda0e17
KB
1/////////////////////////////////////////////////////////////////////////////
2// Name: dc.h
3// Purpose: wxDC class
4// Author: Julian Smart
5// Modified by:
6// Created: 01/02/97
7// RCS-ID: $Id$
bbcdf8bc 8// Copyright: (c) Julian Smart
65571936 9// Licence: wxWindows licence
2bda0e17
KB
10/////////////////////////////////////////////////////////////////////////////
11
bbcdf8bc
JS
12#ifndef _WX_DC_H_
13#define _WX_DC_H_
2bda0e17 14
12028905 15#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
a23fd0e1 16 #pragma interface "dc.h"
2bda0e17
KB
17#endif
18
2662e49e
RR
19#include "wx/defs.h"
20#include "wx/dc.h"
21
e6f1ad22
HH
22// ---------------------------------------------------------------------------
23// macros
24// ---------------------------------------------------------------------------
25
0cbff120
JS
26#if wxUSE_DC_CACHEING
27/*
28 * Cached blitting, maintaining a cache
29 * of bitmaps required for transparent blitting
30 * instead of constant creation/deletion
31 */
32
33class wxDCCacheEntry: public wxObject
34{
35public:
36 wxDCCacheEntry(WXHBITMAP hBitmap, int w, int h, int depth);
37 wxDCCacheEntry(WXHDC hDC, int depth);
38 ~wxDCCacheEntry();
39
40 WXHBITMAP m_bitmap;
41 WXHDC m_dc;
42 int m_width;
43 int m_height;
44 int m_depth;
45};
46#endif
47
a23fd0e1 48class WXDLLEXPORT wxDC : public wxDCBase
2bda0e17 49{
2bda0e17 50public:
a23fd0e1
VZ
51 wxDC();
52 ~wxDC();
53
54 // implement base class pure virtuals
55 // ----------------------------------
56
57 virtual void Clear();
58
59 virtual bool StartDoc(const wxString& message);
60 virtual void EndDoc();
61
62 virtual void StartPage();
63 virtual void EndPage();
64
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);
d275c7eb 70#if wxUSE_PALETTE
a23fd0e1 71 virtual void SetPalette(const wxPalette& palette);
d275c7eb 72#endif // wxUSE_PALETTE
a23fd0e1
VZ
73
74 virtual void DestroyClippingRegion();
75
72cdf4c9
VZ
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;
553aa032 83 virtual bool DoGetPartialTextExtents(const wxString& text, wxArrayInt& widths) const;
a23fd0e1
VZ
84
85 virtual bool CanDrawBitmap() const;
86 virtual bool CanGetTextExtent() const;
87 virtual int GetDepth() const;
88 virtual wxSize GetPPI() const;
89
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);
72cdf4c9
VZ
94 virtual void SetLogicalOrigin(wxCoord x, wxCoord y);
95 virtual void SetDeviceOrigin(wxCoord x, wxCoord y);
a23fd0e1
VZ
96 virtual void SetAxisOrientation(bool xLeftRight, bool yBottomUp);
97 virtual void SetLogicalFunction(int function);
98
99 // implementation from now on
100 // --------------------------
101
102 virtual void SetRop(WXHDC cdc);
a23fd0e1
VZ
103 virtual void SelectOldObjects(WXHDC dc);
104
105 wxWindow *GetWindow() const { return m_canvas; }
b95edd47
VZ
106 void SetWindow(wxWindow *win)
107 {
574c939e 108 m_canvas = win;
b95edd47 109
574c939e
KB
110#if wxUSE_PALETTE
111 // if we have palettes use the correct one for this window
112 InitializePalette();
b95edd47
VZ
113#endif // wxUSE_PALETTE
114 }
a23fd0e1
VZ
115
116 WXHDC GetHDC() const { return m_hDC; }
117 void SetHDC(WXHDC dc, bool bOwnsDC = FALSE)
118 {
119 m_hDC = dc;
120 m_bOwnsDC = bOwnsDC;
2e76da54
VZ
121
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
125 m_clipping = true;
126 m_clipX1 =
127 m_clipX2 = 0;
a23fd0e1 128 }
2bda0e17 129
4b7f2165
VZ
130 const wxBitmap& GetSelectedBitmap() const { return m_selectedBitmap; }
131 wxBitmap& GetSelectedBitmap() { return m_selectedBitmap; }
132
1e6feb95
VZ
133 // update the internal clip box variables
134 void UpdateClipBox();
135
0cbff120
JS
136#if wxUSE_DC_CACHEING
137 static wxDCCacheEntry* FindBitmapInCache(WXHDC hDC, int w, int h);
138 static wxDCCacheEntry* FindDCInCache(wxDCCacheEntry* notThis, WXHDC hDC);
139
140 static void AddToBitmapCache(wxDCCacheEntry* entry);
141 static void AddToDCCache(wxDCCacheEntry* entry);
142 static void ClearCache();
143#endif
144
a23fd0e1 145protected:
387ebd3e 146 virtual bool DoFloodFill(wxCoord x, wxCoord y, const wxColour& col,
a23fd0e1
VZ
147 int style = wxFLOOD_SURFACE);
148
72cdf4c9 149 virtual bool DoGetPixel(wxCoord x, wxCoord y, wxColour *col) const;
a23fd0e1 150
72cdf4c9
VZ
151 virtual void DoDrawPoint(wxCoord x, wxCoord y);
152 virtual void DoDrawLine(wxCoord x1, wxCoord y1, wxCoord x2, wxCoord y2);
a23fd0e1 153
72cdf4c9
VZ
154 virtual void DoDrawArc(wxCoord x1, wxCoord y1,
155 wxCoord x2, wxCoord y2,
156 wxCoord xc, wxCoord yc);
cd9da200
VZ
157 virtual void DoDrawCheckMark(wxCoord x, wxCoord y,
158 wxCoord width, wxCoord height);
72cdf4c9 159 virtual void DoDrawEllipticArc(wxCoord x, wxCoord y, wxCoord w, wxCoord h,
a23fd0e1
VZ
160 double sa, double ea);
161
72cdf4c9
VZ
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,
a23fd0e1 165 double radius);
72cdf4c9 166 virtual void DoDrawEllipse(wxCoord x, wxCoord y, wxCoord width, wxCoord height);
a23fd0e1 167
72cdf4c9 168 virtual void DoCrossHair(wxCoord x, wxCoord y);
a23fd0e1 169
72cdf4c9
VZ
170 virtual void DoDrawIcon(const wxIcon& icon, wxCoord x, wxCoord y);
171 virtual void DoDrawBitmap(const wxBitmap &bmp, wxCoord x, wxCoord y,
a23fd0e1
VZ
172 bool useMask = FALSE);
173
72cdf4c9 174 virtual void DoDrawText(const wxString& text, wxCoord x, wxCoord y);
95724b1a
VZ
175 virtual void DoDrawRotatedText(const wxString& text, wxCoord x, wxCoord y,
176 double angle);
a23fd0e1 177
72cdf4c9
VZ
178 virtual bool DoBlit(wxCoord xdest, wxCoord ydest, wxCoord width, wxCoord height,
179 wxDC *source, wxCoord xsrc, wxCoord ysrc,
0cbff120 180 int rop = wxCOPY, bool useMask = FALSE, wxCoord xsrcMask = -1, wxCoord ysrcMask = -1);
a23fd0e1
VZ
181
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);
72cdf4c9
VZ
185 virtual void DoSetClippingRegion(wxCoord x, wxCoord y,
186 wxCoord width, wxCoord height);
187 virtual void DoGetClippingRegion(wxCoord *x, wxCoord *y,
188 wxCoord *width, wxCoord *height)
a23fd0e1
VZ
189 {
190 GetClippingBox(x, y, width, height);
191 }
2e76da54
VZ
192 virtual void DoGetClippingBox(wxCoord *x, wxCoord *y,
193 wxCoord *w, wxCoord *h) const;
a23fd0e1
VZ
194
195 virtual void DoGetSize(int *width, int *height) const;
196 virtual void DoGetSizeMM(int* width, int* height) const;
197
198 virtual void DoDrawLines(int n, wxPoint points[],
72cdf4c9 199 wxCoord xoffset, wxCoord yoffset);
a23fd0e1 200 virtual void DoDrawPolygon(int n, wxPoint points[],
72cdf4c9 201 wxCoord xoffset, wxCoord yoffset,
a23fd0e1 202 int fillStyle = wxODDEVEN_RULE);
793db755 203 virtual void DoDrawPolyPolygon(int n, int count[], wxPoint points[],
6e76b35d
VZ
204 wxCoord xoffset, wxCoord yoffset,
205 int fillStyle = wxODDEVEN_RULE);
6a6c0a8b 206
a23fd0e1 207
574c939e
KB
208#if wxUSE_PALETTE
209 // MSW specific, select a logical palette into the HDC
210 // (tell windows to translate pixel from other palettes to our custom one
211 // and vice versa)
212 // Realize tells it to also reset the system palette to this one.
b95edd47
VZ
213 void DoSelectPalette(bool realize = FALSE);
214
574c939e
KB
215 // Find out what palette our parent window has, then select it into the dc
216 void InitializePalette();
b95edd47
VZ
217#endif // wxUSE_PALETTE
218
4314ec48
VZ
219 // common part of DoDrawText() and DoDrawRotatedText()
220 void DrawAnyText(const wxString& text, wxCoord x, wxCoord y);
221
5230934a
VZ
222 // common part of DoSetClippingRegion() and DoSetClippingRegionAsRegion()
223 void SetClippingHrgn(WXHRGN hrgn);
224
a23fd0e1 225 // MSW-specific member variables
1e2081a1 226 // -----------------------------
a23fd0e1
VZ
227
228 // the window associated with this DC (may be NULL)
229 wxWindow *m_canvas;
230
231 wxBitmap m_selectedBitmap;
232
233 // TRUE => DeleteDC() in dtor, FALSE => only ReleaseDC() it
234 bool m_bOwnsDC:1;
235
b5badcb5 236 // our HDC
a23fd0e1 237 WXHDC m_hDC;
a23fd0e1
VZ
238
239 // Store all old GDI objects when do a SelectObject, so we can select them
240 // back in (this unselecting user's objects) so we can safely delete the
241 // DC.
242 WXHBITMAP m_oldBitmap;
243 WXHPEN m_oldPen;
244 WXHBRUSH m_oldBrush;
245 WXHFONT m_oldFont;
d275c7eb
VZ
246
247#if wxUSE_PALETTE
a23fd0e1 248 WXHPALETTE m_oldPalette;
d275c7eb 249#endif // wxUSE_PALETTE
7561aacd 250
0cbff120
JS
251#if wxUSE_DC_CACHEING
252 static wxList sm_bitmapCache;
253 static wxList sm_dcCache;
254#endif
255
7561aacd 256 DECLARE_DYNAMIC_CLASS(wxDC)
22f3361e 257 DECLARE_NO_COPY_CLASS(wxDC)
7561aacd
VZ
258};
259
260// ----------------------------------------------------------------------------
77ffb593 261// wxDCTemp: a wxDC which doesn't free the given HDC (used by wxWidgets
7561aacd
VZ
262// only/mainly)
263// ----------------------------------------------------------------------------
264
265class WXDLLEXPORT wxDCTemp : public wxDC
266{
267public:
268 wxDCTemp(WXHDC hdc) { SetHDC(hdc); }
269 virtual ~wxDCTemp() { SetHDC((WXHDC)NULL); }
fc7a2a60
VZ
270
271private:
272 DECLARE_NO_COPY_CLASS(wxDCTemp)
2bda0e17
KB
273};
274
2bda0e17 275#endif
bbcdf8bc 276 // _WX_DC_H_