1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/cocoa/dc.mm
4 // Author: David Elliott
8 // Copyright: (c) 2003 David Elliott
9 // Licence: wxWindows license
10 /////////////////////////////////////////////////////////////////////////////
15 #import <AppKit/NSBezierPath.h>
16 #import <AppKit/NSTextStorage.h>
17 #import <AppKit/NSLayoutManager.h>
18 #import <AppKit/NSTextContainer.h>
19 #import <AppKit/NSGraphicsContext.h>
20 #import <AppKit/NSAffineTransform.h>
21 #import <AppKit/NSColor.h>
22 #import <AppKit/NSTypeSetter.h>
24 IMPLEMENT_ABSTRACT_CLASS(wxDC, wxObject)
25 wxDC *wxDC::sm_focusedDC = NULL;
26 WX_NSTextStorage wxDC::sm_cocoaNSTextStorage = nil;
27 WX_NSLayoutManager wxDC::sm_cocoaNSLayoutManager = nil;
28 WX_NSTextContainer wxDC::sm_cocoaNSTextContainer = nil;
30 void wxDC::CocoaInitializeTextSystem()
32 wxASSERT_MSG(!sm_cocoaNSTextStorage && !sm_cocoaNSLayoutManager && !sm_cocoaNSTextContainer,"Text system already initalized! BAD PROGRAMMER!");
34 sm_cocoaNSTextStorage = [[NSTextStorage alloc] init];
36 sm_cocoaNSLayoutManager = [[NSLayoutManager alloc] init];
37 [sm_cocoaNSTextStorage addLayoutManager:sm_cocoaNSLayoutManager];
38 // NSTextStorage retains NSLayoutManager, but so do we
39 // [sm_cocoaNSLayoutManager release]; [sm_cocoaNSLayoutManager retain];
41 // NOTE: initWithContainerSize is the designated initializer, but the
42 // Apple CircleView sample gets away with just calling init, which
43 // is all we really need for our purposes.
44 sm_cocoaNSTextContainer = [[NSTextContainer alloc] init];
45 [sm_cocoaNSLayoutManager addTextContainer:sm_cocoaNSTextContainer];
46 // NSLayoutManager retains NSTextContainer, but so do we
47 // [sm_cocoaNSTextContainer release]; [sm_cocoaNSTextContainer retain];
50 void wxDC::CocoaShutdownTextSystem()
52 [sm_cocoaNSTextContainer release]; sm_cocoaNSTextContainer = nil;
53 [sm_cocoaNSLayoutManager release]; sm_cocoaNSLayoutManager = nil;
54 [sm_cocoaNSTextStorage release]; sm_cocoaNSTextStorage = nil;
65 void wxDC::DoDrawRectangle(wxCoord x, wxCoord y, wxCoord width, wxCoord height)
67 NSBezierPath *bezpath = [NSBezierPath bezierPathWithRect:NSMakeRect(x,y,width,height)];
71 void wxDC::DoDrawLine(wxCoord x1, wxCoord y1, wxCoord x2, wxCoord y2)
73 NSBezierPath *bezpath = [NSBezierPath bezierPath];
74 [bezpath moveToPoint:NSMakePoint(x1,y1)];
75 [bezpath lineToPoint:NSMakePoint(x2,y2)];
79 void wxDC::DoGetTextExtent(const wxString& text, wxCoord *x, wxCoord *y, wxCoord *descent, wxCoord *externalLeading, wxFont *theFont) const
81 // FIXME: Cache this so it can be used for DoDrawText
82 wxASSERT_MSG(sm_cocoaNSTextStorage && sm_cocoaNSLayoutManager && sm_cocoaNSTextContainer, "Text system has not been initialized. BAD PROGRAMMER!");
83 NSAttributedString *attributedString = [[NSAttributedString alloc]
84 initWithString:[NSString stringWithCString:text.c_str()]];
85 [sm_cocoaNSTextStorage setAttributedString:attributedString];
86 [attributedString release];
88 NSRange glyphRange = [sm_cocoaNSLayoutManager glyphRangeForTextContainer:sm_cocoaNSTextContainer];
89 NSRect usedRect = [sm_cocoaNSLayoutManager usedRectForTextContainer:sm_cocoaNSTextContainer];
91 *x=usedRect.size.width;
93 *y=usedRect.size.height;
100 void wxDC::DoDrawText(const wxString& text, wxCoord x, wxCoord y)
102 wxASSERT_MSG(sm_cocoaNSTextStorage && sm_cocoaNSLayoutManager && sm_cocoaNSTextContainer, "Text system has not been initialized. BAD PROGRAMMER!");
103 NSAttributedString *attributedString = [[NSAttributedString alloc]
104 initWithString:[NSString stringWithCString:text.c_str()]];
105 [sm_cocoaNSTextStorage setAttributedString:attributedString];
106 [attributedString release];
108 NSRange glyphRange = [sm_cocoaNSLayoutManager glyphRangeForTextContainer:sm_cocoaNSTextContainer];
109 NSRect usedRect = [sm_cocoaNSLayoutManager usedRectForTextContainer:sm_cocoaNSTextContainer];
110 // NOTE: We'll crash trying to get the location of glyphAtIndex:0 if
111 // there is no length or we don't start at zero
112 if(!glyphRange.length)
114 wxASSERT_MSG(glyphRange.location==0,"glyphRange must begin at zero");
116 NSAffineTransform *transform = [NSAffineTransform transform];
117 [transform translateXBy:x yBy:y];
119 NSAffineTransform *flipTransform = [NSAffineTransform transform];
121 y' = 0x + -1y + window's height
123 NSAffineTransformStruct matrix = {
126 , 0, usedRect.size.height
128 [flipTransform setTransformStruct: matrix];
130 NSGraphicsContext *context = [NSGraphicsContext currentContext];
131 [context saveGraphicsState];
133 [flipTransform concat];
134 // Draw+fill a rectangle so we can see where the shit is supposed to be.
135 wxLogDebug("(%f,%f) (%fx%f)",usedRect.origin.x,usedRect.origin.y,usedRect.size.width,usedRect.size.height);
136 NSBezierPath *bezpath = [NSBezierPath bezierPathWithRect:NSMakeRect(0,0,usedRect.size.width,usedRect.size.height)];
137 [[NSColor blackColor] set];
139 [[NSColor blueColor] set];
142 NSPoint layoutLocation = [sm_cocoaNSLayoutManager locationForGlyphAtIndex:0];
143 layoutLocation.x = 0.0;
144 layoutLocation.y *= -1.0;
145 layoutLocation.y += [[sm_cocoaNSLayoutManager typesetter] baselineOffsetInLayoutManager:sm_cocoaNSLayoutManager glyphIndex:0];
146 // NOTE: That's NSMakePoint, not NSMakePint (working on that though)
147 [sm_cocoaNSLayoutManager drawGlyphsForGlyphRange:glyphRange atPoint:layoutLocation];
149 [context restoreGraphicsState];
152 // wxDCBase functions
153 int wxDCBase::DeviceToLogicalX(int x) const
158 int wxDCBase::DeviceToLogicalY(int y) const
163 int wxDCBase::LogicalToDeviceX(int x) const
168 int wxDCBase::LogicalToDeviceY(int y) const
173 ///////////////////////////////////////////////////////////////////////////
174 // cut here, the rest is stubs
175 ///////////////////////////////////////////////////////////////////////////
177 //-----------------------------------------------------------------------------
179 //-----------------------------------------------------------------------------
181 #define mm2inches 0.0393700787402
182 #define inches2mm 25.4
183 #define mm2twips 56.6929133859
184 #define twips2mm 0.0176388888889
185 #define mm2pt 2.83464566929
186 #define pt2mm 0.352777777778
188 //-----------------------------------------------------------------------------
190 //-----------------------------------------------------------------------------
192 void wxDC::DoDrawIcon( const wxIcon &WXUNUSED(icon), int WXUNUSED(x), int WXUNUSED(y) )
196 void wxDC::DoDrawPoint( int x, int y )
200 void wxDC::DoDrawPolygon( int, wxPoint *, int, int, int)
204 void wxDC::DoDrawLines( int, wxPoint *, int, int )
208 int wxDC::GetDepth() const
213 wxSize wxDC::GetPPI() const
218 bool wxDC::CanGetTextExtent() const
223 wxCoord wxDC::GetCharHeight() const
228 wxCoord wxDC::GetCharWidth() const
233 bool wxDC::CanDrawBitmap() const
238 bool wxDC::DoGetPixel(wxCoord x, wxCoord y, wxColour *col) const
243 void wxDC::DoDrawArc(wxCoord x1, wxCoord y1, wxCoord x2, wxCoord y2, wxCoord xc, wxCoord yc)
247 void wxDC::SetPen(const wxPen& pen)
251 void wxDC::SetBrush(const wxBrush& brush)
255 void wxDC::DoSetClippingRegionAsRegion(const wxRegion& region)
259 void wxDC::DoSetClippingRegion(wxCoord x, wxCoord y, wxCoord width, wxCoord height)
263 void wxDC::DestroyClippingRegion()
267 void wxDC::DoDrawRoundedRectangle(wxCoord x, wxCoord y, wxCoord width, wxCoord height, double radius)
271 void wxDC::DoDrawRotatedText(const wxString& text, wxCoord x, wxCoord y, double angle)
275 void wxDC::DoDrawEllipticArc(wxCoord x, wxCoord y, wxCoord w, wxCoord h, double sa, double ea)
279 void wxDC::DoDrawEllipse(wxCoord x, wxCoord y, wxCoord width, wxCoord height)
283 void wxDC::DoDrawBitmap(const wxBitmap &bmp, wxCoord x, wxCoord y, bool useMask)
287 bool wxDC::DoFloodFill(wxCoord x, wxCoord y, const wxColour& col, int style)
292 void wxDC::DoCrossHair(wxCoord x, wxCoord y)
297 bool wxDC::DoBlit(wxCoord xdest, wxCoord ydest, wxCoord width, wxCoord height, wxDC *source, wxCoord xsrc, wxCoord ysrc, int rop, bool useMask , wxCoord xsrcMask, wxCoord ysrcMask)
302 void wxDC::DoGetSize( int* width, int* height ) const
304 *width = m_maxX-m_minX;
305 *height = m_maxY-m_minY;
308 void wxDC::DoGetSizeMM( int* width, int* height ) const
315 void wxDC::SetTextForeground( const wxColour &col )
318 m_textForegroundColour = col;
321 void wxDC::SetTextBackground( const wxColour &col )
324 m_textBackgroundColour = col;
331 void wxDC::SetBackground(const wxBrush&)
335 void wxDC::SetPalette(const wxPalette&)
339 void wxDC::SetLogicalFunction(int)
344 void wxDC::SetMapMode( int mode )
358 SetLogicalScale( 1.0, 1.0 );
361 if (mode != wxMM_TEXT)
366 void wxDC::SetUserScale( double x, double y )
368 // allow negative ? -> no
371 ComputeScaleAndOrigin();
374 void wxDC::SetLogicalScale( double x, double y )
379 ComputeScaleAndOrigin();
382 void wxDC::SetLogicalOrigin( wxCoord x, wxCoord y )
384 m_logicalOriginX = x * m_signX; // is this still correct ?
385 m_logicalOriginY = y * m_signY;
386 ComputeScaleAndOrigin();
389 void wxDC::SetDeviceOrigin( wxCoord x, wxCoord y )
391 ComputeScaleAndOrigin();
394 void wxDC::SetAxisOrientation( bool xLeftRight, bool yBottomUp )
396 m_signX = (xLeftRight ? 1 : -1);
397 m_signY = (yBottomUp ? -1 : 1);
398 ComputeScaleAndOrigin();
401 void wxDC::ComputeScaleAndOrigin(void)
403 // CMB: copy scale to see if it changes
404 double origScaleX = m_scaleX;
405 double origScaleY = m_scaleY;
407 m_scaleX = m_logicalScaleX * m_userScaleX;
408 m_scaleY = m_logicalScaleY * m_userScaleY;
410 // CMB: if scale has changed call SetPen to recalulate the line width
411 if (m_scaleX != origScaleX || m_scaleY != origScaleY)
413 // this is a bit artificial, but we need to force wxDC to think
414 // the pen has changed
415 wxPen* pen = & GetPen();