]> git.saurik.com Git - wxWidgets.git/blame - include/wx/msw/dc.h
added wxCOMPILE_TIME_ASSERT2() macro allowing to give the unique name to the struct...
[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
a23fd0e1 9// Licence: wxWindows licence
2bda0e17
KB
10/////////////////////////////////////////////////////////////////////////////
11
bbcdf8bc
JS
12#ifndef _WX_DC_H_
13#define _WX_DC_H_
2bda0e17
KB
14
15#ifdef __GNUG__
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;
a23fd0e1
VZ
83
84 virtual bool CanDrawBitmap() const;
85 virtual bool CanGetTextExtent() const;
86 virtual int GetDepth() const;
87 virtual wxSize GetPPI() const;
88
89 virtual void SetMapMode(int mode);
90 virtual void SetUserScale(double x, double y);
91 virtual void SetSystemScale(double x, double y);
92 virtual void SetLogicalScale(double x, double y);
72cdf4c9
VZ
93 virtual void SetLogicalOrigin(wxCoord x, wxCoord y);
94 virtual void SetDeviceOrigin(wxCoord x, wxCoord y);
a23fd0e1
VZ
95 virtual void SetAxisOrientation(bool xLeftRight, bool yBottomUp);
96 virtual void SetLogicalFunction(int function);
97
98 // implementation from now on
99 // --------------------------
100
101 virtual void SetRop(WXHDC cdc);
a23fd0e1
VZ
102 virtual void SelectOldObjects(WXHDC dc);
103
104 wxWindow *GetWindow() const { return m_canvas; }
105 void SetWindow(wxWindow *win) { m_canvas = win; }
106
107 WXHDC GetHDC() const { return m_hDC; }
108 void SetHDC(WXHDC dc, bool bOwnsDC = FALSE)
109 {
110 m_hDC = dc;
111 m_bOwnsDC = bOwnsDC;
112 }
2bda0e17 113
4b7f2165
VZ
114 const wxBitmap& GetSelectedBitmap() const { return m_selectedBitmap; }
115 wxBitmap& GetSelectedBitmap() { return m_selectedBitmap; }
116
1e6feb95
VZ
117 // update the internal clip box variables
118 void UpdateClipBox();
119
0cbff120
JS
120#if wxUSE_DC_CACHEING
121 static wxDCCacheEntry* FindBitmapInCache(WXHDC hDC, int w, int h);
122 static wxDCCacheEntry* FindDCInCache(wxDCCacheEntry* notThis, WXHDC hDC);
123
124 static void AddToBitmapCache(wxDCCacheEntry* entry);
125 static void AddToDCCache(wxDCCacheEntry* entry);
126 static void ClearCache();
127#endif
128
a23fd0e1 129protected:
72cdf4c9 130 virtual void DoFloodFill(wxCoord x, wxCoord y, const wxColour& col,
a23fd0e1
VZ
131 int style = wxFLOOD_SURFACE);
132
72cdf4c9 133 virtual bool DoGetPixel(wxCoord x, wxCoord y, wxColour *col) const;
a23fd0e1 134
72cdf4c9
VZ
135 virtual void DoDrawPoint(wxCoord x, wxCoord y);
136 virtual void DoDrawLine(wxCoord x1, wxCoord y1, wxCoord x2, wxCoord y2);
a23fd0e1 137
72cdf4c9
VZ
138 virtual void DoDrawArc(wxCoord x1, wxCoord y1,
139 wxCoord x2, wxCoord y2,
140 wxCoord xc, wxCoord yc);
cd9da200
VZ
141 virtual void DoDrawCheckMark(wxCoord x, wxCoord y,
142 wxCoord width, wxCoord height);
72cdf4c9 143 virtual void DoDrawEllipticArc(wxCoord x, wxCoord y, wxCoord w, wxCoord h,
a23fd0e1
VZ
144 double sa, double ea);
145
72cdf4c9
VZ
146 virtual void DoDrawRectangle(wxCoord x, wxCoord y, wxCoord width, wxCoord height);
147 virtual void DoDrawRoundedRectangle(wxCoord x, wxCoord y,
148 wxCoord width, wxCoord height,
a23fd0e1 149 double radius);
72cdf4c9 150 virtual void DoDrawEllipse(wxCoord x, wxCoord y, wxCoord width, wxCoord height);
a23fd0e1 151
72cdf4c9 152 virtual void DoCrossHair(wxCoord x, wxCoord y);
a23fd0e1 153
72cdf4c9
VZ
154 virtual void DoDrawIcon(const wxIcon& icon, wxCoord x, wxCoord y);
155 virtual void DoDrawBitmap(const wxBitmap &bmp, wxCoord x, wxCoord y,
a23fd0e1
VZ
156 bool useMask = FALSE);
157
72cdf4c9 158 virtual void DoDrawText(const wxString& text, wxCoord x, wxCoord y);
95724b1a
VZ
159 virtual void DoDrawRotatedText(const wxString& text, wxCoord x, wxCoord y,
160 double angle);
a23fd0e1 161
72cdf4c9
VZ
162 virtual bool DoBlit(wxCoord xdest, wxCoord ydest, wxCoord width, wxCoord height,
163 wxDC *source, wxCoord xsrc, wxCoord ysrc,
0cbff120 164 int rop = wxCOPY, bool useMask = FALSE, wxCoord xsrcMask = -1, wxCoord ysrcMask = -1);
a23fd0e1
VZ
165
166 // this is gnarly - we can't even call this function DoSetClippingRegion()
167 // because of virtual function hiding
168 virtual void DoSetClippingRegionAsRegion(const wxRegion& region);
72cdf4c9
VZ
169 virtual void DoSetClippingRegion(wxCoord x, wxCoord y,
170 wxCoord width, wxCoord height);
171 virtual void DoGetClippingRegion(wxCoord *x, wxCoord *y,
172 wxCoord *width, wxCoord *height)
a23fd0e1
VZ
173 {
174 GetClippingBox(x, y, width, height);
175 }
176
177 virtual void DoGetSize(int *width, int *height) const;
178 virtual void DoGetSizeMM(int* width, int* height) const;
179
180 virtual void DoDrawLines(int n, wxPoint points[],
72cdf4c9 181 wxCoord xoffset, wxCoord yoffset);
a23fd0e1 182 virtual void DoDrawPolygon(int n, wxPoint points[],
72cdf4c9 183 wxCoord xoffset, wxCoord yoffset,
a23fd0e1 184 int fillStyle = wxODDEVEN_RULE);
6a6c0a8b 185
a23fd0e1 186
4314ec48
VZ
187 // common part of DoDrawText() and DoDrawRotatedText()
188 void DrawAnyText(const wxString& text, wxCoord x, wxCoord y);
189
5230934a
VZ
190 // common part of DoSetClippingRegion() and DoSetClippingRegionAsRegion()
191 void SetClippingHrgn(WXHRGN hrgn);
192
a23fd0e1 193 // MSW-specific member variables
1e2081a1 194 // -----------------------------
a23fd0e1
VZ
195
196 // the window associated with this DC (may be NULL)
197 wxWindow *m_canvas;
198
199 wxBitmap m_selectedBitmap;
200
201 // TRUE => DeleteDC() in dtor, FALSE => only ReleaseDC() it
202 bool m_bOwnsDC:1;
203
b5badcb5 204 // our HDC
a23fd0e1 205 WXHDC m_hDC;
a23fd0e1
VZ
206
207 // Store all old GDI objects when do a SelectObject, so we can select them
208 // back in (this unselecting user's objects) so we can safely delete the
209 // DC.
210 WXHBITMAP m_oldBitmap;
211 WXHPEN m_oldPen;
212 WXHBRUSH m_oldBrush;
213 WXHFONT m_oldFont;
d275c7eb
VZ
214
215#if wxUSE_PALETTE
a23fd0e1 216 WXHPALETTE m_oldPalette;
d275c7eb 217#endif // wxUSE_PALETTE
7561aacd 218
0cbff120
JS
219#if wxUSE_DC_CACHEING
220 static wxList sm_bitmapCache;
221 static wxList sm_dcCache;
222#endif
223
7561aacd
VZ
224 DECLARE_DYNAMIC_CLASS(wxDC)
225};
226
227// ----------------------------------------------------------------------------
228// wxDCTemp: a wxDC which doesn't free the given HDC (used by wxWindows
229// only/mainly)
230// ----------------------------------------------------------------------------
231
232class WXDLLEXPORT wxDCTemp : public wxDC
233{
234public:
235 wxDCTemp(WXHDC hdc) { SetHDC(hdc); }
236 virtual ~wxDCTemp() { SetHDC((WXHDC)NULL); }
2bda0e17
KB
237};
238
2bda0e17 239#endif
bbcdf8bc 240 // _WX_DC_H_