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)];
68 [m_textForegroundColour.GetNSColor() set];
70 [m_brush.GetNSColor() set];
74 void wxDC::DoDrawLine(wxCoord x1, wxCoord y1, wxCoord x2, wxCoord y2)
76 NSBezierPath *bezpath = [NSBezierPath bezierPath];
77 [bezpath moveToPoint:NSMakePoint(x1,y1)];
78 [bezpath lineToPoint:NSMakePoint(x2,y2)];
80 [m_textForegroundColour.GetNSColor() set];
84 void wxDC::DoGetTextExtent(const wxString& text, wxCoord *x, wxCoord *y, wxCoord *descent, wxCoord *externalLeading, wxFont *theFont) const
86 // FIXME: Cache this so it can be used for DoDrawText
87 wxASSERT_MSG(sm_cocoaNSTextStorage && sm_cocoaNSLayoutManager && sm_cocoaNSTextContainer, "Text system has not been initialized. BAD PROGRAMMER!");
88 NSAttributedString *attributedString = [[NSAttributedString alloc]
89 initWithString:[NSString stringWithCString:text.c_str()]];
90 [sm_cocoaNSTextStorage setAttributedString:attributedString];
91 [attributedString release];
93 NSRange glyphRange = [sm_cocoaNSLayoutManager glyphRangeForTextContainer:sm_cocoaNSTextContainer];
94 NSRect usedRect = [sm_cocoaNSLayoutManager usedRectForTextContainer:sm_cocoaNSTextContainer];
96 *x=(int)usedRect.size.width;
98 *y=(int)usedRect.size.height;
105 void wxDC::DoDrawText(const wxString& text, wxCoord x, wxCoord y)
107 wxASSERT_MSG(sm_cocoaNSTextStorage && sm_cocoaNSLayoutManager && sm_cocoaNSTextContainer, "Text system has not been initialized. BAD PROGRAMMER!");
108 NSAttributedString *attributedString = [[NSAttributedString alloc]
109 initWithString:[NSString stringWithCString:text.c_str()]];
110 [sm_cocoaNSTextStorage setAttributedString:attributedString];
111 [attributedString release];
113 NSRange glyphRange = [sm_cocoaNSLayoutManager glyphRangeForTextContainer:sm_cocoaNSTextContainer];
114 NSRect usedRect = [sm_cocoaNSLayoutManager usedRectForTextContainer:sm_cocoaNSTextContainer];
115 // NOTE: We'll crash trying to get the location of glyphAtIndex:0 if
116 // there is no length or we don't start at zero
117 if(!glyphRange.length)
119 wxASSERT_MSG(glyphRange.location==0,"glyphRange must begin at zero");
121 NSAffineTransform *transform = [NSAffineTransform transform];
122 [transform translateXBy:x yBy:y];
124 NSAffineTransform *flipTransform = [NSAffineTransform transform];
126 y' = 0x + -1y + window's height
128 NSAffineTransformStruct matrix = {
131 , 0, usedRect.size.height
133 [flipTransform setTransformStruct: matrix];
135 NSGraphicsContext *context = [NSGraphicsContext currentContext];
136 [context saveGraphicsState];
138 [flipTransform concat];
140 // Draw+fill a rectangle so we can see where the shit is supposed to be.
141 wxLogDebug("(%f,%f) (%fx%f)",usedRect.origin.x,usedRect.origin.y,usedRect.size.width,usedRect.size.height);
142 NSBezierPath *bezpath = [NSBezierPath bezierPathWithRect:NSMakeRect(0,0,usedRect.size.width,usedRect.size.height)];
143 [[NSColor blackColor] set];
145 [[NSColor blueColor] set];
149 NSPoint layoutLocation = [sm_cocoaNSLayoutManager locationForGlyphAtIndex:0];
150 layoutLocation.x = 0.0;
151 layoutLocation.y *= -1.0;
152 layoutLocation.y += [[sm_cocoaNSLayoutManager typesetter] baselineOffsetInLayoutManager:sm_cocoaNSLayoutManager glyphIndex:0];
153 // NOTE: That's NSMakePoint, not NSMakePint (working on that though)
154 [m_textForegroundColour.GetNSColor() set];
155 [sm_cocoaNSLayoutManager drawGlyphsForGlyphRange:glyphRange atPoint:layoutLocation];
157 [context restoreGraphicsState];
160 // wxDCBase functions
161 int wxDCBase::DeviceToLogicalX(int x) const
166 int wxDCBase::DeviceToLogicalY(int y) const
171 int wxDCBase::LogicalToDeviceX(int x) const
176 int wxDCBase::LogicalToDeviceY(int y) const
181 ///////////////////////////////////////////////////////////////////////////
182 // cut here, the rest is stubs
183 ///////////////////////////////////////////////////////////////////////////
185 //-----------------------------------------------------------------------------
187 //-----------------------------------------------------------------------------
189 #define mm2inches 0.0393700787402
190 #define inches2mm 25.4
191 #define mm2twips 56.6929133859
192 #define twips2mm 0.0176388888889
193 #define mm2pt 2.83464566929
194 #define pt2mm 0.352777777778
196 //-----------------------------------------------------------------------------
198 //-----------------------------------------------------------------------------
200 void wxDC::DoDrawIcon( const wxIcon &WXUNUSED(icon), int WXUNUSED(x), int WXUNUSED(y) )
204 void wxDC::DoDrawPoint( int x, int y )
208 void wxDC::DoDrawPolygon( int, wxPoint *, int, int, int)
212 void wxDC::DoDrawLines( int, wxPoint *, int, int )
216 int wxDC::GetDepth() const
221 wxSize wxDC::GetPPI() const
226 bool wxDC::CanGetTextExtent() const
231 wxCoord wxDC::GetCharHeight() const
236 wxCoord wxDC::GetCharWidth() const
241 bool wxDC::CanDrawBitmap() const
246 bool wxDC::DoGetPixel(wxCoord x, wxCoord y, wxColour *col) const
251 void wxDC::DoDrawArc(wxCoord x1, wxCoord y1, wxCoord x2, wxCoord y2, wxCoord xc, wxCoord yc)
255 void wxDC::SetPen(const wxPen& pen)
259 void wxDC::SetBrush(const wxBrush& brush)
264 void wxDC::DoSetClippingRegionAsRegion(const wxRegion& region)
268 void wxDC::DoSetClippingRegion(wxCoord x, wxCoord y, wxCoord width, wxCoord height)
272 void wxDC::DestroyClippingRegion()
276 void wxDC::DoDrawRoundedRectangle(wxCoord x, wxCoord y, wxCoord width, wxCoord height, double radius)
280 void wxDC::DoDrawRotatedText(const wxString& text, wxCoord x, wxCoord y, double angle)
284 void wxDC::DoDrawEllipticArc(wxCoord x, wxCoord y, wxCoord w, wxCoord h, double sa, double ea)
288 void wxDC::DoDrawEllipse(wxCoord x, wxCoord y, wxCoord width, wxCoord height)
292 void wxDC::DoDrawBitmap(const wxBitmap &bmp, wxCoord x, wxCoord y, bool useMask)
296 bool wxDC::DoFloodFill(wxCoord x, wxCoord y, const wxColour& col, int style)
301 void wxDC::DoCrossHair(wxCoord x, wxCoord y)
306 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)
311 void wxDC::DoGetSize( int* width, int* height ) const
313 *width = m_maxX-m_minX;
314 *height = m_maxY-m_minY;
317 void wxDC::DoGetSizeMM( int* width, int* height ) const
324 void wxDC::SetTextForeground( const wxColour &col )
327 m_textForegroundColour = col;
330 void wxDC::SetTextBackground( const wxColour &col )
333 m_textBackgroundColour = col;
340 void wxDC::SetBackground(const wxBrush& brush)
342 m_backgroundBrush = brush;
345 void wxDC::SetPalette(const wxPalette&)
349 void wxDC::SetLogicalFunction(int)
354 void wxDC::SetMapMode( int mode )
368 SetLogicalScale( 1.0, 1.0 );
371 if (mode != wxMM_TEXT)
376 void wxDC::SetUserScale( double x, double y )
378 // allow negative ? -> no
381 ComputeScaleAndOrigin();
384 void wxDC::SetLogicalScale( double x, double y )
389 ComputeScaleAndOrigin();
392 void wxDC::SetLogicalOrigin( wxCoord x, wxCoord y )
394 m_logicalOriginX = x * m_signX; // is this still correct ?
395 m_logicalOriginY = y * m_signY;
396 ComputeScaleAndOrigin();
399 void wxDC::SetDeviceOrigin( wxCoord x, wxCoord y )
401 ComputeScaleAndOrigin();
404 void wxDC::SetAxisOrientation( bool xLeftRight, bool yBottomUp )
406 m_signX = (xLeftRight ? 1 : -1);
407 m_signY = (yBottomUp ? -1 : 1);
408 ComputeScaleAndOrigin();
411 void wxDC::ComputeScaleAndOrigin(void)
413 // CMB: copy scale to see if it changes
414 double origScaleX = m_scaleX;
415 double origScaleY = m_scaleY;
417 m_scaleX = m_logicalScaleX * m_userScaleX;
418 m_scaleY = m_logicalScaleY * m_userScaleY;
420 // CMB: if scale has changed call SetPen to recalulate the line width
421 if (m_scaleX != origScaleX || m_scaleY != origScaleY)
423 // this is a bit artificial, but we need to force wxDC to think
424 // the pen has changed
425 wxPen* pen = & GetPen();