]>
Commit | Line | Data |
---|---|---|
8acd14d1 | 1 | ///////////////////////////////////////////////////////////////////////////// |
80fdcdb9 | 2 | // Name: wx/dcgraph.h |
8acd14d1 SC |
3 | // Purpose: graphics context device bridge header |
4 | // Author: Stefan Csomor | |
5 | // Modified by: | |
6 | // Created: | |
7 | // Copyright: (c) Stefan Csomor | |
8 | // RCS-ID: $Id$ | |
9 | // Licence: wxWindows licence | |
10 | ///////////////////////////////////////////////////////////////////////////// | |
11 | ||
12 | #ifndef _WX_GRAPHICS_DC_H_ | |
13 | #define _WX_GRAPHICS_DC_H_ | |
14 | ||
15 | #if wxUSE_GRAPHICS_CONTEXT | |
16 | ||
11a0827d | 17 | #include "wx/dc.h" |
8acd14d1 | 18 | #include "wx/geometry.h" |
2b73854d | 19 | #include "wx/graphics.h" |
8acd14d1 | 20 | |
b5dbe15d | 21 | class WXDLLIMPEXP_FWD_CORE wxWindowDC; |
8acd14d1 | 22 | |
8acd14d1 | 23 | |
53a2db12 | 24 | class WXDLLIMPEXP_CORE wxGCDC: public wxDC |
8acd14d1 | 25 | { |
888dde65 RR |
26 | public: |
27 | wxGCDC( const wxWindowDC& dc ); | |
28 | wxGCDC( const wxMemoryDC& dc ); | |
220d37c8 | 29 | #if wxUSE_PRINTING_ARCHITECTURE |
b25c34aa | 30 | wxGCDC( const wxPrinterDC& dc ); |
2d770c4f VZ |
31 | #endif |
32 | #if defined(__WXMSW__) && wxUSE_ENH_METAFILE | |
33 | wxGCDC( const wxEnhMetaFileDC& dc ); | |
220d37c8 | 34 | #endif |
932d0768 RD |
35 | wxGCDC(wxGraphicsContext* context); |
36 | ||
888dde65 | 37 | wxGCDC(); |
4dd36d1d | 38 | virtual ~wxGCDC(); |
03647350 | 39 | |
6c0e710f | 40 | wxGraphicsContext* GetGraphicsContext() const; |
888dde65 | 41 | void SetGraphicsContext( wxGraphicsContext* ctx ); |
03647350 | 42 | |
942d5e2d VZ |
43 | #ifdef __WXMSW__ |
44 | // override wxDC virtual functions to provide access to HDC associated with | |
45 | // this Graphics object (implemented in src/msw/graphics.cpp) | |
46 | virtual WXHDC AcquireHDC(); | |
47 | virtual void ReleaseHDC(WXHDC hdc); | |
48 | #endif // __WXMSW__ | |
49 | ||
50 | private: | |
8acd14d1 | 51 | DECLARE_DYNAMIC_CLASS(wxGCDC) |
c0c133e1 | 52 | wxDECLARE_NO_COPY_CLASS(wxGCDC); |
888dde65 | 53 | }; |
8acd14d1 | 54 | |
888dde65 | 55 | |
53a2db12 | 56 | class WXDLLIMPEXP_CORE wxGCDCImpl: public wxDCImpl |
888dde65 | 57 | { |
8acd14d1 | 58 | public: |
888dde65 RR |
59 | wxGCDCImpl( wxDC *owner, const wxWindowDC& dc ); |
60 | wxGCDCImpl( wxDC *owner, const wxMemoryDC& dc ); | |
220d37c8 | 61 | #if wxUSE_PRINTING_ARCHITECTURE |
b25c34aa | 62 | wxGCDCImpl( wxDC *owner, const wxPrinterDC& dc ); |
2d770c4f VZ |
63 | #endif |
64 | #if defined(__WXMSW__) && wxUSE_ENH_METAFILE | |
65 | wxGCDCImpl( wxDC *owner, const wxEnhMetaFileDC& dc ); | |
220d37c8 | 66 | #endif |
888dde65 | 67 | wxGCDCImpl( wxDC *owner ); |
03647350 | 68 | |
888dde65 | 69 | virtual ~wxGCDCImpl(); |
8acd14d1 | 70 | |
8acd14d1 SC |
71 | // implement base class pure virtuals |
72 | // ---------------------------------- | |
73 | ||
74 | virtual void Clear(); | |
75 | ||
cc18b1c7 SC |
76 | virtual bool StartDoc( const wxString& message ); |
77 | virtual void EndDoc(); | |
78 | ||
79 | virtual void StartPage(); | |
80 | virtual void EndPage(); | |
03647350 | 81 | |
cc18b1c7 SC |
82 | // flushing the content of this dc immediately onto screen |
83 | virtual void Flush(); | |
8acd14d1 SC |
84 | |
85 | virtual void SetFont(const wxFont& font); | |
86 | virtual void SetPen(const wxPen& pen); | |
87 | virtual void SetBrush(const wxBrush& brush); | |
88 | virtual void SetBackground(const wxBrush& brush); | |
89 | virtual void SetBackgroundMode(int mode); | |
90 | virtual void SetPalette(const wxPalette& palette); | |
91 | ||
92 | virtual void DestroyClippingRegion(); | |
93 | ||
94 | virtual wxCoord GetCharHeight() const; | |
95 | virtual wxCoord GetCharWidth() const; | |
96 | ||
97 | virtual bool CanDrawBitmap() const; | |
98 | virtual bool CanGetTextExtent() const; | |
99 | virtual int GetDepth() const; | |
100 | virtual wxSize GetPPI() const; | |
101 | ||
89efaf2b | 102 | virtual void SetLogicalFunction(wxRasterOperationMode function); |
8acd14d1 SC |
103 | |
104 | virtual void SetTextForeground(const wxColour& colour); | |
105 | virtual void SetTextBackground(const wxColour& colour); | |
106 | ||
107 | virtual void ComputeScaleAndOrigin(); | |
108 | ||
6c0e710f | 109 | wxGraphicsContext* GetGraphicsContext() const { return m_graphicContext; } |
b687dd2f | 110 | virtual void SetGraphicsContext( wxGraphicsContext* ctx ); |
03647350 | 111 | |
9eefb5c1 RD |
112 | virtual void* GetHandle() const; |
113 | ||
8acd14d1 SC |
114 | // the true implementations |
115 | virtual bool DoFloodFill(wxCoord x, wxCoord y, const wxColour& col, | |
89efaf2b | 116 | wxFloodFillStyle style = wxFLOOD_SURFACE); |
8acd14d1 SC |
117 | |
118 | virtual void DoGradientFillLinear(const wxRect& rect, | |
119 | const wxColour& initialColour, | |
120 | const wxColour& destColour, | |
121 | wxDirection nDirection = wxEAST); | |
122 | ||
123 | virtual void DoGradientFillConcentric(const wxRect& rect, | |
124 | const wxColour& initialColour, | |
125 | const wxColour& destColour, | |
126 | const wxPoint& circleCenter); | |
127 | ||
128 | virtual bool DoGetPixel(wxCoord x, wxCoord y, wxColour *col) const; | |
129 | ||
130 | virtual void DoDrawPoint(wxCoord x, wxCoord y); | |
131 | ||
132 | #if wxUSE_SPLINES | |
b0d7707b | 133 | virtual void DoDrawSpline(const wxPointList *points); |
8acd14d1 SC |
134 | #endif |
135 | ||
136 | virtual void DoDrawLine(wxCoord x1, wxCoord y1, wxCoord x2, wxCoord y2); | |
137 | ||
138 | virtual void DoDrawArc(wxCoord x1, wxCoord y1, | |
139 | wxCoord x2, wxCoord y2, | |
140 | wxCoord xc, wxCoord yc); | |
141 | ||
142 | virtual void DoDrawCheckMark(wxCoord x, wxCoord y, | |
143 | wxCoord width, wxCoord height); | |
144 | ||
145 | virtual void DoDrawEllipticArc(wxCoord x, wxCoord y, wxCoord w, wxCoord h, | |
146 | double sa, double ea); | |
147 | ||
148 | virtual void DoDrawRectangle(wxCoord x, wxCoord y, wxCoord width, wxCoord height); | |
149 | virtual void DoDrawRoundedRectangle(wxCoord x, wxCoord y, | |
150 | wxCoord width, wxCoord height, | |
151 | double radius); | |
152 | virtual void DoDrawEllipse(wxCoord x, wxCoord y, wxCoord width, wxCoord height); | |
153 | ||
154 | virtual void DoCrossHair(wxCoord x, wxCoord y); | |
155 | ||
156 | virtual void DoDrawIcon(const wxIcon& icon, wxCoord x, wxCoord y); | |
157 | virtual void DoDrawBitmap(const wxBitmap &bmp, wxCoord x, wxCoord y, | |
158 | bool useMask = false); | |
159 | ||
160 | virtual void DoDrawText(const wxString& text, wxCoord x, wxCoord y); | |
161 | virtual void DoDrawRotatedText(const wxString& text, wxCoord x, wxCoord y, | |
162 | double angle); | |
163 | ||
164 | virtual bool DoBlit(wxCoord xdest, wxCoord ydest, wxCoord width, wxCoord height, | |
89efaf2b | 165 | wxDC *source, wxCoord xsrc, wxCoord ysrc, |
03647350 | 166 | wxRasterOperationMode rop = wxCOPY, bool useMask = false, |
89efaf2b | 167 | wxCoord xsrcMask = -1, wxCoord ysrcMask = -1); |
8acd14d1 | 168 | |
e3b81044 VZ |
169 | virtual bool DoStretchBlit(wxCoord xdest, wxCoord ydest, |
170 | wxCoord dstWidth, wxCoord dstHeight, | |
171 | wxDC *source, | |
172 | wxCoord xsrc, wxCoord ysrc, | |
173 | wxCoord srcWidth, wxCoord srcHeight, | |
89efaf2b | 174 | wxRasterOperationMode = wxCOPY, bool useMask = false, |
e3b81044 VZ |
175 | wxCoord xsrcMask = wxDefaultCoord, wxCoord ysrcMask = wxDefaultCoord); |
176 | ||
8acd14d1 SC |
177 | virtual void DoGetSize(int *,int *) const; |
178 | virtual void DoGetSizeMM(int* width, int* height) const; | |
179 | ||
4787c92d | 180 | virtual void DoDrawLines(int n, const wxPoint points[], |
8acd14d1 | 181 | wxCoord xoffset, wxCoord yoffset); |
4787c92d | 182 | virtual void DoDrawPolygon(int n, const wxPoint points[], |
89efaf2b FM |
183 | wxCoord xoffset, wxCoord yoffset, |
184 | wxPolygonFillMode fillStyle = wxODDEVEN_RULE); | |
4787c92d | 185 | virtual void DoDrawPolyPolygon(int n, const int count[], const wxPoint points[], |
89efaf2b FM |
186 | wxCoord xoffset, wxCoord yoffset, |
187 | wxPolygonFillMode fillStyle); | |
8acd14d1 | 188 | |
fdaad94e | 189 | virtual void DoSetDeviceClippingRegion(const wxRegion& region); |
8acd14d1 SC |
190 | virtual void DoSetClippingRegion(wxCoord x, wxCoord y, |
191 | wxCoord width, wxCoord height); | |
192 | ||
193 | virtual void DoGetTextExtent(const wxString& string, | |
194 | wxCoord *x, wxCoord *y, | |
195 | wxCoord *descent = NULL, | |
196 | wxCoord *externalLeading = NULL, | |
c94f845b | 197 | const wxFont *theFont = NULL) const; |
8acd14d1 SC |
198 | |
199 | virtual bool DoGetPartialTextExtents(const wxString& text, wxArrayInt& widths) const; | |
200 | ||
53d4bdbc VZ |
201 | #ifdef __WXMSW__ |
202 | virtual wxRect MSWApplyGDIPlusTransform(const wxRect& r) const; | |
203 | #endif // __WXMSW__ | |
204 | ||
8acd14d1 | 205 | protected: |
f30b9eed PC |
206 | // unused int parameter distinguishes this version, which does not create a |
207 | // wxGraphicsContext, in the expectation that the derived class will do it | |
208 | wxGCDCImpl(wxDC* owner, int); | |
209 | ||
8acd14d1 | 210 | // scaling variables |
4280b879 | 211 | bool m_logicalFunctionSupported; |
2b73854d SC |
212 | wxGraphicsMatrix m_matrixOriginal; |
213 | wxGraphicsMatrix m_matrixCurrent; | |
b687dd2f PC |
214 | |
215 | double m_formerScaleX, m_formerScaleY; | |
8acd14d1 SC |
216 | |
217 | wxGraphicsContext* m_graphicContext; | |
03647350 | 218 | |
e7042ce7 PC |
219 | private: |
220 | void Init(wxGraphicsContext*); | |
221 | ||
888dde65 | 222 | DECLARE_CLASS(wxGCDCImpl) |
c0c133e1 | 223 | wxDECLARE_NO_COPY_CLASS(wxGCDCImpl); |
8acd14d1 SC |
224 | }; |
225 | ||
512cfcc3 | 226 | #endif // wxUSE_GRAPHICS_CONTEXT |
8acd14d1 | 227 | #endif // _WX_GRAPHICS_DC_H_ |