]>
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 | #ifndef WX_PRECOMP | |
21 | #include "wx/msw/wrapcdlg.h" | |
22 | #include "wx/image.h" | |
23 | #include "wx/window.h" | |
24 | #include "wx/dc.h" | |
25 | #include "wx/utils.h" | |
26 | #include "wx/dialog.h" | |
27 | #include "wx/app.h" | |
28 | #include "wx/bitmap.h" | |
29 | #include "wx/dcmemory.h" | |
30 | #include "wx/log.h" | |
31 | #include "wx/icon.h" | |
32 | #include "wx/dcprint.h" | |
33 | #include "wx/module.h" | |
34 | #endif | |
35 | ||
36 | #include "wx/graphics.h" | |
37 | ||
38 | #if wxUSE_GRAPHICS_CONTEXT | |
39 | ||
40 | #include <vector> | |
41 | ||
42 | using namespace std; | |
43 | ||
44 | //----------------------------------------------------------------------------- | |
45 | // constants | |
46 | //----------------------------------------------------------------------------- | |
47 | ||
48 | const double RAD2DEG = 180.0 / M_PI; | |
49 | ||
50 | //----------------------------------------------------------------------------- | |
51 | // Local functions | |
52 | //----------------------------------------------------------------------------- | |
53 | ||
54 | static inline double dmin(double a, double b) { return a < b ? a : b; } | |
55 | static inline double dmax(double a, double b) { return a > b ? a : b; } | |
56 | ||
57 | static inline double DegToRad(double deg) { return (deg * M_PI) / 180.0; } | |
58 | static inline double RadToDeg(double deg) { return (deg * 180.0) / M_PI; } | |
59 | ||
60 | //----------------------------------------------------------------------------- | |
61 | // device context implementation | |
62 | // | |
63 | // more and more of the dc functionality should be implemented by calling | |
64 | // the appropricate wxGDIPlusContext, but we will have to do that step by step | |
65 | // also coordinate conversions should be moved to native matrix ops | |
66 | //----------------------------------------------------------------------------- | |
67 | ||
68 | // we always stock two context states, one at entry, to be able to preserve the | |
69 | // state we were called with, the other one after changing to HI Graphics orientation | |
70 | // (this one is used for getting back clippings etc) | |
71 | ||
72 | //----------------------------------------------------------------------------- | |
73 | // wxGraphicsPath implementation | |
74 | //----------------------------------------------------------------------------- | |
75 | ||
76 | #include "wx/msw/private.h" // needs to be before #include <commdlg.h> | |
77 | ||
78 | #if wxUSE_COMMON_DIALOGS && !defined(__WXMICROWIN__) | |
79 | #include <commdlg.h> | |
80 | #endif | |
81 | ||
82 | // TODO remove this dependency (gdiplus needs the macros) | |
83 | ||
84 | #ifndef max | |
85 | #define max(a,b) (((a) > (b)) ? (a) : (b)) | |
86 | #endif | |
87 | ||
88 | #ifndef min | |
89 | #define min(a,b) (((a) < (b)) ? (a) : (b)) | |
90 | #endif | |
91 | ||
92 | #include "gdiplus.h" | |
93 | using namespace Gdiplus; | |
94 | ||
95 | class GDILoader | |
96 | { | |
97 | public : | |
98 | GDILoader() | |
99 | { | |
100 | m_loaded = false; | |
101 | m_gditoken = NULL; | |
102 | } | |
103 | ||
104 | ~GDILoader() | |
105 | { | |
106 | if (m_loaded) | |
107 | { | |
108 | Unload(); | |
109 | } | |
110 | } | |
111 | void EnsureIsLoaded() | |
112 | { | |
113 | if (!m_loaded) | |
114 | { | |
115 | Load(); | |
116 | } | |
117 | } | |
118 | void Load() | |
119 | { | |
120 | GdiplusStartupInput input; | |
121 | GdiplusStartupOutput output; | |
122 | GdiplusStartup(&m_gditoken,&input,&output); | |
123 | m_loaded = true; | |
124 | } | |
125 | void Unload() | |
126 | { | |
127 | if ( m_gditoken ) | |
128 | GdiplusShutdown(m_gditoken); | |
129 | } | |
130 | private : | |
131 | bool m_loaded; | |
132 | DWORD m_gditoken; | |
133 | ||
134 | }; | |
135 | ||
136 | static GDILoader gGDILoader; | |
137 | ||
138 | class WXDLLEXPORT wxGDIPlusPath : public wxGraphicsPath | |
139 | { | |
140 | DECLARE_NO_COPY_CLASS(wxGDIPlusPath) | |
141 | public : | |
142 | wxGDIPlusPath(); | |
143 | ~wxGDIPlusPath(); | |
144 | ||
145 | ||
146 | // | |
147 | // These are the path primitives from which everything else can be constructed | |
148 | // | |
149 | ||
150 | // begins a new subpath at (x,y) | |
151 | virtual void MoveToPoint( wxDouble x, wxDouble y ); | |
152 | ||
153 | // adds a straight line from the current point to (x,y) | |
154 | virtual void AddLineToPoint( wxDouble x, wxDouble y ); | |
155 | ||
156 | // adds a cubic Bezier curve from the current point, using two control points and an end point | |
157 | virtual void AddCurveToPoint( wxDouble cx1, wxDouble cy1, wxDouble cx2, wxDouble cy2, wxDouble x, wxDouble y ); | |
158 | ||
159 | ||
160 | // adds an arc of a circle centering at (x,y) with radius (r) from startAngle to endAngle | |
161 | virtual void AddArc( wxDouble x, wxDouble y, wxDouble r, wxDouble startAngle, wxDouble endAngle, bool clockwise ) ; | |
162 | ||
163 | // gets the last point of the current path, (0,0) if not yet set | |
164 | virtual void GetCurrentPoint( wxDouble& x, wxDouble&y) ; | |
165 | ||
166 | // closes the current sub-path | |
167 | virtual void CloseSubpath(); | |
168 | ||
169 | // | |
170 | // These are convenience functions which - if not available natively will be assembled | |
171 | // using the primitives from above | |
172 | // | |
173 | ||
174 | // appends a rectangle as a new closed subpath | |
175 | virtual void AddRectangle( wxDouble x, wxDouble y, wxDouble w, wxDouble h ) ; | |
176 | /* | |
177 | ||
178 | // appends an ellipsis as a new closed subpath fitting the passed rectangle | |
179 | virtual void AddEllipsis( wxDouble x, wxDouble y, wxDouble w , wxDouble h ) ; | |
180 | ||
181 | // 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) | |
182 | virtual void AddArcToPoint( wxDouble x1, wxDouble y1 , wxDouble x2, wxDouble y2, wxDouble r ) ; | |
183 | */ | |
184 | ||
185 | GraphicsPath* GetPath() const; | |
186 | private : | |
187 | GraphicsPath* m_path; | |
188 | }; | |
189 | ||
190 | class WXDLLEXPORT wxGDIPlusContext : public wxGraphicsContext | |
191 | { | |
192 | DECLARE_NO_COPY_CLASS(wxGDIPlusContext) | |
193 | ||
194 | public: | |
195 | wxGDIPlusContext( WXHDC hdc ); | |
196 | wxGDIPlusContext(); | |
197 | virtual ~wxGDIPlusContext(); | |
198 | ||
199 | virtual void Clip( const wxRegion ®ion ); | |
200 | virtual void StrokePath( const wxGraphicsPath *p ); | |
201 | virtual void FillPath( const wxGraphicsPath *p , int fillStyle = wxWINDING_RULE ); | |
202 | ||
203 | virtual wxGraphicsPath* CreatePath(); | |
204 | virtual void SetPen( const wxPen &pen ); | |
205 | virtual void SetBrush( const wxBrush &brush ); | |
206 | virtual void SetLinearGradientBrush( wxDouble x1, wxDouble y1, wxDouble x2, wxDouble y2, const wxColour&c1, const wxColour&c2) ; | |
207 | virtual void SetRadialGradientBrush( wxDouble xo, wxDouble yo, wxDouble xc, wxDouble yc, wxDouble radius, | |
208 | const wxColour &oColor, const wxColour &cColor); | |
209 | ||
210 | virtual void Translate( wxDouble dx , wxDouble dy ); | |
211 | virtual void Scale( wxDouble xScale , wxDouble yScale ); | |
212 | virtual void Rotate( wxDouble angle ); | |
213 | ||
214 | virtual void DrawBitmap( const wxBitmap &bmp, wxDouble x, wxDouble y, wxDouble w, wxDouble h ); | |
215 | virtual void DrawIcon( const wxIcon &icon, wxDouble x, wxDouble y, wxDouble w, wxDouble h ); | |
216 | virtual void PushState(); | |
217 | virtual void PopState(); | |
218 | ||
219 | virtual void SetFont( const wxFont &font ); | |
220 | virtual void SetTextColor( const wxColour &col ); | |
221 | virtual void DrawText( const wxString &str, wxDouble x, wxDouble y); | |
222 | virtual void GetTextExtent( const wxString &str, wxDouble *width, wxDouble *height, | |
223 | wxDouble *descent, wxDouble *externalLeading ) const; | |
224 | virtual void GetPartialTextExtents(const wxString& text, wxArrayDouble& widths) const; | |
225 | ||
226 | private: | |
227 | Graphics* m_context; | |
228 | vector<GraphicsState> m_stateStack; | |
229 | GraphicsState m_state1; | |
230 | GraphicsState m_state2; | |
231 | ||
232 | Pen* m_pen; | |
233 | bool m_penTransparent; | |
234 | Image* m_penImage; | |
235 | Brush* m_penBrush; | |
236 | ||
237 | Brush* m_brush; | |
238 | bool m_brushTransparent; | |
239 | Image* m_brushImage; | |
240 | GraphicsPath* m_brushPath; | |
241 | ||
242 | Brush* m_textBrush; | |
243 | Font* m_font; | |
244 | // wxPen m_pen; | |
245 | // wxBrush m_brush; | |
246 | }; | |
247 | ||
248 | wxGDIPlusPath::wxGDIPlusPath() | |
249 | { | |
250 | m_path = new GraphicsPath(); | |
251 | } | |
252 | ||
253 | wxGDIPlusPath::~wxGDIPlusPath() | |
254 | { | |
255 | delete m_path; | |
256 | } | |
257 | ||
258 | GraphicsPath* wxGDIPlusPath::GetPath() const | |
259 | { | |
260 | return m_path; | |
261 | } | |
262 | ||
263 | // | |
264 | // The Primitives | |
265 | // | |
266 | ||
267 | void wxGDIPlusPath::MoveToPoint( wxDouble x , wxDouble y ) | |
268 | { | |
269 | m_path->StartFigure(); | |
270 | m_path->AddLine((REAL) x,(REAL) y,(REAL) x,(REAL) y); | |
271 | } | |
272 | ||
273 | void wxGDIPlusPath::AddLineToPoint( wxDouble x , wxDouble y ) | |
274 | { | |
275 | m_path->AddLine((REAL) x,(REAL) y,(REAL) x,(REAL) y); | |
276 | } | |
277 | ||
278 | void wxGDIPlusPath::CloseSubpath() | |
279 | { | |
280 | m_path->CloseFigure(); | |
281 | } | |
282 | ||
283 | void wxGDIPlusPath::AddCurveToPoint( wxDouble cx1, wxDouble cy1, wxDouble cx2, wxDouble cy2, wxDouble x, wxDouble y ) | |
284 | { | |
285 | PointF c1(cx1,cy1); | |
286 | PointF c2(cx2,cy2); | |
287 | PointF end(x,y); | |
288 | PointF start; | |
289 | m_path->GetLastPoint(&start); | |
290 | m_path->AddBezier(start,c1,c2,end); | |
291 | } | |
292 | ||
293 | // gets the last point of the current path, (0,0) if not yet set | |
294 | void wxGDIPlusPath::GetCurrentPoint( wxDouble& x, wxDouble&y) | |
295 | { | |
296 | PointF start; | |
297 | m_path->GetLastPoint(&start); | |
298 | x = start.X ; | |
299 | y = start.Y ; | |
300 | } | |
301 | ||
302 | void wxGDIPlusPath::AddArc( wxDouble x, wxDouble y, wxDouble r, double startAngle, double endAngle, bool clockwise ) | |
303 | { | |
304 | double sweepAngle = endAngle - startAngle ; | |
305 | if( abs(sweepAngle) >= 2*M_PI) | |
306 | { | |
307 | sweepAngle = 2 * M_PI; | |
308 | } | |
309 | else | |
310 | { | |
311 | if ( clockwise ) | |
312 | { | |
313 | if( sweepAngle < 0 ) | |
314 | sweepAngle += 2 * M_PI; | |
315 | } | |
316 | else | |
317 | { | |
318 | if( sweepAngle > 0 ) | |
319 | sweepAngle -= 2 * M_PI; | |
320 | ||
321 | } | |
322 | } | |
323 | m_path->AddArc((REAL) (x-r),(REAL) (y-r),(REAL) (2*r),(REAL) (2*r),RadToDeg(startAngle),RadToDeg(sweepAngle)); | |
324 | } | |
325 | ||
326 | void wxGDIPlusPath::AddRectangle( wxDouble x, wxDouble y, wxDouble w, wxDouble h ) | |
327 | { | |
328 | m_path->AddRectangle(RectF(x,y,w,h)); | |
329 | } | |
330 | ||
331 | // | |
332 | // | |
333 | // | |
334 | /* | |
335 | // closes the current subpath | |
336 | void wxGDIPlusPath::AddArcToPoint( wxDouble x1, wxDouble y1 , wxDouble x2, wxDouble y2, wxDouble r ) | |
337 | { | |
338 | // CGPathAddArcToPoint( m_path, NULL , x1, y1, x2, y2, r); | |
339 | } | |
340 | ||
341 | */ | |
342 | ||
343 | //----------------------------------------------------------------------------- | |
344 | // wxGDIPlusContext implementation | |
345 | //----------------------------------------------------------------------------- | |
346 | ||
347 | wxGDIPlusContext::wxGDIPlusContext( WXHDC hdc ) | |
348 | { | |
349 | gGDILoader.EnsureIsLoaded(); | |
350 | m_context = new Graphics( (HDC) hdc); | |
351 | m_context->SetSmoothingMode(SmoothingModeHighQuality); | |
352 | m_state1 = m_context->Save(); | |
353 | m_state2 = m_context->Save(); | |
354 | ||
355 | // set defaults | |
356 | ||
357 | m_penTransparent = false; | |
358 | m_pen = new Pen((ARGB)Color::Black); | |
359 | m_penImage = NULL; | |
360 | m_penBrush = NULL; | |
361 | ||
362 | m_brushTransparent = false; | |
363 | m_brush = new SolidBrush((ARGB)Color::White); | |
364 | m_brushImage = NULL; | |
365 | m_brushPath = NULL; | |
366 | m_textBrush = new SolidBrush((ARGB)Color::Black); | |
367 | m_font = new Font( L"Arial" , 9 , FontStyleRegular ); | |
368 | } | |
369 | ||
370 | wxGDIPlusContext::~wxGDIPlusContext() | |
371 | { | |
372 | if ( m_context ) | |
373 | { | |
374 | m_context->Restore( m_state2 ); | |
375 | m_context->Restore( m_state1 ); | |
376 | delete m_context; | |
377 | delete m_pen; | |
378 | delete m_penImage; | |
379 | delete m_penBrush; | |
380 | delete m_brush; | |
381 | delete m_brushImage; | |
382 | delete m_brushPath; | |
383 | delete m_textBrush; | |
384 | delete m_font; | |
385 | } | |
386 | } | |
387 | ||
388 | ||
389 | void wxGDIPlusContext::Clip( const wxRegion & WXUNUSED(region) ) | |
390 | { | |
391 | // ClipCGContextToRegion ( m_context, &bounds , (RgnHandle) dc->m_macCurrentClipRgn ); | |
392 | } | |
393 | ||
394 | void wxGDIPlusContext::StrokePath( const wxGraphicsPath *p ) | |
395 | { | |
396 | if ( m_penTransparent ) | |
397 | return; | |
398 | ||
399 | const wxGDIPlusPath* path = dynamic_cast< const wxGDIPlusPath*>( p ); | |
400 | m_context->DrawPath( m_pen , path->GetPath() ); | |
401 | } | |
402 | ||
403 | void wxGDIPlusContext::FillPath( const wxGraphicsPath *p , int fillStyle ) | |
404 | { | |
405 | if ( !m_brushTransparent ) | |
406 | { | |
407 | const wxGDIPlusPath* path = dynamic_cast< const wxGDIPlusPath*>( p ); | |
408 | path->GetPath()->SetFillMode( fillStyle == wxODDEVEN_RULE ? FillModeAlternate : FillModeWinding); | |
409 | m_context->FillPath( m_brush , path->GetPath() ); | |
410 | } | |
411 | } | |
412 | ||
413 | wxGraphicsPath* wxGDIPlusContext::CreatePath() | |
414 | { | |
415 | return new wxGDIPlusPath(); | |
416 | } | |
417 | ||
418 | void wxGDIPlusContext::Rotate( wxDouble angle ) | |
419 | { | |
420 | m_context->RotateTransform( RadToDeg(angle) ); | |
421 | } | |
422 | ||
423 | void wxGDIPlusContext::Translate( wxDouble dx , wxDouble dy ) | |
424 | { | |
425 | m_context->TranslateTransform( dx , dy ); | |
426 | } | |
427 | ||
428 | void wxGDIPlusContext::Scale( wxDouble xScale , wxDouble yScale ) | |
429 | { | |
430 | m_context->ScaleTransform(xScale,yScale); | |
431 | } | |
432 | ||
433 | void wxGDIPlusContext::PushState() | |
434 | { | |
435 | GraphicsState state = m_context->Save(); | |
436 | m_stateStack.push_back(state); | |
437 | } | |
438 | ||
439 | void wxGDIPlusContext::PopState() | |
440 | { | |
441 | GraphicsState state = m_stateStack.back(); | |
442 | m_stateStack.pop_back(); | |
443 | m_context->Restore(state); | |
444 | } | |
445 | ||
446 | void wxGDIPlusContext::SetTextColor( const wxColour &col ) | |
447 | { | |
448 | delete m_textBrush; | |
449 | m_textBrush = new SolidBrush( Color( col.Alpha() , col.Red() , | |
450 | col.Green() , col.Blue() )); | |
451 | } | |
452 | ||
453 | void wxGDIPlusContext::SetPen( const wxPen &pen ) | |
454 | { | |
455 | m_penTransparent = pen.GetStyle() == wxTRANSPARENT; | |
456 | if ( m_penTransparent ) | |
457 | return; | |
458 | ||
459 | m_pen->SetColor( Color( pen.GetColour().Alpha() , pen.GetColour().Red() , | |
460 | pen.GetColour().Green() , pen.GetColour().Blue() ) ); | |
461 | ||
462 | // TODO: * m_dc->m_scaleX | |
463 | double penWidth = pen.GetWidth(); | |
464 | if (penWidth <= 0.0) | |
465 | penWidth = 0.1; | |
466 | ||
467 | m_pen->SetWidth(penWidth); | |
468 | ||
469 | LineCap cap; | |
470 | switch ( pen.GetCap() ) | |
471 | { | |
472 | case wxCAP_ROUND : | |
473 | cap = LineCapRound; | |
474 | break; | |
475 | ||
476 | case wxCAP_PROJECTING : | |
477 | cap = LineCapSquare; | |
478 | break; | |
479 | ||
480 | case wxCAP_BUTT : | |
481 | cap = LineCapFlat; // TODO verify | |
482 | break; | |
483 | ||
484 | default : | |
485 | cap = LineCapFlat; | |
486 | break; | |
487 | } | |
488 | m_pen->SetLineCap(cap,cap, DashCapFlat); | |
489 | ||
490 | LineJoin join; | |
491 | switch ( pen.GetJoin() ) | |
492 | { | |
493 | case wxJOIN_BEVEL : | |
494 | join = LineJoinBevel; | |
495 | break; | |
496 | ||
497 | case wxJOIN_MITER : | |
498 | join = LineJoinMiter; | |
499 | break; | |
500 | ||
501 | case wxJOIN_ROUND : | |
502 | join = LineJoinRound; | |
503 | break; | |
504 | ||
505 | default : | |
506 | join = LineJoinMiter; | |
507 | break; | |
508 | } | |
509 | ||
510 | m_pen->SetLineJoin(join); | |
511 | ||
512 | m_pen->SetDashStyle(DashStyleSolid); | |
513 | ||
514 | DashStyle dashStyle = DashStyleSolid; | |
515 | switch ( pen.GetStyle() ) | |
516 | { | |
517 | case wxSOLID : | |
518 | break; | |
519 | ||
520 | case wxDOT : | |
521 | dashStyle = DashStyleDot; | |
522 | break; | |
523 | ||
524 | case wxLONG_DASH : | |
525 | dashStyle = DashStyleDash; // TODO verify | |
526 | break; | |
527 | ||
528 | case wxSHORT_DASH : | |
529 | dashStyle = DashStyleDash; | |
530 | break; | |
531 | ||
532 | case wxDOT_DASH : | |
533 | dashStyle = DashStyleDashDot; | |
534 | break; | |
535 | case wxUSER_DASH : | |
536 | { | |
537 | dashStyle = DashStyleCustom; | |
538 | wxDash *dashes; | |
539 | int count = pen.GetDashes( &dashes ); | |
540 | if ((dashes != NULL) && (count > 0)) | |
541 | { | |
542 | REAL *userLengths = new REAL[count]; | |
543 | for ( int i = 0; i < count; ++i ) | |
544 | { | |
545 | userLengths[i] = dashes[i]; | |
546 | } | |
547 | m_pen->SetDashPattern( userLengths, count); | |
548 | delete[] userLengths; | |
549 | } | |
550 | } | |
551 | break; | |
552 | case wxSTIPPLE : | |
553 | { | |
554 | wxBitmap* bmp = pen.GetStipple(); | |
555 | if ( bmp && bmp->Ok() ) | |
556 | { | |
557 | wxDELETE( m_penImage ); | |
558 | wxDELETE( m_penBrush ); | |
559 | m_penImage = Bitmap::FromHBITMAP((HBITMAP)bmp->GetHBITMAP(),(HPALETTE)bmp->GetPalette()->GetHPALETTE()); | |
560 | m_penBrush = new TextureBrush(m_penImage); | |
561 | m_pen->SetBrush( m_penBrush ); | |
562 | } | |
563 | ||
564 | } | |
565 | break; | |
566 | default : | |
567 | if ( pen.GetStyle() >= wxFIRST_HATCH && pen.GetStyle() <= wxLAST_HATCH ) | |
568 | { | |
569 | wxDELETE( m_penBrush ); | |
570 | HatchStyle style = HatchStyleHorizontal; | |
571 | switch( pen.GetStyle() ) | |
572 | { | |
573 | case wxBDIAGONAL_HATCH : | |
574 | style = HatchStyleBackwardDiagonal; | |
575 | break ; | |
576 | case wxCROSSDIAG_HATCH : | |
577 | style = HatchStyleDiagonalCross; | |
578 | break ; | |
579 | case wxFDIAGONAL_HATCH : | |
580 | style = HatchStyleForwardDiagonal; | |
581 | break ; | |
582 | case wxCROSS_HATCH : | |
583 | style = HatchStyleCross; | |
584 | break ; | |
585 | case wxHORIZONTAL_HATCH : | |
586 | style = HatchStyleHorizontal; | |
587 | break ; | |
588 | case wxVERTICAL_HATCH : | |
589 | style = HatchStyleVertical; | |
590 | break ; | |
591 | ||
592 | } | |
593 | m_penBrush = new HatchBrush(style,Color( pen.GetColour().Alpha() , pen.GetColour().Red() , | |
594 | pen.GetColour().Green() , pen.GetColour().Blue() ), Color::Transparent ); | |
595 | m_pen->SetBrush( m_penBrush ); | |
596 | } | |
597 | break; | |
598 | } | |
599 | if ( dashStyle != DashStyleSolid ) | |
600 | m_pen->SetDashStyle(dashStyle); | |
601 | } | |
602 | ||
603 | void wxGDIPlusContext::SetBrush( const wxBrush &brush ) | |
604 | { | |
605 | // m_brush = brush; | |
606 | if ( m_context == NULL ) | |
607 | return; | |
608 | ||
609 | m_brushTransparent = brush.GetStyle() == wxTRANSPARENT; | |
610 | ||
611 | if ( m_brushTransparent ) | |
612 | return; | |
613 | ||
614 | wxDELETE(m_brush); | |
615 | ||
616 | if ( brush.GetStyle() == wxSOLID) | |
617 | { | |
618 | m_brush = new SolidBrush( Color( brush.GetColour().Alpha() , brush.GetColour().Red() , | |
619 | brush.GetColour().Green() , brush.GetColour().Blue() ) ); | |
620 | } | |
621 | else if ( brush.IsHatch() ) | |
622 | { | |
623 | HatchStyle style = HatchStyleHorizontal; | |
624 | switch( brush.GetStyle() ) | |
625 | { | |
626 | case wxBDIAGONAL_HATCH : | |
627 | style = HatchStyleBackwardDiagonal; | |
628 | break ; | |
629 | case wxCROSSDIAG_HATCH : | |
630 | style = HatchStyleDiagonalCross; | |
631 | break ; | |
632 | case wxFDIAGONAL_HATCH : | |
633 | style = HatchStyleForwardDiagonal; | |
634 | break ; | |
635 | case wxCROSS_HATCH : | |
636 | style = HatchStyleCross; | |
637 | break ; | |
638 | case wxHORIZONTAL_HATCH : | |
639 | style = HatchStyleHorizontal; | |
640 | break ; | |
641 | case wxVERTICAL_HATCH : | |
642 | style = HatchStyleVertical; | |
643 | break ; | |
644 | ||
645 | } | |
646 | m_brush = new HatchBrush(style,Color( brush.GetColour().Alpha() , brush.GetColour().Red() , | |
647 | brush.GetColour().Green() , brush.GetColour().Blue() ), Color::Transparent ); | |
648 | } | |
649 | else | |
650 | { | |
651 | wxBitmap* bmp = brush.GetStipple(); | |
652 | if ( bmp && bmp->Ok() ) | |
653 | { | |
654 | wxDELETE( m_brushImage ); | |
655 | m_brushImage = Bitmap::FromHBITMAP((HBITMAP)bmp->GetHBITMAP(),(HPALETTE)bmp->GetPalette()->GetHPALETTE()); | |
656 | m_brush = new TextureBrush(m_brushImage); | |
657 | } | |
658 | } | |
659 | } | |
660 | ||
661 | void wxGDIPlusContext::SetLinearGradientBrush( wxDouble x1, wxDouble y1, wxDouble x2, wxDouble y2, const wxColour&c1, const wxColour&c2) | |
662 | { | |
663 | m_brushTransparent = false ; | |
664 | ||
665 | wxDELETE(m_brush); | |
666 | ||
667 | m_brush = new LinearGradientBrush( PointF( x1,y1) , PointF( x2,y2), | |
668 | Color( c1.Alpha(), c1.Red(),c1.Green() , c1.Blue() ), | |
669 | Color( c2.Alpha(), c2.Red(),c2.Green() , c2.Blue() )); | |
670 | } | |
671 | ||
672 | void wxGDIPlusContext::SetRadialGradientBrush( wxDouble xo, wxDouble yo, wxDouble xc, wxDouble yc, wxDouble radius, | |
673 | const wxColour &oColor, const wxColour &cColor) | |
674 | { | |
675 | m_brushTransparent = false ; | |
676 | ||
677 | wxDELETE(m_brush); | |
678 | wxDELETE(m_brushPath); | |
679 | ||
680 | // Create a path that consists of a single circle. | |
681 | m_brushPath = new GraphicsPath(); | |
682 | m_brushPath->AddEllipse( (REAL)(xc-radius), (REAL)(yc-radius), (REAL)(2*radius), (REAL)(2*radius)); | |
683 | ||
684 | PathGradientBrush *b = new PathGradientBrush(m_brushPath); | |
685 | m_brush = b; | |
686 | b->SetCenterPoint( PointF(xo,yo)); | |
687 | b->SetCenterColor(Color( oColor.Alpha(), oColor.Red(),oColor.Green() , oColor.Blue() )); | |
688 | ||
689 | Color colors[] = {Color( cColor.Alpha(), cColor.Red(),cColor.Green() , cColor.Blue() )}; | |
690 | int count = 1; | |
691 | b->SetSurroundColors(colors, &count); | |
692 | } | |
693 | ||
694 | // the built-in conversions functions create non-premultiplied bitmaps, while GDIPlus needs them in the | |
695 | // premultiplied format, therefore in the failing cases we create a new bitmap using the non-premultiplied | |
696 | // bytes as parameter | |
697 | ||
698 | void wxGDIPlusContext::DrawBitmap( const wxBitmap &bmp, wxDouble x, wxDouble y, wxDouble w, wxDouble h ) | |
699 | { | |
700 | Bitmap* image = NULL; | |
701 | Bitmap* helper = NULL; | |
702 | if ( bmp.GetMask() ) | |
703 | { | |
704 | Bitmap interim((HBITMAP)bmp.GetHBITMAP(),(HPALETTE)bmp.GetPalette()->GetHPALETTE()) ; | |
705 | ||
706 | size_t width = interim.GetWidth(); | |
707 | size_t height = interim.GetHeight(); | |
708 | Rect bounds(0,0,width,height); | |
709 | ||
710 | image = new Bitmap(width,height,PixelFormat32bppPARGB) ; | |
711 | ||
712 | Bitmap interimMask((HBITMAP)bmp.GetMask()->GetMaskBitmap(),NULL); | |
713 | wxASSERT(interimMask.GetPixelFormat() == PixelFormat1bppIndexed); | |
714 | ||
715 | BitmapData dataMask ; | |
716 | interimMask.LockBits(&bounds,ImageLockModeRead, | |
717 | interimMask.GetPixelFormat(),&dataMask); | |
718 | ||
719 | ||
720 | BitmapData imageData ; | |
721 | image->LockBits(&bounds,ImageLockModeWrite, PixelFormat32bppPARGB, &imageData); | |
722 | ||
723 | BYTE maskPattern = 0 ; | |
724 | BYTE maskByte = 0; | |
725 | size_t maskIndex ; | |
726 | ||
727 | for ( size_t y = 0 ; y < height ; ++y) | |
728 | { | |
729 | maskIndex = 0 ; | |
730 | for( size_t x = 0 ; x < width; ++x) | |
731 | { | |
732 | if ( x % 8 == 0) | |
733 | { | |
734 | maskPattern = 0x80; | |
735 | maskByte = *((BYTE*)dataMask.Scan0 + dataMask.Stride*y + maskIndex); | |
736 | maskIndex++; | |
737 | } | |
738 | else | |
739 | maskPattern = maskPattern >> 1; | |
740 | ||
741 | ARGB *dest = (ARGB*)((BYTE*)imageData.Scan0 + imageData.Stride*y + x*4); | |
742 | if ( (maskByte & maskPattern) == 0 ) | |
743 | *dest = 0x00000000; | |
744 | else | |
745 | { | |
746 | Color c ; | |
747 | interim.GetPixel(x,y,&c) ; | |
748 | *dest = (c.GetValue() | Color::AlphaMask); | |
749 | } | |
750 | } | |
751 | } | |
752 | ||
753 | image->UnlockBits(&imageData); | |
754 | ||
755 | interimMask.UnlockBits(&dataMask); | |
756 | interim.UnlockBits(&dataMask); | |
757 | } | |
758 | else | |
759 | { | |
760 | image = Bitmap::FromHBITMAP((HBITMAP)bmp.GetHBITMAP(),(HPALETTE)bmp.GetPalette()->GetHPALETTE()); | |
761 | if ( GetPixelFormatSize(image->GetPixelFormat()) == 32 ) | |
762 | { | |
763 | size_t width = image->GetWidth(); | |
764 | size_t height = image->GetHeight(); | |
765 | Rect bounds(0,0,width,height); | |
766 | BitmapData data ; | |
767 | ||
768 | helper = image ; | |
769 | image = NULL ; | |
770 | helper->LockBits(&bounds, ImageLockModeRead, | |
771 | helper->GetPixelFormat(),&data); | |
772 | ||
773 | image = new Bitmap(data.Width, data.Height, data.Stride, | |
774 | PixelFormat32bppARGB , (BYTE*) data.Scan0); | |
775 | ||
776 | helper->UnlockBits(&data); | |
777 | } | |
778 | } | |
779 | if ( image ) | |
780 | m_context->DrawImage(image,(REAL) x,(REAL) y,(REAL) w,(REAL) h) ; | |
781 | delete image ; | |
782 | delete helper ; | |
783 | } | |
784 | ||
785 | void wxGDIPlusContext::DrawIcon( const wxIcon &icon, wxDouble x, wxDouble y, wxDouble w, wxDouble h ) | |
786 | { | |
787 | HICON hIcon = (HICON)icon.GetHICON(); | |
788 | ICONINFO iconInfo ; | |
789 | // IconInfo creates the bitmaps for color and mask, we must dispose of them after use | |
790 | if (!GetIconInfo(hIcon,&iconInfo)) | |
791 | return; | |
792 | ||
793 | BITMAP iconBmpData ; | |
794 | GetObject(iconInfo.hbmColor,sizeof(BITMAP),&iconBmpData); | |
795 | Bitmap interim(iconInfo.hbmColor,NULL); | |
796 | ||
797 | Bitmap* image = NULL ; | |
798 | ||
799 | if( GetPixelFormatSize(interim.GetPixelFormat())!= 32 ) | |
800 | { | |
801 | image = Bitmap::FromHICON(hIcon); | |
802 | } | |
803 | else | |
804 | { | |
805 | size_t width = interim.GetWidth(); | |
806 | size_t height = interim.GetHeight(); | |
807 | Rect bounds(0,0,width,height); | |
808 | BitmapData data ; | |
809 | ||
810 | interim.LockBits(&bounds, ImageLockModeRead, | |
811 | interim.GetPixelFormat(),&data); | |
812 | image = new Bitmap(data.Width, data.Height, data.Stride, | |
813 | PixelFormat32bppARGB , (BYTE*) data.Scan0); | |
814 | interim.UnlockBits(&data); | |
815 | } | |
816 | ||
817 | m_context->DrawImage(image,(REAL) x,(REAL) y,(REAL) w,(REAL) h) ; | |
818 | ||
819 | delete image ; | |
820 | DeleteObject(iconInfo.hbmColor); | |
821 | DeleteObject(iconInfo.hbmMask); | |
822 | } | |
823 | ||
824 | ||
825 | void wxGDIPlusContext::DrawText( const wxString &str, wxDouble x, wxDouble y ) | |
826 | { | |
827 | if ( str.IsEmpty()) | |
828 | return ; | |
829 | ||
830 | wxWCharBuffer s = str.wc_str( *wxConvUI ); | |
831 | m_context->DrawString( s , -1 , m_font , PointF( x , y ) , m_textBrush ); | |
832 | // TODO m_backgroundMode == wxSOLID | |
833 | } | |
834 | ||
835 | void wxGDIPlusContext::GetTextExtent( const wxString &str, wxDouble *width, wxDouble *height, | |
836 | wxDouble *descent, wxDouble *externalLeading ) const | |
837 | { | |
838 | wxWCharBuffer s = str.wc_str( *wxConvUI ); | |
839 | FontFamily ffamily ; | |
840 | ||
841 | m_font->GetFamily(&ffamily) ; | |
842 | ||
843 | REAL factorY = m_context->GetDpiY() / 72.0 ; | |
844 | ||
845 | REAL rDescent = ffamily.GetCellDescent(FontStyleRegular) * | |
846 | m_font->GetSize() / ffamily.GetEmHeight(FontStyleRegular); | |
847 | REAL rAscent = ffamily.GetCellAscent(FontStyleRegular) * | |
848 | m_font->GetSize() / ffamily.GetEmHeight(FontStyleRegular); | |
849 | REAL rHeight = ffamily.GetLineSpacing(FontStyleRegular) * | |
850 | m_font->GetSize() / ffamily.GetEmHeight(FontStyleRegular); | |
851 | ||
852 | if ( height ) | |
853 | *height = rHeight * factorY + 0.5 ; | |
854 | if ( descent ) | |
855 | *descent = rDescent * factorY + 0.5 ; | |
856 | if ( externalLeading ) | |
857 | *externalLeading = (rHeight - rAscent - rDescent) * factorY + 0.5 ; | |
858 | // measuring empty strings is not guaranteed, so do it by hand | |
859 | if ( str.IsEmpty()) | |
860 | { | |
861 | if ( width ) | |
862 | *width = 0 ; | |
863 | } | |
864 | else | |
865 | { | |
866 | // MeasureString does return a rectangle that is way too large, so it is | |
867 | // not usable here | |
868 | RectF layoutRect(0,0, 100000.0f, 100000.0f); | |
869 | StringFormat strFormat; | |
870 | CharacterRange strRange(0,wcslen(s)); | |
871 | strFormat.SetMeasurableCharacterRanges(1,&strRange); | |
872 | Region region ; | |
873 | m_context->MeasureCharacterRanges(s, -1 , m_font,layoutRect, &strFormat,1,®ion) ; | |
874 | RectF bbox ; | |
875 | region.GetBounds(&bbox,m_context); | |
876 | if ( width ) | |
877 | *width = bbox.GetRight()-bbox.GetLeft()+0.5; | |
878 | } | |
879 | } | |
880 | ||
881 | void wxGDIPlusContext::GetPartialTextExtents(const wxString& text, wxArrayDouble& widths) const | |
882 | { | |
883 | widths.Empty(); | |
884 | widths.Add(0, text.length()); | |
885 | ||
886 | if (text.empty()) | |
887 | return; | |
888 | ||
889 | wxWCharBuffer ws = text.wc_str( *wxConvUI ); | |
890 | size_t len = wcslen( ws ) ; | |
891 | wxASSERT_MSG(text.length() == len , wxT("GetPartialTextExtents not yet implemented for multichar situations")); | |
892 | ||
893 | RectF layoutRect(0,0, 100000.0f, 100000.0f); | |
894 | StringFormat strFormat; | |
895 | ||
896 | CharacterRange* ranges = new CharacterRange[len] ; | |
897 | Region* regions = new Region[len]; | |
898 | for( size_t i = 0 ; i < len ; ++i) | |
899 | { | |
900 | ranges[i].First = i ; | |
901 | ranges[i].Length = 1 ; | |
902 | } | |
903 | strFormat.SetMeasurableCharacterRanges(len,ranges); | |
904 | m_context->MeasureCharacterRanges(ws, -1 , m_font,layoutRect, &strFormat,1,regions) ; | |
905 | ||
906 | RectF bbox ; | |
907 | for ( size_t i = 0 ; i < len ; ++i) | |
908 | { | |
909 | regions[i].GetBounds(&bbox,m_context); | |
910 | widths[i] = bbox.GetRight()-bbox.GetLeft(); | |
911 | } | |
912 | } | |
913 | ||
914 | void wxGDIPlusContext::SetFont( const wxFont &font ) | |
915 | { | |
916 | wxASSERT( font.Ok()); | |
917 | delete m_font; | |
918 | wxWCharBuffer s = font.GetFaceName().wc_str( *wxConvUI ); | |
919 | int size = font.GetPointSize(); | |
920 | int style = FontStyleRegular; | |
921 | if ( font.GetStyle() == wxFONTSTYLE_ITALIC ) | |
922 | style |= FontStyleItalic; | |
923 | if ( font.GetUnderlined() ) | |
924 | style |= FontStyleUnderline; | |
925 | if ( font.GetWeight() == wxFONTWEIGHT_BOLD ) | |
926 | style |= FontStyleBold; | |
927 | m_font = new Font( s , size , style ); | |
928 | } | |
929 | ||
930 | wxGraphicsContext* wxGraphicsContext::Create( const wxWindowDC& dc) | |
931 | { | |
932 | return new wxGDIPlusContext( (HDC) dc.GetHDC() ); | |
933 | } | |
934 | ||
935 | ||
936 | #endif // wxUSE_GRAPHICS_CONTEXT |