1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/mac/carbon/dccg.cpp
3 // Purpose: wxGCDC class
4 // Author: Stefan Csomor
8 // Copyright: (c) Stefan Csomor
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 #include "wx/wxprec.h"
16 // For compilers that support precompilation, includes "wx.h".
17 #include "wx/wxprec.h"
24 #include "wx/msw/wrapcdlg.h"
26 #include "wx/window.h"
29 #include "wx/dialog.h"
31 #include "wx/bitmap.h"
32 #include "wx/dcmemory.h"
35 #include "wx/dcprint.h"
36 #include "wx/module.h"
39 #include "wx/graphics.h"
45 //-----------------------------------------------------------------------------
47 //-----------------------------------------------------------------------------
49 const double RAD2DEG
= 180.0 / M_PI
;
51 //-----------------------------------------------------------------------------
53 //-----------------------------------------------------------------------------
55 static inline double dmin(double a
, double b
) { return a
< b
? a
: b
; }
56 static inline double dmax(double a
, double b
) { return a
> b
? a
: b
; }
58 static inline double DegToRad(double deg
) { return (deg
* M_PI
) / 180.0; }
59 static inline double RadToDeg(double deg
) { return (deg
* 180.0) / M_PI
; }
61 //-----------------------------------------------------------------------------
62 // device context implementation
64 // more and more of the dc functionality should be implemented by calling
65 // the appropricate wxGDIPlusContext, but we will have to do that step by step
66 // also coordinate conversions should be moved to native matrix ops
67 //-----------------------------------------------------------------------------
69 // we always stock two context states, one at entry, to be able to preserve the
70 // state we were called with, the other one after changing to HI Graphics orientation
71 // (this one is used for getting back clippings etc)
73 //-----------------------------------------------------------------------------
74 // wxGraphicsPath implementation
75 //-----------------------------------------------------------------------------
77 #include "wx/msw/private.h" // needs to be before #include <commdlg.h>
79 #if wxUSE_COMMON_DIALOGS && !defined(__WXMICROWIN__)
83 // TODO remove this dependency (gdiplus needs the macros)
86 #define max(a,b) (((a) > (b)) ? (a) : (b))
90 #define min(a,b) (((a) < (b)) ? (a) : (b))
94 using namespace Gdiplus
;
112 void EnsureIsLoaded()
121 GdiplusStartupInput input
;
122 GdiplusStartupOutput output
;
123 GdiplusStartup(&m_gditoken
,&input
,&output
);
129 GdiplusShutdown(m_gditoken
);
137 static GDILoader gGDILoader
;
139 class WXDLLEXPORT wxGDIPlusPath
: public wxGraphicsPath
141 DECLARE_NO_COPY_CLASS(wxGDIPlusPath
)
148 // These are the path primitives from which everything else can be constructed
151 // begins a new subpath at (x,y)
152 virtual void MoveToPoint( wxDouble x
, wxDouble y
);
154 // adds a straight line from the current point to (x,y)
155 virtual void AddLineToPoint( wxDouble x
, wxDouble y
);
157 // adds a cubic Bezier curve from the current point, using two control points and an end point
158 virtual void AddCurveToPoint( wxDouble cx1
, wxDouble cy1
, wxDouble cx2
, wxDouble cy2
, wxDouble x
, wxDouble y
);
161 // adds an arc of a circle centering at (x,y) with radius (r) from startAngle to endAngle
162 virtual void AddArc( wxDouble x
, wxDouble y
, wxDouble r
, wxDouble startAngle
, wxDouble endAngle
, bool clockwise
) ;
164 // gets the last point of the current path, (0,0) if not yet set
165 virtual void GetCurrentPoint( wxDouble
& x
, wxDouble
&y
) ;
167 // closes the current sub-path
168 virtual void CloseSubpath();
171 // These are convenience functions which - if not available natively will be assembled
172 // using the primitives from above
175 // appends a rectangle as a new closed subpath
176 virtual void AddRectangle( wxDouble x
, wxDouble y
, wxDouble w
, wxDouble h
) ;
179 // appends an ellipsis as a new closed subpath fitting the passed rectangle
180 virtual void AddEllipsis( wxDouble x, wxDouble y, wxDouble w , wxDouble h ) ;
182 // 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)
183 virtual void AddArcToPoint( wxDouble x1, wxDouble y1 , wxDouble x2, wxDouble y2, wxDouble r ) ;
186 GraphicsPath
* GetPath() const;
188 GraphicsPath
* m_path
;
191 class WXDLLEXPORT wxGDIPlusContext
: public wxGraphicsContext
193 DECLARE_NO_COPY_CLASS(wxGDIPlusContext
)
196 wxGDIPlusContext( WXHDC hdc
);
198 virtual ~wxGDIPlusContext();
200 virtual void Clip( const wxRegion
®ion
);
201 virtual void StrokePath( const wxGraphicsPath
*p
);
202 virtual void FillPath( const wxGraphicsPath
*p
, int fillStyle
= wxWINDING_RULE
);
204 virtual wxGraphicsPath
* CreatePath();
205 virtual void SetPen( const wxPen
&pen
);
206 virtual void SetBrush( const wxBrush
&brush
);
207 virtual void SetLinearGradientBrush( wxDouble x1
, wxDouble y1
, wxDouble x2
, wxDouble y2
, const wxColour
&c1
, const wxColour
&c2
) ;
208 virtual void SetRadialGradientBrush( wxDouble xo
, wxDouble yo
, wxDouble xc
, wxDouble yc
, wxDouble radius
,
209 const wxColour
&oColor
, const wxColour
&cColor
);
211 virtual void Translate( wxDouble dx
, wxDouble dy
);
212 virtual void Scale( wxDouble xScale
, wxDouble yScale
);
213 virtual void Rotate( wxDouble angle
);
215 virtual void DrawBitmap( const wxBitmap
&bmp
, wxDouble x
, wxDouble y
, wxDouble w
, wxDouble h
);
216 virtual void DrawIcon( const wxIcon
&icon
, wxDouble x
, wxDouble y
, wxDouble w
, wxDouble h
);
217 virtual void PushState();
218 virtual void PopState();
220 virtual void SetFont( const wxFont
&font
);
221 virtual void SetTextColor( const wxColour
&col
);
222 virtual void DrawText( const wxString
&str
, wxDouble x
, wxDouble y
);
223 virtual void GetTextExtent( const wxString
&str
, wxDouble
*width
, wxDouble
*height
,
224 wxDouble
*descent
, wxDouble
*externalLeading
) const;
225 virtual void GetPartialTextExtents(const wxString
& text
, wxArrayDouble
& widths
) const;
229 vector
<GraphicsState
> m_stateStack
;
230 GraphicsState m_state1
;
231 GraphicsState m_state2
;
234 bool m_penTransparent
;
239 bool m_brushTransparent
;
241 GraphicsPath
* m_brushPath
;
249 wxGDIPlusPath::wxGDIPlusPath()
251 m_path
= new GraphicsPath();
254 wxGDIPlusPath::~wxGDIPlusPath()
259 GraphicsPath
* wxGDIPlusPath::GetPath() const
268 void wxGDIPlusPath::MoveToPoint( wxDouble x
, wxDouble y
)
270 m_path
->StartFigure();
271 m_path
->AddLine((REAL
) x
,(REAL
) y
,(REAL
) x
,(REAL
) y
);
274 void wxGDIPlusPath::AddLineToPoint( wxDouble x
, wxDouble y
)
276 m_path
->AddLine((REAL
) x
,(REAL
) y
,(REAL
) x
,(REAL
) y
);
279 void wxGDIPlusPath::CloseSubpath()
281 m_path
->CloseFigure();
284 void wxGDIPlusPath::AddCurveToPoint( wxDouble cx1
, wxDouble cy1
, wxDouble cx2
, wxDouble cy2
, wxDouble x
, wxDouble y
)
290 m_path
->GetLastPoint(&start
);
291 m_path
->AddBezier(start
,c1
,c2
,end
);
294 // gets the last point of the current path, (0,0) if not yet set
295 void wxGDIPlusPath::GetCurrentPoint( wxDouble
& x
, wxDouble
&y
)
298 m_path
->GetLastPoint(&start
);
303 void wxGDIPlusPath::AddArc( wxDouble x
, wxDouble y
, wxDouble r
, double startAngle
, double endAngle
, bool clockwise
)
305 double sweepAngle
= endAngle
- startAngle
;
306 if( abs(sweepAngle
) >= 2*M_PI
)
308 sweepAngle
= 2 * M_PI
;
315 sweepAngle
+= 2 * M_PI
;
320 sweepAngle
-= 2 * M_PI
;
324 m_path
->AddArc((REAL
) (x
-r
),(REAL
) (y
-r
),(REAL
) (2*r
),(REAL
) (2*r
),RadToDeg(startAngle
),RadToDeg(sweepAngle
));
327 void wxGDIPlusPath::AddRectangle( wxDouble x
, wxDouble y
, wxDouble w
, wxDouble h
)
329 m_path
->AddRectangle(RectF(x
,y
,w
,h
));
336 // closes the current subpath
337 void wxGDIPlusPath::AddArcToPoint( wxDouble x1, wxDouble y1 , wxDouble x2, wxDouble y2, wxDouble r )
339 // CGPathAddArcToPoint( m_path, NULL , x1, y1, x2, y2, r);
344 //-----------------------------------------------------------------------------
345 // wxGDIPlusContext implementation
346 //-----------------------------------------------------------------------------
348 wxGDIPlusContext::wxGDIPlusContext( WXHDC hdc
)
350 gGDILoader
.EnsureIsLoaded();
351 m_context
= new Graphics( (HDC
) hdc
);
352 m_state1
= m_context
->Save();
353 m_state2
= m_context
->Save();
357 m_penTransparent
= false;
358 m_pen
= new Pen((ARGB
)Color::Black
);
362 m_brushTransparent
= false;
363 m_brush
= new SolidBrush((ARGB
)Color::White
);
366 m_textBrush
= new SolidBrush((ARGB
)Color::Black
);
367 m_font
= new Font( L
"Arial" , 9 , FontStyleRegular
);
370 wxGDIPlusContext::~wxGDIPlusContext()
374 m_context
->Restore( m_state2
);
375 m_context
->Restore( m_state1
);
389 void wxGDIPlusContext::Clip( const wxRegion
& WXUNUSED(region
) )
391 // ClipCGContextToRegion ( m_context, &bounds , (RgnHandle) dc->m_macCurrentClipRgn );
394 void wxGDIPlusContext::StrokePath( const wxGraphicsPath
*p
)
396 if ( m_penTransparent
)
399 const wxGDIPlusPath
* path
= dynamic_cast< const wxGDIPlusPath
*>( p
);
400 m_context
->DrawPath( m_pen
, path
->GetPath() );
403 void wxGDIPlusContext::FillPath( const wxGraphicsPath
*p
, int fillStyle
)
405 if ( !m_brushTransparent
)
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() );
413 wxGraphicsPath
* wxGDIPlusContext::CreatePath()
415 return new wxGDIPlusPath();
418 void wxGDIPlusContext::Rotate( wxDouble angle
)
420 m_context
->RotateTransform( angle
);
423 void wxGDIPlusContext::Translate( wxDouble dx
, wxDouble dy
)
425 m_context
->TranslateTransform( dx
, dy
);
428 void wxGDIPlusContext::Scale( wxDouble xScale
, wxDouble yScale
)
430 PointF
penWidth( m_pen
->GetWidth(), 0);
432 if ( !m_penTransparent
)
434 m_context
->GetTransform(&matrix
);
435 matrix
.TransformVectors(&penWidth
);
437 m_context
->ScaleTransform(xScale
,yScale
);
438 if ( !m_penTransparent
)
440 m_context
->GetTransform(&matrix
);
442 matrix
.TransformVectors(&penWidth
) ;
443 m_pen
->SetWidth( sqrt( penWidth
.X
*penWidth
.X
+ penWidth
.Y
*penWidth
.Y
));
447 void wxGDIPlusContext::PushState()
449 GraphicsState state
= m_context
->Save();
450 m_stateStack
.push_back(state
);
453 void wxGDIPlusContext::PopState()
455 GraphicsState state
= m_stateStack
.back();
456 m_stateStack
.pop_back();
457 m_context
->Restore(state
);
460 void wxGDIPlusContext::SetTextColor( const wxColour
&col
)
463 m_textBrush
= new SolidBrush( Color( col
.Alpha() , col
.Red() ,
464 col
.Green() , col
.Blue() ));
467 void wxGDIPlusContext::SetPen( const wxPen
&pen
)
469 m_penTransparent
= pen
.GetStyle() == wxTRANSPARENT
;
470 if ( m_penTransparent
)
473 m_pen
->SetColor( Color( pen
.GetColour().Alpha() , pen
.GetColour().Red() ,
474 pen
.GetColour().Green() , pen
.GetColour().Blue() ) );
476 // TODO: * m_dc->m_scaleX
477 double penWidth
= pen
.GetWidth();
481 m_pen
->SetWidth(penWidth
);
484 switch ( pen
.GetCap() )
490 case wxCAP_PROJECTING
:
495 cap
= LineCapFlat
; // TODO verify
502 m_pen
->SetLineCap(cap
,cap
, DashCapFlat
);
505 switch ( pen
.GetJoin() )
508 join
= LineJoinBevel
;
512 join
= LineJoinMiter
;
516 join
= LineJoinRound
;
520 join
= LineJoinMiter
;
524 m_pen
->SetLineJoin(join
);
526 m_pen
->SetDashStyle(DashStyleSolid
);
528 DashStyle dashStyle
= DashStyleSolid
;
529 switch ( pen
.GetStyle() )
535 dashStyle
= DashStyleDot
;
539 dashStyle
= DashStyleDash
; // TODO verify
543 dashStyle
= DashStyleDash
;
547 dashStyle
= DashStyleDashDot
;
551 dashStyle
= DashStyleCustom
;
553 int count
= pen
.GetDashes( &dashes
);
554 if ((dashes
!= NULL
) && (count
> 0))
556 REAL
*userLengths
= new REAL
[count
];
557 for ( int i
= 0; i
< count
; ++i
)
559 userLengths
[i
] = dashes
[i
];
561 m_pen
->SetDashPattern( userLengths
, count
);
562 delete[] userLengths
;
568 wxBitmap
* bmp
= pen
.GetStipple();
569 if ( bmp
&& bmp
->Ok() )
571 wxDELETE( m_penImage
);
572 wxDELETE( m_penBrush
);
573 m_penImage
= Bitmap::FromHBITMAP((HBITMAP
)bmp
->GetHBITMAP(),(HPALETTE
)bmp
->GetPalette()->GetHPALETTE());
574 m_penBrush
= new TextureBrush(m_penImage
);
575 m_pen
->SetBrush( m_penBrush
);
581 if ( pen
.GetStyle() >= wxFIRST_HATCH
&& pen
.GetStyle() <= wxLAST_HATCH
)
583 wxDELETE( m_penBrush
);
584 HatchStyle style
= HatchStyleHorizontal
;
585 switch( pen
.GetStyle() )
587 case wxBDIAGONAL_HATCH
:
588 style
= HatchStyleBackwardDiagonal
;
590 case wxCROSSDIAG_HATCH
:
591 style
= HatchStyleDiagonalCross
;
593 case wxFDIAGONAL_HATCH
:
594 style
= HatchStyleForwardDiagonal
;
597 style
= HatchStyleCross
;
599 case wxHORIZONTAL_HATCH
:
600 style
= HatchStyleHorizontal
;
602 case wxVERTICAL_HATCH
:
603 style
= HatchStyleVertical
;
607 m_penBrush
= new HatchBrush(style
,Color( pen
.GetColour().Alpha() , pen
.GetColour().Red() ,
608 pen
.GetColour().Green() , pen
.GetColour().Blue() ), Color::Transparent
);
609 m_pen
->SetBrush( m_penBrush
);
613 if ( dashStyle
!= DashStyleSolid
)
614 m_pen
->SetDashStyle(dashStyle
);
617 void wxGDIPlusContext::SetBrush( const wxBrush
&brush
)
620 if ( m_context
== NULL
)
623 m_brushTransparent
= brush
.GetStyle() == wxTRANSPARENT
;
625 if ( m_brushTransparent
)
630 if ( brush
.GetStyle() == wxSOLID
)
632 m_brush
= new SolidBrush( Color( brush
.GetColour().Alpha() , brush
.GetColour().Red() ,
633 brush
.GetColour().Green() , brush
.GetColour().Blue() ) );
635 else if ( brush
.IsHatch() )
637 HatchStyle style
= HatchStyleHorizontal
;
638 switch( brush
.GetStyle() )
640 case wxBDIAGONAL_HATCH
:
641 style
= HatchStyleBackwardDiagonal
;
643 case wxCROSSDIAG_HATCH
:
644 style
= HatchStyleDiagonalCross
;
646 case wxFDIAGONAL_HATCH
:
647 style
= HatchStyleForwardDiagonal
;
650 style
= HatchStyleCross
;
652 case wxHORIZONTAL_HATCH
:
653 style
= HatchStyleHorizontal
;
655 case wxVERTICAL_HATCH
:
656 style
= HatchStyleVertical
;
660 m_brush
= new HatchBrush(style
,Color( brush
.GetColour().Alpha() , brush
.GetColour().Red() ,
661 brush
.GetColour().Green() , brush
.GetColour().Blue() ), Color::Transparent
);
665 wxBitmap
* bmp
= brush
.GetStipple();
666 if ( bmp
&& bmp
->Ok() )
668 wxDELETE( m_brushImage
);
669 m_brushImage
= Bitmap::FromHBITMAP((HBITMAP
)bmp
->GetHBITMAP(),(HPALETTE
)bmp
->GetPalette()->GetHPALETTE());
670 m_brush
= new TextureBrush(m_brushImage
);
675 void wxGDIPlusContext::SetLinearGradientBrush( wxDouble x1
, wxDouble y1
, wxDouble x2
, wxDouble y2
, const wxColour
&c1
, const wxColour
&c2
)
677 m_brushTransparent
= false ;
681 m_brush
= new LinearGradientBrush( PointF( x1
,y1
) , PointF( x2
,y2
),
682 Color( c1
.Alpha(), c1
.Red(),c1
.Green() , c1
.Blue() ),
683 Color( c2
.Alpha(), c2
.Red(),c2
.Green() , c2
.Blue() ));
686 void wxGDIPlusContext::SetRadialGradientBrush( wxDouble xo
, wxDouble yo
, wxDouble xc
, wxDouble yc
, wxDouble radius
,
687 const wxColour
&oColor
, const wxColour
&cColor
)
689 m_brushTransparent
= false ;
692 wxDELETE(m_brushPath
);
694 // Create a path that consists of a single circle.
695 m_brushPath
= new GraphicsPath();
696 m_brushPath
->AddEllipse( (REAL
)(xc
-radius
), (REAL
)(yc
-radius
), (REAL
)(2*radius
), (REAL
)(2*radius
));
698 PathGradientBrush
*b
= new PathGradientBrush(m_brushPath
);
700 b
->SetCenterPoint( PointF(xo
,yo
));
701 b
->SetCenterColor(Color( oColor
.Alpha(), oColor
.Red(),oColor
.Green() , oColor
.Blue() ));
703 Color colors
[] = {Color( cColor
.Alpha(), cColor
.Red(),cColor
.Green() , cColor
.Blue() )};
705 b
->SetSurroundColors(colors
, &count
);
708 // the built-in conversions functions create non-premultiplied bitmaps, while GDIPlus needs them in the
709 // premultiplied format, therefore in the failing cases we create a new bitmap using the non-premultiplied
710 // bytes as parameter
712 void wxGDIPlusContext::DrawBitmap( const wxBitmap
&bmp
, wxDouble x
, wxDouble y
, wxDouble w
, wxDouble h
)
714 Bitmap
* image
= NULL
;
715 Bitmap
* helper
= NULL
;
718 Bitmap
interim((HBITMAP
)bmp
.GetHBITMAP(),(HPALETTE
)bmp
.GetPalette()->GetHPALETTE()) ;
720 size_t width
= interim
.GetWidth();
721 size_t height
= interim
.GetHeight();
722 Rect
bounds(0,0,width
,height
);
724 image
= new Bitmap(width
,height
,PixelFormat32bppPARGB
) ;
726 Bitmap
interimMask((HBITMAP
)bmp
.GetMask()->GetMaskBitmap(),NULL
);
727 wxASSERT(interimMask
.GetPixelFormat() == PixelFormat1bppIndexed
);
729 BitmapData dataMask
;
730 interimMask
.LockBits(&bounds
,ImageLockModeRead
,
731 interimMask
.GetPixelFormat(),&dataMask
);
734 BitmapData imageData
;
735 image
->LockBits(&bounds
,ImageLockModeWrite
, PixelFormat32bppPARGB
, &imageData
);
737 BYTE maskPattern
= 0 ;
741 for ( size_t y
= 0 ; y
< height
; ++y
)
744 for( size_t x
= 0 ; x
< width
; ++x
)
749 maskByte
= *((BYTE
*)dataMask
.Scan0
+ dataMask
.Stride
*y
+ maskIndex
);
753 maskPattern
= maskPattern
>> 1;
755 ARGB
*dest
= (ARGB
*)((BYTE
*)imageData
.Scan0
+ imageData
.Stride
*y
+ x
*4);
756 if ( (maskByte
& maskPattern
) == 0 )
761 interim
.GetPixel(x
,y
,&c
) ;
762 *dest
= (c
.GetValue() | Color::AlphaMask
);
767 image
->UnlockBits(&imageData
);
769 interimMask
.UnlockBits(&dataMask
);
770 interim
.UnlockBits(&dataMask
);
774 image
= Bitmap::FromHBITMAP((HBITMAP
)bmp
.GetHBITMAP(),(HPALETTE
)bmp
.GetPalette()->GetHPALETTE());
775 if ( GetPixelFormatSize(image
->GetPixelFormat()) == 32 )
777 size_t width
= image
->GetWidth();
778 size_t height
= image
->GetHeight();
779 Rect
bounds(0,0,width
,height
);
784 helper
->LockBits(&bounds
, ImageLockModeRead
,
785 helper
->GetPixelFormat(),&data
);
787 image
= new Bitmap(data
.Width
, data
.Height
, data
.Stride
,
788 PixelFormat32bppARGB
, (BYTE
*) data
.Scan0
);
790 helper
->UnlockBits(&data
);
794 m_context
->DrawImage(image
,(REAL
) x
,(REAL
) y
,(REAL
) w
,(REAL
) h
) ;
799 void wxGDIPlusContext::DrawIcon( const wxIcon
&icon
, wxDouble x
, wxDouble y
, wxDouble w
, wxDouble h
)
801 HICON hIcon
= (HICON
)icon
.GetHICON();
803 // IconInfo creates the bitmaps for color and mask, we must dispose of them after use
804 if (!GetIconInfo(hIcon
,&iconInfo
))
808 GetObject(iconInfo
.hbmColor
,sizeof(BITMAP
),&iconBmpData
);
809 Bitmap
interim(iconInfo
.hbmColor
,NULL
);
811 Bitmap
* image
= NULL
;
813 if( GetPixelFormatSize(interim
.GetPixelFormat())!= 32 )
815 image
= Bitmap::FromHICON(hIcon
);
819 size_t width
= interim
.GetWidth();
820 size_t height
= interim
.GetHeight();
821 Rect
bounds(0,0,width
,height
);
824 interim
.LockBits(&bounds
, ImageLockModeRead
,
825 interim
.GetPixelFormat(),&data
);
826 image
= new Bitmap(data
.Width
, data
.Height
, data
.Stride
,
827 PixelFormat32bppARGB
, (BYTE
*) data
.Scan0
);
828 interim
.UnlockBits(&data
);
831 m_context
->DrawImage(image
,(REAL
) x
,(REAL
) y
,(REAL
) w
,(REAL
) h
) ;
834 DeleteObject(iconInfo
.hbmColor
);
835 DeleteObject(iconInfo
.hbmMask
);
839 void wxGDIPlusContext::DrawText( const wxString
&str
, wxDouble x
, wxDouble y
)
844 wxWCharBuffer s
= str
.wc_str( *wxConvUI
);
845 m_context
->DrawString( s
, -1 , m_font
, PointF( x
, y
) , m_textBrush
);
846 // TODO m_backgroundMode == wxSOLID
849 void wxGDIPlusContext::GetTextExtent( const wxString
&str
, wxDouble
*width
, wxDouble
*height
,
850 wxDouble
*descent
, wxDouble
*externalLeading
) const
852 wxWCharBuffer s
= str
.wc_str( *wxConvUI
);
855 m_font
->GetFamily(&ffamily
) ;
857 REAL factorY
= m_context
->GetDpiY() / 72.0 ;
859 REAL rDescent
= ffamily
.GetCellDescent(FontStyleRegular
) *
860 m_font
->GetSize() / ffamily
.GetEmHeight(FontStyleRegular
);
861 REAL rAscent
= ffamily
.GetCellAscent(FontStyleRegular
) *
862 m_font
->GetSize() / ffamily
.GetEmHeight(FontStyleRegular
);
863 REAL rHeight
= ffamily
.GetLineSpacing(FontStyleRegular
) *
864 m_font
->GetSize() / ffamily
.GetEmHeight(FontStyleRegular
);
867 *height
= rHeight
* factorY
+ 0.5 ;
869 *descent
= rDescent
* factorY
+ 0.5 ;
870 if ( externalLeading
)
871 *externalLeading
= (rHeight
- rAscent
- rDescent
) * factorY
+ 0.5 ;
872 // measuring empty strings is not guaranteed, so do it by hand
880 // MeasureString does return a rectangle that is way too large, so it is
882 RectF
layoutRect(0,0, 100000.0f
, 100000.0f
);
883 StringFormat strFormat
;
884 CharacterRange
strRange(0,wcslen(s
));
885 strFormat
.SetMeasurableCharacterRanges(1,&strRange
);
887 m_context
->MeasureCharacterRanges(s
, -1 , m_font
,layoutRect
, &strFormat
,1,®ion
) ;
889 region
.GetBounds(&bbox
,m_context
);
891 *width
= bbox
.GetRight()-bbox
.GetLeft()+0.5;
895 void wxGDIPlusContext::GetPartialTextExtents(const wxString
& text
, wxArrayDouble
& widths
) const
898 widths
.Add(0, text
.length());
903 wxWCharBuffer ws
= text
.wc_str( *wxConvUI
);
904 size_t len
= wcslen( ws
) ;
905 wxASSERT_MSG(text
.length() == len
, wxT("GetPartialTextExtents not yet implemented for multichar situations"));
907 RectF
layoutRect(0,0, 100000.0f
, 100000.0f
);
908 StringFormat strFormat
;
910 CharacterRange
* ranges
= new CharacterRange
[len
] ;
911 Region
* regions
= new Region
[len
];
912 for( size_t i
= 0 ; i
< len
; ++i
)
914 ranges
[i
].First
= i
;
915 ranges
[i
].Length
= 1 ;
917 strFormat
.SetMeasurableCharacterRanges(len
,ranges
);
918 m_context
->MeasureCharacterRanges(ws
, -1 , m_font
,layoutRect
, &strFormat
,1,regions
) ;
921 for ( size_t i
= 0 ; i
< len
; ++i
)
923 regions
[i
].GetBounds(&bbox
,m_context
);
924 widths
[i
] = bbox
.GetRight()-bbox
.GetLeft();
928 void wxGDIPlusContext::SetFont( const wxFont
&font
)
930 wxASSERT( font
.Ok());
932 wxWCharBuffer s
= font
.GetFaceName().wc_str( *wxConvUI
);
933 int size
= font
.GetPointSize();
934 int style
= FontStyleRegular
;
935 if ( font
.GetStyle() == wxFONTSTYLE_ITALIC
)
936 style
|= FontStyleItalic
;
937 if ( font
.GetUnderlined() )
938 style
|= FontStyleUnderline
;
939 if ( font
.GetWeight() == wxFONTWEIGHT_BOLD
)
940 style
|= FontStyleBold
;
941 m_font
= new Font( s
, size
, style
);
944 wxGraphicsContext
* wxGraphicsContext::Create( const wxWindowDC
& dc
)
946 return new wxGDIPlusContext( (HDC
) dc
.GetHDC() );