]>
Commit | Line | Data |
---|---|---|
1 | ///////////////////////////////////////////////////////////////////////////// | |
2 | // Name: src/msw/graphics.cpp | |
3 | // Purpose: wxGCDC class | |
4 | // Author: Stefan Csomor | |
5 | // Modified by: | |
6 | // Created: 2006-09-30 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) 2006 Stefan Csomor | |
9 | // Licence: wxWindows licence | |
10 | ///////////////////////////////////////////////////////////////////////////// | |
11 | ||
12 | #include "wx/wxprec.h" | |
13 | ||
14 | #include "wx/dc.h" | |
15 | ||
16 | #ifdef __BORLANDC__ | |
17 | #pragma hdrstop | |
18 | #endif | |
19 | ||
20 | #if wxUSE_GRAPHICS_CONTEXT | |
21 | ||
22 | #ifndef WX_PRECOMP | |
23 | #include "wx/msw/wrapcdlg.h" | |
24 | #include "wx/image.h" | |
25 | #include "wx/window.h" | |
26 | #include "wx/utils.h" | |
27 | #include "wx/dialog.h" | |
28 | #include "wx/app.h" | |
29 | #include "wx/bitmap.h" | |
30 | #include "wx/log.h" | |
31 | #include "wx/icon.h" | |
32 | #include "wx/module.h" | |
33 | // include all dc types that are used as a param | |
34 | #include "wx/dc.h" | |
35 | #include "wx/dcclient.h" | |
36 | #include "wx/dcmemory.h" | |
37 | #include "wx/dcprint.h" | |
38 | #endif | |
39 | ||
40 | #include "wx/private/graphics.h" | |
41 | #include "wx/msw/wrapgdip.h" | |
42 | #include "wx/msw/dc.h" | |
43 | ||
44 | #include "wx/stack.h" | |
45 | ||
46 | WX_DECLARE_STACK(GraphicsState, GraphicsStates); | |
47 | ||
48 | //----------------------------------------------------------------------------- | |
49 | // constants | |
50 | //----------------------------------------------------------------------------- | |
51 | ||
52 | const double RAD2DEG = 180.0 / M_PI; | |
53 | ||
54 | //----------------------------------------------------------------------------- | |
55 | // Local functions | |
56 | //----------------------------------------------------------------------------- | |
57 | ||
58 | static inline double dmin(double a, double b) { return a < b ? a : b; } | |
59 | static inline double dmax(double a, double b) { return a > b ? a : b; } | |
60 | ||
61 | static inline double DegToRad(double deg) { return (deg * M_PI) / 180.0; } | |
62 | static inline double RadToDeg(double deg) { return (deg * 180.0) / M_PI; } | |
63 | ||
64 | //----------------------------------------------------------------------------- | |
65 | // device context implementation | |
66 | // | |
67 | // more and more of the dc functionality should be implemented by calling | |
68 | // the appropricate wxGDIPlusContext, but we will have to do that step by step | |
69 | // also coordinate conversions should be moved to native matrix ops | |
70 | //----------------------------------------------------------------------------- | |
71 | ||
72 | // we always stock two context states, one at entry, to be able to preserve the | |
73 | // state we were called with, the other one after changing to HI Graphics orientation | |
74 | // (this one is used for getting back clippings etc) | |
75 | ||
76 | //----------------------------------------------------------------------------- | |
77 | // wxGraphicsPath implementation | |
78 | //----------------------------------------------------------------------------- | |
79 | ||
80 | #include "wx/msw/private.h" // needs to be before #include <commdlg.h> | |
81 | ||
82 | #if wxUSE_COMMON_DIALOGS && !defined(__WXMICROWIN__) | |
83 | #include <commdlg.h> | |
84 | #endif | |
85 | ||
86 | class wxGDIPlusPathData : public wxGraphicsPathData | |
87 | { | |
88 | public : | |
89 | wxGDIPlusPathData(wxGraphicsRenderer* renderer, GraphicsPath* path = NULL); | |
90 | ~wxGDIPlusPathData(); | |
91 | ||
92 | virtual wxGraphicsObjectRefData *Clone() const; | |
93 | ||
94 | // | |
95 | // These are the path primitives from which everything else can be constructed | |
96 | // | |
97 | ||
98 | // begins a new subpath at (x,y) | |
99 | virtual void MoveToPoint( wxDouble x, wxDouble y ); | |
100 | ||
101 | // adds a straight line from the current point to (x,y) | |
102 | virtual void AddLineToPoint( wxDouble x, wxDouble y ); | |
103 | ||
104 | // adds a cubic Bezier curve from the current point, using two control points and an end point | |
105 | virtual void AddCurveToPoint( wxDouble cx1, wxDouble cy1, wxDouble cx2, wxDouble cy2, wxDouble x, wxDouble y ); | |
106 | ||
107 | ||
108 | // adds an arc of a circle centering at (x,y) with radius (r) from startAngle to endAngle | |
109 | virtual void AddArc( wxDouble x, wxDouble y, wxDouble r, wxDouble startAngle, wxDouble endAngle, bool clockwise ) ; | |
110 | ||
111 | // gets the last point of the current path, (0,0) if not yet set | |
112 | virtual void GetCurrentPoint( wxDouble* x, wxDouble* y) const; | |
113 | ||
114 | // adds another path | |
115 | virtual void AddPath( const wxGraphicsPathData* path ); | |
116 | ||
117 | // closes the current sub-path | |
118 | virtual void CloseSubpath(); | |
119 | ||
120 | // | |
121 | // These are convenience functions which - if not available natively will be assembled | |
122 | // using the primitives from above | |
123 | // | |
124 | ||
125 | // appends a rectangle as a new closed subpath | |
126 | virtual void AddRectangle( wxDouble x, wxDouble y, wxDouble w, wxDouble h ) ; | |
127 | /* | |
128 | ||
129 | // appends an ellipsis as a new closed subpath fitting the passed rectangle | |
130 | virtual void AddEllipsis( wxDouble x, wxDouble y, wxDouble w , wxDouble h ) ; | |
131 | ||
132 | // 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) | |
133 | virtual void AddArcToPoint( wxDouble x1, wxDouble y1 , wxDouble x2, wxDouble y2, wxDouble r ) ; | |
134 | */ | |
135 | ||
136 | // returns the native path | |
137 | virtual void * GetNativePath() const { return m_path; } | |
138 | ||
139 | // give the native path returned by GetNativePath() back (there might be some deallocations necessary) | |
140 | virtual void UnGetNativePath(void * WXUNUSED(path)) const {} | |
141 | ||
142 | // transforms each point of this path by the matrix | |
143 | virtual void Transform( const wxGraphicsMatrixData* matrix ) ; | |
144 | ||
145 | // gets the bounding box enclosing all points (possibly including control points) | |
146 | virtual void GetBox(wxDouble *x, wxDouble *y, wxDouble *w, wxDouble *h) const; | |
147 | ||
148 | virtual bool Contains( wxDouble x, wxDouble y, int fillStyle = wxODDEVEN_RULE) const; | |
149 | ||
150 | private : | |
151 | GraphicsPath* m_path; | |
152 | }; | |
153 | ||
154 | class wxGDIPlusMatrixData : public wxGraphicsMatrixData | |
155 | { | |
156 | public : | |
157 | wxGDIPlusMatrixData(wxGraphicsRenderer* renderer, Matrix* matrix = NULL) ; | |
158 | virtual ~wxGDIPlusMatrixData() ; | |
159 | ||
160 | virtual wxGraphicsObjectRefData* Clone() const ; | |
161 | ||
162 | // concatenates the matrix | |
163 | virtual void Concat( const wxGraphicsMatrixData *t ); | |
164 | ||
165 | // sets the matrix to the respective values | |
166 | virtual void Set(wxDouble a=1.0, wxDouble b=0.0, wxDouble c=0.0, wxDouble d=1.0, | |
167 | wxDouble tx=0.0, wxDouble ty=0.0); | |
168 | ||
169 | // gets the component valuess of the matrix | |
170 | virtual void Get(wxDouble* a=NULL, wxDouble* b=NULL, wxDouble* c=NULL, | |
171 | wxDouble* d=NULL, wxDouble* tx=NULL, wxDouble* ty=NULL) const; | |
172 | ||
173 | // makes this the inverse matrix | |
174 | virtual void Invert(); | |
175 | ||
176 | // returns true if the elements of the transformation matrix are equal ? | |
177 | virtual bool IsEqual( const wxGraphicsMatrixData* t) const ; | |
178 | ||
179 | // return true if this is the identity matrix | |
180 | virtual bool IsIdentity() const; | |
181 | ||
182 | // | |
183 | // transformation | |
184 | // | |
185 | ||
186 | // add the translation to this matrix | |
187 | virtual void Translate( wxDouble dx , wxDouble dy ); | |
188 | ||
189 | // add the scale to this matrix | |
190 | virtual void Scale( wxDouble xScale , wxDouble yScale ); | |
191 | ||
192 | // add the rotation to this matrix (radians) | |
193 | virtual void Rotate( wxDouble angle ); | |
194 | ||
195 | // | |
196 | // apply the transforms | |
197 | // | |
198 | ||
199 | // applies that matrix to the point | |
200 | virtual void TransformPoint( wxDouble *x, wxDouble *y ) const; | |
201 | ||
202 | // applies the matrix except for translations | |
203 | virtual void TransformDistance( wxDouble *dx, wxDouble *dy ) const; | |
204 | ||
205 | // returns the native representation | |
206 | virtual void * GetNativeMatrix() const; | |
207 | private: | |
208 | Matrix* m_matrix ; | |
209 | } ; | |
210 | ||
211 | class wxGDIPlusPenData : public wxGraphicsObjectRefData | |
212 | { | |
213 | public: | |
214 | wxGDIPlusPenData( wxGraphicsRenderer* renderer, const wxPen &pen ); | |
215 | ~wxGDIPlusPenData(); | |
216 | ||
217 | void Init(); | |
218 | ||
219 | virtual wxDouble GetWidth() { return m_width; } | |
220 | virtual Pen* GetGDIPlusPen() { return m_pen; } | |
221 | ||
222 | protected : | |
223 | Pen* m_pen; | |
224 | Image* m_penImage; | |
225 | Brush* m_penBrush; | |
226 | ||
227 | wxDouble m_width; | |
228 | }; | |
229 | ||
230 | class wxGDIPlusBrushData : public wxGraphicsObjectRefData | |
231 | { | |
232 | public: | |
233 | wxGDIPlusBrushData( wxGraphicsRenderer* renderer ); | |
234 | wxGDIPlusBrushData( wxGraphicsRenderer* renderer, const wxBrush &brush ); | |
235 | ~wxGDIPlusBrushData (); | |
236 | ||
237 | void CreateLinearGradientBrush( wxDouble x1, wxDouble y1, wxDouble x2, wxDouble y2, | |
238 | const wxColour&c1, const wxColour&c2 ); | |
239 | void CreateRadialGradientBrush( wxDouble xo, wxDouble yo, wxDouble xc, wxDouble yc, wxDouble radius, | |
240 | const wxColour &oColor, const wxColour &cColor ); | |
241 | virtual Brush* GetGDIPlusBrush() { return m_brush; } | |
242 | ||
243 | protected: | |
244 | virtual void Init(); | |
245 | ||
246 | private : | |
247 | Brush* m_brush; | |
248 | Image* m_brushImage; | |
249 | GraphicsPath* m_brushPath; | |
250 | }; | |
251 | ||
252 | class WXDLLIMPEXP_CORE wxGDIPlusBitmapData : public wxGraphicsObjectRefData | |
253 | { | |
254 | public: | |
255 | wxGDIPlusBitmapData( wxGraphicsRenderer* renderer, Bitmap* bitmap ); | |
256 | wxGDIPlusBitmapData( wxGraphicsRenderer* renderer, const wxBitmap &bmp ); | |
257 | ~wxGDIPlusBitmapData (); | |
258 | ||
259 | virtual Bitmap* GetGDIPlusBitmap() { return m_bitmap; } | |
260 | ||
261 | private : | |
262 | Bitmap* m_bitmap; | |
263 | Bitmap* m_helper; | |
264 | }; | |
265 | ||
266 | class wxGDIPlusFontData : public wxGraphicsObjectRefData | |
267 | { | |
268 | public: | |
269 | wxGDIPlusFontData( wxGraphicsRenderer* renderer, const wxFont &font, const wxColour& col ); | |
270 | ~wxGDIPlusFontData(); | |
271 | ||
272 | virtual Brush* GetGDIPlusBrush() { return m_textBrush; } | |
273 | virtual Font* GetGDIPlusFont() { return m_font; } | |
274 | private : | |
275 | Brush* m_textBrush; | |
276 | Font* m_font; | |
277 | }; | |
278 | ||
279 | class wxGDIPlusContext : public wxGraphicsContext | |
280 | { | |
281 | public: | |
282 | wxGDIPlusContext( wxGraphicsRenderer* renderer, HDC hdc , wxDouble width, wxDouble height ); | |
283 | wxGDIPlusContext( wxGraphicsRenderer* renderer, HWND hwnd ); | |
284 | wxGDIPlusContext( wxGraphicsRenderer* renderer, Graphics* gr); | |
285 | wxGDIPlusContext(); | |
286 | ||
287 | virtual ~wxGDIPlusContext(); | |
288 | ||
289 | virtual void Clip( const wxRegion ®ion ); | |
290 | // clips drawings to the rect | |
291 | virtual void Clip( wxDouble x, wxDouble y, wxDouble w, wxDouble h ); | |
292 | ||
293 | // resets the clipping to original extent | |
294 | virtual void ResetClip(); | |
295 | ||
296 | virtual void * GetNativeContext(); | |
297 | ||
298 | virtual void StrokePath( const wxGraphicsPath& p ); | |
299 | virtual void FillPath( const wxGraphicsPath& p , int fillStyle = wxODDEVEN_RULE ); | |
300 | ||
301 | // stroke lines connecting each of the points | |
302 | virtual void StrokeLines( size_t n, const wxPoint2DDouble *points); | |
303 | ||
304 | // draws a polygon | |
305 | virtual void DrawLines( size_t n, const wxPoint2DDouble *points, int fillStyle = wxODDEVEN_RULE ); | |
306 | ||
307 | virtual void Translate( wxDouble dx , wxDouble dy ); | |
308 | virtual void Scale( wxDouble xScale , wxDouble yScale ); | |
309 | virtual void Rotate( wxDouble angle ); | |
310 | ||
311 | // concatenates this transform with the current transform of this context | |
312 | virtual void ConcatTransform( const wxGraphicsMatrix& matrix ); | |
313 | ||
314 | // sets the transform of this context | |
315 | virtual void SetTransform( const wxGraphicsMatrix& matrix ); | |
316 | ||
317 | // gets the matrix of this context | |
318 | virtual wxGraphicsMatrix GetTransform() const; | |
319 | ||
320 | virtual void DrawBitmap( const wxGraphicsBitmap &bmp, wxDouble x, wxDouble y, wxDouble w, wxDouble h ); | |
321 | virtual void DrawBitmap( const wxBitmap &bmp, wxDouble x, wxDouble y, wxDouble w, wxDouble h ); | |
322 | virtual void DrawIcon( const wxIcon &icon, wxDouble x, wxDouble y, wxDouble w, wxDouble h ); | |
323 | virtual void PushState(); | |
324 | virtual void PopState(); | |
325 | ||
326 | virtual void GetTextExtent( const wxString &str, wxDouble *width, wxDouble *height, | |
327 | wxDouble *descent, wxDouble *externalLeading ) const; | |
328 | virtual void GetPartialTextExtents(const wxString& text, wxArrayDouble& widths) const; | |
329 | virtual bool ShouldOffset() const; | |
330 | virtual void GetSize( wxDouble* width, wxDouble *height ); | |
331 | ||
332 | private: | |
333 | void Init(); | |
334 | void SetDefaults(); | |
335 | ||
336 | virtual void DoDrawText(const wxString& str, wxDouble x, wxDouble y) | |
337 | { DoDrawFilledText(str, x, y, wxNullGraphicsBrush); } | |
338 | virtual void DoDrawFilledText(const wxString& str, wxDouble x, wxDouble y, | |
339 | const wxGraphicsBrush& backgroundBrush); | |
340 | ||
341 | Graphics* m_context; | |
342 | GraphicsStates m_stateStack; | |
343 | GraphicsState m_state1; | |
344 | GraphicsState m_state2; | |
345 | ||
346 | wxDouble m_width; | |
347 | wxDouble m_height; | |
348 | ||
349 | DECLARE_DYNAMIC_CLASS_NO_COPY(wxGDIPlusContext) | |
350 | }; | |
351 | ||
352 | class WXDLLIMPEXP_CORE wxGDIPlusMeasuringContext : public wxGDIPlusContext | |
353 | { | |
354 | public: | |
355 | wxGDIPlusMeasuringContext( wxGraphicsRenderer* renderer ) : wxGDIPlusContext( renderer , m_hdc = GetDC(NULL), 1000, 1000 ) | |
356 | { | |
357 | } | |
358 | wxGDIPlusMeasuringContext() | |
359 | { | |
360 | } | |
361 | ||
362 | virtual ~wxGDIPlusMeasuringContext() | |
363 | { | |
364 | ReleaseDC( NULL, m_hdc ); | |
365 | } | |
366 | ||
367 | private: | |
368 | HDC m_hdc ; | |
369 | DECLARE_DYNAMIC_CLASS_NO_COPY(wxGDIPlusMeasuringContext) | |
370 | } ; | |
371 | ||
372 | //----------------------------------------------------------------------------- | |
373 | // wxGDIPlusPen implementation | |
374 | //----------------------------------------------------------------------------- | |
375 | ||
376 | wxGDIPlusPenData::~wxGDIPlusPenData() | |
377 | { | |
378 | delete m_pen; | |
379 | delete m_penImage; | |
380 | delete m_penBrush; | |
381 | } | |
382 | ||
383 | void wxGDIPlusPenData::Init() | |
384 | { | |
385 | m_pen = NULL ; | |
386 | m_penImage = NULL; | |
387 | m_penBrush = NULL; | |
388 | } | |
389 | ||
390 | wxGDIPlusPenData::wxGDIPlusPenData( wxGraphicsRenderer* renderer, const wxPen &pen ) | |
391 | : wxGraphicsObjectRefData(renderer) | |
392 | { | |
393 | Init(); | |
394 | m_width = pen.GetWidth(); | |
395 | if (m_width <= 0.0) | |
396 | m_width = 0.1; | |
397 | ||
398 | m_pen = new Pen(Color( pen.GetColour().Alpha() , pen.GetColour().Red() , | |
399 | pen.GetColour().Green() , pen.GetColour().Blue() ), m_width ); | |
400 | ||
401 | LineCap cap; | |
402 | switch ( pen.GetCap() ) | |
403 | { | |
404 | case wxCAP_ROUND : | |
405 | cap = LineCapRound; | |
406 | break; | |
407 | ||
408 | case wxCAP_PROJECTING : | |
409 | cap = LineCapSquare; | |
410 | break; | |
411 | ||
412 | case wxCAP_BUTT : | |
413 | cap = LineCapFlat; // TODO verify | |
414 | break; | |
415 | ||
416 | default : | |
417 | cap = LineCapFlat; | |
418 | break; | |
419 | } | |
420 | m_pen->SetLineCap(cap,cap, DashCapFlat); | |
421 | ||
422 | LineJoin join; | |
423 | switch ( pen.GetJoin() ) | |
424 | { | |
425 | case wxJOIN_BEVEL : | |
426 | join = LineJoinBevel; | |
427 | break; | |
428 | ||
429 | case wxJOIN_MITER : | |
430 | join = LineJoinMiter; | |
431 | break; | |
432 | ||
433 | case wxJOIN_ROUND : | |
434 | join = LineJoinRound; | |
435 | break; | |
436 | ||
437 | default : | |
438 | join = LineJoinMiter; | |
439 | break; | |
440 | } | |
441 | ||
442 | m_pen->SetLineJoin(join); | |
443 | ||
444 | m_pen->SetDashStyle(DashStyleSolid); | |
445 | ||
446 | DashStyle dashStyle = DashStyleSolid; | |
447 | switch ( pen.GetStyle() ) | |
448 | { | |
449 | case wxSOLID : | |
450 | break; | |
451 | ||
452 | case wxDOT : | |
453 | dashStyle = DashStyleDot; | |
454 | break; | |
455 | ||
456 | case wxLONG_DASH : | |
457 | dashStyle = DashStyleDash; // TODO verify | |
458 | break; | |
459 | ||
460 | case wxSHORT_DASH : | |
461 | dashStyle = DashStyleDash; | |
462 | break; | |
463 | ||
464 | case wxDOT_DASH : | |
465 | dashStyle = DashStyleDashDot; | |
466 | break; | |
467 | case wxUSER_DASH : | |
468 | { | |
469 | dashStyle = DashStyleCustom; | |
470 | wxDash *dashes; | |
471 | int count = pen.GetDashes( &dashes ); | |
472 | if ((dashes != NULL) && (count > 0)) | |
473 | { | |
474 | REAL *userLengths = new REAL[count]; | |
475 | for ( int i = 0; i < count; ++i ) | |
476 | { | |
477 | userLengths[i] = dashes[i]; | |
478 | } | |
479 | m_pen->SetDashPattern( userLengths, count); | |
480 | delete[] userLengths; | |
481 | } | |
482 | } | |
483 | break; | |
484 | case wxSTIPPLE : | |
485 | { | |
486 | wxBitmap* bmp = pen.GetStipple(); | |
487 | if ( bmp && bmp->Ok() ) | |
488 | { | |
489 | m_penImage = Bitmap::FromHBITMAP((HBITMAP)bmp->GetHBITMAP(),(HPALETTE)bmp->GetPalette()->GetHPALETTE()); | |
490 | m_penBrush = new TextureBrush(m_penImage); | |
491 | m_pen->SetBrush( m_penBrush ); | |
492 | } | |
493 | ||
494 | } | |
495 | break; | |
496 | default : | |
497 | if ( pen.GetStyle() >= wxFIRST_HATCH && pen.GetStyle() <= wxLAST_HATCH ) | |
498 | { | |
499 | HatchStyle style = HatchStyleHorizontal; | |
500 | switch( pen.GetStyle() ) | |
501 | { | |
502 | case wxBDIAGONAL_HATCH : | |
503 | style = HatchStyleBackwardDiagonal; | |
504 | break ; | |
505 | case wxCROSSDIAG_HATCH : | |
506 | style = HatchStyleDiagonalCross; | |
507 | break ; | |
508 | case wxFDIAGONAL_HATCH : | |
509 | style = HatchStyleForwardDiagonal; | |
510 | break ; | |
511 | case wxCROSS_HATCH : | |
512 | style = HatchStyleCross; | |
513 | break ; | |
514 | case wxHORIZONTAL_HATCH : | |
515 | style = HatchStyleHorizontal; | |
516 | break ; | |
517 | case wxVERTICAL_HATCH : | |
518 | style = HatchStyleVertical; | |
519 | break ; | |
520 | ||
521 | } | |
522 | m_penBrush = new HatchBrush(style,Color( pen.GetColour().Alpha() , pen.GetColour().Red() , | |
523 | pen.GetColour().Green() , pen.GetColour().Blue() ), Color::Transparent ); | |
524 | m_pen->SetBrush( m_penBrush ); | |
525 | } | |
526 | break; | |
527 | } | |
528 | if ( dashStyle != DashStyleSolid ) | |
529 | m_pen->SetDashStyle(dashStyle); | |
530 | } | |
531 | ||
532 | //----------------------------------------------------------------------------- | |
533 | // wxGDIPlusBrush implementation | |
534 | //----------------------------------------------------------------------------- | |
535 | ||
536 | wxGDIPlusBrushData::wxGDIPlusBrushData( wxGraphicsRenderer* renderer ) | |
537 | : wxGraphicsObjectRefData(renderer) | |
538 | { | |
539 | Init(); | |
540 | } | |
541 | ||
542 | wxGDIPlusBrushData::wxGDIPlusBrushData( wxGraphicsRenderer* renderer , const wxBrush &brush ) | |
543 | : wxGraphicsObjectRefData(renderer) | |
544 | { | |
545 | Init(); | |
546 | if ( brush.GetStyle() == wxSOLID) | |
547 | { | |
548 | m_brush = new SolidBrush( Color( brush.GetColour().Alpha() , brush.GetColour().Red() , | |
549 | brush.GetColour().Green() , brush.GetColour().Blue() ) ); | |
550 | } | |
551 | else if ( brush.IsHatch() ) | |
552 | { | |
553 | HatchStyle style = HatchStyleHorizontal; | |
554 | switch( brush.GetStyle() ) | |
555 | { | |
556 | case wxBDIAGONAL_HATCH : | |
557 | style = HatchStyleBackwardDiagonal; | |
558 | break ; | |
559 | case wxCROSSDIAG_HATCH : | |
560 | style = HatchStyleDiagonalCross; | |
561 | break ; | |
562 | case wxFDIAGONAL_HATCH : | |
563 | style = HatchStyleForwardDiagonal; | |
564 | break ; | |
565 | case wxCROSS_HATCH : | |
566 | style = HatchStyleCross; | |
567 | break ; | |
568 | case wxHORIZONTAL_HATCH : | |
569 | style = HatchStyleHorizontal; | |
570 | break ; | |
571 | case wxVERTICAL_HATCH : | |
572 | style = HatchStyleVertical; | |
573 | break ; | |
574 | ||
575 | } | |
576 | m_brush = new HatchBrush(style,Color( brush.GetColour().Alpha() , brush.GetColour().Red() , | |
577 | brush.GetColour().Green() , brush.GetColour().Blue() ), Color::Transparent ); | |
578 | } | |
579 | else | |
580 | { | |
581 | wxBitmap* bmp = brush.GetStipple(); | |
582 | if ( bmp && bmp->Ok() ) | |
583 | { | |
584 | wxDELETE( m_brushImage ); | |
585 | m_brushImage = Bitmap::FromHBITMAP((HBITMAP)bmp->GetHBITMAP(),(HPALETTE)bmp->GetPalette()->GetHPALETTE()); | |
586 | m_brush = new TextureBrush(m_brushImage); | |
587 | } | |
588 | } | |
589 | } | |
590 | ||
591 | wxGDIPlusBrushData::~wxGDIPlusBrushData() | |
592 | { | |
593 | delete m_brush; | |
594 | delete m_brushImage; | |
595 | delete m_brushPath; | |
596 | }; | |
597 | ||
598 | void wxGDIPlusBrushData::Init() | |
599 | { | |
600 | m_brush = NULL; | |
601 | m_brushImage= NULL; | |
602 | m_brushPath= NULL; | |
603 | } | |
604 | ||
605 | void wxGDIPlusBrushData::CreateLinearGradientBrush( wxDouble x1, wxDouble y1, wxDouble x2, wxDouble y2, const wxColour&c1, const wxColour&c2) | |
606 | { | |
607 | m_brush = new LinearGradientBrush( PointF( x1,y1) , PointF( x2,y2), | |
608 | Color( c1.Alpha(), c1.Red(),c1.Green() , c1.Blue() ), | |
609 | Color( c2.Alpha(), c2.Red(),c2.Green() , c2.Blue() )); | |
610 | } | |
611 | ||
612 | void wxGDIPlusBrushData::CreateRadialGradientBrush( wxDouble xo, wxDouble yo, wxDouble xc, wxDouble yc, wxDouble radius, | |
613 | const wxColour &oColor, const wxColour &cColor) | |
614 | { | |
615 | // Create a path that consists of a single circle. | |
616 | m_brushPath = new GraphicsPath(); | |
617 | m_brushPath->AddEllipse( (REAL)(xc-radius), (REAL)(yc-radius), (REAL)(2*radius), (REAL)(2*radius)); | |
618 | ||
619 | PathGradientBrush *b = new PathGradientBrush(m_brushPath); | |
620 | m_brush = b; | |
621 | b->SetCenterPoint( PointF(xo,yo)); | |
622 | b->SetCenterColor(Color( oColor.Alpha(), oColor.Red(),oColor.Green() , oColor.Blue() )); | |
623 | ||
624 | Color colors[] = {Color( cColor.Alpha(), cColor.Red(),cColor.Green() , cColor.Blue() )}; | |
625 | int count = 1; | |
626 | b->SetSurroundColors(colors, &count); | |
627 | } | |
628 | ||
629 | //----------------------------------------------------------------------------- | |
630 | // wxGDIPlusFont implementation | |
631 | //----------------------------------------------------------------------------- | |
632 | ||
633 | wxGDIPlusFontData::wxGDIPlusFontData( wxGraphicsRenderer* renderer, const wxFont &font, | |
634 | const wxColour& col ) : wxGraphicsObjectRefData( renderer ) | |
635 | { | |
636 | m_textBrush = NULL; | |
637 | m_font = NULL; | |
638 | ||
639 | wxWCharBuffer s = font.GetFaceName().wc_str( *wxConvUI ); | |
640 | int size = font.GetPointSize(); | |
641 | int style = FontStyleRegular; | |
642 | if ( font.GetStyle() == wxFONTSTYLE_ITALIC ) | |
643 | style |= FontStyleItalic; | |
644 | if ( font.GetUnderlined() ) | |
645 | style |= FontStyleUnderline; | |
646 | if ( font.GetWeight() == wxFONTWEIGHT_BOLD ) | |
647 | style |= FontStyleBold; | |
648 | m_font = new Font( s , size , style ); | |
649 | m_textBrush = new SolidBrush( Color( col.Alpha() , col.Red() , | |
650 | col.Green() , col.Blue() )); | |
651 | } | |
652 | ||
653 | wxGDIPlusFontData::~wxGDIPlusFontData() | |
654 | { | |
655 | delete m_textBrush; | |
656 | delete m_font; | |
657 | } | |
658 | ||
659 | // the built-in conversions functions create non-premultiplied bitmaps, while GDIPlus needs them in the | |
660 | // premultiplied format, therefore in the failing cases we create a new bitmap using the non-premultiplied | |
661 | // bytes as parameter, since there is no real copying of the data going in, only references are stored | |
662 | // m_helper has to be kept alive as well | |
663 | ||
664 | //----------------------------------------------------------------------------- | |
665 | // wxGDIPlusBitmapData implementation | |
666 | //----------------------------------------------------------------------------- | |
667 | ||
668 | wxGDIPlusBitmapData::wxGDIPlusBitmapData( wxGraphicsRenderer* renderer, Bitmap* bitmap ) : | |
669 | wxGraphicsObjectRefData( renderer ), m_bitmap( bitmap ) | |
670 | { | |
671 | m_helper = NULL; | |
672 | } | |
673 | ||
674 | wxGDIPlusBitmapData::wxGDIPlusBitmapData( wxGraphicsRenderer* renderer, | |
675 | const wxBitmap &bmp) : wxGraphicsObjectRefData( renderer ) | |
676 | { | |
677 | m_bitmap = NULL; | |
678 | m_helper = NULL; | |
679 | ||
680 | Bitmap* image = NULL; | |
681 | if ( bmp.GetMask() ) | |
682 | { | |
683 | Bitmap interim((HBITMAP)bmp.GetHBITMAP(),(HPALETTE)bmp.GetPalette()->GetHPALETTE()) ; | |
684 | ||
685 | size_t width = interim.GetWidth(); | |
686 | size_t height = interim.GetHeight(); | |
687 | Rect bounds(0,0,width,height); | |
688 | ||
689 | image = new Bitmap(width,height,PixelFormat32bppPARGB) ; | |
690 | ||
691 | Bitmap interimMask((HBITMAP)bmp.GetMask()->GetMaskBitmap(),NULL); | |
692 | wxASSERT(interimMask.GetPixelFormat() == PixelFormat1bppIndexed); | |
693 | ||
694 | BitmapData dataMask ; | |
695 | interimMask.LockBits(&bounds,ImageLockModeRead, | |
696 | interimMask.GetPixelFormat(),&dataMask); | |
697 | ||
698 | ||
699 | BitmapData imageData ; | |
700 | image->LockBits(&bounds,ImageLockModeWrite, PixelFormat32bppPARGB, &imageData); | |
701 | ||
702 | BYTE maskPattern = 0 ; | |
703 | BYTE maskByte = 0; | |
704 | size_t maskIndex ; | |
705 | ||
706 | for ( size_t y = 0 ; y < height ; ++y) | |
707 | { | |
708 | maskIndex = 0 ; | |
709 | for( size_t x = 0 ; x < width; ++x) | |
710 | { | |
711 | if ( x % 8 == 0) | |
712 | { | |
713 | maskPattern = 0x80; | |
714 | maskByte = *((BYTE*)dataMask.Scan0 + dataMask.Stride*y + maskIndex); | |
715 | maskIndex++; | |
716 | } | |
717 | else | |
718 | maskPattern = maskPattern >> 1; | |
719 | ||
720 | ARGB *dest = (ARGB*)((BYTE*)imageData.Scan0 + imageData.Stride*y + x*4); | |
721 | if ( (maskByte & maskPattern) == 0 ) | |
722 | *dest = 0x00000000; | |
723 | else | |
724 | { | |
725 | Color c ; | |
726 | interim.GetPixel(x,y,&c) ; | |
727 | *dest = (c.GetValue() | Color::AlphaMask); | |
728 | } | |
729 | } | |
730 | } | |
731 | ||
732 | image->UnlockBits(&imageData); | |
733 | ||
734 | interimMask.UnlockBits(&dataMask); | |
735 | interim.UnlockBits(&dataMask); | |
736 | } | |
737 | else | |
738 | { | |
739 | image = Bitmap::FromHBITMAP((HBITMAP)bmp.GetHBITMAP(),(HPALETTE)bmp.GetPalette()->GetHPALETTE()); | |
740 | if ( bmp.HasAlpha() && GetPixelFormatSize(image->GetPixelFormat()) == 32 ) | |
741 | { | |
742 | size_t width = image->GetWidth(); | |
743 | size_t height = image->GetHeight(); | |
744 | Rect bounds(0,0,width,height); | |
745 | static BitmapData data ; | |
746 | ||
747 | m_helper = image ; | |
748 | image = NULL ; | |
749 | m_helper->LockBits(&bounds, ImageLockModeRead, | |
750 | m_helper->GetPixelFormat(),&data); | |
751 | ||
752 | image = new Bitmap(data.Width, data.Height, data.Stride, | |
753 | PixelFormat32bppPARGB , (BYTE*) data.Scan0); | |
754 | ||
755 | m_helper->UnlockBits(&data); | |
756 | } | |
757 | } | |
758 | if ( image ) | |
759 | m_bitmap = image; | |
760 | } | |
761 | ||
762 | wxGDIPlusBitmapData::~wxGDIPlusBitmapData() | |
763 | { | |
764 | delete m_bitmap; | |
765 | delete m_helper; | |
766 | } | |
767 | ||
768 | //----------------------------------------------------------------------------- | |
769 | // wxGDIPlusPath implementation | |
770 | //----------------------------------------------------------------------------- | |
771 | ||
772 | wxGDIPlusPathData::wxGDIPlusPathData(wxGraphicsRenderer* renderer, GraphicsPath* path ) : wxGraphicsPathData(renderer) | |
773 | { | |
774 | if ( path ) | |
775 | m_path = path; | |
776 | else | |
777 | m_path = new GraphicsPath(); | |
778 | } | |
779 | ||
780 | wxGDIPlusPathData::~wxGDIPlusPathData() | |
781 | { | |
782 | delete m_path; | |
783 | } | |
784 | ||
785 | wxGraphicsObjectRefData* wxGDIPlusPathData::Clone() const | |
786 | { | |
787 | return new wxGDIPlusPathData( GetRenderer() , m_path->Clone()); | |
788 | } | |
789 | ||
790 | // | |
791 | // The Primitives | |
792 | // | |
793 | ||
794 | void wxGDIPlusPathData::MoveToPoint( wxDouble x , wxDouble y ) | |
795 | { | |
796 | m_path->StartFigure(); | |
797 | m_path->AddLine((REAL) x,(REAL) y,(REAL) x,(REAL) y); | |
798 | } | |
799 | ||
800 | void wxGDIPlusPathData::AddLineToPoint( wxDouble x , wxDouble y ) | |
801 | { | |
802 | m_path->AddLine((REAL) x,(REAL) y,(REAL) x,(REAL) y); | |
803 | } | |
804 | ||
805 | void wxGDIPlusPathData::CloseSubpath() | |
806 | { | |
807 | m_path->CloseFigure(); | |
808 | } | |
809 | ||
810 | void wxGDIPlusPathData::AddCurveToPoint( wxDouble cx1, wxDouble cy1, wxDouble cx2, wxDouble cy2, wxDouble x, wxDouble y ) | |
811 | { | |
812 | PointF c1(cx1,cy1); | |
813 | PointF c2(cx2,cy2); | |
814 | PointF end(x,y); | |
815 | PointF start; | |
816 | m_path->GetLastPoint(&start); | |
817 | m_path->AddBezier(start,c1,c2,end); | |
818 | } | |
819 | ||
820 | // gets the last point of the current path, (0,0) if not yet set | |
821 | void wxGDIPlusPathData::GetCurrentPoint( wxDouble* x, wxDouble* y) const | |
822 | { | |
823 | PointF start; | |
824 | m_path->GetLastPoint(&start); | |
825 | *x = start.X ; | |
826 | *y = start.Y ; | |
827 | } | |
828 | ||
829 | void wxGDIPlusPathData::AddArc( wxDouble x, wxDouble y, wxDouble r, double startAngle, double endAngle, bool clockwise ) | |
830 | { | |
831 | double sweepAngle = endAngle - startAngle ; | |
832 | if( fabs(sweepAngle) >= 2*M_PI) | |
833 | { | |
834 | sweepAngle = 2 * M_PI; | |
835 | } | |
836 | else | |
837 | { | |
838 | if ( clockwise ) | |
839 | { | |
840 | if( sweepAngle < 0 ) | |
841 | sweepAngle += 2 * M_PI; | |
842 | } | |
843 | else | |
844 | { | |
845 | if( sweepAngle > 0 ) | |
846 | sweepAngle -= 2 * M_PI; | |
847 | ||
848 | } | |
849 | } | |
850 | m_path->AddArc((REAL) (x-r),(REAL) (y-r),(REAL) (2*r),(REAL) (2*r),RadToDeg(startAngle),RadToDeg(sweepAngle)); | |
851 | } | |
852 | ||
853 | void wxGDIPlusPathData::AddRectangle( wxDouble x, wxDouble y, wxDouble w, wxDouble h ) | |
854 | { | |
855 | m_path->AddRectangle(RectF(x,y,w,h)); | |
856 | } | |
857 | ||
858 | void wxGDIPlusPathData::AddPath( const wxGraphicsPathData* path ) | |
859 | { | |
860 | m_path->AddPath( (GraphicsPath*) path->GetNativePath(), FALSE); | |
861 | } | |
862 | ||
863 | ||
864 | // transforms each point of this path by the matrix | |
865 | void wxGDIPlusPathData::Transform( const wxGraphicsMatrixData* matrix ) | |
866 | { | |
867 | m_path->Transform( (Matrix*) matrix->GetNativeMatrix() ); | |
868 | } | |
869 | ||
870 | // gets the bounding box enclosing all points (possibly including control points) | |
871 | void wxGDIPlusPathData::GetBox(wxDouble *x, wxDouble *y, wxDouble *w, wxDouble *h) const | |
872 | { | |
873 | RectF bounds; | |
874 | m_path->GetBounds( &bounds, NULL, NULL) ; | |
875 | *x = bounds.X; | |
876 | *y = bounds.Y; | |
877 | *w = bounds.Width; | |
878 | *h = bounds.Height; | |
879 | } | |
880 | ||
881 | bool wxGDIPlusPathData::Contains( wxDouble x, wxDouble y, int fillStyle ) const | |
882 | { | |
883 | m_path->SetFillMode( fillStyle == wxODDEVEN_RULE ? FillModeAlternate : FillModeWinding); | |
884 | return m_path->IsVisible( (FLOAT) x,(FLOAT) y) == TRUE ; | |
885 | } | |
886 | ||
887 | //----------------------------------------------------------------------------- | |
888 | // wxGDIPlusMatrixData implementation | |
889 | //----------------------------------------------------------------------------- | |
890 | ||
891 | wxGDIPlusMatrixData::wxGDIPlusMatrixData(wxGraphicsRenderer* renderer, Matrix* matrix ) | |
892 | : wxGraphicsMatrixData(renderer) | |
893 | { | |
894 | if ( matrix ) | |
895 | m_matrix = matrix ; | |
896 | else | |
897 | m_matrix = new Matrix(); | |
898 | } | |
899 | ||
900 | wxGDIPlusMatrixData::~wxGDIPlusMatrixData() | |
901 | { | |
902 | delete m_matrix; | |
903 | } | |
904 | ||
905 | wxGraphicsObjectRefData *wxGDIPlusMatrixData::Clone() const | |
906 | { | |
907 | return new wxGDIPlusMatrixData( GetRenderer(), m_matrix->Clone()); | |
908 | } | |
909 | ||
910 | // concatenates the matrix | |
911 | void wxGDIPlusMatrixData::Concat( const wxGraphicsMatrixData *t ) | |
912 | { | |
913 | m_matrix->Multiply( (Matrix*) t->GetNativeMatrix()); | |
914 | } | |
915 | ||
916 | // sets the matrix to the respective values | |
917 | void wxGDIPlusMatrixData::Set(wxDouble a, wxDouble b, wxDouble c, wxDouble d, | |
918 | wxDouble tx, wxDouble ty) | |
919 | { | |
920 | m_matrix->SetElements(a,b,c,d,tx,ty); | |
921 | } | |
922 | ||
923 | // gets the component valuess of the matrix | |
924 | void wxGDIPlusMatrixData::Get(wxDouble* a, wxDouble* b, wxDouble* c, | |
925 | wxDouble* d, wxDouble* tx, wxDouble* ty) const | |
926 | { | |
927 | REAL elements[6]; | |
928 | m_matrix->GetElements(elements); | |
929 | if (a) *a = elements[0]; | |
930 | if (b) *b = elements[1]; | |
931 | if (c) *c = elements[2]; | |
932 | if (d) *d = elements[3]; | |
933 | if (tx) *tx= elements[4]; | |
934 | if (ty) *ty= elements[5]; | |
935 | } | |
936 | ||
937 | // makes this the inverse matrix | |
938 | void wxGDIPlusMatrixData::Invert() | |
939 | { | |
940 | m_matrix->Invert(); | |
941 | } | |
942 | ||
943 | // returns true if the elements of the transformation matrix are equal ? | |
944 | bool wxGDIPlusMatrixData::IsEqual( const wxGraphicsMatrixData* t) const | |
945 | { | |
946 | return m_matrix->Equals((Matrix*) t->GetNativeMatrix())== TRUE ; | |
947 | } | |
948 | ||
949 | // return true if this is the identity matrix | |
950 | bool wxGDIPlusMatrixData::IsIdentity() const | |
951 | { | |
952 | return m_matrix->IsIdentity() == TRUE ; | |
953 | } | |
954 | ||
955 | // | |
956 | // transformation | |
957 | // | |
958 | ||
959 | // add the translation to this matrix | |
960 | void wxGDIPlusMatrixData::Translate( wxDouble dx , wxDouble dy ) | |
961 | { | |
962 | m_matrix->Translate(dx,dy); | |
963 | } | |
964 | ||
965 | // add the scale to this matrix | |
966 | void wxGDIPlusMatrixData::Scale( wxDouble xScale , wxDouble yScale ) | |
967 | { | |
968 | m_matrix->Scale(xScale,yScale); | |
969 | } | |
970 | ||
971 | // add the rotation to this matrix (radians) | |
972 | void wxGDIPlusMatrixData::Rotate( wxDouble angle ) | |
973 | { | |
974 | m_matrix->Rotate( angle ); | |
975 | } | |
976 | ||
977 | // | |
978 | // apply the transforms | |
979 | // | |
980 | ||
981 | // applies that matrix to the point | |
982 | void wxGDIPlusMatrixData::TransformPoint( wxDouble *x, wxDouble *y ) const | |
983 | { | |
984 | PointF pt(*x,*y); | |
985 | m_matrix->TransformPoints(&pt); | |
986 | *x = pt.X; | |
987 | *y = pt.Y; | |
988 | } | |
989 | ||
990 | // applies the matrix except for translations | |
991 | void wxGDIPlusMatrixData::TransformDistance( wxDouble *dx, wxDouble *dy ) const | |
992 | { | |
993 | PointF pt(*dx,*dy); | |
994 | m_matrix->TransformVectors(&pt); | |
995 | *dx = pt.X; | |
996 | *dy = pt.Y; | |
997 | } | |
998 | ||
999 | // returns the native representation | |
1000 | void * wxGDIPlusMatrixData::GetNativeMatrix() const | |
1001 | { | |
1002 | return m_matrix; | |
1003 | } | |
1004 | ||
1005 | //----------------------------------------------------------------------------- | |
1006 | // wxGDIPlusContext implementation | |
1007 | //----------------------------------------------------------------------------- | |
1008 | ||
1009 | IMPLEMENT_DYNAMIC_CLASS(wxGDIPlusContext,wxGraphicsContext) | |
1010 | IMPLEMENT_DYNAMIC_CLASS(wxGDIPlusMeasuringContext,wxGDIPlusContext) | |
1011 | ||
1012 | class wxGDIPlusOffsetHelper | |
1013 | { | |
1014 | public : | |
1015 | wxGDIPlusOffsetHelper( Graphics* gr , bool offset ) | |
1016 | { | |
1017 | m_gr = gr; | |
1018 | m_offset = offset; | |
1019 | if ( m_offset ) | |
1020 | m_gr->TranslateTransform( 0.5, 0.5 ); | |
1021 | } | |
1022 | ~wxGDIPlusOffsetHelper( ) | |
1023 | { | |
1024 | if ( m_offset ) | |
1025 | m_gr->TranslateTransform( -0.5, -0.5 ); | |
1026 | } | |
1027 | public : | |
1028 | Graphics* m_gr; | |
1029 | bool m_offset; | |
1030 | } ; | |
1031 | ||
1032 | wxGDIPlusContext::wxGDIPlusContext( wxGraphicsRenderer* renderer, HDC hdc, wxDouble width, wxDouble height ) | |
1033 | : wxGraphicsContext(renderer) | |
1034 | { | |
1035 | Init(); | |
1036 | m_context = new Graphics( hdc); | |
1037 | m_width = width; | |
1038 | m_height = height; | |
1039 | SetDefaults(); | |
1040 | } | |
1041 | ||
1042 | wxGDIPlusContext::wxGDIPlusContext( wxGraphicsRenderer* renderer, HWND hwnd ) | |
1043 | : wxGraphicsContext(renderer) | |
1044 | { | |
1045 | Init(); | |
1046 | m_context = new Graphics( hwnd); | |
1047 | RECT rect = wxGetWindowRect(hwnd); | |
1048 | m_width = rect.right - rect.left; | |
1049 | m_height = rect.bottom - rect.top; | |
1050 | SetDefaults(); | |
1051 | } | |
1052 | ||
1053 | wxGDIPlusContext::wxGDIPlusContext( wxGraphicsRenderer* renderer, Graphics* gr ) | |
1054 | : wxGraphicsContext(renderer) | |
1055 | { | |
1056 | Init(); | |
1057 | m_context = gr; | |
1058 | SetDefaults(); | |
1059 | } | |
1060 | ||
1061 | wxGDIPlusContext::wxGDIPlusContext() : wxGraphicsContext(NULL) | |
1062 | { | |
1063 | Init(); | |
1064 | } | |
1065 | ||
1066 | void wxGDIPlusContext::Init() | |
1067 | { | |
1068 | m_context = NULL; | |
1069 | m_state1 = 0; | |
1070 | m_state2= 0; | |
1071 | m_height = 0; | |
1072 | m_width = 0; | |
1073 | } | |
1074 | ||
1075 | void wxGDIPlusContext::SetDefaults() | |
1076 | { | |
1077 | m_context->SetTextRenderingHint(TextRenderingHintSystemDefault); | |
1078 | m_context->SetPixelOffsetMode(PixelOffsetModeHalf); | |
1079 | m_context->SetSmoothingMode(SmoothingModeHighQuality); | |
1080 | m_state1 = m_context->Save(); | |
1081 | m_state2 = m_context->Save(); | |
1082 | } | |
1083 | ||
1084 | wxGDIPlusContext::~wxGDIPlusContext() | |
1085 | { | |
1086 | if ( m_context ) | |
1087 | { | |
1088 | m_context->Restore( m_state2 ); | |
1089 | m_context->Restore( m_state1 ); | |
1090 | delete m_context; | |
1091 | } | |
1092 | } | |
1093 | ||
1094 | ||
1095 | void wxGDIPlusContext::Clip( const wxRegion ®ion ) | |
1096 | { | |
1097 | Region rgn((HRGN)region.GetHRGN()); | |
1098 | m_context->SetClip(&rgn,CombineModeIntersect); | |
1099 | } | |
1100 | ||
1101 | void wxGDIPlusContext::Clip( wxDouble x, wxDouble y, wxDouble w, wxDouble h ) | |
1102 | { | |
1103 | m_context->SetClip(RectF(x,y,w,h),CombineModeIntersect); | |
1104 | } | |
1105 | ||
1106 | void wxGDIPlusContext::ResetClip() | |
1107 | { | |
1108 | m_context->ResetClip(); | |
1109 | } | |
1110 | ||
1111 | void wxGDIPlusContext::StrokeLines( size_t n, const wxPoint2DDouble *points) | |
1112 | { | |
1113 | if ( !m_pen.IsNull() ) | |
1114 | { | |
1115 | wxGDIPlusOffsetHelper helper( m_context , ShouldOffset() ); | |
1116 | Point *cpoints = new Point[n]; | |
1117 | for (size_t i = 0; i < n; i++) | |
1118 | { | |
1119 | cpoints[i].X = (int)(points[i].m_x ); | |
1120 | cpoints[i].Y = (int)(points[i].m_y ); | |
1121 | ||
1122 | } // for (size_t i = 0; i < n; i++) | |
1123 | m_context->DrawLines( ((wxGDIPlusPenData*)m_pen.GetGraphicsData())->GetGDIPlusPen() , cpoints , n ) ; | |
1124 | delete[] cpoints; | |
1125 | } | |
1126 | } | |
1127 | ||
1128 | void wxGDIPlusContext::DrawLines( size_t n, const wxPoint2DDouble *points, int WXUNUSED(fillStyle) ) | |
1129 | { | |
1130 | wxGDIPlusOffsetHelper helper( m_context , ShouldOffset() ); | |
1131 | Point *cpoints = new Point[n]; | |
1132 | for (size_t i = 0; i < n; i++) | |
1133 | { | |
1134 | cpoints[i].X = (int)(points[i].m_x ); | |
1135 | cpoints[i].Y = (int)(points[i].m_y ); | |
1136 | ||
1137 | } // for (int i = 0; i < n; i++) | |
1138 | if ( !m_brush.IsNull() ) | |
1139 | m_context->FillPolygon( ((wxGDIPlusBrushData*)m_brush.GetRefData())->GetGDIPlusBrush() , cpoints , n ) ; | |
1140 | if ( !m_pen.IsNull() ) | |
1141 | m_context->DrawLines( ((wxGDIPlusPenData*)m_pen.GetGraphicsData())->GetGDIPlusPen() , cpoints , n ) ; | |
1142 | delete[] cpoints; | |
1143 | } | |
1144 | ||
1145 | void wxGDIPlusContext::StrokePath( const wxGraphicsPath& path ) | |
1146 | { | |
1147 | if ( !m_pen.IsNull() ) | |
1148 | { | |
1149 | wxGDIPlusOffsetHelper helper( m_context , ShouldOffset() ); | |
1150 | m_context->DrawPath( ((wxGDIPlusPenData*)m_pen.GetGraphicsData())->GetGDIPlusPen() , (GraphicsPath*) path.GetNativePath() ); | |
1151 | } | |
1152 | } | |
1153 | ||
1154 | void wxGDIPlusContext::FillPath( const wxGraphicsPath& path , int fillStyle ) | |
1155 | { | |
1156 | if ( !m_brush.IsNull() ) | |
1157 | { | |
1158 | wxGDIPlusOffsetHelper helper( m_context , ShouldOffset() ); | |
1159 | ((GraphicsPath*) path.GetNativePath())->SetFillMode( fillStyle == wxODDEVEN_RULE ? FillModeAlternate : FillModeWinding); | |
1160 | m_context->FillPath( ((wxGDIPlusBrushData*)m_brush.GetRefData())->GetGDIPlusBrush() , | |
1161 | (GraphicsPath*) path.GetNativePath()); | |
1162 | } | |
1163 | } | |
1164 | ||
1165 | void wxGDIPlusContext::Rotate( wxDouble angle ) | |
1166 | { | |
1167 | m_context->RotateTransform( RadToDeg(angle) ); | |
1168 | } | |
1169 | ||
1170 | void wxGDIPlusContext::Translate( wxDouble dx , wxDouble dy ) | |
1171 | { | |
1172 | m_context->TranslateTransform( dx , dy ); | |
1173 | } | |
1174 | ||
1175 | void wxGDIPlusContext::Scale( wxDouble xScale , wxDouble yScale ) | |
1176 | { | |
1177 | m_context->ScaleTransform(xScale,yScale); | |
1178 | } | |
1179 | ||
1180 | void wxGDIPlusContext::PushState() | |
1181 | { | |
1182 | GraphicsState state = m_context->Save(); | |
1183 | m_stateStack.push(state); | |
1184 | } | |
1185 | ||
1186 | void wxGDIPlusContext::PopState() | |
1187 | { | |
1188 | GraphicsState state = m_stateStack.top(); | |
1189 | m_stateStack.pop(); | |
1190 | m_context->Restore(state); | |
1191 | } | |
1192 | ||
1193 | void wxGDIPlusContext::DrawBitmap( const wxGraphicsBitmap &bmp, wxDouble x, wxDouble y, wxDouble w, wxDouble h ) | |
1194 | { | |
1195 | Bitmap* image = static_cast<wxGDIPlusBitmapData*>(bmp.GetRefData())->GetGDIPlusBitmap(); | |
1196 | if ( image ) | |
1197 | { | |
1198 | if( image->GetWidth() != (UINT) w || image->GetHeight() != (UINT) h ) | |
1199 | { | |
1200 | Rect drawRect((REAL) x, (REAL)y, (REAL)w, (REAL)h); | |
1201 | m_context->SetPixelOffsetMode( PixelOffsetModeNone ); | |
1202 | m_context->DrawImage(image, drawRect, 0 , 0 , image->GetWidth()-1, image->GetHeight()-1, UnitPixel ) ; | |
1203 | m_context->SetPixelOffsetMode( PixelOffsetModeHalf ); | |
1204 | } | |
1205 | else | |
1206 | m_context->DrawImage(image,(REAL) x,(REAL) y,(REAL) w,(REAL) h) ; | |
1207 | } | |
1208 | } | |
1209 | ||
1210 | void wxGDIPlusContext::DrawBitmap( const wxBitmap &bmp, wxDouble x, wxDouble y, wxDouble w, wxDouble h ) | |
1211 | { | |
1212 | wxGraphicsBitmap bitmap = GetRenderer()->CreateBitmap(bmp); | |
1213 | DrawBitmap(bitmap, x, y, w, h); | |
1214 | } | |
1215 | ||
1216 | void wxGDIPlusContext::DrawIcon( const wxIcon &icon, wxDouble x, wxDouble y, wxDouble w, wxDouble h ) | |
1217 | { | |
1218 | // the built-in conversion fails when there is alpha in the HICON (eg XP style icons), we can only | |
1219 | // find out by looking at the bitmap data whether there really was alpha in it | |
1220 | HICON hIcon = (HICON)icon.GetHICON(); | |
1221 | ICONINFO iconInfo ; | |
1222 | // IconInfo creates the bitmaps for color and mask, we must dispose of them after use | |
1223 | if (!GetIconInfo(hIcon,&iconInfo)) | |
1224 | return; | |
1225 | ||
1226 | Bitmap interim(iconInfo.hbmColor,NULL); | |
1227 | ||
1228 | Bitmap* image = NULL ; | |
1229 | ||
1230 | // if it's not 32 bit, it doesn't have an alpha channel, note that since the conversion doesn't | |
1231 | // work correctly, asking IsAlphaPixelFormat at this point fails as well | |
1232 | if( GetPixelFormatSize(interim.GetPixelFormat())!= 32 ) | |
1233 | { | |
1234 | image = Bitmap::FromHICON(hIcon); | |
1235 | } | |
1236 | else | |
1237 | { | |
1238 | size_t width = interim.GetWidth(); | |
1239 | size_t height = interim.GetHeight(); | |
1240 | Rect bounds(0,0,width,height); | |
1241 | BitmapData data ; | |
1242 | ||
1243 | interim.LockBits(&bounds, ImageLockModeRead, | |
1244 | interim.GetPixelFormat(),&data); | |
1245 | ||
1246 | bool hasAlpha = false; | |
1247 | for ( size_t y = 0 ; y < height && !hasAlpha ; ++y) | |
1248 | { | |
1249 | for( size_t x = 0 ; x < width && !hasAlpha; ++x) | |
1250 | { | |
1251 | ARGB *dest = (ARGB*)((BYTE*)data.Scan0 + data.Stride*y + x*4); | |
1252 | if ( ( *dest & Color::AlphaMask ) != 0 ) | |
1253 | hasAlpha = true; | |
1254 | } | |
1255 | } | |
1256 | ||
1257 | if ( hasAlpha ) | |
1258 | { | |
1259 | image = new Bitmap(data.Width, data.Height, data.Stride, | |
1260 | PixelFormat32bppARGB , (BYTE*) data.Scan0); | |
1261 | } | |
1262 | else | |
1263 | { | |
1264 | image = Bitmap::FromHICON(hIcon); | |
1265 | } | |
1266 | ||
1267 | interim.UnlockBits(&data); | |
1268 | } | |
1269 | ||
1270 | m_context->DrawImage(image,(REAL) x,(REAL) y,(REAL) w,(REAL) h) ; | |
1271 | ||
1272 | delete image ; | |
1273 | DeleteObject(iconInfo.hbmColor); | |
1274 | DeleteObject(iconInfo.hbmMask); | |
1275 | } | |
1276 | ||
1277 | void wxGDIPlusContext::DoDrawFilledText(const wxString& str, | |
1278 | wxDouble x, wxDouble y, | |
1279 | const wxGraphicsBrush& brush) | |
1280 | { | |
1281 | wxCHECK_RET( !m_font.IsNull(), | |
1282 | wxT("wxGDIPlusContext::DrawText - no valid font set") ); | |
1283 | ||
1284 | if ( str.IsEmpty()) | |
1285 | return ; | |
1286 | ||
1287 | wxGDIPlusFontData * const | |
1288 | fontData = (wxGDIPlusFontData *)m_font.GetRefData(); | |
1289 | wxGDIPlusBrushData * const | |
1290 | brushData = (wxGDIPlusBrushData *)brush.GetRefData(); | |
1291 | ||
1292 | m_context->DrawString | |
1293 | ( | |
1294 | str.wc_str(*wxConvUI), // string to draw, always Unicode | |
1295 | -1, // length: string is NUL-terminated | |
1296 | fontData->GetGDIPlusFont(), | |
1297 | PointF(x, y), | |
1298 | StringFormat::GenericTypographic(), | |
1299 | brushData ? brushData->GetGDIPlusBrush() | |
1300 | : fontData->GetGDIPlusBrush() | |
1301 | ); | |
1302 | } | |
1303 | ||
1304 | void wxGDIPlusContext::GetTextExtent( const wxString &str, wxDouble *width, wxDouble *height, | |
1305 | wxDouble *descent, wxDouble *externalLeading ) const | |
1306 | { | |
1307 | wxCHECK_RET( !m_font.IsNull(), wxT("wxGDIPlusContext::GetTextExtent - no valid font set") ); | |
1308 | ||
1309 | wxWCharBuffer s = str.wc_str( *wxConvUI ); | |
1310 | FontFamily ffamily ; | |
1311 | Font* f = ((wxGDIPlusFontData*)m_font.GetRefData())->GetGDIPlusFont(); | |
1312 | ||
1313 | f->GetFamily(&ffamily) ; | |
1314 | ||
1315 | REAL factorY = m_context->GetDpiY() / 72.0 ; | |
1316 | ||
1317 | REAL rDescent = ffamily.GetCellDescent(FontStyleRegular) * | |
1318 | f->GetSize() / ffamily.GetEmHeight(FontStyleRegular); | |
1319 | REAL rAscent = ffamily.GetCellAscent(FontStyleRegular) * | |
1320 | f->GetSize() / ffamily.GetEmHeight(FontStyleRegular); | |
1321 | REAL rHeight = ffamily.GetLineSpacing(FontStyleRegular) * | |
1322 | f->GetSize() / ffamily.GetEmHeight(FontStyleRegular); | |
1323 | ||
1324 | if ( height ) | |
1325 | *height = rHeight * factorY; | |
1326 | if ( descent ) | |
1327 | *descent = rDescent * factorY; | |
1328 | if ( externalLeading ) | |
1329 | *externalLeading = (rHeight - rAscent - rDescent) * factorY; | |
1330 | // measuring empty strings is not guaranteed, so do it by hand | |
1331 | if ( str.IsEmpty()) | |
1332 | { | |
1333 | if ( width ) | |
1334 | *width = 0 ; | |
1335 | } | |
1336 | else | |
1337 | { | |
1338 | RectF layoutRect(0,0, 100000.0f, 100000.0f); | |
1339 | StringFormat strFormat( StringFormat::GenericTypographic() ); | |
1340 | strFormat.SetFormatFlags( StringFormatFlagsMeasureTrailingSpaces | strFormat.GetFormatFlags() ); | |
1341 | ||
1342 | RectF bounds ; | |
1343 | m_context->MeasureString((const wchar_t *) s , wcslen(s) , f, layoutRect, &strFormat, &bounds ) ; | |
1344 | if ( width ) | |
1345 | *width = bounds.Width; | |
1346 | } | |
1347 | } | |
1348 | ||
1349 | void wxGDIPlusContext::GetPartialTextExtents(const wxString& text, wxArrayDouble& widths) const | |
1350 | { | |
1351 | widths.Empty(); | |
1352 | widths.Add(0, text.length()); | |
1353 | ||
1354 | wxCHECK_RET( !m_font.IsNull(), wxT("wxGDIPlusContext::GetPartialTextExtents - no valid font set") ); | |
1355 | ||
1356 | if (text.empty()) | |
1357 | return; | |
1358 | ||
1359 | Font* f = ((wxGDIPlusFontData*)m_font.GetRefData())->GetGDIPlusFont(); | |
1360 | wxWCharBuffer ws = text.wc_str( *wxConvUI ); | |
1361 | size_t len = wcslen( ws ) ; | |
1362 | wxASSERT_MSG(text.length() == len , wxT("GetPartialTextExtents not yet implemented for multichar situations")); | |
1363 | ||
1364 | RectF layoutRect(0,0, 100000.0f, 100000.0f); | |
1365 | StringFormat strFormat( StringFormat::GenericTypographic() ); | |
1366 | ||
1367 | CharacterRange* ranges = new CharacterRange[len] ; | |
1368 | Region* regions = new Region[len]; | |
1369 | for( size_t i = 0 ; i < len ; ++i) | |
1370 | { | |
1371 | ranges[i].First = i ; | |
1372 | ranges[i].Length = 1 ; | |
1373 | } | |
1374 | strFormat.SetMeasurableCharacterRanges(len,ranges); | |
1375 | strFormat.SetFormatFlags( StringFormatFlagsMeasureTrailingSpaces | strFormat.GetFormatFlags() ); | |
1376 | m_context->MeasureCharacterRanges(ws, -1 , f,layoutRect, &strFormat,1,regions) ; | |
1377 | ||
1378 | RectF bbox ; | |
1379 | for ( size_t i = 0 ; i < len ; ++i) | |
1380 | { | |
1381 | regions[i].GetBounds(&bbox,m_context); | |
1382 | widths[i] = bbox.GetRight()-bbox.GetLeft(); | |
1383 | } | |
1384 | } | |
1385 | ||
1386 | bool wxGDIPlusContext::ShouldOffset() const | |
1387 | { | |
1388 | int penwidth = 0 ; | |
1389 | if ( !m_pen.IsNull() ) | |
1390 | { | |
1391 | penwidth = (int)((wxGDIPlusPenData*)m_pen.GetRefData())->GetWidth(); | |
1392 | if ( penwidth == 0 ) | |
1393 | penwidth = 1; | |
1394 | } | |
1395 | return ( penwidth % 2 ) == 1; | |
1396 | } | |
1397 | ||
1398 | void* wxGDIPlusContext::GetNativeContext() | |
1399 | { | |
1400 | return m_context; | |
1401 | } | |
1402 | ||
1403 | // concatenates this transform with the current transform of this context | |
1404 | void wxGDIPlusContext::ConcatTransform( const wxGraphicsMatrix& matrix ) | |
1405 | { | |
1406 | m_context->MultiplyTransform((Matrix*) matrix.GetNativeMatrix()); | |
1407 | } | |
1408 | ||
1409 | // sets the transform of this context | |
1410 | void wxGDIPlusContext::SetTransform( const wxGraphicsMatrix& matrix ) | |
1411 | { | |
1412 | m_context->SetTransform((Matrix*) matrix.GetNativeMatrix()); | |
1413 | } | |
1414 | ||
1415 | // gets the matrix of this context | |
1416 | wxGraphicsMatrix wxGDIPlusContext::GetTransform() const | |
1417 | { | |
1418 | wxGraphicsMatrix matrix = CreateMatrix(); | |
1419 | m_context->GetTransform((Matrix*) matrix.GetNativeMatrix()); | |
1420 | return matrix; | |
1421 | } | |
1422 | ||
1423 | void wxGDIPlusContext::GetSize( wxDouble* width, wxDouble *height ) | |
1424 | { | |
1425 | *width = m_width; | |
1426 | *height = m_height; | |
1427 | } | |
1428 | //----------------------------------------------------------------------------- | |
1429 | // wxGDIPlusRenderer declaration | |
1430 | //----------------------------------------------------------------------------- | |
1431 | ||
1432 | class wxGDIPlusRenderer : public wxGraphicsRenderer | |
1433 | { | |
1434 | public : | |
1435 | wxGDIPlusRenderer() | |
1436 | { | |
1437 | m_loaded = -1; | |
1438 | m_gditoken = 0; | |
1439 | } | |
1440 | ||
1441 | virtual ~wxGDIPlusRenderer() | |
1442 | { | |
1443 | if ( m_loaded == 1 ) | |
1444 | { | |
1445 | Unload(); | |
1446 | } | |
1447 | } | |
1448 | ||
1449 | // Context | |
1450 | ||
1451 | virtual wxGraphicsContext * CreateContext( const wxWindowDC& dc); | |
1452 | ||
1453 | virtual wxGraphicsContext * CreateContext( const wxMemoryDC& dc); | |
1454 | ||
1455 | virtual wxGraphicsContext * CreateContext( const wxPrinterDC& dc); | |
1456 | ||
1457 | virtual wxGraphicsContext * CreateContextFromNativeContext( void * context ); | |
1458 | ||
1459 | virtual wxGraphicsContext * CreateContextFromNativeWindow( void * window ); | |
1460 | ||
1461 | virtual wxGraphicsContext * CreateContext( wxWindow* window ); | |
1462 | ||
1463 | virtual wxGraphicsContext * CreateMeasuringContext(); | |
1464 | ||
1465 | // Path | |
1466 | ||
1467 | virtual wxGraphicsPath CreatePath(); | |
1468 | ||
1469 | // Matrix | |
1470 | ||
1471 | virtual wxGraphicsMatrix CreateMatrix( wxDouble a=1.0, wxDouble b=0.0, wxDouble c=0.0, wxDouble d=1.0, | |
1472 | wxDouble tx=0.0, wxDouble ty=0.0); | |
1473 | ||
1474 | ||
1475 | virtual wxGraphicsPen CreatePen(const wxPen& pen) ; | |
1476 | ||
1477 | virtual wxGraphicsBrush CreateBrush(const wxBrush& brush ) ; | |
1478 | ||
1479 | // sets the brush to a linear gradient, starting at (x1,y1) with color c1 to (x2,y2) with color c2 | |
1480 | virtual wxGraphicsBrush CreateLinearGradientBrush( wxDouble x1, wxDouble y1, wxDouble x2, wxDouble y2, | |
1481 | const wxColour&c1, const wxColour&c2) ; | |
1482 | ||
1483 | // sets the brush to a radial gradient originating at (xo,yc) with color oColor and ends on a circle around (xc,yc) | |
1484 | // with radius r and color cColor | |
1485 | virtual wxGraphicsBrush CreateRadialGradientBrush( wxDouble xo, wxDouble yo, wxDouble xc, wxDouble yc, wxDouble radius, | |
1486 | const wxColour &oColor, const wxColour &cColor) ; | |
1487 | ||
1488 | // sets the font | |
1489 | virtual wxGraphicsFont CreateFont( const wxFont &font , const wxColour &col = *wxBLACK ) ; | |
1490 | ||
1491 | // create a native bitmap representation | |
1492 | virtual wxGraphicsBitmap CreateBitmap( const wxBitmap &bitmap ); | |
1493 | ||
1494 | // create a subimage from a native image representation | |
1495 | virtual wxGraphicsBitmap CreateSubBitmap( const wxGraphicsBitmap &bitmap, wxDouble x, wxDouble y, wxDouble w, wxDouble h ); | |
1496 | ||
1497 | protected : | |
1498 | bool EnsureIsLoaded(); | |
1499 | void Load(); | |
1500 | void Unload(); | |
1501 | friend class wxGDIPlusRendererModule; | |
1502 | ||
1503 | private : | |
1504 | int m_loaded; | |
1505 | ULONG_PTR m_gditoken; | |
1506 | ||
1507 | DECLARE_DYNAMIC_CLASS_NO_COPY(wxGDIPlusRenderer) | |
1508 | } ; | |
1509 | ||
1510 | //----------------------------------------------------------------------------- | |
1511 | // wxGDIPlusRenderer implementation | |
1512 | //----------------------------------------------------------------------------- | |
1513 | ||
1514 | IMPLEMENT_DYNAMIC_CLASS(wxGDIPlusRenderer,wxGraphicsRenderer) | |
1515 | ||
1516 | static wxGDIPlusRenderer gs_GDIPlusRenderer; | |
1517 | ||
1518 | wxGraphicsRenderer* wxGraphicsRenderer::GetDefaultRenderer() | |
1519 | { | |
1520 | return &gs_GDIPlusRenderer; | |
1521 | } | |
1522 | ||
1523 | bool wxGDIPlusRenderer::EnsureIsLoaded() | |
1524 | { | |
1525 | // load gdiplus.dll if not yet loaded, but don't bother doing it again | |
1526 | // if we already tried and failed (we don't want to spend lot of time | |
1527 | // returning NULL from wxGraphicsContext::Create(), which may be called | |
1528 | // relatively frequently): | |
1529 | if ( m_loaded == -1 ) | |
1530 | { | |
1531 | Load(); | |
1532 | } | |
1533 | ||
1534 | return m_loaded == 1; | |
1535 | } | |
1536 | ||
1537 | // call EnsureIsLoaded() and return returnOnFail value if it fails | |
1538 | #define ENSURE_LOADED_OR_RETURN(returnOnFail) \ | |
1539 | if ( !EnsureIsLoaded() ) \ | |
1540 | return (returnOnFail) | |
1541 | ||
1542 | ||
1543 | void wxGDIPlusRenderer::Load() | |
1544 | { | |
1545 | GdiplusStartupInput input; | |
1546 | GdiplusStartupOutput output; | |
1547 | if ( GdiplusStartup(&m_gditoken,&input,&output) == Gdiplus::Ok ) | |
1548 | { | |
1549 | wxLogTrace("gdiplus", "successfully initialized GDI+"); | |
1550 | m_loaded = 1; | |
1551 | } | |
1552 | else | |
1553 | { | |
1554 | wxLogTrace("gdiplus", "failed to initialize GDI+, missing gdiplus.dll?"); | |
1555 | m_loaded = 0; | |
1556 | } | |
1557 | } | |
1558 | ||
1559 | void wxGDIPlusRenderer::Unload() | |
1560 | { | |
1561 | if ( m_gditoken ) | |
1562 | { | |
1563 | GdiplusShutdown(m_gditoken); | |
1564 | m_gditoken = NULL; | |
1565 | } | |
1566 | m_loaded = -1; // next Load() will try again | |
1567 | } | |
1568 | ||
1569 | wxGraphicsContext * wxGDIPlusRenderer::CreateContext( const wxWindowDC& dc) | |
1570 | { | |
1571 | ENSURE_LOADED_OR_RETURN(NULL); | |
1572 | wxMSWDCImpl *msw = wxDynamicCast( dc.GetImpl() , wxMSWDCImpl ); | |
1573 | wxSize sz = dc.GetSize(); | |
1574 | return new wxGDIPlusContext(this,(HDC) msw->GetHDC(), sz.x, sz.y); | |
1575 | } | |
1576 | ||
1577 | wxGraphicsContext * wxGDIPlusRenderer::CreateContext( const wxPrinterDC& dc) | |
1578 | { | |
1579 | ENSURE_LOADED_OR_RETURN(NULL); | |
1580 | wxMSWDCImpl *msw = wxDynamicCast( dc.GetImpl() , wxMSWDCImpl ); | |
1581 | wxSize sz = dc.GetSize(); | |
1582 | return new wxGDIPlusContext(this,(HDC) msw->GetHDC(), sz.x, sz.y); | |
1583 | } | |
1584 | ||
1585 | wxGraphicsContext * wxGDIPlusRenderer::CreateContext( const wxMemoryDC& dc) | |
1586 | { | |
1587 | ENSURE_LOADED_OR_RETURN(NULL); | |
1588 | wxMSWDCImpl *msw = wxDynamicCast( dc.GetImpl() , wxMSWDCImpl ); | |
1589 | wxSize sz = dc.GetSize(); | |
1590 | return new wxGDIPlusContext(this,(HDC) msw->GetHDC(), sz.x, sz.y); | |
1591 | } | |
1592 | ||
1593 | wxGraphicsContext * wxGDIPlusRenderer::CreateMeasuringContext() | |
1594 | { | |
1595 | ENSURE_LOADED_OR_RETURN(NULL); | |
1596 | return new wxGDIPlusMeasuringContext(this); | |
1597 | } | |
1598 | ||
1599 | wxGraphicsContext * wxGDIPlusRenderer::CreateContextFromNativeContext( void * context ) | |
1600 | { | |
1601 | ENSURE_LOADED_OR_RETURN(NULL); | |
1602 | return new wxGDIPlusContext(this,(Graphics*) context); | |
1603 | } | |
1604 | ||
1605 | ||
1606 | wxGraphicsContext * wxGDIPlusRenderer::CreateContextFromNativeWindow( void * window ) | |
1607 | { | |
1608 | ENSURE_LOADED_OR_RETURN(NULL); | |
1609 | return new wxGDIPlusContext(this,(HWND) window); | |
1610 | } | |
1611 | ||
1612 | wxGraphicsContext * wxGDIPlusRenderer::CreateContext( wxWindow* window ) | |
1613 | { | |
1614 | ENSURE_LOADED_OR_RETURN(NULL); | |
1615 | return new wxGDIPlusContext(this, (HWND) window->GetHWND() ); | |
1616 | } | |
1617 | ||
1618 | // Path | |
1619 | ||
1620 | wxGraphicsPath wxGDIPlusRenderer::CreatePath() | |
1621 | { | |
1622 | ENSURE_LOADED_OR_RETURN(wxNullGraphicsPath); | |
1623 | wxGraphicsPath m; | |
1624 | m.SetRefData( new wxGDIPlusPathData(this)); | |
1625 | return m; | |
1626 | } | |
1627 | ||
1628 | ||
1629 | // Matrix | |
1630 | ||
1631 | wxGraphicsMatrix wxGDIPlusRenderer::CreateMatrix( wxDouble a, wxDouble b, wxDouble c, wxDouble d, | |
1632 | wxDouble tx, wxDouble ty) | |
1633 | ||
1634 | { | |
1635 | ENSURE_LOADED_OR_RETURN(wxNullGraphicsMatrix); | |
1636 | wxGraphicsMatrix m; | |
1637 | wxGDIPlusMatrixData* data = new wxGDIPlusMatrixData( this ); | |
1638 | data->Set( a,b,c,d,tx,ty ) ; | |
1639 | m.SetRefData(data); | |
1640 | return m; | |
1641 | } | |
1642 | ||
1643 | wxGraphicsPen wxGDIPlusRenderer::CreatePen(const wxPen& pen) | |
1644 | { | |
1645 | ENSURE_LOADED_OR_RETURN(wxNullGraphicsPen); | |
1646 | if ( !pen.Ok() || pen.GetStyle() == wxTRANSPARENT ) | |
1647 | return wxNullGraphicsPen; | |
1648 | else | |
1649 | { | |
1650 | wxGraphicsPen p; | |
1651 | p.SetRefData(new wxGDIPlusPenData( this, pen )); | |
1652 | return p; | |
1653 | } | |
1654 | } | |
1655 | ||
1656 | wxGraphicsBrush wxGDIPlusRenderer::CreateBrush(const wxBrush& brush ) | |
1657 | { | |
1658 | ENSURE_LOADED_OR_RETURN(wxNullGraphicsBrush); | |
1659 | if ( !brush.Ok() || brush.GetStyle() == wxTRANSPARENT ) | |
1660 | return wxNullGraphicsBrush; | |
1661 | else | |
1662 | { | |
1663 | wxGraphicsBrush p; | |
1664 | p.SetRefData(new wxGDIPlusBrushData( this, brush )); | |
1665 | return p; | |
1666 | } | |
1667 | } | |
1668 | ||
1669 | // sets the brush to a linear gradient, starting at (x1,y1) with color c1 to (x2,y2) with color c2 | |
1670 | wxGraphicsBrush wxGDIPlusRenderer::CreateLinearGradientBrush( wxDouble x1, wxDouble y1, wxDouble x2, wxDouble y2, | |
1671 | const wxColour&c1, const wxColour&c2) | |
1672 | { | |
1673 | ENSURE_LOADED_OR_RETURN(wxNullGraphicsBrush); | |
1674 | wxGraphicsBrush p; | |
1675 | wxGDIPlusBrushData* d = new wxGDIPlusBrushData( this ); | |
1676 | d->CreateLinearGradientBrush(x1, y1, x2, y2, c1, c2); | |
1677 | p.SetRefData(d); | |
1678 | return p; | |
1679 | } | |
1680 | ||
1681 | // sets the brush to a radial gradient originating at (xo,yc) with color oColor and ends on a circle around (xc,yc) | |
1682 | // with radius r and color cColor | |
1683 | wxGraphicsBrush wxGDIPlusRenderer::CreateRadialGradientBrush( wxDouble xo, wxDouble yo, wxDouble xc, wxDouble yc, wxDouble radius, | |
1684 | const wxColour &oColor, const wxColour &cColor) | |
1685 | { | |
1686 | ENSURE_LOADED_OR_RETURN(wxNullGraphicsBrush); | |
1687 | wxGraphicsBrush p; | |
1688 | wxGDIPlusBrushData* d = new wxGDIPlusBrushData( this ); | |
1689 | d->CreateRadialGradientBrush(xo,yo,xc,yc,radius,oColor,cColor); | |
1690 | p.SetRefData(d); | |
1691 | return p; | |
1692 | } | |
1693 | ||
1694 | // sets the font | |
1695 | wxGraphicsFont wxGDIPlusRenderer::CreateFont( const wxFont &font , const wxColour &col ) | |
1696 | { | |
1697 | ENSURE_LOADED_OR_RETURN(wxNullGraphicsFont); | |
1698 | if ( font.Ok() ) | |
1699 | { | |
1700 | wxGraphicsFont p; | |
1701 | p.SetRefData(new wxGDIPlusFontData( this , font, col )); | |
1702 | return p; | |
1703 | } | |
1704 | else | |
1705 | return wxNullGraphicsFont; | |
1706 | } | |
1707 | ||
1708 | wxGraphicsBitmap wxGDIPlusRenderer::CreateBitmap( const wxBitmap &bitmap ) | |
1709 | { | |
1710 | ENSURE_LOADED_OR_RETURN(wxNullGraphicsBitmap); | |
1711 | if ( bitmap.Ok() ) | |
1712 | { | |
1713 | wxGraphicsBitmap p; | |
1714 | p.SetRefData(new wxGDIPlusBitmapData( this , bitmap )); | |
1715 | return p; | |
1716 | } | |
1717 | else | |
1718 | return wxNullGraphicsBitmap; | |
1719 | } | |
1720 | ||
1721 | wxGraphicsBitmap wxGDIPlusRenderer::CreateSubBitmap( const wxGraphicsBitmap &bitmap, wxDouble x, wxDouble y, wxDouble w, wxDouble h ) | |
1722 | { | |
1723 | ENSURE_LOADED_OR_RETURN(wxNullGraphicsBitmap); | |
1724 | Bitmap* image = static_cast<wxGDIPlusBitmapData*>(bitmap.GetRefData())->GetGDIPlusBitmap(); | |
1725 | if ( image ) | |
1726 | { | |
1727 | wxGraphicsBitmap p; | |
1728 | p.SetRefData(new wxGDIPlusBitmapData( this , image->Clone( (REAL) x , (REAL) y , (REAL) w , (REAL) h , PixelFormat32bppPARGB) )); | |
1729 | return p; | |
1730 | } | |
1731 | else | |
1732 | return wxNullGraphicsBitmap; | |
1733 | } | |
1734 | ||
1735 | // Shutdown GDI+ at app exit, before possible dll unload | |
1736 | class wxGDIPlusRendererModule : public wxModule | |
1737 | { | |
1738 | public: | |
1739 | virtual bool OnInit() { return true; } | |
1740 | virtual void OnExit() { gs_GDIPlusRenderer.Unload(); } | |
1741 | ||
1742 | private: | |
1743 | DECLARE_DYNAMIC_CLASS(wxGDIPlusRendererModule) | |
1744 | }; | |
1745 | ||
1746 | IMPLEMENT_DYNAMIC_CLASS(wxGDIPlusRendererModule, wxModule) | |
1747 | ||
1748 | #endif // wxUSE_GRAPHICS_CONTEXT |