]>
Commit | Line | Data |
---|---|---|
1 | ///////////////////////////////////////////////////////////////////////////// | |
2 | // Name: src/common/graphcmn.cpp | |
3 | // Purpose: graphics context methods common to all platforms | |
4 | // Author: Stefan Csomor | |
5 | // Modified by: | |
6 | // Created: | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) Stefan Csomor | |
9 | // Licence: wxWindows licence | |
10 | ///////////////////////////////////////////////////////////////////////////// | |
11 | ||
12 | // For compilers that support precompilation, includes "wx.h". | |
13 | #include "wx/wxprec.h" | |
14 | ||
15 | #if defined(__BORLANDC__) | |
16 | #pragma hdrstop | |
17 | #endif | |
18 | ||
19 | #if wxUSE_GRAPHICS_CONTEXT | |
20 | ||
21 | #include "wx/graphics.h" | |
22 | ||
23 | #ifndef WX_PRECOMP | |
24 | #include "wx/icon.h" | |
25 | #include "wx/bitmap.h" | |
26 | #include "wx/dcmemory.h" | |
27 | #include "wx/region.h" | |
28 | #include "wx/log.h" | |
29 | #endif | |
30 | ||
31 | #include "wx/private/graphics.h" | |
32 | ||
33 | //----------------------------------------------------------------------------- | |
34 | // Local functions | |
35 | //----------------------------------------------------------------------------- | |
36 | ||
37 | static inline double DegToRad(double deg) | |
38 | { | |
39 | return (deg * M_PI) / 180.0; | |
40 | } | |
41 | ||
42 | //----------------------------------------------------------------------------- | |
43 | ||
44 | //----------------------------------------------------------------------------- | |
45 | // wxGraphicsObject | |
46 | //----------------------------------------------------------------------------- | |
47 | ||
48 | IMPLEMENT_DYNAMIC_CLASS(wxGraphicsObject, wxObject) | |
49 | ||
50 | wxGraphicsObjectRefData::wxGraphicsObjectRefData( wxGraphicsRenderer* renderer ) | |
51 | { | |
52 | m_renderer = renderer; | |
53 | } | |
54 | wxGraphicsObjectRefData::wxGraphicsObjectRefData( const wxGraphicsObjectRefData* data ) | |
55 | { | |
56 | m_renderer = data->m_renderer; | |
57 | } | |
58 | wxGraphicsRenderer* wxGraphicsObjectRefData::GetRenderer() const | |
59 | { | |
60 | return m_renderer ; | |
61 | } | |
62 | ||
63 | wxGraphicsObjectRefData* wxGraphicsObjectRefData::Clone() const | |
64 | { | |
65 | return new wxGraphicsObjectRefData(this); | |
66 | } | |
67 | ||
68 | wxGraphicsObject::wxGraphicsObject() | |
69 | { | |
70 | } | |
71 | ||
72 | wxGraphicsObject::wxGraphicsObject( wxGraphicsRenderer* renderer ) | |
73 | { | |
74 | SetRefData( new wxGraphicsObjectRefData(renderer)); | |
75 | } | |
76 | ||
77 | wxGraphicsObject::~wxGraphicsObject() | |
78 | { | |
79 | } | |
80 | ||
81 | bool wxGraphicsObject::IsNull() const | |
82 | { | |
83 | return m_refData == NULL; | |
84 | } | |
85 | ||
86 | wxGraphicsRenderer* wxGraphicsObject::GetRenderer() const | |
87 | { | |
88 | return ( IsNull() ? NULL : GetGraphicsData()->GetRenderer() ); | |
89 | } | |
90 | ||
91 | wxGraphicsObjectRefData* wxGraphicsObject::GetGraphicsData() const | |
92 | { | |
93 | return (wxGraphicsObjectRefData*) m_refData; | |
94 | } | |
95 | ||
96 | wxObjectRefData* wxGraphicsObject::CreateRefData() const | |
97 | { | |
98 | wxLogDebug(wxT("A Null Object cannot be changed")); | |
99 | return NULL; | |
100 | } | |
101 | ||
102 | wxObjectRefData* wxGraphicsObject::CloneRefData(const wxObjectRefData* data) const | |
103 | { | |
104 | const wxGraphicsObjectRefData* ptr = (const wxGraphicsObjectRefData*) data; | |
105 | return ptr->Clone(); | |
106 | } | |
107 | ||
108 | //----------------------------------------------------------------------------- | |
109 | // pens etc. | |
110 | //----------------------------------------------------------------------------- | |
111 | ||
112 | IMPLEMENT_DYNAMIC_CLASS(wxGraphicsPen, wxGraphicsObject) | |
113 | IMPLEMENT_DYNAMIC_CLASS(wxGraphicsBrush, wxGraphicsObject) | |
114 | IMPLEMENT_DYNAMIC_CLASS(wxGraphicsFont, wxGraphicsObject) | |
115 | IMPLEMENT_DYNAMIC_CLASS(wxGraphicsBitmap, wxGraphicsObject) | |
116 | ||
117 | WXDLLIMPEXP_DATA_CORE(wxGraphicsPen) wxNullGraphicsPen; | |
118 | WXDLLIMPEXP_DATA_CORE(wxGraphicsBrush) wxNullGraphicsBrush; | |
119 | WXDLLIMPEXP_DATA_CORE(wxGraphicsFont) wxNullGraphicsFont; | |
120 | WXDLLIMPEXP_DATA_CORE(wxGraphicsBitmap) wxNullGraphicsBitmap; | |
121 | ||
122 | //----------------------------------------------------------------------------- | |
123 | // matrix | |
124 | //----------------------------------------------------------------------------- | |
125 | ||
126 | IMPLEMENT_DYNAMIC_CLASS(wxGraphicsMatrix, wxGraphicsObject) | |
127 | WXDLLIMPEXP_DATA_CORE(wxGraphicsMatrix) wxNullGraphicsMatrix; | |
128 | ||
129 | // concatenates the matrix | |
130 | void wxGraphicsMatrix::Concat( const wxGraphicsMatrix *t ) | |
131 | { | |
132 | AllocExclusive(); | |
133 | GetMatrixData()->Concat(t->GetMatrixData()); | |
134 | } | |
135 | ||
136 | // sets the matrix to the respective values | |
137 | void wxGraphicsMatrix::Set(wxDouble a, wxDouble b, wxDouble c, wxDouble d, | |
138 | wxDouble tx, wxDouble ty) | |
139 | { | |
140 | AllocExclusive(); | |
141 | GetMatrixData()->Set(a,b,c,d,tx,ty); | |
142 | } | |
143 | ||
144 | // gets the component valuess of the matrix | |
145 | void wxGraphicsMatrix::Get(wxDouble* a, wxDouble* b, wxDouble* c, | |
146 | wxDouble* d, wxDouble* tx, wxDouble* ty) const | |
147 | { | |
148 | GetMatrixData()->Get(a, b, c, d, tx, ty); | |
149 | } | |
150 | ||
151 | // makes this the inverse matrix | |
152 | void wxGraphicsMatrix::Invert() | |
153 | { | |
154 | AllocExclusive(); | |
155 | GetMatrixData()->Invert(); | |
156 | } | |
157 | ||
158 | // returns true if the elements of the transformation matrix are equal ? | |
159 | bool wxGraphicsMatrix::IsEqual( const wxGraphicsMatrix* t) const | |
160 | { | |
161 | return GetMatrixData()->IsEqual(t->GetMatrixData()); | |
162 | } | |
163 | ||
164 | // return true if this is the identity matrix | |
165 | bool wxGraphicsMatrix::IsIdentity() const | |
166 | { | |
167 | return GetMatrixData()->IsIdentity(); | |
168 | } | |
169 | ||
170 | // add the translation to this matrix | |
171 | void wxGraphicsMatrix::Translate( wxDouble dx , wxDouble dy ) | |
172 | { | |
173 | AllocExclusive(); | |
174 | GetMatrixData()->Translate(dx,dy); | |
175 | } | |
176 | ||
177 | // add the scale to this matrix | |
178 | void wxGraphicsMatrix::Scale( wxDouble xScale , wxDouble yScale ) | |
179 | { | |
180 | AllocExclusive(); | |
181 | GetMatrixData()->Scale(xScale,yScale); | |
182 | } | |
183 | ||
184 | // add the rotation to this matrix (radians) | |
185 | void wxGraphicsMatrix::Rotate( wxDouble angle ) | |
186 | { | |
187 | AllocExclusive(); | |
188 | GetMatrixData()->Rotate(angle); | |
189 | } | |
190 | ||
191 | // | |
192 | // apply the transforms | |
193 | // | |
194 | ||
195 | // applies that matrix to the point | |
196 | void wxGraphicsMatrix::TransformPoint( wxDouble *x, wxDouble *y ) const | |
197 | { | |
198 | GetMatrixData()->TransformPoint(x,y); | |
199 | } | |
200 | ||
201 | // applies the matrix except for translations | |
202 | void wxGraphicsMatrix::TransformDistance( wxDouble *dx, wxDouble *dy ) const | |
203 | { | |
204 | GetMatrixData()->TransformDistance(dx,dy); | |
205 | } | |
206 | ||
207 | // returns the native representation | |
208 | void * wxGraphicsMatrix::GetNativeMatrix() const | |
209 | { | |
210 | return GetMatrixData()->GetNativeMatrix(); | |
211 | } | |
212 | ||
213 | //----------------------------------------------------------------------------- | |
214 | // path | |
215 | //----------------------------------------------------------------------------- | |
216 | ||
217 | IMPLEMENT_DYNAMIC_CLASS(wxGraphicsPath, wxGraphicsObject) | |
218 | WXDLLIMPEXP_DATA_CORE(wxGraphicsPath) wxNullGraphicsPath; | |
219 | ||
220 | // convenience functions, for using wxPoint2DDouble etc | |
221 | ||
222 | wxPoint2DDouble wxGraphicsPath::GetCurrentPoint() const | |
223 | { | |
224 | wxDouble x,y; | |
225 | GetCurrentPoint(&x,&y); | |
226 | return wxPoint2DDouble(x,y); | |
227 | } | |
228 | ||
229 | void wxGraphicsPath::MoveToPoint( const wxPoint2DDouble& p) | |
230 | { | |
231 | MoveToPoint( p.m_x , p.m_y); | |
232 | } | |
233 | ||
234 | void wxGraphicsPath::AddLineToPoint( const wxPoint2DDouble& p) | |
235 | { | |
236 | AddLineToPoint( p.m_x , p.m_y); | |
237 | } | |
238 | ||
239 | void wxGraphicsPath::AddCurveToPoint( const wxPoint2DDouble& c1, const wxPoint2DDouble& c2, const wxPoint2DDouble& e) | |
240 | { | |
241 | AddCurveToPoint(c1.m_x, c1.m_y, c2.m_x, c2.m_y, e.m_x, e.m_y); | |
242 | } | |
243 | ||
244 | void wxGraphicsPath::AddArc( const wxPoint2DDouble& c, wxDouble r, wxDouble startAngle, wxDouble endAngle, bool clockwise) | |
245 | { | |
246 | AddArc(c.m_x, c.m_y, r, startAngle, endAngle, clockwise); | |
247 | } | |
248 | ||
249 | wxRect2DDouble wxGraphicsPath::GetBox() const | |
250 | { | |
251 | wxDouble x,y,w,h; | |
252 | GetBox(&x,&y,&w,&h); | |
253 | return wxRect2DDouble( x,y,w,h ); | |
254 | } | |
255 | ||
256 | bool wxGraphicsPath::Contains( const wxPoint2DDouble& c, wxPolygonFillMode fillStyle ) const | |
257 | { | |
258 | return Contains( c.m_x, c.m_y, fillStyle); | |
259 | } | |
260 | ||
261 | // true redirections | |
262 | ||
263 | // begins a new subpath at (x,y) | |
264 | void wxGraphicsPath::MoveToPoint( wxDouble x, wxDouble y ) | |
265 | { | |
266 | AllocExclusive(); | |
267 | GetPathData()->MoveToPoint(x,y); | |
268 | } | |
269 | ||
270 | // adds a straight line from the current point to (x,y) | |
271 | void wxGraphicsPath::AddLineToPoint( wxDouble x, wxDouble y ) | |
272 | { | |
273 | AllocExclusive(); | |
274 | GetPathData()->AddLineToPoint(x,y); | |
275 | } | |
276 | ||
277 | // adds a cubic Bezier curve from the current point, using two control points and an end point | |
278 | void wxGraphicsPath::AddCurveToPoint( wxDouble cx1, wxDouble cy1, wxDouble cx2, wxDouble cy2, wxDouble x, wxDouble y ) | |
279 | { | |
280 | AllocExclusive(); | |
281 | GetPathData()->AddCurveToPoint(cx1,cy1,cx2,cy2,x,y); | |
282 | } | |
283 | ||
284 | // adds another path | |
285 | void wxGraphicsPath::AddPath( const wxGraphicsPath& path ) | |
286 | { | |
287 | AllocExclusive(); | |
288 | GetPathData()->AddPath(path.GetPathData()); | |
289 | } | |
290 | ||
291 | // closes the current sub-path | |
292 | void wxGraphicsPath::CloseSubpath() | |
293 | { | |
294 | AllocExclusive(); | |
295 | GetPathData()->CloseSubpath(); | |
296 | } | |
297 | ||
298 | // gets the last point of the current path, (0,0) if not yet set | |
299 | void wxGraphicsPath::GetCurrentPoint( wxDouble* x, wxDouble* y) const | |
300 | { | |
301 | GetPathData()->GetCurrentPoint(x,y); | |
302 | } | |
303 | ||
304 | // adds an arc of a circle centering at (x,y) with radius (r) from startAngle to endAngle | |
305 | void wxGraphicsPath::AddArc( wxDouble x, wxDouble y, wxDouble r, wxDouble startAngle, wxDouble endAngle, bool clockwise ) | |
306 | { | |
307 | AllocExclusive(); | |
308 | GetPathData()->AddArc(x,y,r,startAngle,endAngle,clockwise); | |
309 | } | |
310 | ||
311 | // | |
312 | // These are convenience functions which - if not available natively will be assembled | |
313 | // using the primitives from above | |
314 | // | |
315 | ||
316 | // adds a quadratic Bezier curve from the current point, using a control point and an end point | |
317 | void wxGraphicsPath::AddQuadCurveToPoint( wxDouble cx, wxDouble cy, wxDouble x, wxDouble y ) | |
318 | { | |
319 | AllocExclusive(); | |
320 | GetPathData()->AddQuadCurveToPoint(cx,cy,x,y); | |
321 | } | |
322 | ||
323 | // appends a rectangle as a new closed subpath | |
324 | void wxGraphicsPath::AddRectangle( wxDouble x, wxDouble y, wxDouble w, wxDouble h ) | |
325 | { | |
326 | AllocExclusive(); | |
327 | GetPathData()->AddRectangle(x,y,w,h); | |
328 | } | |
329 | ||
330 | // appends an ellipsis as a new closed subpath fitting the passed rectangle | |
331 | void wxGraphicsPath::AddCircle( wxDouble x, wxDouble y, wxDouble r ) | |
332 | { | |
333 | AllocExclusive(); | |
334 | GetPathData()->AddCircle(x,y,r); | |
335 | } | |
336 | ||
337 | // appends a an arc to two tangents connecting (current) to (x1,y1) and (x1,y1) to (x2,y2), also a straight line from (current) to (x1,y1) | |
338 | void wxGraphicsPath::AddArcToPoint( wxDouble x1, wxDouble y1 , wxDouble x2, wxDouble y2, wxDouble r ) | |
339 | { | |
340 | GetPathData()->AddArcToPoint(x1,y1,x2,y2,r); | |
341 | } | |
342 | ||
343 | // appends an ellipse | |
344 | void wxGraphicsPath::AddEllipse( wxDouble x, wxDouble y, wxDouble w, wxDouble h) | |
345 | { | |
346 | AllocExclusive(); | |
347 | GetPathData()->AddEllipse(x,y,w,h); | |
348 | } | |
349 | ||
350 | // appends a rounded rectangle | |
351 | void wxGraphicsPath::AddRoundedRectangle( wxDouble x, wxDouble y, wxDouble w, wxDouble h, wxDouble radius) | |
352 | { | |
353 | AllocExclusive(); | |
354 | GetPathData()->AddRoundedRectangle(x,y,w,h,radius); | |
355 | } | |
356 | ||
357 | // returns the native path | |
358 | void * wxGraphicsPath::GetNativePath() const | |
359 | { | |
360 | return GetPathData()->GetNativePath(); | |
361 | } | |
362 | ||
363 | // give the native path returned by GetNativePath() back (there might be some deallocations necessary) | |
364 | void wxGraphicsPath::UnGetNativePath(void *p)const | |
365 | { | |
366 | GetPathData()->UnGetNativePath(p); | |
367 | } | |
368 | ||
369 | // transforms each point of this path by the matrix | |
370 | void wxGraphicsPath::Transform( const wxGraphicsMatrix& matrix ) | |
371 | { | |
372 | AllocExclusive(); | |
373 | GetPathData()->Transform(matrix.GetMatrixData()); | |
374 | } | |
375 | ||
376 | // gets the bounding box enclosing all points (possibly including control points) | |
377 | void wxGraphicsPath::GetBox(wxDouble *x, wxDouble *y, wxDouble *w, wxDouble *h) const | |
378 | { | |
379 | GetPathData()->GetBox(x,y,w,h); | |
380 | } | |
381 | ||
382 | bool wxGraphicsPath::Contains( wxDouble x, wxDouble y, wxPolygonFillMode fillStyle ) const | |
383 | { | |
384 | return GetPathData()->Contains(x,y,fillStyle); | |
385 | } | |
386 | ||
387 | // | |
388 | // Emulations, these mus be implemented in the ...Data classes in order to allow for proper overrides | |
389 | // | |
390 | ||
391 | void wxGraphicsPathData::AddQuadCurveToPoint( wxDouble cx, wxDouble cy, wxDouble x, wxDouble y ) | |
392 | { | |
393 | // calculate using degree elevation to a cubic bezier | |
394 | wxPoint2DDouble c1; | |
395 | wxPoint2DDouble c2; | |
396 | ||
397 | wxPoint2DDouble start; | |
398 | GetCurrentPoint(&start.m_x,&start.m_y); | |
399 | wxPoint2DDouble end(x,y); | |
400 | wxPoint2DDouble c(cx,cy); | |
401 | c1 = wxDouble(1/3.0) * start + wxDouble(2/3.0) * c; | |
402 | c2 = wxDouble(2/3.0) * c + wxDouble(1/3.0) * end; | |
403 | AddCurveToPoint(c1.m_x,c1.m_y,c2.m_x,c2.m_y,x,y); | |
404 | } | |
405 | ||
406 | void wxGraphicsPathData::AddRectangle( wxDouble x, wxDouble y, wxDouble w, wxDouble h ) | |
407 | { | |
408 | MoveToPoint(x,y); | |
409 | AddLineToPoint(x,y+h); | |
410 | AddLineToPoint(x+w,y+h); | |
411 | AddLineToPoint(x+w,y); | |
412 | CloseSubpath(); | |
413 | } | |
414 | ||
415 | void wxGraphicsPathData::AddCircle( wxDouble x, wxDouble y, wxDouble r ) | |
416 | { | |
417 | MoveToPoint(x+r,y); | |
418 | AddArc( x,y,r,0,2*M_PI,false); | |
419 | CloseSubpath(); | |
420 | } | |
421 | ||
422 | void wxGraphicsPathData::AddEllipse( wxDouble x, wxDouble y, wxDouble w, wxDouble h) | |
423 | { | |
424 | if (w <= 0. || h <= 0.) | |
425 | return; | |
426 | ||
427 | wxDouble rw = w/2; | |
428 | wxDouble rh = h/2; | |
429 | wxDouble xc = x + rw; | |
430 | wxDouble yc = y + rh; | |
431 | wxGraphicsMatrix m = GetRenderer()->CreateMatrix(); | |
432 | m.Translate(xc,yc); | |
433 | m.Scale(rw/rh,1.0); | |
434 | wxGraphicsPath p = GetRenderer()->CreatePath(); | |
435 | p.AddCircle(0,0,rh); | |
436 | p.Transform(m); | |
437 | AddPath(p.GetPathData()); | |
438 | } | |
439 | ||
440 | void wxGraphicsPathData::AddRoundedRectangle( wxDouble x, wxDouble y, wxDouble w, wxDouble h, wxDouble radius) | |
441 | { | |
442 | if ( radius == 0 ) | |
443 | AddRectangle(x,y,w,h); | |
444 | else | |
445 | { | |
446 | MoveToPoint( x + w, y + h / 2); | |
447 | AddArcToPoint(x + w, y + h, x + w / 2, y + h, radius); | |
448 | AddArcToPoint(x, y + h, x, y + h / 2, radius); | |
449 | AddArcToPoint(x, y , x + w / 2, y, radius); | |
450 | AddArcToPoint(x + w, y, x + w, y + h / 2, radius); | |
451 | CloseSubpath(); | |
452 | } | |
453 | } | |
454 | ||
455 | // draws a an arc to two tangents connecting (current) to (x1,y1) and (x1,y1) to (x2,y2), also a straight line from (current) to (x1,y1) | |
456 | void wxGraphicsPathData::AddArcToPoint( wxDouble x1, wxDouble y1 , wxDouble x2, wxDouble y2, wxDouble r ) | |
457 | { | |
458 | wxPoint2DDouble current; | |
459 | GetCurrentPoint(¤t.m_x,¤t.m_y); | |
460 | wxPoint2DDouble p1(x1,y1); | |
461 | wxPoint2DDouble p2(x2,y2); | |
462 | ||
463 | wxPoint2DDouble v1 = current - p1; | |
464 | v1.Normalize(); | |
465 | wxPoint2DDouble v2 = p2 - p1; | |
466 | v2.Normalize(); | |
467 | ||
468 | wxDouble alpha = v1.GetVectorAngle() - v2.GetVectorAngle(); | |
469 | ||
470 | if ( alpha < 0 ) | |
471 | alpha = 360 + alpha; | |
472 | // TODO obtuse angles | |
473 | ||
474 | alpha = DegToRad(alpha); | |
475 | ||
476 | wxDouble dist = r / sin(alpha/2) * cos(alpha/2); | |
477 | // calculate tangential points | |
478 | wxPoint2DDouble t1 = dist*v1 + p1; | |
479 | ||
480 | wxPoint2DDouble nv1 = v1; | |
481 | nv1.SetVectorAngle(v1.GetVectorAngle()-90); | |
482 | wxPoint2DDouble c = t1 + r*nv1; | |
483 | ||
484 | wxDouble a1 = v1.GetVectorAngle()+90; | |
485 | wxDouble a2 = v2.GetVectorAngle()-90; | |
486 | ||
487 | AddLineToPoint(t1.m_x,t1.m_y); | |
488 | AddArc(c.m_x,c.m_y,r,DegToRad(a1),DegToRad(a2),true); | |
489 | AddLineToPoint(p2.m_x,p2.m_y); | |
490 | } | |
491 | ||
492 | //----------------------------------------------------------------------------- | |
493 | // wxGraphicsContext Convenience Methods | |
494 | //----------------------------------------------------------------------------- | |
495 | ||
496 | IMPLEMENT_ABSTRACT_CLASS(wxGraphicsContext, wxObject) | |
497 | ||
498 | ||
499 | wxGraphicsContext::wxGraphicsContext(wxGraphicsRenderer* renderer) : | |
500 | wxGraphicsObject(renderer), | |
501 | m_antialias(wxANTIALIAS_DEFAULT), | |
502 | m_composition(wxCOMPOSITION_OVER) | |
503 | { | |
504 | } | |
505 | ||
506 | wxGraphicsContext::~wxGraphicsContext() | |
507 | { | |
508 | } | |
509 | ||
510 | bool wxGraphicsContext::StartDoc(const wxString& WXUNUSED(message)) | |
511 | { | |
512 | return true; | |
513 | } | |
514 | ||
515 | void wxGraphicsContext::EndDoc() | |
516 | { | |
517 | } | |
518 | ||
519 | void wxGraphicsContext::StartPage(wxDouble WXUNUSED(width), | |
520 | wxDouble WXUNUSED(height)) | |
521 | { | |
522 | } | |
523 | ||
524 | void wxGraphicsContext::EndPage() | |
525 | { | |
526 | } | |
527 | ||
528 | void wxGraphicsContext::Flush() | |
529 | { | |
530 | } | |
531 | ||
532 | #if 0 | |
533 | void wxGraphicsContext::SetAlpha( wxDouble WXUNUSED(alpha) ) | |
534 | { | |
535 | } | |
536 | ||
537 | wxDouble wxGraphicsContext::GetAlpha() const | |
538 | { | |
539 | return 1.0; | |
540 | } | |
541 | #endif | |
542 | ||
543 | void wxGraphicsContext::GetSize( wxDouble* width, wxDouble* height) | |
544 | { | |
545 | *width = 10000.0; | |
546 | *height = 10000.0; | |
547 | } | |
548 | ||
549 | void wxGraphicsContext::GetDPI( wxDouble* dpiX, wxDouble* dpiY) | |
550 | { | |
551 | *dpiX = 72.0; | |
552 | *dpiY = 72.0; | |
553 | } | |
554 | ||
555 | // sets the pen | |
556 | void wxGraphicsContext::SetPen( const wxGraphicsPen& pen ) | |
557 | { | |
558 | m_pen = pen; | |
559 | } | |
560 | ||
561 | void wxGraphicsContext::SetPen( const wxPen& pen ) | |
562 | { | |
563 | if ( !pen.Ok() || pen.GetStyle() == wxPENSTYLE_TRANSPARENT ) | |
564 | SetPen( wxNullGraphicsPen ); | |
565 | else | |
566 | SetPen( CreatePen( pen ) ); | |
567 | } | |
568 | ||
569 | // sets the brush for filling | |
570 | void wxGraphicsContext::SetBrush( const wxGraphicsBrush& brush ) | |
571 | { | |
572 | m_brush = brush; | |
573 | } | |
574 | ||
575 | void wxGraphicsContext::SetBrush( const wxBrush& brush ) | |
576 | { | |
577 | if ( !brush.Ok() || brush.GetStyle() == wxBRUSHSTYLE_TRANSPARENT ) | |
578 | SetBrush( wxNullGraphicsBrush ); | |
579 | else | |
580 | SetBrush( CreateBrush( brush ) ); | |
581 | } | |
582 | ||
583 | // sets the brush for filling | |
584 | void wxGraphicsContext::SetFont( const wxGraphicsFont& font ) | |
585 | { | |
586 | m_font = font; | |
587 | } | |
588 | ||
589 | void wxGraphicsContext::SetFont( const wxFont& font, const wxColour& colour ) | |
590 | { | |
591 | if ( font.Ok() ) | |
592 | SetFont( CreateFont( font, colour ) ); | |
593 | else | |
594 | SetFont( wxNullGraphicsFont ); | |
595 | } | |
596 | ||
597 | void wxGraphicsContext::DrawPath( const wxGraphicsPath& path, wxPolygonFillMode fillStyle ) | |
598 | { | |
599 | FillPath( path , fillStyle ); | |
600 | StrokePath( path ); | |
601 | } | |
602 | ||
603 | void | |
604 | wxGraphicsContext::DoDrawRotatedText(const wxString &str, | |
605 | wxDouble x, | |
606 | wxDouble y, | |
607 | wxDouble angle) | |
608 | { | |
609 | Translate(x,y); | |
610 | Rotate( -angle ); | |
611 | DrawText( str , 0, 0 ); | |
612 | Rotate( angle ); | |
613 | Translate(-x,-y); | |
614 | } | |
615 | ||
616 | void | |
617 | wxGraphicsContext::DoDrawFilledText(const wxString &str, | |
618 | wxDouble x, | |
619 | wxDouble y, | |
620 | const wxGraphicsBrush& backgroundBrush) | |
621 | { | |
622 | wxGraphicsBrush formerBrush = m_brush; | |
623 | wxGraphicsPen formerPen = m_pen; | |
624 | wxDouble width; | |
625 | wxDouble height; | |
626 | wxDouble descent; | |
627 | wxDouble externalLeading; | |
628 | GetTextExtent( str , &width, &height, &descent, &externalLeading ); | |
629 | SetBrush( backgroundBrush ); | |
630 | // to make sure our 'OffsetToPixelBoundaries' doesn't move the fill shape | |
631 | SetPen( wxNullGraphicsPen ); | |
632 | ||
633 | wxGraphicsPath path = CreatePath(); | |
634 | path.AddRectangle( x , y, width, height ); | |
635 | FillPath( path ); | |
636 | ||
637 | DrawText( str, x ,y); | |
638 | SetBrush( formerBrush ); | |
639 | SetPen( formerPen ); | |
640 | } | |
641 | ||
642 | void | |
643 | wxGraphicsContext::DoDrawRotatedFilledText(const wxString &str, | |
644 | wxDouble x, wxDouble y, | |
645 | wxDouble angle, | |
646 | const wxGraphicsBrush& backgroundBrush) | |
647 | { | |
648 | wxGraphicsBrush formerBrush = m_brush; | |
649 | wxGraphicsPen formerPen = m_pen; | |
650 | ||
651 | wxDouble width; | |
652 | wxDouble height; | |
653 | wxDouble descent; | |
654 | wxDouble externalLeading; | |
655 | GetTextExtent( str , &width, &height, &descent, &externalLeading ); | |
656 | SetBrush( backgroundBrush ); | |
657 | // to make sure our 'OffsetToPixelBoundaries' doesn't move the fill shape | |
658 | SetPen( wxNullGraphicsPen ); | |
659 | ||
660 | wxGraphicsPath path = CreatePath(); | |
661 | path.MoveToPoint( x , y ); | |
662 | path.AddLineToPoint( (int) (x + sin(angle) * height) , (int) (y + cos(angle) * height) ); | |
663 | path.AddLineToPoint( | |
664 | (int) (x + sin(angle) * height + cos(angle) * width) , | |
665 | (int) (y + cos(angle) * height - sin(angle) * width)); | |
666 | path.AddLineToPoint((int) (x + cos(angle) * width) , (int) (y - sin(angle) * width) ); | |
667 | FillPath( path ); | |
668 | DrawText( str, x ,y, angle); | |
669 | SetBrush( formerBrush ); | |
670 | SetPen( formerPen ); | |
671 | } | |
672 | ||
673 | void wxGraphicsContext::StrokeLine( wxDouble x1, wxDouble y1, wxDouble x2, wxDouble y2) | |
674 | { | |
675 | wxGraphicsPath path = CreatePath(); | |
676 | path.MoveToPoint(x1, y1); | |
677 | path.AddLineToPoint( x2, y2 ); | |
678 | StrokePath( path ); | |
679 | } | |
680 | ||
681 | void wxGraphicsContext::DrawRectangle( wxDouble x, wxDouble y, wxDouble w, wxDouble h) | |
682 | { | |
683 | wxGraphicsPath path = CreatePath(); | |
684 | path.AddRectangle( x , y , w , h ); | |
685 | DrawPath( path ); | |
686 | } | |
687 | ||
688 | void wxGraphicsContext::DrawEllipse( wxDouble x, wxDouble y, wxDouble w, wxDouble h) | |
689 | { | |
690 | wxGraphicsPath path = CreatePath(); | |
691 | path.AddEllipse(x,y,w,h); | |
692 | DrawPath(path); | |
693 | } | |
694 | ||
695 | void wxGraphicsContext::DrawRoundedRectangle( wxDouble x, wxDouble y, wxDouble w, wxDouble h, wxDouble radius) | |
696 | { | |
697 | wxGraphicsPath path = CreatePath(); | |
698 | path.AddRoundedRectangle(x,y,w,h,radius); | |
699 | DrawPath(path); | |
700 | } | |
701 | ||
702 | void wxGraphicsContext::StrokeLines( size_t n, const wxPoint2DDouble *points) | |
703 | { | |
704 | wxASSERT(n > 1); | |
705 | wxGraphicsPath path = CreatePath(); | |
706 | path.MoveToPoint(points[0].m_x, points[0].m_y); | |
707 | for ( size_t i = 1; i < n; ++i) | |
708 | path.AddLineToPoint( points[i].m_x, points[i].m_y ); | |
709 | StrokePath( path ); | |
710 | } | |
711 | ||
712 | void wxGraphicsContext::DrawLines( size_t n, const wxPoint2DDouble *points, wxPolygonFillMode fillStyle) | |
713 | { | |
714 | wxASSERT(n > 1); | |
715 | wxGraphicsPath path = CreatePath(); | |
716 | path.MoveToPoint(points[0].m_x, points[0].m_y); | |
717 | for ( size_t i = 1; i < n; ++i) | |
718 | path.AddLineToPoint( points[i].m_x, points[i].m_y ); | |
719 | DrawPath( path , fillStyle); | |
720 | } | |
721 | ||
722 | void wxGraphicsContext::StrokeLines( size_t n, const wxPoint2DDouble *beginPoints, const wxPoint2DDouble *endPoints) | |
723 | { | |
724 | wxASSERT(n > 0); | |
725 | wxGraphicsPath path = CreatePath(); | |
726 | for ( size_t i = 0; i < n; ++i) | |
727 | { | |
728 | path.MoveToPoint(beginPoints[i].m_x, beginPoints[i].m_y); | |
729 | path.AddLineToPoint( endPoints[i].m_x, endPoints[i].m_y ); | |
730 | } | |
731 | StrokePath( path ); | |
732 | } | |
733 | ||
734 | // create a 'native' matrix corresponding to these values | |
735 | wxGraphicsMatrix wxGraphicsContext::CreateMatrix( wxDouble a, wxDouble b, wxDouble c, wxDouble d, | |
736 | wxDouble tx, wxDouble ty) const | |
737 | { | |
738 | return GetRenderer()->CreateMatrix(a,b,c,d,tx,ty); | |
739 | } | |
740 | ||
741 | wxGraphicsPath wxGraphicsContext::CreatePath() const | |
742 | { | |
743 | return GetRenderer()->CreatePath(); | |
744 | } | |
745 | ||
746 | wxGraphicsPen wxGraphicsContext::CreatePen(const wxPen& pen) const | |
747 | { | |
748 | return GetRenderer()->CreatePen(pen); | |
749 | } | |
750 | ||
751 | wxGraphicsBrush wxGraphicsContext::CreateBrush(const wxBrush& brush ) const | |
752 | { | |
753 | return GetRenderer()->CreateBrush(brush); | |
754 | } | |
755 | ||
756 | // sets the brush to a linear gradient, starting at (x1,y1) with color c1 to (x2,y2) with color c2 | |
757 | wxGraphicsBrush wxGraphicsContext::CreateLinearGradientBrush( wxDouble x1, wxDouble y1, wxDouble x2, wxDouble y2, | |
758 | const wxColour&c1, const wxColour&c2) const | |
759 | { | |
760 | return GetRenderer()->CreateLinearGradientBrush(x1,y1,x2,y2,c1,c2); | |
761 | } | |
762 | ||
763 | // sets the brush to a radial gradient originating at (xo,yc) with color oColor and ends on a circle around (xc,yc) | |
764 | // with radius r and color cColor | |
765 | wxGraphicsBrush wxGraphicsContext::CreateRadialGradientBrush( wxDouble xo, wxDouble yo, wxDouble xc, wxDouble yc, wxDouble radius, | |
766 | const wxColour &oColor, const wxColour &cColor) const | |
767 | { | |
768 | return GetRenderer()->CreateRadialGradientBrush(xo,yo,xc,yc,radius,oColor,cColor); | |
769 | } | |
770 | ||
771 | // sets the font | |
772 | wxGraphicsFont wxGraphicsContext::CreateFont( const wxFont &font , const wxColour &col ) const | |
773 | { | |
774 | return GetRenderer()->CreateFont(font,col); | |
775 | } | |
776 | ||
777 | wxGraphicsBitmap wxGraphicsContext::CreateBitmap( const wxBitmap& bmp ) const | |
778 | { | |
779 | return GetRenderer()->CreateBitmap(bmp); | |
780 | } | |
781 | ||
782 | wxGraphicsBitmap wxGraphicsContext::CreateSubBitmap( const wxGraphicsBitmap &bmp, wxDouble x, wxDouble y, wxDouble w, wxDouble h ) const | |
783 | { | |
784 | return GetRenderer()->CreateSubBitmap(bmp,x,y,w,h); | |
785 | } | |
786 | ||
787 | /* static */ wxGraphicsContext* wxGraphicsContext::Create( const wxWindowDC& dc) | |
788 | { | |
789 | return wxGraphicsRenderer::GetDefaultRenderer()->CreateContext(dc); | |
790 | } | |
791 | ||
792 | /* static */ wxGraphicsContext* wxGraphicsContext::Create( const wxMemoryDC& dc) | |
793 | { | |
794 | return wxGraphicsRenderer::GetDefaultRenderer()->CreateContext(dc); | |
795 | } | |
796 | ||
797 | #if wxUSE_PRINTING_ARCHITECTURE | |
798 | /* static */ wxGraphicsContext* wxGraphicsContext::Create( const wxPrinterDC& dc) | |
799 | { | |
800 | return wxGraphicsRenderer::GetDefaultRenderer()->CreateContext(dc); | |
801 | } | |
802 | #endif | |
803 | ||
804 | wxGraphicsContext* wxGraphicsContext::CreateFromNative( void * context ) | |
805 | { | |
806 | return wxGraphicsRenderer::GetDefaultRenderer()->CreateContextFromNativeContext(context); | |
807 | } | |
808 | ||
809 | wxGraphicsContext* wxGraphicsContext::CreateFromNativeWindow( void * window ) | |
810 | { | |
811 | return wxGraphicsRenderer::GetDefaultRenderer()->CreateContextFromNativeWindow(window); | |
812 | } | |
813 | ||
814 | wxGraphicsContext* wxGraphicsContext::Create( wxWindow* window ) | |
815 | { | |
816 | return wxGraphicsRenderer::GetDefaultRenderer()->CreateContext(window); | |
817 | } | |
818 | ||
819 | wxGraphicsContext* wxGraphicsContext::Create() | |
820 | { | |
821 | return wxGraphicsRenderer::GetDefaultRenderer()->CreateMeasuringContext(); | |
822 | } | |
823 | ||
824 | //----------------------------------------------------------------------------- | |
825 | // wxGraphicsRenderer | |
826 | //----------------------------------------------------------------------------- | |
827 | ||
828 | IMPLEMENT_ABSTRACT_CLASS(wxGraphicsRenderer, wxObject) | |
829 | ||
830 | #endif // wxUSE_GRAPHICS_CONTEXT |