#include "wx/region.h"
#endif
-#ifndef wxMAC_USE_CORE_GRAPHICS_BLEND_MODES
- #define wxMAC_USE_CORE_GRAPHICS_BLEND_MODES 0
-#endif
-
//-----------------------------------------------------------------------------
// constants
//-----------------------------------------------------------------------------
SetGraphicsContext( wxGraphicsContext::Create(dc) );
}
+#ifdef __WXMSW__
+wxGCDC::wxGCDC(const wxMemoryDC& dc)
+{
+ Init();
+ SetGraphicsContext( wxGraphicsContext::Create(dc) );
+}
+#endif
+
void wxGCDC::Init()
{
m_ok = false;
m_brush = *wxWHITE_BRUSH;
m_graphicContext = NULL;
+ m_logicalFunctionSupported = true;
}
m_graphicContext->SetBrush( m_brush );
}
}
-
+
void wxGCDC::SetBackground( const wxBrush &brush )
{
if (m_backgroundBrush == brush)
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 );
+ if ( m_graphicContext->SetLogicalFunction( function ) )
+ m_logicalFunctionSupported=true;
else
- CGContextSetBlendMode( cgContext, kCGBlendModeNormal );
-#endif
-
+ m_logicalFunctionSupported=false;
}
bool wxGCDC::DoFloodFill(wxCoord WXUNUSED(x), wxCoord WXUNUSED(y),
{
wxCHECK_RET( Ok(), wxT("wxGCDC(cg)::DoDrawLine - invalid DC") );
-#if !wxMAC_USE_CORE_GRAPHICS_BLEND_MODES
-
- if ( m_logicalFunction != wxCOPY )
+ if ( !m_logicalFunctionSupported )
return;
-#endif
m_graphicContext->StrokeLine(x1,y1,x2,y2);
{
wxCHECK_RET( Ok(), wxT("wxGCDC(cg)::DoCrossHair - invalid DC") );
- if ( m_logicalFunction != wxCOPY )
+ if ( !m_logicalFunctionSupported )
return;
int w = 0, h = 0;
{
wxCHECK_RET( Ok(), wxT("wxGCDC(cg)::DoDrawArc - invalid DC") );
- if ( m_logicalFunction != wxCOPY )
+ if ( !m_logicalFunctionSupported )
return;
double dx = x1 - xc;
{
wxCHECK_RET( Ok(), wxT("wxGCDC(cg)::DoDrawEllipticArc - invalid DC") );
- if ( m_logicalFunction != wxCOPY )
+ if ( !m_logicalFunctionSupported )
return;
bool fill = m_brush.GetStyle() != wxTRANSPARENT;
{
wxCHECK_RET( Ok(), wxT("wxGCDC(cg)::DoDrawLines - invalid DC") );
-#if !wxMAC_USE_CORE_GRAPHICS_BLEND_MODES
-
- if ( m_logicalFunction != wxCOPY )
+ if ( !m_logicalFunctionSupported )
return;
-#endif
wxPoint2DDouble* pointsD = new wxPoint2DDouble[n];
for( int i = 0; i < n; ++i)
{
wxCHECK_RET( Ok(), wxT("wxGCDC(cg)::DoDrawSpline - invalid DC") );
- if ( m_logicalFunction != wxCOPY )
+ if ( !m_logicalFunctionSupported )
return;
wxGraphicsPath path = m_graphicContext->CreatePath();
if ( n <= 0 || (m_brush.GetStyle() == wxTRANSPARENT && m_pen.GetStyle() == wxTRANSPARENT ) )
return;
- if ( m_logicalFunction != wxCOPY )
+ if ( !m_logicalFunctionSupported )
return;
bool closeIt = false;
{
wxCHECK_RET( Ok(), wxT("wxGCDC(cg)::DoDrawRectangle - invalid DC") );
- if ( m_logicalFunction != wxCOPY )
+ if ( !m_logicalFunctionSupported )
return;
// CMB: draw nothing if transformed w or h is 0
{
wxCHECK_RET( Ok(), wxT("wxGCDC(cg)::DoDrawRoundedRectangle - invalid DC") );
- if ( m_logicalFunction != wxCOPY )
+ if ( !m_logicalFunctionSupported )
return;
if (radius < 0.0)
{
wxCHECK_RET( Ok(), wxT("wxGCDC(cg)::DoDrawEllipse - invalid DC") );
- if ( m_logicalFunction != wxCOPY )
+ if ( !m_logicalFunctionSupported )
return;
m_graphicContext->DrawEllipse(x,y,w,h);
ysrcMask = ysrc;
}
- wxRect subrect(source-> LogicalToDeviceX(xsrc),source-> LogicalToDeviceY(ysrc),
- source-> LogicalToDeviceXRel(width),source-> LogicalToDeviceYRel(height));
+ wxRect subrect(source->LogicalToDeviceX(xsrc),
+ source->LogicalToDeviceY(ysrc),
+ source->LogicalToDeviceXRel(width),
+ source->LogicalToDeviceYRel(height));
+
+ // if needed clip the subrect down to the size of the source DC
+ wxCoord sw, sh;
+ source->GetSize(&sw, &sh);
+ sw = source->LogicalToDeviceXRel(sw);
+ sh = source->LogicalToDeviceYRel(sh);
+ if (subrect.x + subrect.width > sw)
+ subrect.width = sw - subrect.x;
+ if (subrect.y + subrect.height > sh)
+ subrect.height = sh - subrect.y;
wxBitmap blit = source->GetAsBitmap( &subrect );
if ( blit.Ok() )
{
- m_graphicContext->DrawBitmap( blit, xdest , ydest , width , height );
+ m_graphicContext->DrawBitmap( blit, xdest, ydest,
+ wxMin(width, blit.GetWidth()),
+ wxMin(height, blit.GetHeight()));
}
else
{
if ( str.length() == 0 )
return;
- if ( m_logicalFunction != wxCOPY )
+ if ( !m_logicalFunctionSupported )
return;
if ( m_backgroundMode == wxTRANSPARENT )
if ( str.length() == 0 )
return;
- if ( m_logicalFunction != wxCOPY )
+
+ if ( !m_logicalFunctionSupported )
return;
if ( m_backgroundMode == wxTRANSPARENT )