1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/cocoa/dcmemory.mm
3 // Purpose: wxMemoryDC class
4 // Author: David Elliott
8 // Copyright: (c) 2002 David Elliott
9 // Licence: wxWidgets licence
10 /////////////////////////////////////////////////////////////////////////////
12 #include "wx/wxprec.h"
15 #include "wx/dcmemory.h"
18 #include "wx/cocoa/autorelease.h"
20 #import <AppKit/NSImage.h>
21 #import <AppKit/NSAffineTransform.h>
22 #import <AppKit/NSGraphicsContext.h>
23 #import <AppKit/NSColor.h>
24 #import <AppKit/NSBezierPath.h>
26 //-----------------------------------------------------------------------------
28 //-----------------------------------------------------------------------------
30 IMPLEMENT_DYNAMIC_CLASS(wxMemoryDC,wxDC)
32 wxMemoryDC::wxMemoryDC(void)
34 m_cocoaNSImage = NULL;
38 wxMemoryDC::wxMemoryDC( wxDC *WXUNUSED(dc) )
40 m_cocoaNSImage = NULL;
44 wxMemoryDC::~wxMemoryDC(void)
46 CocoaUnwindStackAndLoseFocus();
47 [m_cocoaNSImage release];
50 bool wxMemoryDC::CocoaLockFocus()
54 [m_cocoaNSImage lockFocus];
55 sm_cocoaDCStack.Insert(this);
56 m_cocoaWxToBoundsTransform = CocoaGetWxToBoundsTransform([m_cocoaNSImage isFlipped], [m_cocoaNSImage size].height);
57 CocoaApplyTransformations();
63 bool wxMemoryDC::CocoaUnlockFocus()
65 [m_cocoaNSImage unlockFocus];
69 // NOTE: The AppKit is unable to draw onto an NSBitmapImageRep so we must
70 // instead copy the data to an offscreen window, then copy it back
71 void wxMemoryDC::SelectObject( const wxBitmap& bitmap )
73 wxAutoNSAutoreleasePool pool;
74 if(m_selectedBitmap.Ok())
77 wxASSERT(m_cocoaNSImage);
78 m_selectedBitmap.SetNSBitmapImageRep(
79 [[NSBitmapImageRep alloc]
80 initWithFocusedViewRect:NSMakeRect(0.0,0.0,
81 m_selectedBitmap.GetWidth(),
82 m_selectedBitmap.GetHeight())]);
84 CocoaUnwindStackAndLoseFocus();
85 [m_cocoaNSImage release];
87 m_selectedBitmap = bitmap;
88 if(m_selectedBitmap.Ok())
90 // Create an offscreen window of the same size
91 m_cocoaNSImage = [[NSImage alloc]
92 initWithSize:NSMakeSize(m_selectedBitmap.GetWidth(),
93 m_selectedBitmap.GetHeight())];
96 NSImage *nsimage = [m_selectedBitmap.GetNSImage(false) retain];
97 [m_cocoaNSImage lockFocus];
98 [nsimage drawAtPoint: NSMakePoint(0,0)
99 fromRect: NSMakeRect(0.0,0.0,m_selectedBitmap.GetWidth(),m_selectedBitmap.GetHeight())
100 operation: NSCompositeCopy
102 [m_cocoaNSImage unlockFocus];
108 void wxMemoryDC::DoGetSize( int *width, int *height ) const
111 *width = m_selectedBitmap.GetWidth();
113 *height = m_selectedBitmap.GetHeight();
116 bool wxMemoryDC::CocoaDoBlitOnFocusedDC(wxCoord xdest, wxCoord ydest,
117 wxCoord width, wxCoord height, wxCoord xsrc, wxCoord ysrc,
118 int logicalFunc, bool useMask, wxCoord xsrcMask, wxCoord ysrcMask)
120 if(!m_selectedBitmap.Ok())
123 NSAffineTransform *transform = [NSAffineTransform transform];
124 [transform translateXBy:xdest yBy:ydest];
126 NSAffineTransform *flipTransform = [NSAffineTransform transform];
128 y' = 0x + -1y + window's height
130 NSAffineTransformStruct matrix = {
135 [flipTransform setTransformStruct: matrix];
137 NSGraphicsContext *context = [NSGraphicsContext currentContext];
138 [context saveGraphicsState];
140 [flipTransform concat];
142 wxLogTrace(wxTRACE_COCOA,wxT("[m_cocoaNSImage isFlipped]=%d"), [m_cocoaNSImage isFlipped]);
143 [m_cocoaNSImage drawAtPoint: NSMakePoint(0,0)
144 fromRect: NSMakeRect(xsrc,
145 m_selectedBitmap.GetHeight()-height-ysrc,
147 operation: NSCompositeCopy // FIXME: raster ops
150 [context restoreGraphicsState];
154 void wxMemoryDC::Clear()
156 if(!CocoaTakeFocus()) return;
158 NSGraphicsContext *context = [NSGraphicsContext currentContext];
159 [context saveGraphicsState];
161 [m_backgroundBrush.GetNSColor() set];
165 rect.size = [m_cocoaNSImage size];
166 [NSBezierPath fillRect:rect];
168 [context restoreGraphicsState];