]> git.saurik.com Git - wxWidgets.git/blame - src/cocoa/dcmemory.mm
Sizing fixes according to patch #1523304.
[wxWidgets.git] / src / cocoa / dcmemory.mm
CommitLineData
28f3fe51
DE
1/////////////////////////////////////////////////////////////////////////////
2// Name: src/cocoa/dcmemory.mm
3// Purpose: wxMemoryDC class
4// Author: David Elliott
5// Modified by:
6// Created: 2003/03/16
7// RCS-ID: $Id$
8// Copyright: (c) 2002 David Elliott
f38924e8 9// Licence: wxWidgets licence
28f3fe51
DE
10/////////////////////////////////////////////////////////////////////////////
11
449c5673 12#include "wx/wxprec.h"
f38924e8 13
449c5673
DE
14#ifndef WX_PRECOMP
15 #include "wx/log.h"
16 #include "wx/dcmemory.h"
17#endif //WX_PRECOMP
28f3fe51 18
d1adc257
DE
19#include "wx/cocoa/autorelease.h"
20
28f3fe51 21#import <AppKit/NSImage.h>
2c23fe91
DE
22#import <AppKit/NSAffineTransform.h>
23#import <AppKit/NSGraphicsContext.h>
bf428459
DE
24#import <AppKit/NSColor.h>
25#import <AppKit/NSBezierPath.h>
28f3fe51
DE
26
27//-----------------------------------------------------------------------------
28// wxMemoryDC
29//-----------------------------------------------------------------------------
30
31IMPLEMENT_DYNAMIC_CLASS(wxMemoryDC,wxDC)
32
33wxMemoryDC::wxMemoryDC(void)
34{
35 m_cocoaNSImage = NULL;
36 m_ok = false;
37}
38
39wxMemoryDC::wxMemoryDC( wxDC *WXUNUSED(dc) )
40{
41 m_cocoaNSImage = NULL;
42 m_ok = false;
43}
44
45wxMemoryDC::~wxMemoryDC(void)
46{
47 CocoaUnwindStackAndLoseFocus();
48 [m_cocoaNSImage release];
49}
50
51bool wxMemoryDC::CocoaLockFocus()
52{
53 if(m_cocoaNSImage)
54 {
e3d7f770 55 [m_cocoaNSImage lockFocus];
28f3fe51 56 sm_cocoaDCStack.Insert(this);
1a1e9ff1
DE
57 NSAffineTransform *newTransform = CocoaGetWxToBoundsTransform([m_cocoaNSImage isFlipped], [m_cocoaNSImage size].height);
58 [newTransform retain];
59 [m_cocoaWxToBoundsTransform release];
60 m_cocoaWxToBoundsTransform = newTransform;
e3d7f770 61 CocoaApplyTransformations();
28f3fe51
DE
62 return true;
63 }
64 return false;
65}
66
67bool wxMemoryDC::CocoaUnlockFocus()
68{
69 [m_cocoaNSImage unlockFocus];
70 return true;
71}
72
e3d7f770
DE
73// NOTE: The AppKit is unable to draw onto an NSBitmapImageRep so we must
74// instead copy the data to an offscreen window, then copy it back
28f3fe51
DE
75void wxMemoryDC::SelectObject( const wxBitmap& bitmap )
76{
d1adc257 77 wxAutoNSAutoreleasePool pool;
e3d7f770
DE
78 if(m_selectedBitmap.Ok())
79 {
80 CocoaTakeFocus();
81 wxASSERT(m_cocoaNSImage);
82 m_selectedBitmap.SetNSBitmapImageRep(
83 [[NSBitmapImageRep alloc]
84 initWithFocusedViewRect:NSMakeRect(0.0,0.0,
85 m_selectedBitmap.GetWidth(),
86 m_selectedBitmap.GetHeight())]);
87 }
28f3fe51
DE
88 CocoaUnwindStackAndLoseFocus();
89 [m_cocoaNSImage release];
90 m_cocoaNSImage = nil;
91 m_selectedBitmap = bitmap;
92 if(m_selectedBitmap.Ok())
93 {
e3d7f770 94 // Create an offscreen window of the same size
28f3fe51
DE
95 m_cocoaNSImage = [[NSImage alloc]
96 initWithSize:NSMakeSize(m_selectedBitmap.GetWidth(),
97 m_selectedBitmap.GetHeight())];
e3d7f770
DE
98
99 // Now copy the data
d23193b2 100 NSImage *nsimage = [m_selectedBitmap.GetNSImage(false) retain];
5a5797ca 101 [m_cocoaNSImage lockFocus];
e3d7f770
DE
102 [nsimage drawAtPoint: NSMakePoint(0,0)
103 fromRect: NSMakeRect(0.0,0.0,m_selectedBitmap.GetWidth(),m_selectedBitmap.GetHeight())
104 operation: NSCompositeCopy
105 fraction: 1.0];
5a5797ca 106 [m_cocoaNSImage unlockFocus];
f38924e8 107
e3d7f770 108 [nsimage release];
28f3fe51
DE
109 }
110}
111
112void wxMemoryDC::DoGetSize( int *width, int *height ) const
113{
114 if(width)
115 *width = m_selectedBitmap.GetWidth();
116 if(height)
117 *height = m_selectedBitmap.GetHeight();
118}
119
2c23fe91
DE
120bool wxMemoryDC::CocoaDoBlitOnFocusedDC(wxCoord xdest, wxCoord ydest,
121 wxCoord width, wxCoord height, wxCoord xsrc, wxCoord ysrc,
122 int logicalFunc, bool useMask, wxCoord xsrcMask, wxCoord ysrcMask)
123{
124 if(!m_selectedBitmap.Ok())
125 return false;
126
127 NSAffineTransform *transform = [NSAffineTransform transform];
128 [transform translateXBy:xdest yBy:ydest];
129
130 NSAffineTransform *flipTransform = [NSAffineTransform transform];
131 /* x' = 1x + 0y + 0
132 y' = 0x + -1y + window's height
133 */
134 NSAffineTransformStruct matrix = {
135 1, 0
136 , 0, -1
137 , 0, height
138 };
139 [flipTransform setTransformStruct: matrix];
140
141 NSGraphicsContext *context = [NSGraphicsContext currentContext];
142 [context saveGraphicsState];
143 [transform concat];
144 [flipTransform concat];
145
48580976 146 wxLogTrace(wxTRACE_COCOA,wxT("[m_cocoaNSImage isFlipped]=%d"), [m_cocoaNSImage isFlipped]);
2c23fe91
DE
147 [m_cocoaNSImage drawAtPoint: NSMakePoint(0,0)
148 fromRect: NSMakeRect(xsrc,
149 m_selectedBitmap.GetHeight()-height-ysrc,
150 width, height)
151 operation: NSCompositeCopy // FIXME: raster ops
152 fraction: 1.0];
f38924e8 153
2c23fe91
DE
154 [context restoreGraphicsState];
155 return false;
156}
157
3e21fc05 158bool wxMemoryDC::CocoaGetBounds(void *rectData)
bf428459 159{
3e21fc05
DE
160 if(!rectData)
161 return false;
162 if(!m_cocoaNSImage)
163 return false;
164 NSRect *pRect = (NSRect*)rectData;
165 pRect->origin.x = 0.0;
166 pRect->origin.y = 0.0;
167 pRect->size = [m_cocoaNSImage size];
168 return true;
bf428459
DE
169}
170