1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/msw/graphics.cpp
3 // Purpose: wxGCDC class
4 // Author: Stefan Csomor
8 // Copyright: (c) 2006 Stefan Csomor
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 #include "wx/wxprec.h"
20 #if wxUSE_GRAPHICS_CONTEXT
23 #include "wx/msw/wrapcdlg.h"
25 #include "wx/window.h"
27 #include "wx/dialog.h"
29 #include "wx/bitmap.h"
32 #include "wx/module.h"
33 // include all dc types that are used as a param
35 #include "wx/dcclient.h"
36 #include "wx/dcmemory.h"
37 #include "wx/dcprint.h"
42 #include "wx/private/graphics.h"
43 #include "wx/msw/wrapgdip.h"
44 #include "wx/msw/dc.h"
45 #if wxUSE_ENH_METAFILE
46 #include "wx/msw/enhmeta.h"
48 #include "wx/dcgraph.h"
50 #include "wx/msw/private.h" // needs to be before #include <commdlg.h>
52 #if wxUSE_COMMON_DIALOGS && !defined(__WXMICROWIN__)
59 //-----------------------------------------------------------------------------
61 //-----------------------------------------------------------------------------
63 const double RAD2DEG
= 180.0 / M_PI
;
65 //-----------------------------------------------------------------------------
67 //-----------------------------------------------------------------------------
69 inline double dmin(double a
, double b
) { return a
< b
? a
: b
; }
70 inline double dmax(double a
, double b
) { return a
> b
? a
: b
; }
72 inline double DegToRad(double deg
) { return (deg
* M_PI
) / 180.0; }
73 inline double RadToDeg(double deg
) { return (deg
* 180.0) / M_PI
; }
75 // translate a wxColour to a Color
76 inline Color
wxColourToColor(const wxColour
& col
)
78 return Color(col
.Alpha(), col
.Red(), col
.Green(), col
.Blue());
81 } // anonymous namespace
83 //-----------------------------------------------------------------------------
84 // device context implementation
86 // more and more of the dc functionality should be implemented by calling
87 // the appropricate wxGDIPlusContext, but we will have to do that step by step
88 // also coordinate conversions should be moved to native matrix ops
89 //-----------------------------------------------------------------------------
91 // we always stock two context states, one at entry, to be able to preserve the
92 // state we were called with, the other one after changing to HI Graphics orientation
93 // (this one is used for getting back clippings etc)
95 //-----------------------------------------------------------------------------
96 // wxGraphicsPath implementation
97 //-----------------------------------------------------------------------------
99 class wxGDIPlusContext
;
101 class wxGDIPlusPathData
: public wxGraphicsPathData
104 wxGDIPlusPathData(wxGraphicsRenderer
* renderer
, GraphicsPath
* path
= NULL
);
105 ~wxGDIPlusPathData();
107 virtual wxGraphicsObjectRefData
*Clone() const;
110 // These are the path primitives from which everything else can be constructed
113 // begins a new subpath at (x,y)
114 virtual void MoveToPoint( wxDouble x
, wxDouble y
);
116 // adds a straight line from the current point to (x,y)
117 virtual void AddLineToPoint( wxDouble x
, wxDouble y
);
119 // adds a cubic Bezier curve from the current point, using two control points and an end point
120 virtual void AddCurveToPoint( wxDouble cx1
, wxDouble cy1
, wxDouble cx2
, wxDouble cy2
, wxDouble x
, wxDouble y
);
123 // adds an arc of a circle centering at (x,y) with radius (r) from startAngle to endAngle
124 virtual void AddArc( wxDouble x
, wxDouble y
, wxDouble r
, wxDouble startAngle
, wxDouble endAngle
, bool clockwise
) ;
126 // gets the last point of the current path, (0,0) if not yet set
127 virtual void GetCurrentPoint( wxDouble
* x
, wxDouble
* y
) const;
130 virtual void AddPath( const wxGraphicsPathData
* path
);
132 // closes the current sub-path
133 virtual void CloseSubpath();
136 // These are convenience functions which - if not available natively will be assembled
137 // using the primitives from above
140 // appends a rectangle as a new closed subpath
141 virtual void AddRectangle( wxDouble x
, wxDouble y
, wxDouble w
, wxDouble h
) ;
144 // appends an ellipsis as a new closed subpath fitting the passed rectangle
145 virtual void AddEllipsis( wxDouble x, wxDouble y, wxDouble w , wxDouble h ) ;
147 // 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)
148 virtual void AddArcToPoint( wxDouble x1, wxDouble y1 , wxDouble x2, wxDouble y2, wxDouble r ) ;
151 // returns the native path
152 virtual void * GetNativePath() const { return m_path
; }
154 // give the native path returned by GetNativePath() back (there might be some deallocations necessary)
155 virtual void UnGetNativePath(void * WXUNUSED(path
)) const {}
157 // transforms each point of this path by the matrix
158 virtual void Transform( const wxGraphicsMatrixData
* matrix
) ;
160 // gets the bounding box enclosing all points (possibly including control points)
161 virtual void GetBox(wxDouble
*x
, wxDouble
*y
, wxDouble
*w
, wxDouble
*h
) const;
163 virtual bool Contains( wxDouble x
, wxDouble y
, wxPolygonFillMode fillStyle
= wxODDEVEN_RULE
) const;
166 GraphicsPath
* m_path
;
169 class wxGDIPlusMatrixData
: public wxGraphicsMatrixData
172 wxGDIPlusMatrixData(wxGraphicsRenderer
* renderer
, Matrix
* matrix
= NULL
) ;
173 virtual ~wxGDIPlusMatrixData() ;
175 virtual wxGraphicsObjectRefData
* Clone() const ;
177 // concatenates the matrix
178 virtual void Concat( const wxGraphicsMatrixData
*t
);
180 // sets the matrix to the respective values
181 virtual void Set(wxDouble a
=1.0, wxDouble b
=0.0, wxDouble c
=0.0, wxDouble d
=1.0,
182 wxDouble tx
=0.0, wxDouble ty
=0.0);
184 // gets the component valuess of the matrix
185 virtual void Get(wxDouble
* a
=NULL
, wxDouble
* b
=NULL
, wxDouble
* c
=NULL
,
186 wxDouble
* d
=NULL
, wxDouble
* tx
=NULL
, wxDouble
* ty
=NULL
) const;
188 // makes this the inverse matrix
189 virtual void Invert();
191 // returns true if the elements of the transformation matrix are equal ?
192 virtual bool IsEqual( const wxGraphicsMatrixData
* t
) const ;
194 // return true if this is the identity matrix
195 virtual bool IsIdentity() const;
201 // add the translation to this matrix
202 virtual void Translate( wxDouble dx
, wxDouble dy
);
204 // add the scale to this matrix
205 virtual void Scale( wxDouble xScale
, wxDouble yScale
);
207 // add the rotation to this matrix (radians)
208 virtual void Rotate( wxDouble angle
);
211 // apply the transforms
214 // applies that matrix to the point
215 virtual void TransformPoint( wxDouble
*x
, wxDouble
*y
) const;
217 // applies the matrix except for translations
218 virtual void TransformDistance( wxDouble
*dx
, wxDouble
*dy
) const;
220 // returns the native representation
221 virtual void * GetNativeMatrix() const;
226 class wxGDIPlusPenData
: public wxGraphicsObjectRefData
229 wxGDIPlusPenData( wxGraphicsRenderer
* renderer
, const wxPen
&pen
);
234 virtual wxDouble
GetWidth() { return m_width
; }
235 virtual Pen
* GetGDIPlusPen() { return m_pen
; }
245 class wxGDIPlusBrushData
: public wxGraphicsObjectRefData
248 wxGDIPlusBrushData( wxGraphicsRenderer
* renderer
);
249 wxGDIPlusBrushData( wxGraphicsRenderer
* renderer
, const wxBrush
&brush
);
250 ~wxGDIPlusBrushData ();
252 void CreateLinearGradientBrush(wxDouble x1
, wxDouble y1
,
253 wxDouble x2
, wxDouble y2
,
254 const wxGraphicsGradientStops
& stops
);
255 void CreateRadialGradientBrush(wxDouble xo
, wxDouble yo
,
256 wxDouble xc
, wxDouble yc
,
258 const wxGraphicsGradientStops
& stops
);
260 virtual Brush
* GetGDIPlusBrush() { return m_brush
; }
266 // common part of Create{Linear,Radial}GradientBrush()
267 template <typename T
>
268 void SetGradientStops(T
*brush
, const wxGraphicsGradientStops
& stops
);
272 GraphicsPath
* m_brushPath
;
275 class WXDLLIMPEXP_CORE wxGDIPlusBitmapData
: public wxGraphicsObjectRefData
278 wxGDIPlusBitmapData( wxGraphicsRenderer
* renderer
, Bitmap
* bitmap
);
279 wxGDIPlusBitmapData( wxGraphicsRenderer
* renderer
, const wxBitmap
&bmp
);
280 ~wxGDIPlusBitmapData ();
282 virtual Bitmap
* GetGDIPlusBitmap() { return m_bitmap
; }
289 class wxGDIPlusFontData
: public wxGraphicsObjectRefData
292 wxGDIPlusFontData( wxGraphicsRenderer
* renderer
,
293 const wxGDIPlusContext
* gc
,
295 const wxColour
& col
);
296 ~wxGDIPlusFontData();
298 virtual Brush
* GetGDIPlusBrush() { return m_textBrush
; }
299 virtual Font
* GetGDIPlusFont() { return m_font
; }
305 class wxGDIPlusContext
: public wxGraphicsContext
308 wxGDIPlusContext( wxGraphicsRenderer
* renderer
, const wxDC
& dc
);
309 wxGDIPlusContext( wxGraphicsRenderer
* renderer
, HDC hdc
, wxDouble width
, wxDouble height
);
310 wxGDIPlusContext( wxGraphicsRenderer
* renderer
, HWND hwnd
);
311 wxGDIPlusContext( wxGraphicsRenderer
* renderer
, Graphics
* gr
);
314 virtual ~wxGDIPlusContext();
316 virtual void Clip( const wxRegion
®ion
);
317 // clips drawings to the rect
318 virtual void Clip( wxDouble x
, wxDouble y
, wxDouble w
, wxDouble h
);
320 // resets the clipping to original extent
321 virtual void ResetClip();
323 virtual void * GetNativeContext();
325 virtual void StrokePath( const wxGraphicsPath
& p
);
326 virtual void FillPath( const wxGraphicsPath
& p
, wxPolygonFillMode fillStyle
= wxODDEVEN_RULE
);
328 virtual void DrawRectangle( wxDouble x
, wxDouble y
, wxDouble w
, wxDouble h
);
330 // stroke lines connecting each of the points
331 virtual void StrokeLines( size_t n
, const wxPoint2DDouble
*points
);
334 virtual void DrawLines( size_t n
, const wxPoint2DDouble
*points
, wxPolygonFillMode fillStyle
= wxODDEVEN_RULE
);
336 virtual bool SetAntialiasMode(wxAntialiasMode antialias
);
338 virtual bool SetCompositionMode(wxCompositionMode op
);
340 virtual void BeginLayer(wxDouble opacity
);
342 virtual void EndLayer();
344 virtual void Translate( wxDouble dx
, wxDouble dy
);
345 virtual void Scale( wxDouble xScale
, wxDouble yScale
);
346 virtual void Rotate( wxDouble angle
);
348 // concatenates this transform with the current transform of this context
349 virtual void ConcatTransform( const wxGraphicsMatrix
& matrix
);
351 // sets the transform of this context
352 virtual void SetTransform( const wxGraphicsMatrix
& matrix
);
354 // gets the matrix of this context
355 virtual wxGraphicsMatrix
GetTransform() const;
357 virtual void DrawBitmap( const wxGraphicsBitmap
&bmp
, wxDouble x
, wxDouble y
, wxDouble w
, wxDouble h
);
358 virtual void DrawBitmap( const wxBitmap
&bmp
, wxDouble x
, wxDouble y
, wxDouble w
, wxDouble h
);
359 virtual void DrawIcon( const wxIcon
&icon
, wxDouble x
, wxDouble y
, wxDouble w
, wxDouble h
);
360 virtual void PushState();
361 virtual void PopState();
363 // sets the font of this context
364 virtual wxGraphicsFont
CreateFont( const wxFont
&font
, const wxColour
&col
= *wxBLACK
) const;
366 virtual void GetTextExtent( const wxString
&str
, wxDouble
*width
, wxDouble
*height
,
367 wxDouble
*descent
, wxDouble
*externalLeading
) const;
368 virtual void GetPartialTextExtents(const wxString
& text
, wxArrayDouble
& widths
) const;
369 virtual bool ShouldOffset() const;
370 virtual void GetSize( wxDouble
* width
, wxDouble
*height
);
372 Graphics
* GetGraphics() const { return m_context
; }
376 wxDouble m_fontScaleRatio
;
382 virtual void DoDrawText(const wxString
& str
, wxDouble x
, wxDouble y
)
383 { DoDrawFilledText(str
, x
, y
, wxNullGraphicsBrush
); }
384 virtual void DoDrawFilledText(const wxString
& str
, wxDouble x
, wxDouble y
,
385 const wxGraphicsBrush
& backgroundBrush
);
388 wxStack
<GraphicsState
> m_stateStack
;
389 GraphicsState m_state1
;
390 GraphicsState m_state2
;
392 DECLARE_DYNAMIC_CLASS_NO_COPY(wxGDIPlusContext
)
395 class wxGDIPlusMeasuringContext
: public wxGDIPlusContext
398 wxGDIPlusMeasuringContext( wxGraphicsRenderer
* renderer
) : wxGDIPlusContext( renderer
, m_hdc
= GetDC(NULL
), 1000, 1000 )
401 wxGDIPlusMeasuringContext()
405 virtual ~wxGDIPlusMeasuringContext()
407 ReleaseDC( NULL
, m_hdc
);
412 DECLARE_DYNAMIC_CLASS_NO_COPY(wxGDIPlusMeasuringContext
)
415 class wxGDIPlusPrintingContext
: public wxGDIPlusContext
418 wxGDIPlusPrintingContext( wxGraphicsRenderer
* renderer
, const wxDC
& dc
);
419 virtual ~wxGDIPlusPrintingContext() { }
423 //-----------------------------------------------------------------------------
424 // wxGDIPlusRenderer declaration
425 //-----------------------------------------------------------------------------
427 class wxGDIPlusRenderer
: public wxGraphicsRenderer
436 virtual ~wxGDIPlusRenderer()
446 virtual wxGraphicsContext
* CreateContext( const wxWindowDC
& dc
);
448 virtual wxGraphicsContext
* CreateContext( const wxMemoryDC
& dc
);
450 #if wxUSE_PRINTING_ARCHITECTURE
451 virtual wxGraphicsContext
* CreateContext( const wxPrinterDC
& dc
);
454 #if wxUSE_ENH_METAFILE
455 virtual wxGraphicsContext
* CreateContext( const wxEnhMetaFileDC
& dc
);
458 virtual wxGraphicsContext
* CreateContextFromNativeContext( void * context
);
460 virtual wxGraphicsContext
* CreateContextFromNativeWindow( void * window
);
462 virtual wxGraphicsContext
* CreateContext( wxWindow
* window
);
464 virtual wxGraphicsContext
* CreateMeasuringContext();
468 virtual wxGraphicsPath
CreatePath();
472 virtual wxGraphicsMatrix
CreateMatrix( wxDouble a
=1.0, wxDouble b
=0.0, wxDouble c
=0.0, wxDouble d
=1.0,
473 wxDouble tx
=0.0, wxDouble ty
=0.0);
476 virtual wxGraphicsPen
CreatePen(const wxPen
& pen
) ;
478 virtual wxGraphicsBrush
CreateBrush(const wxBrush
& brush
) ;
480 virtual wxGraphicsBrush
481 CreateLinearGradientBrush(wxDouble x1
, wxDouble y1
,
482 wxDouble x2
, wxDouble y2
,
483 const wxGraphicsGradientStops
& stops
);
485 virtual wxGraphicsBrush
486 CreateRadialGradientBrush(wxDouble xo
, wxDouble yo
,
487 wxDouble xc
, wxDouble yc
,
489 const wxGraphicsGradientStops
& stops
);
491 // create a native bitmap representation
492 virtual wxGraphicsBitmap
CreateBitmap( const wxBitmap
&bitmap
);
494 // stub: should not be called directly
495 virtual wxGraphicsFont
CreateFont( const wxFont
& WXUNUSED(font
),
496 const wxColour
& WXUNUSED(col
) )
497 { wxFAIL
; return wxNullGraphicsFont
; }
499 // this is used to really create the font
500 wxGraphicsFont
CreateGDIPlusFont( const wxGDIPlusContext
* gc
,
502 const wxColour
&col
);
504 // create a graphics bitmap from a native bitmap
505 virtual wxGraphicsBitmap
CreateBitmapFromNativeBitmap( void* bitmap
);
507 // create a subimage from a native image representation
508 virtual wxGraphicsBitmap
CreateSubBitmap( const wxGraphicsBitmap
&bitmap
, wxDouble x
, wxDouble y
, wxDouble w
, wxDouble h
);
511 bool EnsureIsLoaded();
514 friend class wxGDIPlusRendererModule
;
518 ULONG_PTR m_gditoken
;
520 DECLARE_DYNAMIC_CLASS_NO_COPY(wxGDIPlusRenderer
)
523 //-----------------------------------------------------------------------------
524 // wxGDIPlusPen implementation
525 //-----------------------------------------------------------------------------
527 wxGDIPlusPenData::~wxGDIPlusPenData()
534 void wxGDIPlusPenData::Init()
541 wxGDIPlusPenData::wxGDIPlusPenData( wxGraphicsRenderer
* renderer
, const wxPen
&pen
)
542 : wxGraphicsObjectRefData(renderer
)
545 m_width
= pen
.GetWidth();
549 m_pen
= new Pen(wxColourToColor(pen
.GetColour()), m_width
);
552 switch ( pen
.GetCap() )
558 case wxCAP_PROJECTING
:
563 cap
= LineCapFlat
; // TODO verify
570 m_pen
->SetLineCap(cap
,cap
, DashCapFlat
);
573 switch ( pen
.GetJoin() )
576 join
= LineJoinBevel
;
580 join
= LineJoinMiter
;
584 join
= LineJoinRound
;
588 join
= LineJoinMiter
;
592 m_pen
->SetLineJoin(join
);
594 m_pen
->SetDashStyle(DashStyleSolid
);
596 DashStyle dashStyle
= DashStyleSolid
;
597 switch ( pen
.GetStyle() )
599 case wxPENSTYLE_SOLID
:
602 case wxPENSTYLE_DOT
:
603 dashStyle
= DashStyleDot
;
606 case wxPENSTYLE_LONG_DASH
:
607 dashStyle
= DashStyleDash
; // TODO verify
610 case wxPENSTYLE_SHORT_DASH
:
611 dashStyle
= DashStyleDash
;
614 case wxPENSTYLE_DOT_DASH
:
615 dashStyle
= DashStyleDashDot
;
617 case wxPENSTYLE_USER_DASH
:
619 dashStyle
= DashStyleCustom
;
621 int count
= pen
.GetDashes( &dashes
);
622 if ((dashes
!= NULL
) && (count
> 0))
624 REAL
*userLengths
= new REAL
[count
];
625 for ( int i
= 0; i
< count
; ++i
)
627 userLengths
[i
] = dashes
[i
];
629 m_pen
->SetDashPattern( userLengths
, count
);
630 delete[] userLengths
;
634 case wxPENSTYLE_STIPPLE
:
636 wxBitmap
* bmp
= pen
.GetStipple();
637 if ( bmp
&& bmp
->Ok() )
639 m_penImage
= Bitmap::FromHBITMAP((HBITMAP
)bmp
->GetHBITMAP(),
641 (HPALETTE
)bmp
->GetPalette()->GetHPALETTE()
646 m_penBrush
= new TextureBrush(m_penImage
);
647 m_pen
->SetBrush( m_penBrush
);
653 if ( pen
.GetStyle() >= wxPENSTYLE_FIRST_HATCH
&&
654 pen
.GetStyle() <= wxPENSTYLE_LAST_HATCH
)
657 switch( pen
.GetStyle() )
659 case wxPENSTYLE_BDIAGONAL_HATCH
:
660 style
= HatchStyleBackwardDiagonal
;
662 case wxPENSTYLE_CROSSDIAG_HATCH
:
663 style
= HatchStyleDiagonalCross
;
665 case wxPENSTYLE_FDIAGONAL_HATCH
:
666 style
= HatchStyleForwardDiagonal
;
668 case wxPENSTYLE_CROSS_HATCH
:
669 style
= HatchStyleCross
;
671 case wxPENSTYLE_HORIZONTAL_HATCH
:
672 style
= HatchStyleHorizontal
;
674 case wxPENSTYLE_VERTICAL_HATCH
:
675 style
= HatchStyleVertical
;
678 style
= HatchStyleHorizontal
;
680 m_penBrush
= new HatchBrush
683 wxColourToColor(pen
.GetColour()),
686 m_pen
->SetBrush( m_penBrush
);
690 if ( dashStyle
!= DashStyleSolid
)
691 m_pen
->SetDashStyle(dashStyle
);
694 //-----------------------------------------------------------------------------
695 // wxGDIPlusBrush implementation
696 //-----------------------------------------------------------------------------
698 wxGDIPlusBrushData::wxGDIPlusBrushData( wxGraphicsRenderer
* renderer
)
699 : wxGraphicsObjectRefData(renderer
)
704 wxGDIPlusBrushData::wxGDIPlusBrushData( wxGraphicsRenderer
* renderer
, const wxBrush
&brush
)
705 : wxGraphicsObjectRefData(renderer
)
708 if ( brush
.GetStyle() == wxSOLID
)
710 m_brush
= new SolidBrush(wxColourToColor( brush
.GetColour()));
712 else if ( brush
.IsHatch() )
715 switch( brush
.GetStyle() )
717 case wxBRUSHSTYLE_BDIAGONAL_HATCH
:
718 style
= HatchStyleBackwardDiagonal
;
720 case wxBRUSHSTYLE_CROSSDIAG_HATCH
:
721 style
= HatchStyleDiagonalCross
;
723 case wxBRUSHSTYLE_FDIAGONAL_HATCH
:
724 style
= HatchStyleForwardDiagonal
;
726 case wxBRUSHSTYLE_CROSS_HATCH
:
727 style
= HatchStyleCross
;
729 case wxBRUSHSTYLE_HORIZONTAL_HATCH
:
730 style
= HatchStyleHorizontal
;
732 case wxBRUSHSTYLE_VERTICAL_HATCH
:
733 style
= HatchStyleVertical
;
736 style
= HatchStyleHorizontal
;
738 m_brush
= new HatchBrush
741 wxColourToColor(brush
.GetColour()),
747 wxBitmap
* bmp
= brush
.GetStipple();
748 if ( bmp
&& bmp
->Ok() )
750 wxDELETE( m_brushImage
);
751 m_brushImage
= Bitmap::FromHBITMAP((HBITMAP
)bmp
->GetHBITMAP(),
753 (HPALETTE
)bmp
->GetPalette()->GetHPALETTE()
758 m_brush
= new TextureBrush(m_brushImage
);
763 wxGDIPlusBrushData::~wxGDIPlusBrushData()
770 void wxGDIPlusBrushData::Init()
777 template <typename T
>
779 wxGDIPlusBrushData::SetGradientStops(T
*brush
,
780 const wxGraphicsGradientStops
& stops
)
782 const unsigned numStops
= stops
.GetCount();
785 // initial and final colours are set during the brush creation, nothing
790 wxVector
<Color
> colors(numStops
);
791 wxVector
<REAL
> positions(numStops
);
793 for ( unsigned i
= 0; i
< numStops
; i
++ )
795 wxGraphicsGradientStop stop
= stops
.Item(i
);
797 colors
[i
] = wxColourToColor(stop
.GetColour());
798 positions
[i
] = stop
.GetPosition();
801 brush
->SetInterpolationColors(&colors
[0], &positions
[0], numStops
);
805 wxGDIPlusBrushData::CreateLinearGradientBrush(wxDouble x1
, wxDouble y1
,
806 wxDouble x2
, wxDouble y2
,
807 const wxGraphicsGradientStops
& stops
)
809 LinearGradientBrush
* const
810 brush
= new LinearGradientBrush(PointF(x1
, y1
) , PointF(x2
, y2
),
811 wxColourToColor(stops
.GetStartColour()),
812 wxColourToColor(stops
.GetEndColour()));
815 SetGradientStops(brush
, stops
);
819 wxGDIPlusBrushData::CreateRadialGradientBrush(wxDouble xo
, wxDouble yo
,
820 wxDouble xc
, wxDouble yc
,
822 const wxGraphicsGradientStops
& stops
)
824 m_brushPath
= new GraphicsPath();
825 m_brushPath
->AddEllipse( (REAL
)(xc
-radius
), (REAL
)(yc
-radius
),
826 (REAL
)(2*radius
), (REAL
)(2*radius
));
828 PathGradientBrush
* const brush
= new PathGradientBrush(m_brushPath
);
830 brush
->SetCenterPoint(PointF(xo
, yo
));
831 brush
->SetCenterColor(wxColourToColor(stops
.GetStartColour()));
833 const Color
col(wxColourToColor(stops
.GetEndColour()));
835 brush
->SetSurroundColors(&col
, &count
);
837 SetGradientStops(brush
, stops
);
840 //-----------------------------------------------------------------------------
841 // wxGDIPlusFont implementation
842 //-----------------------------------------------------------------------------
844 wxGDIPlusFontData::wxGDIPlusFontData( wxGraphicsRenderer
* renderer
,
845 const wxGDIPlusContext
* gc
,
847 const wxColour
& col
)
848 : wxGraphicsObjectRefData( renderer
)
850 wxWCharBuffer s
= font
.GetFaceName().wc_str( *wxConvUI
);
851 int style
= FontStyleRegular
;
852 if ( font
.GetStyle() == wxFONTSTYLE_ITALIC
)
853 style
|= FontStyleItalic
;
854 if ( font
.GetUnderlined() )
855 style
|= FontStyleUnderline
;
856 if ( font
.GetWeight() == wxFONTWEIGHT_BOLD
)
857 style
|= FontStyleBold
;
859 Graphics
* context
= gc
->GetGraphics();
861 Unit fontUnit
= context
->GetPageUnit();
862 // if fontUnit is UnitDisplay, then specify UnitPixel, otherwise
863 // you'll get a "InvalidParameter" from GDI+
864 if ( fontUnit
== UnitDisplay
)
865 fontUnit
= UnitPixel
;
867 REAL points
= font
.GetPointSize();
869 // This scaling is needed when we use unit other than the
870 // default UnitPoint. It works for both display and printing.
871 REAL size
= points
* (100.0 / 72.0);
873 // NB: font unit should match context's unit. We can use UnitPixel,
874 // as that is what the print context should use.
875 m_font
= new Font( s
, size
, style
, fontUnit
);
877 m_textBrush
= new SolidBrush(wxColourToColor(col
));
880 wxGDIPlusFontData::~wxGDIPlusFontData()
886 // the built-in conversions functions create non-premultiplied bitmaps, while GDIPlus needs them in the
887 // premultiplied format, therefore in the failing cases we create a new bitmap using the non-premultiplied
888 // bytes as parameter, since there is no real copying of the data going in, only references are stored
889 // m_helper has to be kept alive as well
891 //-----------------------------------------------------------------------------
892 // wxGDIPlusBitmapData implementation
893 //-----------------------------------------------------------------------------
895 wxGDIPlusBitmapData::wxGDIPlusBitmapData( wxGraphicsRenderer
* renderer
, Bitmap
* bitmap
) :
896 wxGraphicsObjectRefData( renderer
), m_bitmap( bitmap
)
901 wxGDIPlusBitmapData::wxGDIPlusBitmapData( wxGraphicsRenderer
* renderer
,
902 const wxBitmap
&bmp
) : wxGraphicsObjectRefData( renderer
)
907 Bitmap
* image
= NULL
;
910 Bitmap
interim((HBITMAP
)bmp
.GetHBITMAP(),
912 (HPALETTE
)bmp
.GetPalette()->GetHPALETTE()
918 size_t width
= interim
.GetWidth();
919 size_t height
= interim
.GetHeight();
920 Rect
bounds(0,0,width
,height
);
922 image
= new Bitmap(width
,height
,PixelFormat32bppPARGB
) ;
924 Bitmap
interimMask((HBITMAP
)bmp
.GetMask()->GetMaskBitmap(),NULL
);
925 wxASSERT(interimMask
.GetPixelFormat() == PixelFormat1bppIndexed
);
927 BitmapData dataMask
;
928 interimMask
.LockBits(&bounds
,ImageLockModeRead
,
929 interimMask
.GetPixelFormat(),&dataMask
);
932 BitmapData imageData
;
933 image
->LockBits(&bounds
,ImageLockModeWrite
, PixelFormat32bppPARGB
, &imageData
);
935 BYTE maskPattern
= 0 ;
939 for ( size_t y
= 0 ; y
< height
; ++y
)
942 for( size_t x
= 0 ; x
< width
; ++x
)
947 maskByte
= *((BYTE
*)dataMask
.Scan0
+ dataMask
.Stride
*y
+ maskIndex
);
951 maskPattern
= maskPattern
>> 1;
953 ARGB
*dest
= (ARGB
*)((BYTE
*)imageData
.Scan0
+ imageData
.Stride
*y
+ x
*4);
954 if ( (maskByte
& maskPattern
) == 0 )
959 interim
.GetPixel(x
,y
,&c
) ;
960 *dest
= (c
.GetValue() | Color::AlphaMask
);
965 image
->UnlockBits(&imageData
);
967 interimMask
.UnlockBits(&dataMask
);
968 interim
.UnlockBits(&dataMask
);
972 image
= Bitmap::FromHBITMAP((HBITMAP
)bmp
.GetHBITMAP(),
974 (HPALETTE
)bmp
.GetPalette()->GetHPALETTE()
979 if ( bmp
.HasAlpha() && GetPixelFormatSize(image
->GetPixelFormat()) == 32 )
981 size_t width
= image
->GetWidth();
982 size_t height
= image
->GetHeight();
983 Rect
bounds(0,0,width
,height
);
984 static BitmapData data
;
988 m_helper
->LockBits(&bounds
, ImageLockModeRead
,
989 m_helper
->GetPixelFormat(),&data
);
991 image
= new Bitmap(data
.Width
, data
.Height
, data
.Stride
,
992 PixelFormat32bppPARGB
, (BYTE
*) data
.Scan0
);
994 m_helper
->UnlockBits(&data
);
1001 wxGDIPlusBitmapData::~wxGDIPlusBitmapData()
1007 //-----------------------------------------------------------------------------
1008 // wxGDIPlusPath implementation
1009 //-----------------------------------------------------------------------------
1011 wxGDIPlusPathData::wxGDIPlusPathData(wxGraphicsRenderer
* renderer
, GraphicsPath
* path
) : wxGraphicsPathData(renderer
)
1016 m_path
= new GraphicsPath();
1019 wxGDIPlusPathData::~wxGDIPlusPathData()
1024 wxGraphicsObjectRefData
* wxGDIPlusPathData::Clone() const
1026 return new wxGDIPlusPathData( GetRenderer() , m_path
->Clone());
1033 void wxGDIPlusPathData::MoveToPoint( wxDouble x
, wxDouble y
)
1035 m_path
->StartFigure();
1036 m_path
->AddLine((REAL
) x
,(REAL
) y
,(REAL
) x
,(REAL
) y
);
1039 void wxGDIPlusPathData::AddLineToPoint( wxDouble x
, wxDouble y
)
1041 m_path
->AddLine((REAL
) x
,(REAL
) y
,(REAL
) x
,(REAL
) y
);
1044 void wxGDIPlusPathData::CloseSubpath()
1046 m_path
->CloseFigure();
1049 void wxGDIPlusPathData::AddCurveToPoint( wxDouble cx1
, wxDouble cy1
, wxDouble cx2
, wxDouble cy2
, wxDouble x
, wxDouble y
)
1055 m_path
->GetLastPoint(&start
);
1056 m_path
->AddBezier(start
,c1
,c2
,end
);
1059 // gets the last point of the current path, (0,0) if not yet set
1060 void wxGDIPlusPathData::GetCurrentPoint( wxDouble
* x
, wxDouble
* y
) const
1063 m_path
->GetLastPoint(&start
);
1068 void wxGDIPlusPathData::AddArc( wxDouble x
, wxDouble y
, wxDouble r
, double startAngle
, double endAngle
, bool clockwise
)
1070 double sweepAngle
= endAngle
- startAngle
;
1071 if( fabs(sweepAngle
) >= 2*M_PI
)
1073 sweepAngle
= 2 * M_PI
;
1079 if( sweepAngle
< 0 )
1080 sweepAngle
+= 2 * M_PI
;
1084 if( sweepAngle
> 0 )
1085 sweepAngle
-= 2 * M_PI
;
1089 m_path
->AddArc((REAL
) (x
-r
),(REAL
) (y
-r
),(REAL
) (2*r
),(REAL
) (2*r
),RadToDeg(startAngle
),RadToDeg(sweepAngle
));
1092 void wxGDIPlusPathData::AddRectangle( wxDouble x
, wxDouble y
, wxDouble w
, wxDouble h
)
1094 m_path
->AddRectangle(RectF(x
,y
,w
,h
));
1097 void wxGDIPlusPathData::AddPath( const wxGraphicsPathData
* path
)
1099 m_path
->AddPath( (GraphicsPath
*) path
->GetNativePath(), FALSE
);
1103 // transforms each point of this path by the matrix
1104 void wxGDIPlusPathData::Transform( const wxGraphicsMatrixData
* matrix
)
1106 m_path
->Transform( (Matrix
*) matrix
->GetNativeMatrix() );
1109 // gets the bounding box enclosing all points (possibly including control points)
1110 void wxGDIPlusPathData::GetBox(wxDouble
*x
, wxDouble
*y
, wxDouble
*w
, wxDouble
*h
) const
1113 m_path
->GetBounds( &bounds
, NULL
, NULL
) ;
1120 bool wxGDIPlusPathData::Contains( wxDouble x
, wxDouble y
, wxPolygonFillMode fillStyle
) const
1122 m_path
->SetFillMode( fillStyle
== wxODDEVEN_RULE
? FillModeAlternate
: FillModeWinding
);
1123 return m_path
->IsVisible( (FLOAT
) x
,(FLOAT
) y
) == TRUE
;
1126 //-----------------------------------------------------------------------------
1127 // wxGDIPlusMatrixData implementation
1128 //-----------------------------------------------------------------------------
1130 wxGDIPlusMatrixData::wxGDIPlusMatrixData(wxGraphicsRenderer
* renderer
, Matrix
* matrix
)
1131 : wxGraphicsMatrixData(renderer
)
1136 m_matrix
= new Matrix();
1139 wxGDIPlusMatrixData::~wxGDIPlusMatrixData()
1144 wxGraphicsObjectRefData
*wxGDIPlusMatrixData::Clone() const
1146 return new wxGDIPlusMatrixData( GetRenderer(), m_matrix
->Clone());
1149 // concatenates the matrix
1150 void wxGDIPlusMatrixData::Concat( const wxGraphicsMatrixData
*t
)
1152 m_matrix
->Multiply( (Matrix
*) t
->GetNativeMatrix());
1155 // sets the matrix to the respective values
1156 void wxGDIPlusMatrixData::Set(wxDouble a
, wxDouble b
, wxDouble c
, wxDouble d
,
1157 wxDouble tx
, wxDouble ty
)
1159 m_matrix
->SetElements(a
,b
,c
,d
,tx
,ty
);
1162 // gets the component valuess of the matrix
1163 void wxGDIPlusMatrixData::Get(wxDouble
* a
, wxDouble
* b
, wxDouble
* c
,
1164 wxDouble
* d
, wxDouble
* tx
, wxDouble
* ty
) const
1167 m_matrix
->GetElements(elements
);
1168 if (a
) *a
= elements
[0];
1169 if (b
) *b
= elements
[1];
1170 if (c
) *c
= elements
[2];
1171 if (d
) *d
= elements
[3];
1172 if (tx
) *tx
= elements
[4];
1173 if (ty
) *ty
= elements
[5];
1176 // makes this the inverse matrix
1177 void wxGDIPlusMatrixData::Invert()
1182 // returns true if the elements of the transformation matrix are equal ?
1183 bool wxGDIPlusMatrixData::IsEqual( const wxGraphicsMatrixData
* t
) const
1185 return m_matrix
->Equals((Matrix
*) t
->GetNativeMatrix())== TRUE
;
1188 // return true if this is the identity matrix
1189 bool wxGDIPlusMatrixData::IsIdentity() const
1191 return m_matrix
->IsIdentity() == TRUE
;
1198 // add the translation to this matrix
1199 void wxGDIPlusMatrixData::Translate( wxDouble dx
, wxDouble dy
)
1201 m_matrix
->Translate(dx
,dy
);
1204 // add the scale to this matrix
1205 void wxGDIPlusMatrixData::Scale( wxDouble xScale
, wxDouble yScale
)
1207 m_matrix
->Scale(xScale
,yScale
);
1210 // add the rotation to this matrix (radians)
1211 void wxGDIPlusMatrixData::Rotate( wxDouble angle
)
1213 m_matrix
->Rotate( RadToDeg(angle
) );
1217 // apply the transforms
1220 // applies that matrix to the point
1221 void wxGDIPlusMatrixData::TransformPoint( wxDouble
*x
, wxDouble
*y
) const
1224 m_matrix
->TransformPoints(&pt
);
1229 // applies the matrix except for translations
1230 void wxGDIPlusMatrixData::TransformDistance( wxDouble
*dx
, wxDouble
*dy
) const
1233 m_matrix
->TransformVectors(&pt
);
1238 // returns the native representation
1239 void * wxGDIPlusMatrixData::GetNativeMatrix() const
1244 //-----------------------------------------------------------------------------
1245 // wxGDIPlusContext implementation
1246 //-----------------------------------------------------------------------------
1248 IMPLEMENT_DYNAMIC_CLASS(wxGDIPlusContext
,wxGraphicsContext
)
1249 IMPLEMENT_DYNAMIC_CLASS(wxGDIPlusMeasuringContext
,wxGDIPlusContext
)
1251 class wxGDIPlusOffsetHelper
1254 wxGDIPlusOffsetHelper( Graphics
* gr
, bool offset
)
1259 m_gr
->TranslateTransform( 0.5, 0.5 );
1261 ~wxGDIPlusOffsetHelper( )
1264 m_gr
->TranslateTransform( -0.5, -0.5 );
1271 wxGDIPlusContext::wxGDIPlusContext( wxGraphicsRenderer
* renderer
, HDC hdc
, wxDouble width
, wxDouble height
)
1272 : wxGraphicsContext(renderer
)
1275 m_context
= new Graphics( hdc
);
1281 wxGDIPlusContext::wxGDIPlusContext( wxGraphicsRenderer
* renderer
, const wxDC
& dc
)
1282 : wxGraphicsContext(renderer
)
1286 wxMSWDCImpl
*msw
= wxDynamicCast( dc
.GetImpl() , wxMSWDCImpl
);
1287 HDC hdc
= (HDC
) msw
->GetHDC();
1289 m_context
= new Graphics(hdc
);
1290 wxSize sz
= dc
.GetSize();
1297 wxGDIPlusContext::wxGDIPlusContext( wxGraphicsRenderer
* renderer
, HWND hwnd
)
1298 : wxGraphicsContext(renderer
)
1301 m_enableOffset
= true;
1302 m_context
= new Graphics( hwnd
);
1303 RECT rect
= wxGetWindowRect(hwnd
);
1304 m_width
= rect
.right
- rect
.left
;
1305 m_height
= rect
.bottom
- rect
.top
;
1309 wxGDIPlusContext::wxGDIPlusContext( wxGraphicsRenderer
* renderer
, Graphics
* gr
)
1310 : wxGraphicsContext(renderer
)
1317 wxGDIPlusContext::wxGDIPlusContext() : wxGraphicsContext(NULL
)
1322 void wxGDIPlusContext::Init()
1329 m_fontScaleRatio
= 1.0;
1332 void wxGDIPlusContext::SetDefaults()
1334 m_context
->SetTextRenderingHint(TextRenderingHintSystemDefault
);
1335 m_context
->SetPixelOffsetMode(PixelOffsetModeHalf
);
1336 m_context
->SetSmoothingMode(SmoothingModeHighQuality
);
1337 m_state1
= m_context
->Save();
1338 m_state2
= m_context
->Save();
1341 wxGDIPlusContext::~wxGDIPlusContext()
1345 m_context
->Restore( m_state2
);
1346 m_context
->Restore( m_state1
);
1352 void wxGDIPlusContext::Clip( const wxRegion
®ion
)
1354 Region
rgn((HRGN
)region
.GetHRGN());
1355 m_context
->SetClip(&rgn
,CombineModeIntersect
);
1358 void wxGDIPlusContext::Clip( wxDouble x
, wxDouble y
, wxDouble w
, wxDouble h
)
1360 m_context
->SetClip(RectF(x
,y
,w
,h
),CombineModeIntersect
);
1363 void wxGDIPlusContext::ResetClip()
1365 m_context
->ResetClip();
1368 void wxGDIPlusContext::DrawRectangle( wxDouble x
, wxDouble y
, wxDouble w
, wxDouble h
)
1370 if (m_composition
== wxCOMPOSITION_DEST
)
1373 wxGDIPlusOffsetHelper
helper( m_context
, ShouldOffset() );
1374 Brush
*brush
= m_brush
.IsNull() ? NULL
: ((wxGDIPlusBrushData
*)m_brush
.GetRefData())->GetGDIPlusBrush();
1375 Pen
*pen
= m_pen
.IsNull() ? NULL
: ((wxGDIPlusPenData
*)m_pen
.GetGraphicsData())->GetGDIPlusPen();
1379 // the offset is used to fill only the inside of the rectangle and not paint underneath
1380 // its border which may influence a transparent Pen
1383 offset
= pen
->GetWidth();
1384 m_context
->FillRectangle( brush
, (REAL
)x
+ offset
/2, (REAL
)y
+ offset
/2, (REAL
)w
- offset
, (REAL
)h
- offset
);
1389 m_context
->DrawRectangle( pen
, (REAL
)x
, (REAL
)y
, (REAL
)w
, (REAL
)h
);
1393 void wxGDIPlusContext::StrokeLines( size_t n
, const wxPoint2DDouble
*points
)
1395 if (m_composition
== wxCOMPOSITION_DEST
)
1398 if ( !m_pen
.IsNull() )
1400 wxGDIPlusOffsetHelper
helper( m_context
, ShouldOffset() );
1401 Point
*cpoints
= new Point
[n
];
1402 for (size_t i
= 0; i
< n
; i
++)
1404 cpoints
[i
].X
= (int)(points
[i
].m_x
);
1405 cpoints
[i
].Y
= (int)(points
[i
].m_y
);
1407 } // for (size_t i = 0; i < n; i++)
1408 m_context
->DrawLines( ((wxGDIPlusPenData
*)m_pen
.GetGraphicsData())->GetGDIPlusPen() , cpoints
, n
) ;
1413 void wxGDIPlusContext::DrawLines( size_t n
, const wxPoint2DDouble
*points
, wxPolygonFillMode
WXUNUSED(fillStyle
) )
1415 if (m_composition
== wxCOMPOSITION_DEST
)
1418 wxGDIPlusOffsetHelper
helper( m_context
, ShouldOffset() );
1419 Point
*cpoints
= new Point
[n
];
1420 for (size_t i
= 0; i
< n
; i
++)
1422 cpoints
[i
].X
= (int)(points
[i
].m_x
);
1423 cpoints
[i
].Y
= (int)(points
[i
].m_y
);
1425 } // for (int i = 0; i < n; i++)
1426 if ( !m_brush
.IsNull() )
1427 m_context
->FillPolygon( ((wxGDIPlusBrushData
*)m_brush
.GetRefData())->GetGDIPlusBrush() , cpoints
, n
) ;
1428 if ( !m_pen
.IsNull() )
1429 m_context
->DrawLines( ((wxGDIPlusPenData
*)m_pen
.GetGraphicsData())->GetGDIPlusPen() , cpoints
, n
) ;
1433 void wxGDIPlusContext::StrokePath( const wxGraphicsPath
& path
)
1435 if (m_composition
== wxCOMPOSITION_DEST
)
1438 if ( !m_pen
.IsNull() )
1440 wxGDIPlusOffsetHelper
helper( m_context
, ShouldOffset() );
1441 m_context
->DrawPath( ((wxGDIPlusPenData
*)m_pen
.GetGraphicsData())->GetGDIPlusPen() , (GraphicsPath
*) path
.GetNativePath() );
1445 void wxGDIPlusContext::FillPath( const wxGraphicsPath
& path
, wxPolygonFillMode fillStyle
)
1447 if (m_composition
== wxCOMPOSITION_DEST
)
1450 if ( !m_brush
.IsNull() )
1452 wxGDIPlusOffsetHelper
helper( m_context
, ShouldOffset() );
1453 ((GraphicsPath
*) path
.GetNativePath())->SetFillMode( fillStyle
== wxODDEVEN_RULE
? FillModeAlternate
: FillModeWinding
);
1454 m_context
->FillPath( ((wxGDIPlusBrushData
*)m_brush
.GetRefData())->GetGDIPlusBrush() ,
1455 (GraphicsPath
*) path
.GetNativePath());
1459 bool wxGDIPlusContext::SetAntialiasMode(wxAntialiasMode antialias
)
1461 if (m_antialias
== antialias
)
1464 m_antialias
= antialias
;
1466 SmoothingMode antialiasMode
;
1469 case wxANTIALIAS_DEFAULT
:
1470 antialiasMode
= SmoothingModeHighQuality
;
1472 case wxANTIALIAS_NONE
:
1473 antialiasMode
= SmoothingModeNone
;
1478 m_context
->SetSmoothingMode(antialiasMode
);
1482 bool wxGDIPlusContext::SetCompositionMode(wxCompositionMode op
)
1484 if ( m_composition
== op
)
1489 if (m_composition
== wxCOMPOSITION_DEST
)
1492 CompositingMode cop
;
1495 case wxCOMPOSITION_SOURCE
:
1496 cop
= CompositingModeSourceCopy
;
1498 case wxCOMPOSITION_OVER
:
1499 cop
= CompositingModeSourceOver
;
1505 m_context
->SetCompositingMode(cop
);
1509 void wxGDIPlusContext::BeginLayer(wxDouble
/* opacity */)
1514 void wxGDIPlusContext::EndLayer()
1519 void wxGDIPlusContext::Rotate( wxDouble angle
)
1521 m_context
->RotateTransform( RadToDeg(angle
) );
1524 void wxGDIPlusContext::Translate( wxDouble dx
, wxDouble dy
)
1526 m_context
->TranslateTransform( dx
, dy
);
1529 void wxGDIPlusContext::Scale( wxDouble xScale
, wxDouble yScale
)
1531 m_context
->ScaleTransform(xScale
,yScale
);
1534 void wxGDIPlusContext::PushState()
1536 GraphicsState state
= m_context
->Save();
1537 m_stateStack
.push(state
);
1540 void wxGDIPlusContext::PopState()
1542 GraphicsState state
= m_stateStack
.top();
1544 m_context
->Restore(state
);
1547 void wxGDIPlusContext::DrawBitmap( const wxGraphicsBitmap
&bmp
, wxDouble x
, wxDouble y
, wxDouble w
, wxDouble h
)
1549 if (m_composition
== wxCOMPOSITION_DEST
)
1552 Bitmap
* image
= static_cast<wxGDIPlusBitmapData
*>(bmp
.GetRefData())->GetGDIPlusBitmap();
1555 if( image
->GetWidth() != (UINT
) w
|| image
->GetHeight() != (UINT
) h
)
1557 Rect
drawRect((REAL
) x
, (REAL
)y
, (REAL
)w
, (REAL
)h
);
1558 m_context
->SetPixelOffsetMode( PixelOffsetModeNone
);
1559 m_context
->DrawImage(image
, drawRect
, 0 , 0 , image
->GetWidth(), image
->GetHeight(), UnitPixel
) ;
1560 m_context
->SetPixelOffsetMode( PixelOffsetModeHalf
);
1563 m_context
->DrawImage(image
,(REAL
) x
,(REAL
) y
,(REAL
) w
,(REAL
) h
) ;
1567 void wxGDIPlusContext::DrawBitmap( const wxBitmap
&bmp
, wxDouble x
, wxDouble y
, wxDouble w
, wxDouble h
)
1569 wxGraphicsBitmap bitmap
= GetRenderer()->CreateBitmap(bmp
);
1570 DrawBitmap(bitmap
, x
, y
, w
, h
);
1573 void wxGDIPlusContext::DrawIcon( const wxIcon
&icon
, wxDouble x
, wxDouble y
, wxDouble w
, wxDouble h
)
1575 if (m_composition
== wxCOMPOSITION_DEST
)
1578 // the built-in conversion fails when there is alpha in the HICON (eg XP style icons), we can only
1579 // find out by looking at the bitmap data whether there really was alpha in it
1580 HICON hIcon
= (HICON
)icon
.GetHICON();
1582 // IconInfo creates the bitmaps for color and mask, we must dispose of them after use
1583 if (!GetIconInfo(hIcon
,&iconInfo
))
1586 Bitmap
interim(iconInfo
.hbmColor
,NULL
);
1588 Bitmap
* image
= NULL
;
1590 // if it's not 32 bit, it doesn't have an alpha channel, note that since the conversion doesn't
1591 // work correctly, asking IsAlphaPixelFormat at this point fails as well
1592 if( GetPixelFormatSize(interim
.GetPixelFormat())!= 32 )
1594 image
= Bitmap::FromHICON(hIcon
);
1598 size_t width
= interim
.GetWidth();
1599 size_t height
= interim
.GetHeight();
1600 Rect
bounds(0,0,width
,height
);
1603 interim
.LockBits(&bounds
, ImageLockModeRead
,
1604 interim
.GetPixelFormat(),&data
);
1606 bool hasAlpha
= false;
1607 for ( size_t y
= 0 ; y
< height
&& !hasAlpha
; ++y
)
1609 for( size_t x
= 0 ; x
< width
&& !hasAlpha
; ++x
)
1611 ARGB
*dest
= (ARGB
*)((BYTE
*)data
.Scan0
+ data
.Stride
*y
+ x
*4);
1612 if ( ( *dest
& Color::AlphaMask
) != 0 )
1619 image
= new Bitmap(data
.Width
, data
.Height
, data
.Stride
,
1620 PixelFormat32bppARGB
, (BYTE
*) data
.Scan0
);
1624 image
= Bitmap::FromHICON(hIcon
);
1627 interim
.UnlockBits(&data
);
1630 m_context
->DrawImage(image
,(REAL
) x
,(REAL
) y
,(REAL
) w
,(REAL
) h
) ;
1633 DeleteObject(iconInfo
.hbmColor
);
1634 DeleteObject(iconInfo
.hbmMask
);
1637 wxGraphicsFont
wxGDIPlusContext::CreateFont( const wxFont
&font
,
1638 const wxColour
&col
) const
1640 wxGDIPlusRenderer
* renderer
=
1641 static_cast<wxGDIPlusRenderer
*>(GetRenderer());
1642 return renderer
->CreateGDIPlusFont(this, font
, col
);
1645 void wxGDIPlusContext::DoDrawFilledText(const wxString
& str
,
1646 wxDouble x
, wxDouble y
,
1647 const wxGraphicsBrush
& brush
)
1649 if (m_composition
== wxCOMPOSITION_DEST
)
1652 wxCHECK_RET( !m_font
.IsNull(),
1653 wxT("wxGDIPlusContext::DrawText - no valid font set") );
1658 wxGDIPlusFontData
* const
1659 fontData
= (wxGDIPlusFontData
*)m_font
.GetRefData();
1660 wxGDIPlusBrushData
* const
1661 brushData
= (wxGDIPlusBrushData
*)brush
.GetRefData();
1663 m_context
->DrawString
1665 str
.wc_str(*wxConvUI
), // string to draw, always Unicode
1666 -1, // length: string is NUL-terminated
1667 fontData
->GetGDIPlusFont(),
1669 StringFormat::GenericTypographic(),
1670 brushData
? brushData
->GetGDIPlusBrush()
1671 : fontData
->GetGDIPlusBrush()
1675 void wxGDIPlusContext::GetTextExtent( const wxString
&str
, wxDouble
*width
, wxDouble
*height
,
1676 wxDouble
*descent
, wxDouble
*externalLeading
) const
1678 wxCHECK_RET( !m_font
.IsNull(), wxT("wxGDIPlusContext::GetTextExtent - no valid font set") );
1680 wxWCharBuffer s
= str
.wc_str( *wxConvUI
);
1681 FontFamily ffamily
;
1682 Font
* f
= ((wxGDIPlusFontData
*)m_font
.GetRefData())->GetGDIPlusFont();
1684 f
->GetFamily(&ffamily
) ;
1686 REAL factorY
= m_fontScaleRatio
;
1688 REAL rDescent
= ffamily
.GetCellDescent(FontStyleRegular
) *
1689 f
->GetSize() / ffamily
.GetEmHeight(FontStyleRegular
);
1690 REAL rAscent
= ffamily
.GetCellAscent(FontStyleRegular
) *
1691 f
->GetSize() / ffamily
.GetEmHeight(FontStyleRegular
);
1692 REAL rHeight
= ffamily
.GetLineSpacing(FontStyleRegular
) *
1693 f
->GetSize() / ffamily
.GetEmHeight(FontStyleRegular
);
1696 *height
= rHeight
* factorY
;
1698 *descent
= rDescent
* factorY
;
1699 if ( externalLeading
)
1700 *externalLeading
= (rHeight
- rAscent
- rDescent
) * factorY
;
1701 // measuring empty strings is not guaranteed, so do it by hand
1709 RectF
layoutRect(0,0, 100000.0f
, 100000.0f
);
1710 StringFormat
strFormat( StringFormat::GenericTypographic() );
1711 strFormat
.SetFormatFlags( StringFormatFlagsMeasureTrailingSpaces
| strFormat
.GetFormatFlags() );
1714 m_context
->MeasureString((const wchar_t *) s
, wcslen(s
) , f
, layoutRect
, &strFormat
, &bounds
) ;
1716 *width
= bounds
.Width
;
1718 *height
= bounds
.Height
;
1722 void wxGDIPlusContext::GetPartialTextExtents(const wxString
& text
, wxArrayDouble
& widths
) const
1725 widths
.Add(0, text
.length());
1727 wxCHECK_RET( !m_font
.IsNull(), wxT("wxGDIPlusContext::GetPartialTextExtents - no valid font set") );
1732 Font
* f
= ((wxGDIPlusFontData
*)m_font
.GetRefData())->GetGDIPlusFont();
1733 wxWCharBuffer ws
= text
.wc_str( *wxConvUI
);
1734 size_t len
= wcslen( ws
) ;
1735 wxASSERT_MSG(text
.length() == len
, wxT("GetPartialTextExtents not yet implemented for multichar situations"));
1737 RectF
layoutRect(0,0, 100000.0f
, 100000.0f
);
1738 StringFormat
strFormat( StringFormat::GenericTypographic() );
1740 size_t startPosition
= 0;
1741 size_t remainder
= len
;
1742 const size_t maxSpan
= 32;
1743 CharacterRange
* ranges
= new CharacterRange
[maxSpan
] ;
1744 Region
* regions
= new Region
[maxSpan
];
1746 while( remainder
> 0 )
1748 size_t span
= wxMin( maxSpan
, remainder
);
1750 for( size_t i
= 0 ; i
< span
; ++i
)
1752 ranges
[i
].First
= 0 ;
1753 ranges
[i
].Length
= startPosition
+i
+1 ;
1755 strFormat
.SetMeasurableCharacterRanges(span
,ranges
);
1756 strFormat
.SetFormatFlags( StringFormatFlagsMeasureTrailingSpaces
| strFormat
.GetFormatFlags() );
1757 m_context
->MeasureCharacterRanges(ws
, -1 , f
,layoutRect
, &strFormat
,span
,regions
) ;
1760 for ( size_t i
= 0 ; i
< span
; ++i
)
1762 regions
[i
].GetBounds(&bbox
,m_context
);
1763 widths
[startPosition
+i
] = bbox
.Width
;
1766 startPosition
+= span
;
1773 bool wxGDIPlusContext::ShouldOffset() const
1775 if ( !m_enableOffset
)
1779 if ( !m_pen
.IsNull() )
1781 penwidth
= (int)((wxGDIPlusPenData
*)m_pen
.GetRefData())->GetWidth();
1782 if ( penwidth
== 0 )
1785 return ( penwidth
% 2 ) == 1;
1788 void* wxGDIPlusContext::GetNativeContext()
1793 // concatenates this transform with the current transform of this context
1794 void wxGDIPlusContext::ConcatTransform( const wxGraphicsMatrix
& matrix
)
1796 m_context
->MultiplyTransform((Matrix
*) matrix
.GetNativeMatrix());
1799 // sets the transform of this context
1800 void wxGDIPlusContext::SetTransform( const wxGraphicsMatrix
& matrix
)
1802 m_context
->SetTransform((Matrix
*) matrix
.GetNativeMatrix());
1805 // gets the matrix of this context
1806 wxGraphicsMatrix
wxGDIPlusContext::GetTransform() const
1808 wxGraphicsMatrix matrix
= CreateMatrix();
1809 m_context
->GetTransform((Matrix
*) matrix
.GetNativeMatrix());
1813 void wxGDIPlusContext::GetSize( wxDouble
* width
, wxDouble
*height
)
1819 //-----------------------------------------------------------------------------
1820 // wxGDIPlusPrintingContext implementation
1821 //-----------------------------------------------------------------------------
1823 wxGDIPlusPrintingContext::wxGDIPlusPrintingContext( wxGraphicsRenderer
* renderer
,
1825 : wxGDIPlusContext(renderer
, dc
)
1827 Graphics
* context
= GetGraphics();
1829 //m_context->SetPageUnit(UnitDocument);
1831 // Setup page scale, based on DPI ratio.
1832 // Antecedent should be 100dpi when the default page unit
1833 // (UnitDisplay) is used. Page unit UnitDocument would require 300dpi
1834 // instead. Note that calling SetPageScale() does not have effect on
1835 // non-printing DCs (that is, any other than wxPrinterDC or
1836 // wxEnhMetaFileDC).
1837 REAL dpiRatio
= 100.0 / context
->GetDpiY();
1838 context
->SetPageScale(dpiRatio
);
1840 // We use this modifier when measuring fonts. It is needed because the
1841 // page scale is modified above.
1842 m_fontScaleRatio
= context
->GetDpiY() / 72.0;
1845 //-----------------------------------------------------------------------------
1846 // wxGDIPlusRenderer implementation
1847 //-----------------------------------------------------------------------------
1849 IMPLEMENT_DYNAMIC_CLASS(wxGDIPlusRenderer
,wxGraphicsRenderer
)
1851 static wxGDIPlusRenderer gs_GDIPlusRenderer
;
1853 wxGraphicsRenderer
* wxGraphicsRenderer::GetDefaultRenderer()
1855 return &gs_GDIPlusRenderer
;
1858 bool wxGDIPlusRenderer::EnsureIsLoaded()
1860 // load gdiplus.dll if not yet loaded, but don't bother doing it again
1861 // if we already tried and failed (we don't want to spend lot of time
1862 // returning NULL from wxGraphicsContext::Create(), which may be called
1863 // relatively frequently):
1864 if ( m_loaded
== -1 )
1869 return m_loaded
== 1;
1872 // call EnsureIsLoaded() and return returnOnFail value if it fails
1873 #define ENSURE_LOADED_OR_RETURN(returnOnFail) \
1874 if ( !EnsureIsLoaded() ) \
1875 return (returnOnFail)
1878 void wxGDIPlusRenderer::Load()
1880 GdiplusStartupInput input
;
1881 GdiplusStartupOutput output
;
1882 if ( GdiplusStartup(&m_gditoken
,&input
,&output
) == Gdiplus::Ok
)
1884 wxLogTrace("gdiplus", "successfully initialized GDI+");
1889 wxLogTrace("gdiplus", "failed to initialize GDI+, missing gdiplus.dll?");
1894 void wxGDIPlusRenderer::Unload()
1898 GdiplusShutdown(m_gditoken
);
1901 m_loaded
= -1; // next Load() will try again
1904 wxGraphicsContext
* wxGDIPlusRenderer::CreateContext( const wxWindowDC
& dc
)
1906 ENSURE_LOADED_OR_RETURN(NULL
);
1907 wxGDIPlusContext
* context
= new wxGDIPlusContext(this, dc
);
1908 context
->EnableOffset(true);
1912 #if wxUSE_PRINTING_ARCHITECTURE
1913 wxGraphicsContext
* wxGDIPlusRenderer::CreateContext( const wxPrinterDC
& dc
)
1915 ENSURE_LOADED_OR_RETURN(NULL
);
1916 wxGDIPlusContext
* context
= new wxGDIPlusPrintingContext(this, dc
);
1921 #if wxUSE_ENH_METAFILE
1922 wxGraphicsContext
* wxGDIPlusRenderer::CreateContext( const wxEnhMetaFileDC
& dc
)
1924 ENSURE_LOADED_OR_RETURN(NULL
);
1925 wxGDIPlusContext
* context
= new wxGDIPlusPrintingContext(this, dc
);
1930 wxGraphicsContext
* wxGDIPlusRenderer::CreateContext( const wxMemoryDC
& dc
)
1932 ENSURE_LOADED_OR_RETURN(NULL
);
1933 wxGDIPlusContext
* context
= new wxGDIPlusContext(this, dc
);
1934 context
->EnableOffset(true);
1938 wxGraphicsContext
* wxGDIPlusRenderer::CreateMeasuringContext()
1940 ENSURE_LOADED_OR_RETURN(NULL
);
1941 return new wxGDIPlusMeasuringContext(this);
1944 wxGraphicsContext
* wxGDIPlusRenderer::CreateContextFromNativeContext( void * context
)
1946 ENSURE_LOADED_OR_RETURN(NULL
);
1947 return new wxGDIPlusContext(this,(Graphics
*) context
);
1951 wxGraphicsContext
* wxGDIPlusRenderer::CreateContextFromNativeWindow( void * window
)
1953 ENSURE_LOADED_OR_RETURN(NULL
);
1954 return new wxGDIPlusContext(this,(HWND
) window
);
1957 wxGraphicsContext
* wxGDIPlusRenderer::CreateContext( wxWindow
* window
)
1959 ENSURE_LOADED_OR_RETURN(NULL
);
1960 return new wxGDIPlusContext(this, (HWND
) window
->GetHWND() );
1965 wxGraphicsPath
wxGDIPlusRenderer::CreatePath()
1967 ENSURE_LOADED_OR_RETURN(wxNullGraphicsPath
);
1969 m
.SetRefData( new wxGDIPlusPathData(this));
1976 wxGraphicsMatrix
wxGDIPlusRenderer::CreateMatrix( wxDouble a
, wxDouble b
, wxDouble c
, wxDouble d
,
1977 wxDouble tx
, wxDouble ty
)
1980 ENSURE_LOADED_OR_RETURN(wxNullGraphicsMatrix
);
1982 wxGDIPlusMatrixData
* data
= new wxGDIPlusMatrixData( this );
1983 data
->Set( a
,b
,c
,d
,tx
,ty
) ;
1988 wxGraphicsPen
wxGDIPlusRenderer::CreatePen(const wxPen
& pen
)
1990 ENSURE_LOADED_OR_RETURN(wxNullGraphicsPen
);
1991 if ( !pen
.Ok() || pen
.GetStyle() == wxTRANSPARENT
)
1992 return wxNullGraphicsPen
;
1996 p
.SetRefData(new wxGDIPlusPenData( this, pen
));
2001 wxGraphicsBrush
wxGDIPlusRenderer::CreateBrush(const wxBrush
& brush
)
2003 ENSURE_LOADED_OR_RETURN(wxNullGraphicsBrush
);
2004 if ( !brush
.Ok() || brush
.GetStyle() == wxTRANSPARENT
)
2005 return wxNullGraphicsBrush
;
2009 p
.SetRefData(new wxGDIPlusBrushData( this, brush
));
2015 wxGDIPlusRenderer::CreateLinearGradientBrush(wxDouble x1
, wxDouble y1
,
2016 wxDouble x2
, wxDouble y2
,
2017 const wxGraphicsGradientStops
& stops
)
2019 ENSURE_LOADED_OR_RETURN(wxNullGraphicsBrush
);
2021 wxGDIPlusBrushData
* d
= new wxGDIPlusBrushData( this );
2022 d
->CreateLinearGradientBrush(x1
, y1
, x2
, y2
, stops
);
2028 wxGDIPlusRenderer::CreateRadialGradientBrush(wxDouble xo
, wxDouble yo
,
2029 wxDouble xc
, wxDouble yc
,
2031 const wxGraphicsGradientStops
& stops
)
2033 ENSURE_LOADED_OR_RETURN(wxNullGraphicsBrush
);
2035 wxGDIPlusBrushData
* d
= new wxGDIPlusBrushData( this );
2036 d
->CreateRadialGradientBrush(xo
,yo
,xc
,yc
,radius
,stops
);
2042 wxGDIPlusRenderer::CreateGDIPlusFont( const wxGDIPlusContext
* gc
,
2044 const wxColour
&col
)
2046 ENSURE_LOADED_OR_RETURN(wxNullGraphicsFont
);
2050 p
.SetRefData(new wxGDIPlusFontData( this, gc
, font
, col
));
2054 return wxNullGraphicsFont
;
2057 wxGraphicsBitmap
wxGDIPlusRenderer::CreateBitmap( const wxBitmap
&bitmap
)
2059 ENSURE_LOADED_OR_RETURN(wxNullGraphicsBitmap
);
2063 p
.SetRefData(new wxGDIPlusBitmapData( this , bitmap
));
2067 return wxNullGraphicsBitmap
;
2070 wxGraphicsBitmap
wxGDIPlusRenderer::CreateBitmapFromNativeBitmap( void *bitmap
)
2072 ENSURE_LOADED_OR_RETURN(wxNullGraphicsBitmap
);
2073 if ( bitmap
!= NULL
)
2076 p
.SetRefData(new wxGDIPlusBitmapData( this , (Bitmap
*) bitmap
));
2080 return wxNullGraphicsBitmap
;
2083 wxGraphicsBitmap
wxGDIPlusRenderer::CreateSubBitmap( const wxGraphicsBitmap
&bitmap
, wxDouble x
, wxDouble y
, wxDouble w
, wxDouble h
)
2085 ENSURE_LOADED_OR_RETURN(wxNullGraphicsBitmap
);
2086 Bitmap
* image
= static_cast<wxGDIPlusBitmapData
*>(bitmap
.GetRefData())->GetGDIPlusBitmap();
2090 p
.SetRefData(new wxGDIPlusBitmapData( this , image
->Clone( (REAL
) x
, (REAL
) y
, (REAL
) w
, (REAL
) h
, PixelFormat32bppPARGB
) ));
2094 return wxNullGraphicsBitmap
;
2097 // Shutdown GDI+ at app exit, before possible dll unload
2098 class wxGDIPlusRendererModule
: public wxModule
2101 virtual bool OnInit() { return true; }
2102 virtual void OnExit() { gs_GDIPlusRenderer
.Unload(); }
2105 DECLARE_DYNAMIC_CLASS(wxGDIPlusRendererModule
)
2108 IMPLEMENT_DYNAMIC_CLASS(wxGDIPlusRendererModule
, wxModule
)
2110 // ----------------------------------------------------------------------------
2111 // wxMSW-specific parts of wxGCDC
2112 // ----------------------------------------------------------------------------
2114 WXHDC
wxGCDC::AcquireHDC()
2116 wxGraphicsContext
* const gc
= GetGraphicsContext();
2120 Graphics
* const g
= static_cast<Graphics
*>(gc
->GetNativeContext());
2121 return g
? g
->GetHDC() : NULL
;
2124 void wxGCDC::ReleaseHDC(WXHDC hdc
)
2129 wxGraphicsContext
* const gc
= GetGraphicsContext();
2130 wxCHECK_RET( gc
, "can't release HDC because there is no wxGraphicsContext" );
2132 Graphics
* const g
= static_cast<Graphics
*>(gc
->GetNativeContext());
2133 wxCHECK_RET( g
, "can't release HDC because there is no Graphics" );
2135 g
->ReleaseHDC((HDC
)hdc
);
2138 #endif // wxUSE_GRAPHICS_CONTEXT