-IMPLEMENT_ABSTRACT_CLASS(wxGCDC, wxObject)
-
-//-----------------------------------------------------------------------------
-// wxDC bridge class
-//-----------------------------------------------------------------------------
-
-wxGCDC::wxGCDC()
-{
- Init();
-}
-
-
-wxGCDC::wxGCDC(const wxWindowDC& dc)
-{
- Init();
- m_graphicContext = wxGraphicsContext::Create(dc);
- m_ok = true;
- if ( dc.GetFont().Ok())
- m_graphicContext->SetFont(dc.GetFont());
- if ( dc.GetPen().Ok())
- m_graphicContext->SetPen(dc.GetPen());
- if ( dc.GetBrush().Ok())
- m_graphicContext->SetBrush(dc.GetBrush());
- m_graphicContext->SetTextColor(dc.GetTextForeground());
-}
-
-void wxGCDC::Init()
-{
- m_ok = false;
- m_colour = true;
- m_mm_to_pix_x = mm2pt;
- m_mm_to_pix_y = mm2pt;
-
- m_pen = *wxBLACK_PEN;
- m_font = *wxNORMAL_FONT;
- m_brush = *wxWHITE_BRUSH;
-
- m_graphicContext = NULL;
-}
-
-
-wxGCDC::~wxGCDC()
-{
- delete m_graphicContext;
-}
-
-void wxGCDC::DoDrawBitmap( const wxBitmap &bmp, wxCoord x, wxCoord y, bool WXUNUSED(useMask) )
-{
- wxCHECK_RET( Ok(), wxT("wxGCDC(cg)::DoDrawBitmap - invalid DC") );
- wxCHECK_RET( bmp.Ok(), wxT("wxGCDC(cg)::DoDrawBitmap - invalid bitmap") );
-
- wxCoord xx = LogicalToDeviceX(x);
- wxCoord yy = LogicalToDeviceY(y);
- wxCoord w = bmp.GetWidth();
- wxCoord h = bmp.GetHeight();
- wxCoord ww = LogicalToDeviceXRel(w);
- wxCoord hh = LogicalToDeviceYRel(h);
-
- m_graphicContext->DrawBitmap( bmp, xx , yy , ww , hh );
-}
-
-void wxGCDC::DoDrawIcon( const wxIcon &icon, wxCoord x, wxCoord y )
-{
- wxCHECK_RET( Ok(), wxT("wxGCDC(cg)::DoDrawIcon - invalid DC") );
- wxCHECK_RET( icon.Ok(), wxT("wxGCDC(cg)::DoDrawIcon - invalid icon") );
-
- wxCoord xx = LogicalToDeviceX(x);
- wxCoord yy = LogicalToDeviceY(y);
- wxCoord w = icon.GetWidth();
- wxCoord h = icon.GetHeight();
- wxCoord ww = LogicalToDeviceXRel(w);
- wxCoord hh = LogicalToDeviceYRel(h);
-
- m_graphicContext->DrawIcon( icon , xx, yy, ww, hh );
-}
-
-void wxGCDC::DoSetClippingRegion( wxCoord x, wxCoord y, wxCoord width, wxCoord height )
-{
- wxCHECK_RET( Ok(), wxT("wxGCDC(cg)::DoSetClippingRegion - invalid DC") );
-
- wxCoord xx, yy, ww, hh;
- xx = LogicalToDeviceX(x);
- yy = LogicalToDeviceY(y);
- ww = LogicalToDeviceXRel(width);
- hh = LogicalToDeviceYRel(height);
-
- m_graphicContext->Clip( xx, yy, ww, hh );
- if ( m_clipping )
- {
- m_clipX1 = wxMax( m_clipX1, xx );
- m_clipY1 = wxMax( m_clipY1, yy );
- m_clipX2 = wxMin( m_clipX2, (xx + ww) );
- m_clipY2 = wxMin( m_clipY2, (yy + hh) );
- }
- else
- {
- m_clipping = true;
-
- m_clipX1 = xx;
- m_clipY1 = yy;
- m_clipX2 = xx + ww;
- m_clipY2 = yy + hh;
- }
-}
-
-void wxGCDC::DoSetClippingRegionAsRegion( const wxRegion ®ion )
-{
- wxCHECK_RET( Ok(), wxT("wxGCDC(cg)::DoSetClippingRegionAsRegion - invalid DC") );
-
- if (region.Empty())
- {
- DestroyClippingRegion();
- return;
- }
-
- wxCoord x, y, w, h;
- region.GetBox( x, y, w, h );
- wxCoord xx, yy, ww, hh;
- xx = LogicalToDeviceX(x);
- yy = LogicalToDeviceY(y);
- ww = LogicalToDeviceXRel(w);
- hh = LogicalToDeviceYRel(h);
-
- // if we have a scaling that we cannot map onto native regions
- // we must use the box
- if ( ww != w || hh != h )
- {
- wxGCDC::DoSetClippingRegion( x, y, w, h );
- }
- else
- {
- m_graphicContext->Clip( region );
- if ( m_clipping )
- {
- m_clipX1 = wxMax( m_clipX1, xx );
- m_clipY1 = wxMax( m_clipY1, yy );
- m_clipX2 = wxMin( m_clipX2, (xx + ww) );
- m_clipY2 = wxMin( m_clipY2, (yy + hh) );
- }
- else
- {
- m_clipping = true;
-
- m_clipX1 = xx;
- m_clipY1 = yy;
- m_clipX2 = xx + ww;
- m_clipY2 = yy + hh;
- }
- }
-}
-
-void wxGCDC::DestroyClippingRegion()
-{
- m_graphicContext->ResetClip();
- m_graphicContext->SetPen( m_pen );
- m_graphicContext->SetBrush( m_brush );
-
- m_clipping = false;
-}
-
-void wxGCDC::DoGetSizeMM( int* width, int* height ) const
-{
- int w = 0, h = 0;
-
- GetSize( &w, &h );
- if (width)
- *width = long( double(w) / (m_scaleX * m_mm_to_pix_x) );
- if (height)
- *height = long( double(h) / (m_scaleY * m_mm_to_pix_y) );
-}
-
-void wxGCDC::SetTextForeground( const wxColour &col )
-{
- wxCHECK_RET( Ok(), wxT("wxGCDC(cg)::SetTextForeground - invalid DC") );
-
- if ( col != m_textForegroundColour )
- {
- m_textForegroundColour = col;
- m_graphicContext->SetTextColor( col );
- }
-}
-
-void wxGCDC::SetTextBackground( const wxColour &col )
-{
- wxCHECK_RET( Ok(), wxT("wxGCDC(cg)::SetTextBackground - invalid DC") );
-
- m_textBackgroundColour = col;
-}
-
-void wxGCDC::SetMapMode( int mode )
-{
- switch (mode)
- {
- case wxMM_TWIPS:
- SetLogicalScale( twips2mm * m_mm_to_pix_x, twips2mm * m_mm_to_pix_y );
- break;
-
- case wxMM_POINTS:
- SetLogicalScale( pt2mm * m_mm_to_pix_x, pt2mm * m_mm_to_pix_y );
- break;
-
- case wxMM_METRIC:
- SetLogicalScale( m_mm_to_pix_x, m_mm_to_pix_y );
- break;
-
- case wxMM_LOMETRIC:
- SetLogicalScale( m_mm_to_pix_x / 10.0, m_mm_to_pix_y / 10.0 );
- break;
-
- case wxMM_TEXT:
- default:
- SetLogicalScale( 1.0, 1.0 );
- break;
- }
-
- ComputeScaleAndOrigin();
-}
-
-void wxGCDC::SetUserScale( double x, double y )
-{
- // allow negative ? -> no
-
- m_userScaleX = x;
- m_userScaleY = y;
- ComputeScaleAndOrigin();
-}
-
-void wxGCDC::SetLogicalScale( double x, double y )
-{
- // allow negative ?
- m_logicalScaleX = x;
- m_logicalScaleY = y;
- ComputeScaleAndOrigin();
-}
-
-void wxGCDC::SetLogicalOrigin( wxCoord x, wxCoord y )
-{
- m_logicalOriginX = x * m_signX; // is this still correct ?
- m_logicalOriginY = y * m_signY;
- ComputeScaleAndOrigin();
-}
-
-void wxGCDC::SetDeviceOrigin( wxCoord x, wxCoord y )
-{
- m_deviceOriginX = x;
- m_deviceOriginY = y;
- ComputeScaleAndOrigin();
-}
-
-void wxGCDC::SetAxisOrientation( bool xLeftRight, bool yBottomUp )
-{
- m_signX = (xLeftRight ? 1 : -1);
- m_signY = (yBottomUp ? -1 : 1);
- ComputeScaleAndOrigin();
-}
-
-wxSize wxGCDC::GetPPI() const
-{
- return wxSize(72, 72);
-}
-
-int wxGCDC::GetDepth() const
-{
- return 32;
-}
-
-void wxGCDC::ComputeScaleAndOrigin()
-{
- // CMB: copy scale to see if it changes
- double origScaleX = m_scaleX;
- double origScaleY = m_scaleY;
- m_scaleX = m_logicalScaleX * m_userScaleX;
- m_scaleY = m_logicalScaleY * m_userScaleY;
- m_deviceOriginX = m_deviceOriginX + m_logicalOriginX;
- m_deviceOriginY = m_deviceOriginY + m_logicalOriginY;
-
- // CMB: if scale has changed call SetPen to recalulate the line width
- if (m_scaleX != origScaleX || m_scaleY != origScaleY)
- {
- // this is a bit artificial, but we need to force wxDC to think
- // the pen has changed
- wxPen pen(GetPen());
- m_pen = wxNullPen;
- SetPen(pen);
- SetFont(m_font);
- }
-}
-
-void wxGCDC::SetPalette( const wxPalette& WXUNUSED(palette) )
-{
-
-}
-
-void wxGCDC::SetBackgroundMode( int mode )
-{
- m_backgroundMode = mode;
-}
-
-void wxGCDC::SetFont( const wxFont &font )
-{
- m_font = font;
- if ( m_graphicContext )
- {
- wxFont f = font;
- if ( f.Ok() )
- f.SetPointSize( LogicalToDeviceYRel(font.GetPointSize()));
- m_graphicContext->SetFont( f );
- }
-}
-
-void wxGCDC::SetPen( const wxPen &pen )
-{
- if ( m_pen == pen )
- return;
-
- m_pen = pen;
- if ( m_graphicContext )
- {
- if ( m_pen.GetStyle() == wxSOLID || m_pen.GetStyle() == wxTRANSPARENT )
- {
- m_graphicContext->SetPen( m_pen );
- }
- else
- {
- // we have to compensate for moved device origins etc. otherwise patterned pens are standing still
- // eg when using a wxScrollWindow and scrolling around
- int origX = LogicalToDeviceX( 0 );
- int origY = LogicalToDeviceY( 0 );
- m_graphicContext->Translate( origX , origY );
- m_graphicContext->SetPen( m_pen );
- m_graphicContext->Translate( -origX , -origY );
- }
- }
-}
-
-void wxGCDC::SetBrush( const wxBrush &brush )
-{
- if (m_brush == brush)
- return;
-
- m_brush = brush;
- if ( m_graphicContext )
- {
- if ( brush.GetStyle() == wxSOLID || brush.GetStyle() == wxTRANSPARENT )
- {
- m_graphicContext->SetBrush( m_brush );
- }
- else
- {
- // we have to compensate for moved device origins etc. otherwise patterned brushes are standing still
- // eg when using a wxScrollWindow and scrolling around
- // TODO on MSW / GDIPlus this still occurs with hatched brushes
- int origX = LogicalToDeviceX(0);
- int origY = LogicalToDeviceY(0);
- m_graphicContext->Translate( origX , origY );
- m_graphicContext->SetBrush( m_brush );
- m_graphicContext->Translate( -origX , -origY );
- }
- }
-}
-
-void wxGCDC::SetBackground( const wxBrush &brush )
-{
- if (m_backgroundBrush == brush)
- return;
-
- m_backgroundBrush = brush;
- if (!m_backgroundBrush.Ok())
- return;
-}
-
-void wxGCDC::SetLogicalFunction( int function )
-{
- if (m_logicalFunction == function)
- return;
-
- m_logicalFunction = function;
-#if wxMAC_USE_CORE_GRAPHICS_BLEND_MODES
-
- CGContextRef cgContext = ((wxCairoContext*)(m_graphicContext))->GetNativeContext();
- if ( m_logicalFunction == wxCOPY )
- CGContextSetBlendMode( cgContext, kCGBlendModeNormal );
- else if ( m_logicalFunction == wxINVERT )
- CGContextSetBlendMode( cgContext, kCGBlendModeExclusion );
- else
- CGContextSetBlendMode( cgContext, kCGBlendModeNormal );
-#endif
-
-}
-
-bool wxGCDC::DoFloodFill(wxCoord WXUNUSED(x), wxCoord WXUNUSED(y),
- const wxColour& WXUNUSED(col), int WXUNUSED(style))
-{
- return false;
-}
-
-bool wxGCDC::DoGetPixel( wxCoord WXUNUSED(x), wxCoord WXUNUSED(y), wxColour *WXUNUSED(col) ) const
-{
- // wxCHECK_MSG( 0 , false, wxT("wxGCDC(cg)::DoGetPixel - not implemented") );
- return false;
-}
-
-void wxGCDC::DoDrawLine( wxCoord x1, wxCoord y1, wxCoord x2, wxCoord y2 )
-{
- wxCHECK_RET( Ok(), wxT("wxGCDC(cg)::DoDrawLine - invalid DC") );
-
-#if !wxMAC_USE_CORE_GRAPHICS_BLEND_MODES
-
- if ( m_logicalFunction != wxCOPY )
- return;
-#endif
-
- wxCoord xx1 = LogicalToDeviceX(x1);
- wxCoord yy1 = LogicalToDeviceY(y1);
- wxCoord xx2 = LogicalToDeviceX(x2);
- wxCoord yy2 = LogicalToDeviceY(y2);
-
- m_graphicContext->StrokeLine(xx1,yy1,xx2,yy2);
-
- CalcBoundingBox(x1, y1);
- CalcBoundingBox(x2, y2);
-}
-
-void wxGCDC::DoCrossHair( wxCoord x, wxCoord y )
-{
- wxCHECK_RET( Ok(), wxT("wxGCDC(cg)::DoCrossHair - invalid DC") );
-
- if ( m_logicalFunction != wxCOPY )
- return;
-
- int w = 0, h = 0;
-
- GetSize( &w, &h );
-
- wxCoord xx = LogicalToDeviceX(x);
- wxCoord yy = LogicalToDeviceY(y);
- wxCoord xw = LogicalToDeviceX(w);
- wxCoord x0 = LogicalToDeviceX(0);
- wxCoord y0 = LogicalToDeviceY(0);
- wxCoord yh = LogicalToDeviceY(h);
-
- m_graphicContext->StrokeLine(x0,yy,xw,yy);
- m_graphicContext->StrokeLine(xx,y0,xx,yh);
-
- CalcBoundingBox(x0, y0);
- CalcBoundingBox(x0+xw, y0+yh);
-}
-
-void wxGCDC::DoDrawArc( wxCoord x1, wxCoord y1,
- wxCoord x2, wxCoord y2,
- wxCoord xc, wxCoord yc )
-{
- wxCHECK_RET( Ok(), wxT("wxGCDC(cg)::DoDrawArc - invalid DC") );
-
- if ( m_logicalFunction != wxCOPY )
- return;
-
- wxCoord xx1 = LogicalToDeviceX(x1);
- wxCoord yy1 = LogicalToDeviceY(y1);
- wxCoord xx2 = LogicalToDeviceX(x2);
- wxCoord yy2 = LogicalToDeviceY(y2);
- wxCoord xxc = LogicalToDeviceX(xc);
- wxCoord yyc = LogicalToDeviceY(yc);
-
- double dx = xx1 - xxc;
- double dy = yy1 - yyc;
- double radius = sqrt((double)(dx * dx + dy * dy));
- wxCoord rad = (wxCoord)radius;
- double sa, ea;
- if (xx1 == xx2 && yy1 == yy2)
- {
- sa = 0.0;
- ea = 360.0;
- }
- else if (radius == 0.0)
- {
- sa = ea = 0.0;
- }
- else
- {
- sa = (xx1 - xxc == 0) ?
- (yy1 - yyc < 0) ? 90.0 : -90.0 :
- -atan2(double(yy1 - yyc), double(xx1 - xxc)) * RAD2DEG;
- ea = (xx2 - xxc == 0) ?
- (yy2 - yyc < 0) ? 90.0 : -90.0 :
- -atan2(double(yy2 - yyc), double(xx2 - xxc)) * RAD2DEG;
- }
-
- bool fill = m_brush.GetStyle() != wxTRANSPARENT;
-
- wxGraphicsPath* path = m_graphicContext->CreatePath();
- if ( fill && ((x1!=x2)||(y1!=y2)) )
- path->MoveToPoint( xxc, yyc );
- path->AddArc( xxc, yyc , rad , DegToRad(sa) , DegToRad(ea), false );
- if ( fill && ((x1!=x2)||(y1!=y2)) )
- path->AddLineToPoint( xxc, yyc );
- m_graphicContext->DrawPath(path);
- delete path;
-}
-
-void wxGCDC::DoDrawEllipticArc( wxCoord x, wxCoord y, wxCoord w, wxCoord h,
- double sa, double ea )