]> git.saurik.com Git - wxWidgets.git/blame_incremental - include/wx/dcgraph.h
Fix wrong tab order in wxAuiNotebook after dragging.
[wxWidgets.git] / include / wx / dcgraph.h
... / ...
CommitLineData
1/////////////////////////////////////////////////////////////////////////////
2// Name: wx/dcgraph.h
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
17#include "wx/dc.h"
18#include "wx/geometry.h"
19#include "wx/graphics.h"
20
21class WXDLLIMPEXP_FWD_CORE wxWindowDC;
22
23
24class WXDLLIMPEXP_CORE wxGCDC: public wxDC
25{
26public:
27 wxGCDC( const wxWindowDC& dc );
28 wxGCDC( const wxMemoryDC& dc );
29#if wxUSE_PRINTING_ARCHITECTURE
30 wxGCDC( const wxPrinterDC& dc );
31#endif
32#if defined(__WXMSW__) && wxUSE_ENH_METAFILE
33 wxGCDC( const wxEnhMetaFileDC& dc );
34#endif
35 wxGCDC(wxGraphicsContext* context);
36
37 wxGCDC();
38 virtual ~wxGCDC();
39
40 wxGraphicsContext* GetGraphicsContext() const;
41 void SetGraphicsContext( wxGraphicsContext* ctx );
42
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
50private:
51 DECLARE_DYNAMIC_CLASS(wxGCDC)
52 wxDECLARE_NO_COPY_CLASS(wxGCDC);
53};
54
55
56class WXDLLIMPEXP_CORE wxGCDCImpl: public wxDCImpl
57{
58public:
59 wxGCDCImpl( wxDC *owner, const wxWindowDC& dc );
60 wxGCDCImpl( wxDC *owner, const wxMemoryDC& dc );
61#if wxUSE_PRINTING_ARCHITECTURE
62 wxGCDCImpl( wxDC *owner, const wxPrinterDC& dc );
63#endif
64#if defined(__WXMSW__) && wxUSE_ENH_METAFILE
65 wxGCDCImpl( wxDC *owner, const wxEnhMetaFileDC& dc );
66#endif
67 wxGCDCImpl( wxDC *owner );
68
69 virtual ~wxGCDCImpl();
70
71 // implement base class pure virtuals
72 // ----------------------------------
73
74 virtual void Clear();
75
76 virtual bool StartDoc( const wxString& message );
77 virtual void EndDoc();
78
79 virtual void StartPage();
80 virtual void EndPage();
81
82 // flushing the content of this dc immediately onto screen
83 virtual void Flush();
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
102 virtual void SetLogicalFunction(wxRasterOperationMode function);
103
104 virtual void SetTextForeground(const wxColour& colour);
105 virtual void SetTextBackground(const wxColour& colour);
106
107 virtual void ComputeScaleAndOrigin();
108
109 wxGraphicsContext* GetGraphicsContext() const { return m_graphicContext; }
110 virtual void SetGraphicsContext( wxGraphicsContext* ctx );
111
112 virtual void* GetHandle() const;
113
114 // the true implementations
115 virtual bool DoFloodFill(wxCoord x, wxCoord y, const wxColour& col,
116 wxFloodFillStyle style = wxFLOOD_SURFACE);
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
133 virtual void DoDrawSpline(const wxPointList *points);
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,
165 wxDC *source, wxCoord xsrc, wxCoord ysrc,
166 wxRasterOperationMode rop = wxCOPY, bool useMask = false,
167 wxCoord xsrcMask = -1, wxCoord ysrcMask = -1);
168
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,
174 wxRasterOperationMode = wxCOPY, bool useMask = false,
175 wxCoord xsrcMask = wxDefaultCoord, wxCoord ysrcMask = wxDefaultCoord);
176
177 virtual void DoGetSize(int *,int *) const;
178 virtual void DoGetSizeMM(int* width, int* height) const;
179
180 virtual void DoDrawLines(int n, wxPoint points[],
181 wxCoord xoffset, wxCoord yoffset);
182 virtual void DoDrawPolygon(int n, wxPoint points[],
183 wxCoord xoffset, wxCoord yoffset,
184 wxPolygonFillMode fillStyle = wxODDEVEN_RULE);
185 virtual void DoDrawPolyPolygon(int n, int count[], wxPoint points[],
186 wxCoord xoffset, wxCoord yoffset,
187 wxPolygonFillMode fillStyle);
188
189 virtual void DoSetDeviceClippingRegion(const wxRegion& region);
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,
197 const wxFont *theFont = NULL) const;
198
199 virtual bool DoGetPartialTextExtents(const wxString& text, wxArrayInt& widths) const;
200
201#ifdef __WXMSW__
202 virtual wxRect MSWApplyGDIPlusTransform(const wxRect& r) const;
203#endif // __WXMSW__
204
205protected:
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
210 // scaling variables
211 bool m_logicalFunctionSupported;
212 wxGraphicsMatrix m_matrixOriginal;
213 wxGraphicsMatrix m_matrixCurrent;
214
215 double m_formerScaleX, m_formerScaleY;
216
217 wxGraphicsContext* m_graphicContext;
218
219private:
220 void Init(wxGraphicsContext*);
221
222 DECLARE_CLASS(wxGCDCImpl)
223 wxDECLARE_NO_COPY_CLASS(wxGCDCImpl);
224};
225
226#endif // wxUSE_GRAPHICS_CONTEXT
227#endif // _WX_GRAPHICS_DC_H_