]> git.saurik.com Git - wxWidgets.git/blame - include/wx/msw/dc.h
added wxSYS_COLOUR_LISTBOX
[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
26// Logical to device
27// Absolute
28#define XLOG2DEV(x) (x)
29#define YLOG2DEV(y) (y)
30
31// Relative
32#define XLOG2DEVREL(x) (x)
33#define YLOG2DEVREL(y) (y)
34
35// Device to logical
36// Absolute
37#define XDEV2LOG(x) (x)
38
39#define YDEV2LOG(y) (y)
40
41// Relative
42#define XDEV2LOGREL(x) (x)
43#define YDEV2LOGREL(y) (y)
44
45/*
46 * Have the same macros as for XView but not for every operation:
47 * just for calculating window/viewport extent (a better way of scaling).
48 */
49
50// Logical to device
51// Absolute
52#define MS_XLOG2DEV(x) LogicalToDevice(x)
53
54#define MS_YLOG2DEV(y) LogicalToDevice(y)
55
56// Relative
57#define MS_XLOG2DEVREL(x) LogicalToDeviceXRel(x)
58#define MS_YLOG2DEVREL(y) LogicalToDeviceYRel(y)
59
60// Device to logical
61// Absolute
62#define MS_XDEV2LOG(x) DeviceToLogicalX(x)
63
64#define MS_YDEV2LOG(y) DeviceToLogicalY(y)
65
66// Relative
67#define MS_XDEV2LOGREL(x) DeviceToLogicalXRel(x)
68#define MS_YDEV2LOGREL(y) DeviceToLogicalYRel(y)
69
70#define YSCALE(y) (yorigin - (y))
71
72#define wx_round(a) (int)((a)+.5)
73
a23fd0e1 74class WXDLLEXPORT wxDC : public wxDCBase
2bda0e17 75{
a23fd0e1
VZ
76 DECLARE_DYNAMIC_CLASS(wxDC)
77
2bda0e17 78public:
a23fd0e1
VZ
79 wxDC();
80 ~wxDC();
81
82 // implement base class pure virtuals
83 // ----------------------------------
84
85 virtual void Clear();
86
87 virtual bool StartDoc(const wxString& message);
88 virtual void EndDoc();
89
90 virtual void StartPage();
91 virtual void EndPage();
92
93 virtual void SetFont(const wxFont& font);
94 virtual void SetPen(const wxPen& pen);
95 virtual void SetBrush(const wxBrush& brush);
96 virtual void SetBackground(const wxBrush& brush);
97 virtual void SetBackgroundMode(int mode);
98 virtual void SetPalette(const wxPalette& palette);
99
100 virtual void DestroyClippingRegion();
101
72cdf4c9
VZ
102 virtual wxCoord GetCharHeight() const;
103 virtual wxCoord GetCharWidth() const;
104 virtual void DoGetTextExtent(const wxString& string,
105 wxCoord *x, wxCoord *y,
106 wxCoord *descent = NULL,
107 wxCoord *externalLeading = NULL,
108 wxFont *theFont = NULL) const;
a23fd0e1
VZ
109
110 virtual bool CanDrawBitmap() const;
111 virtual bool CanGetTextExtent() const;
112 virtual int GetDepth() const;
113 virtual wxSize GetPPI() const;
114
115 virtual void SetMapMode(int mode);
116 virtual void SetUserScale(double x, double y);
117 virtual void SetSystemScale(double x, double y);
118 virtual void SetLogicalScale(double x, double y);
72cdf4c9
VZ
119 virtual void SetLogicalOrigin(wxCoord x, wxCoord y);
120 virtual void SetDeviceOrigin(wxCoord x, wxCoord y);
a23fd0e1
VZ
121 virtual void SetAxisOrientation(bool xLeftRight, bool yBottomUp);
122 virtual void SetLogicalFunction(int function);
123
124 // implementation from now on
125 // --------------------------
126
127 virtual void SetRop(WXHDC cdc);
128 virtual void DoClipping(WXHDC cdc);
129 virtual void SelectOldObjects(WXHDC dc);
130
131 wxWindow *GetWindow() const { return m_canvas; }
132 void SetWindow(wxWindow *win) { m_canvas = win; }
133
134 WXHDC GetHDC() const { return m_hDC; }
135 void SetHDC(WXHDC dc, bool bOwnsDC = FALSE)
136 {
137 m_hDC = dc;
138 m_bOwnsDC = bOwnsDC;
139 }
2bda0e17 140
4b7f2165
VZ
141 const wxBitmap& GetSelectedBitmap() const { return m_selectedBitmap; }
142 wxBitmap& GetSelectedBitmap() { return m_selectedBitmap; }
143
a23fd0e1 144protected:
72cdf4c9 145 virtual void DoFloodFill(wxCoord x, wxCoord y, const wxColour& col,
a23fd0e1
VZ
146 int style = wxFLOOD_SURFACE);
147
72cdf4c9 148 virtual bool DoGetPixel(wxCoord x, wxCoord y, wxColour *col) const;
a23fd0e1 149
72cdf4c9
VZ
150 virtual void DoDrawPoint(wxCoord x, wxCoord y);
151 virtual void DoDrawLine(wxCoord x1, wxCoord y1, wxCoord x2, wxCoord y2);
a23fd0e1 152
72cdf4c9
VZ
153 virtual void DoDrawArc(wxCoord x1, wxCoord y1,
154 wxCoord x2, wxCoord y2,
155 wxCoord xc, wxCoord yc);
156 virtual void DoDrawEllipticArc(wxCoord x, wxCoord y, wxCoord w, wxCoord h,
a23fd0e1
VZ
157 double sa, double ea);
158
72cdf4c9
VZ
159 virtual void DoDrawRectangle(wxCoord x, wxCoord y, wxCoord width, wxCoord height);
160 virtual void DoDrawRoundedRectangle(wxCoord x, wxCoord y,
161 wxCoord width, wxCoord height,
a23fd0e1 162 double radius);
72cdf4c9 163 virtual void DoDrawEllipse(wxCoord x, wxCoord y, wxCoord width, wxCoord height);
a23fd0e1 164
72cdf4c9 165 virtual void DoCrossHair(wxCoord x, wxCoord y);
a23fd0e1 166
72cdf4c9
VZ
167 virtual void DoDrawIcon(const wxIcon& icon, wxCoord x, wxCoord y);
168 virtual void DoDrawBitmap(const wxBitmap &bmp, wxCoord x, wxCoord y,
a23fd0e1
VZ
169 bool useMask = FALSE);
170
72cdf4c9 171 virtual void DoDrawText(const wxString& text, wxCoord x, wxCoord y);
95724b1a
VZ
172 virtual void DoDrawRotatedText(const wxString& text, wxCoord x, wxCoord y,
173 double angle);
a23fd0e1 174
72cdf4c9
VZ
175 virtual bool DoBlit(wxCoord xdest, wxCoord ydest, wxCoord width, wxCoord height,
176 wxDC *source, wxCoord xsrc, wxCoord ysrc,
a23fd0e1
VZ
177 int rop = wxCOPY, bool useMask = FALSE);
178
179 // this is gnarly - we can't even call this function DoSetClippingRegion()
180 // because of virtual function hiding
181 virtual void DoSetClippingRegionAsRegion(const wxRegion& region);
72cdf4c9
VZ
182 virtual void DoSetClippingRegion(wxCoord x, wxCoord y,
183 wxCoord width, wxCoord height);
184 virtual void DoGetClippingRegion(wxCoord *x, wxCoord *y,
185 wxCoord *width, wxCoord *height)
a23fd0e1
VZ
186 {
187 GetClippingBox(x, y, width, height);
188 }
189
190 virtual void DoGetSize(int *width, int *height) const;
191 virtual void DoGetSizeMM(int* width, int* height) const;
192
193 virtual void DoDrawLines(int n, wxPoint points[],
72cdf4c9 194 wxCoord xoffset, wxCoord yoffset);
a23fd0e1 195 virtual void DoDrawPolygon(int n, wxPoint points[],
72cdf4c9 196 wxCoord xoffset, wxCoord yoffset,
a23fd0e1 197 int fillStyle = wxODDEVEN_RULE);
6a6c0a8b 198
47d67540 199#if wxUSE_SPLINES
a23fd0e1
VZ
200 virtual void DoDrawSpline(wxList *points);
201#endif // wxUSE_SPLINES
202
4314ec48
VZ
203 // common part of DoDrawText() and DoDrawRotatedText()
204 void DrawAnyText(const wxString& text, wxCoord x, wxCoord y);
205
a23fd0e1
VZ
206 // MSW-specific member variables
207 int m_windowExtX;
208 int m_windowExtY;
209
210 // the window associated with this DC (may be NULL)
211 wxWindow *m_canvas;
212
213 wxBitmap m_selectedBitmap;
214
215 // TRUE => DeleteDC() in dtor, FALSE => only ReleaseDC() it
216 bool m_bOwnsDC:1;
217
218 // our HDC and its usage count: we only free it when the usage count drops
219 // to 0
220 WXHDC m_hDC;
221 int m_hDCCount;
222
223 // Store all old GDI objects when do a SelectObject, so we can select them
224 // back in (this unselecting user's objects) so we can safely delete the
225 // DC.
226 WXHBITMAP m_oldBitmap;
227 WXHPEN m_oldPen;
228 WXHBRUSH m_oldBrush;
229 WXHFONT m_oldFont;
230 WXHPALETTE m_oldPalette;
2bda0e17
KB
231};
232
2bda0e17 233#endif
bbcdf8bc 234 // _WX_DC_H_