Relocate DeviceToLogical[XY], add stub for LogicalToDevice[XY]
[wxWidgets.git] / src / cocoa / dc.mm
1 /////////////////////////////////////////////////////////////////////////////
2 // Name:        src/cocoa/dc.mm
3 // Purpose:     wxDC
4 // Author:      David Elliott
5 // Modified by:
6 // Created:     2003/04/01
7 // RCS-ID:      $Id$
8 // Copyright:   (c) 2003 David Elliott
9 // Licence:     wxWindows license
10 /////////////////////////////////////////////////////////////////////////////
11
12 #include "wx/dc.h"
13 #include "wx/log.h"
14
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>
23
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;
29
30 void wxDC::CocoaInitializeTextSystem()
31 {
32     wxASSERT_MSG(!sm_cocoaNSTextStorage && !sm_cocoaNSLayoutManager && !sm_cocoaNSTextContainer,"Text system already initalized!  BAD PROGRAMMER!");
33
34     sm_cocoaNSTextStorage = [[NSTextStorage alloc] init];
35
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];
40
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];
48 }
49
50 void wxDC::CocoaShutdownTextSystem()
51 {
52     [sm_cocoaNSTextContainer release]; sm_cocoaNSTextContainer = nil;
53     [sm_cocoaNSLayoutManager release]; sm_cocoaNSLayoutManager = nil;
54     [sm_cocoaNSTextStorage release]; sm_cocoaNSTextStorage = nil;
55 }
56
57 wxDC::wxDC(void)
58 {
59 }
60
61 wxDC::~wxDC(void)
62 {
63 }
64
65 void wxDC::DoDrawRectangle(wxCoord x, wxCoord y, wxCoord width, wxCoord height)
66 {
67     NSBezierPath *bezpath = [NSBezierPath bezierPathWithRect:NSMakeRect(x,y,width,height)];
68     [bezpath stroke];
69 }
70
71 void wxDC::DoDrawLine(wxCoord x1, wxCoord y1, wxCoord x2, wxCoord y2)
72 {
73     NSBezierPath *bezpath = [NSBezierPath bezierPath];
74     [bezpath moveToPoint:NSMakePoint(x1,y1)];
75     [bezpath lineToPoint:NSMakePoint(x2,y2)];
76     [bezpath stroke];
77 }
78
79 void wxDC::DoGetTextExtent(const wxString& text, wxCoord *x, wxCoord *y, wxCoord *descent, wxCoord *externalLeading, wxFont *theFont) const
80 {
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];
87
88     NSRange glyphRange = [sm_cocoaNSLayoutManager glyphRangeForTextContainer:sm_cocoaNSTextContainer];
89     NSRect usedRect = [sm_cocoaNSLayoutManager usedRectForTextContainer:sm_cocoaNSTextContainer];
90     if(x)
91         *x=usedRect.size.width;
92     if(y)
93         *y=usedRect.size.height;
94     if(descent)
95         *descent=0;
96     if(externalLeading)
97         *externalLeading=0;
98 }
99
100 void wxDC::DoDrawText(const wxString& text, wxCoord x, wxCoord y)
101 {
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];
107
108     NSRange glyphRange = [sm_cocoaNSLayoutManager glyphRangeForTextContainer:sm_cocoaNSTextContainer];
109     NSRect usedRect = [sm_cocoaNSLayoutManager usedRectForTextContainer:sm_cocoaNSTextContainer];
110
111
112     NSAffineTransform *transform = [NSAffineTransform transform];
113     [transform translateXBy:x yBy:y];
114
115     NSAffineTransform *flipTransform = [NSAffineTransform transform];
116     /*  x' = 1x + 0y + 0
117         y' = 0x + -1y + window's height
118     */
119     NSAffineTransformStruct matrix = {
120         1,  0
121     ,   0, -1
122     ,   0, usedRect.size.height
123     };
124     [flipTransform setTransformStruct: matrix];
125
126     NSGraphicsContext *context = [NSGraphicsContext currentContext];
127     [context saveGraphicsState];
128     [transform concat];
129     [flipTransform concat];
130     // Draw+fill a rectangle so we can see where the shit is supposed to be.
131     wxLogDebug("(%f,%f) (%fx%f)",usedRect.origin.x,usedRect.origin.y,usedRect.size.width,usedRect.size.height);
132     NSBezierPath *bezpath = [NSBezierPath bezierPathWithRect:NSMakeRect(0,0,usedRect.size.width,usedRect.size.height)];
133     [[NSColor blackColor] set];
134     [bezpath stroke];
135     [[NSColor blueColor] set];
136     [bezpath fill];
137
138     NSPoint layoutLocation = [sm_cocoaNSLayoutManager locationForGlyphAtIndex:0];
139     layoutLocation.x = 0.0;
140     layoutLocation.y *= -1.0;
141     layoutLocation.y += [[sm_cocoaNSLayoutManager typesetter] baselineOffsetInLayoutManager:sm_cocoaNSLayoutManager glyphIndex:0];
142     // NOTE: That's NSMakePoint, not NSMakePint (working on that though)
143     [sm_cocoaNSLayoutManager drawGlyphsForGlyphRange:glyphRange  atPoint:layoutLocation];
144
145     [context restoreGraphicsState];
146 }
147
148 // wxDCBase functions
149 int wxDCBase::DeviceToLogicalX(int x) const
150 {
151     return x;
152 }
153
154 int wxDCBase::DeviceToLogicalY(int y) const
155 {
156     return y;
157 }
158
159 int wxDCBase::LogicalToDeviceX(int x) const
160 {
161     return x;
162 }
163
164 int wxDCBase::LogicalToDeviceY(int y) const
165 {
166     return y;
167 }
168
169 ///////////////////////////////////////////////////////////////////////////
170 // cut here, the rest is stubs
171 ///////////////////////////////////////////////////////////////////////////
172
173 //-----------------------------------------------------------------------------
174 // constants
175 //-----------------------------------------------------------------------------
176
177 #define mm2inches               0.0393700787402
178 #define inches2mm               25.4
179 #define mm2twips                56.6929133859
180 #define twips2mm                0.0176388888889
181 #define mm2pt                   2.83464566929
182 #define pt2mm                   0.352777777778
183
184 //-----------------------------------------------------------------------------
185 // wxDC
186 //-----------------------------------------------------------------------------
187
188 void wxDC::DoDrawIcon( const wxIcon &WXUNUSED(icon), int WXUNUSED(x), int WXUNUSED(y) )
189 {
190 };
191
192 void wxDC::DoDrawPoint( int x, int y ) 
193
194 };
195
196 void wxDC::DoDrawPolygon( int, wxPoint *, int, int, int)
197 {
198 };
199
200 void wxDC::DoDrawLines( int, wxPoint *, int, int )
201 {
202 }
203
204 int wxDC::GetDepth() const
205 {
206     return 0;
207 }
208
209 wxSize wxDC::GetPPI() const
210 {
211     return wxSize(0,0);
212 }
213
214 bool wxDC::CanGetTextExtent() const
215 {
216     return false;
217 }
218
219 wxCoord wxDC::GetCharHeight() const
220 {
221     return 0;
222 }
223
224 wxCoord wxDC::GetCharWidth() const
225 {
226     return 0;
227 }
228
229 bool wxDC::CanDrawBitmap() const
230 {
231     return false;
232 }
233
234 bool wxDC::DoGetPixel(wxCoord x, wxCoord y, wxColour *col) const
235 {
236     return false;
237 }
238
239 void wxDC::DoDrawArc(wxCoord x1, wxCoord y1, wxCoord x2, wxCoord y2, wxCoord xc, wxCoord yc)
240 {
241 }
242     
243 void wxDC::SetPen(const wxPen& pen)
244 {
245 }
246
247 void wxDC::SetBrush(const wxBrush& brush)
248 {
249 }
250
251 void wxDC::DoSetClippingRegionAsRegion(const wxRegion& region)
252 {
253 }
254
255 void wxDC::DoSetClippingRegion(wxCoord x, wxCoord y, wxCoord width, wxCoord height)
256 {
257 }
258
259 void wxDC::DestroyClippingRegion()
260 {
261 }
262
263 void wxDC::DoDrawRoundedRectangle(wxCoord x, wxCoord y, wxCoord width, wxCoord height, double radius)
264 {
265 }
266
267 void wxDC::DoDrawRotatedText(const wxString& text, wxCoord x, wxCoord y, double angle)
268 {
269 }
270
271 void wxDC::DoDrawEllipticArc(wxCoord x, wxCoord y, wxCoord w, wxCoord h, double sa, double ea)
272 {
273 }
274
275 void wxDC::DoDrawEllipse(wxCoord x, wxCoord y, wxCoord width, wxCoord height)
276 {
277 }
278
279 void wxDC::DoDrawBitmap(const wxBitmap &bmp, wxCoord x, wxCoord y, bool useMask)
280 {
281 }
282
283 bool wxDC::DoFloodFill(wxCoord x, wxCoord y, const wxColour& col, int style)
284 {
285     return false;
286 }
287
288 void wxDC::DoCrossHair(wxCoord x, wxCoord y)
289 {
290 }
291
292
293 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)
294 {
295     return false;
296 }
297
298 void wxDC::DoGetSize( int* width, int* height ) const
299 {
300   *width = m_maxX-m_minX;
301   *height = m_maxY-m_minY;
302 };
303
304 void wxDC::DoGetSizeMM( int* width, int* height ) const
305 {
306   int w = 0;
307   int h = 0;
308   GetSize( &w, &h );
309 };
310
311 void wxDC::SetTextForeground( const wxColour &col )
312 {
313   if (!Ok()) return;
314   m_textForegroundColour = col;
315 };
316
317 void wxDC::SetTextBackground( const wxColour &col )
318 {
319   if (!Ok()) return;
320   m_textBackgroundColour = col;
321 };
322
323 void wxDC::Clear()
324 {
325 }
326
327 void wxDC::SetBackground(const wxBrush&)
328 {
329 }
330
331 void wxDC::SetPalette(const wxPalette&)
332 {
333 }
334
335 void wxDC::SetLogicalFunction(int)
336 {
337 }
338
339
340 void wxDC::SetMapMode( int mode )
341 {
342   switch (mode) 
343   {
344     case wxMM_TWIPS:
345       break;
346     case wxMM_POINTS:
347       break;
348     case wxMM_METRIC:
349       break;
350     case wxMM_LOMETRIC:
351       break;
352     default:
353     case wxMM_TEXT:
354       SetLogicalScale( 1.0, 1.0 );
355       break;
356   };
357   if (mode != wxMM_TEXT)
358   {
359   };
360 };
361
362 void wxDC::SetUserScale( double x, double y )
363 {
364   // allow negative ? -> no
365   m_userScaleX = x;
366   m_userScaleY = y;
367   ComputeScaleAndOrigin();
368 };
369
370 void wxDC::SetLogicalScale( double x, double y )
371 {
372   // allow negative ?
373   m_logicalScaleX = x;
374   m_logicalScaleY = y;
375   ComputeScaleAndOrigin();
376 };
377
378 void wxDC::SetLogicalOrigin( wxCoord x, wxCoord y )
379 {
380   m_logicalOriginX = x * m_signX;   // is this still correct ?
381   m_logicalOriginY = y * m_signY;
382   ComputeScaleAndOrigin();
383 };
384
385 void wxDC::SetDeviceOrigin( wxCoord x, wxCoord y )
386 {
387   ComputeScaleAndOrigin();
388 };
389
390 void wxDC::SetAxisOrientation( bool xLeftRight, bool yBottomUp )
391 {
392   m_signX = (xLeftRight ?  1 : -1);
393   m_signY = (yBottomUp  ? -1 :  1);
394   ComputeScaleAndOrigin();
395 };
396
397 void wxDC::ComputeScaleAndOrigin(void)
398 {
399   // CMB: copy scale to see if it changes
400   double origScaleX = m_scaleX;
401   double origScaleY = m_scaleY;
402
403   m_scaleX = m_logicalScaleX * m_userScaleX;
404   m_scaleY = m_logicalScaleY * m_userScaleY;
405
406   // CMB: if scale has changed call SetPen to recalulate the line width 
407   if (m_scaleX != origScaleX || m_scaleY != origScaleY)
408   {
409     // this is a bit artificial, but we need to force wxDC to think
410     // the pen has changed
411     wxPen* pen = & GetPen();
412     wxPen tempPen;
413     m_pen = tempPen;
414     SetPen(* pen);
415   }
416 };
417