]> git.saurik.com Git - wxWidgets.git/blame - src/mac/carbon/cursor.cpp
64 bit fixes
[wxWidgets.git] / src / mac / carbon / cursor.cpp
CommitLineData
e9576ca5 1/////////////////////////////////////////////////////////////////////////////
f3078f07 2// Name: src/mac/carbon/cursor.cpp
e9576ca5 3// Purpose: wxCursor class
a31a5f85 4// Author: Stefan Csomor
e9576ca5 5// Modified by:
a31a5f85 6// Created: 1998-01-01
e9576ca5 7// RCS-ID: $Id$
a31a5f85 8// Copyright: (c) Stefan Csomor
670f9935 9// Licence: wxWindows licence
e9576ca5
SC
10/////////////////////////////////////////////////////////////////////////////
11
3d1a4878 12#include "wx/wxprec.h"
0e13e965 13
e9576ca5 14#include "wx/cursor.h"
670f9935
WS
15
16#ifndef WX_PRECOMP
17 #include "wx/app.h"
923d28da 18 #include "wx/icon.h"
155ecd4c 19 #include "wx/image.h"
670f9935
WS
20#endif // WX_PRECOMP
21
c5e59178
SC
22#include "wx/xpmdecod.h"
23
76a5e5d2 24#include "wx/mac/private.h"
e9576ca5 25
f3078f07 26
968c951f 27IMPLEMENT_DYNAMIC_CLASS(wxCursor, wxGDIObject)
e9576ca5 28
f3078f07 29
968c951f 30class WXDLLEXPORT wxCursorRefData: public wxGDIRefData
20b69855 31{
868302f3 32 friend class wxCursor;
f3078f07 33
968c951f
SC
34 DECLARE_NO_COPY_CLASS(wxCursorRefData)
35
20b69855
SC
36public:
37 wxCursorRefData();
d3c7fc99 38 virtual ~wxCursorRefData();
20b69855
SC
39
40protected:
6239ee05
SC
41#if wxMAC_USE_COCOA
42 WX_NSCursor m_hCursor;
43#else
20b69855
SC
44 WXHCURSOR m_hCursor;
45 bool m_disposeHandle;
46 bool m_releaseHandle;
f3078f07
DS
47 bool m_isColorCursor;
48 long m_themeCursor;
6239ee05 49#endif
20b69855
SC
50};
51
716d0327 52#define M_CURSORDATA wx_static_cast(wxCursorRefData*, m_refData)
20b69855 53
6239ee05 54ClassicCursor gMacCursors[kwxCursorLast+1] =
dd05f811 55{
699e27dc 56
dd05f811 57{
699e27dc
RN
58{0x0000, 0x03E0, 0x0630, 0x0808, 0x1004, 0x31C6, 0x2362, 0x2222,
590x2362, 0x31C6, 0x1004, 0x0808, 0x0630, 0x03E0, 0x0000, 0x0000},
60{0x0000, 0x03E0, 0x07F0, 0x0FF8, 0x1FFC, 0x3FFE, 0x3FFE, 0x3FFE,
610x3FFE, 0x3FFE, 0x1FFC, 0x0FF8, 0x07F0, 0x03E0, 0x0000, 0x0000},
62{0x0007, 0x0008}
dd05f811
SC
63},
64
65{
699e27dc
RN
66{0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
670x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000},
68{0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
690x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000},
70{0x0000, 0x0000}
dd05f811
SC
71},
72
73{
699e27dc
RN
74{0x00F0, 0x0088, 0x0108, 0x0190, 0x0270, 0x0220, 0x0440, 0x0440,
750x0880, 0x0880, 0x1100, 0x1E00, 0x1C00, 0x1800, 0x1000, 0x0000},
76{0x00F0, 0x00F8, 0x01F8, 0x01F0, 0x03F0, 0x03E0, 0x07C0, 0x07C0,
770x0F80, 0x0F80, 0x1F00, 0x1E00, 0x1C00, 0x1800, 0x1000, 0x0000},
78{0x000E, 0x0003}
dd05f811
SC
79},
80
81{
699e27dc
RN
82{0x0000, 0x1E00, 0x2100, 0x4080, 0x4080, 0x4080, 0x4080, 0x2180,
830x1FC0, 0x00E0, 0x0070, 0x0038, 0x001C, 0x000E, 0x0006, 0x0000},
84{0x3F00, 0x7F80, 0xFFC0, 0xFFC0, 0xFFC0, 0xFFC0, 0xFFC0, 0x7FC0,
850x3FE0, 0x1FF0, 0x00F8, 0x007C, 0x003E, 0x001F, 0x000F, 0x0007},
86{0x0004, 0x0004}
dd05f811
SC
87},
88
89{
699e27dc
RN
90{0x0000, 0x07E0, 0x1FF0, 0x3838, 0x3C0C, 0x6E0E, 0x6706, 0x6386,
910x61C6, 0x60E6, 0x7076, 0x303C, 0x1C1C, 0x0FF8, 0x07E0, 0x0000},
92{0x0540, 0x0FF0, 0x3FF8, 0x3C3C, 0x7E0E, 0xFF0F, 0x6F86, 0xE7C7,
930x63E6, 0xE1F7, 0x70FE, 0x707E, 0x3C3C, 0x1FFC, 0x0FF0, 0x0540},
94{0x0007, 0x0007}
dd05f811
SC
95},
96
97{
699e27dc
RN
98{0x0000, 0x0380, 0x0380, 0x0380, 0x0380, 0x0380, 0x0380, 0x0FE0,
990x1FF0, 0x1FF0, 0x0000, 0x1FF0, 0x1FF0, 0x1550, 0x1550, 0x1550},
100{0x07C0, 0x07C0, 0x07C0, 0x07C0, 0x07C0, 0x07C0, 0x0FE0, 0x1FF0,
1010x3FF8, 0x3FF8, 0x3FF8, 0x3FF8, 0x3FF8, 0x3FF8, 0x3FF8, 0x3FF8},
102{0x000B, 0x0007}
dd05f811
SC
103},
104
105{
699e27dc
RN
106{0x00C0, 0x0140, 0x0640, 0x08C0, 0x3180, 0x47FE, 0x8001, 0x8001,
1070x81FE, 0x8040, 0x01C0, 0x0040, 0x03C0, 0xC080, 0x3F80, 0x0000},
108{0x00C0, 0x01C0, 0x07C0, 0x0FC0, 0x3F80, 0x7FFE, 0xFFFF, 0xFFFF,
1090xFFFE, 0xFFC0, 0xFFC0, 0xFFC0, 0xFFC0, 0xFF80, 0x3F80, 0x0000},
110{0x0006, 0x000F}
dd05f811
SC
111},
112
113{
699e27dc
RN
114{0x0100, 0x0280, 0x0260, 0x0310, 0x018C, 0x7FE3, 0x8000, 0x8000,
1150x7F80, 0x0200, 0x0380, 0x0200, 0x03C0, 0x0107, 0x01F8, 0x0000},
116{0x0100, 0x0380, 0x03E0, 0x03F0, 0x01FC, 0x7FFF, 0xFFFF, 0xFFFF,
1170xFFFF, 0x03FF, 0x03FF, 0x03FF, 0x03FF, 0x01FF, 0x01F8, 0x0000},
118{0x0006, 0x0000}
dd05f811
SC
119},
120
121{
699e27dc
RN
122{0x0000, 0x4078, 0x60FC, 0x71CE, 0x7986, 0x7C06, 0x7E0E, 0x7F1C,
1230x7FB8, 0x7C30, 0x6C30, 0x4600, 0x0630, 0x0330, 0x0300, 0x0000},
124{0xC078, 0xE0FC, 0xF1FE, 0xFBFF, 0xFFCF, 0xFF8F, 0xFF1F, 0xFFBE,
1250xFFFC, 0xFE78, 0xFF78, 0xEFF8, 0xCFF8, 0x87F8, 0x07F8, 0x0300},
126{0x0001, 0x0001}
dd05f811
SC
127},
128
129{
699e27dc
RN
130{0x0000, 0x0002, 0x0006, 0x000E, 0x001E, 0x003E, 0x007E, 0x00FE,
1310x01FE, 0x003E, 0x0036, 0x0062, 0x0060, 0x00C0, 0x00C0, 0x0000},
132{0x0003, 0x0007, 0x000F, 0x001F, 0x003F, 0x007F, 0x00FF, 0x01FF,
1330x03FF, 0x07FF, 0x007F, 0x00F7, 0x00F3, 0x01E1, 0x01E0, 0x01C0},
134{0x0001, 0x000E}
dd05f811
SC
135},
136
137{
699e27dc
RN
138{0x0000, 0x0080, 0x01C0, 0x03E0, 0x0080, 0x0080, 0x0080, 0x1FFC,
1390x1FFC, 0x0080, 0x0080, 0x0080, 0x03E0, 0x01C0, 0x0080, 0x0000},
140{0x0080, 0x01C0, 0x03E0, 0x07F0, 0x0FF8, 0x01C0, 0x3FFE, 0x3FFE,
1410x3FFE, 0x3FFE, 0x01C0, 0x0FF8, 0x07F0, 0x03E0, 0x01C0, 0x0080},
142{0x0007, 0x0008}
dd05f811
SC
143},
144
145{
699e27dc
RN
146{0x0000, 0x0080, 0x01C0, 0x03E0, 0x0080, 0x0888, 0x188C, 0x3FFE,
1470x188C, 0x0888, 0x0080, 0x03E0, 0x01C0, 0x0080, 0x0000, 0x0000},
148{0x0080, 0x01C0, 0x03E0, 0x07F0, 0x0BE8, 0x1DDC, 0x3FFE, 0x7FFF,
1490x3FFE, 0x1DDC, 0x0BE8, 0x07F0, 0x03E0, 0x01C0, 0x0080, 0x0000},
150{0x0007, 0x0008}
dd05f811
SC
151},
152
153{
699e27dc
RN
154{0x0000, 0x001E, 0x000E, 0x060E, 0x0712, 0x03A0, 0x01C0, 0x00E0,
1550x0170, 0x1238, 0x1C18, 0x1C00, 0x1E00, 0x0000, 0x0000, 0x0000},
156{0x007F, 0x003F, 0x0E1F, 0x0F0F, 0x0F97, 0x07E3, 0x03E1, 0x21F0,
1570x31F8, 0x3A7C, 0x3C3C, 0x3E1C, 0x3F00, 0x3F80, 0x0000, 0x0000},
158{0x0006, 0x0009}
dd05f811
SC
159},
160
161{
699e27dc
RN
162{0x0000, 0x7800, 0x7000, 0x7060, 0x48E0, 0x05C0, 0x0380, 0x0700,
1630x0E80, 0x1C48, 0x1838, 0x0038, 0x0078, 0x0000, 0x0000, 0x0000},
164{0xFE00, 0xFC00, 0xF870, 0xF0F0, 0xE9F0, 0xC7E0, 0x87C0, 0x0F84,
1650x1F8C, 0x3E5C, 0x3C3C, 0x387C, 0x00FC, 0x01FC, 0x0000, 0x0000},
166{0x0006, 0x0006}
dd05f811
SC
167},
168
169{
699e27dc
RN
170{0x0006, 0x000E, 0x001C, 0x0018, 0x0020, 0x0040, 0x00F8, 0x0004,
1710x1FF4, 0x200C, 0x2AA8, 0x1FF0, 0x1F80, 0x3800, 0x6000, 0x8000},
172{0x000F, 0x001F, 0x003E, 0x007C, 0x0070, 0x00E0, 0x01FC, 0x3FF6,
1730x7FF6, 0x7FFE, 0x7FFC, 0x7FF8, 0x3FF0, 0x7FC0, 0xF800, 0xE000},
174{0x000A, 0x0006}
175},
176
f3078f07 177};
c6a071d2 178
e40298d5 179wxCursor gMacCurrentCursor ;
519cb848 180
6239ee05 181#if !wxMAC_USE_COCOA
dd05f811
SC
182CursHandle wxGetStockCursor( int number )
183{
184 wxASSERT_MSG( number >= 0 && number <=kwxCursorLast , wxT("invalid stock cursor id") ) ;
185 CursHandle c = (CursHandle) NewHandle( sizeof(Cursor) ) ;
f3078f07
DS
186 memcpy( *c, &gMacCursors[number], sizeof(Cursor) ) ;
187
7e81aa03
SC
188#ifndef WORDS_BIGENDIAN
189 short *sptr = (short*) *c ;
190 for ( int i = 0 ; i < 2 * 16 /* image and mask */ ; ++i, ++sptr )
191 {
192 *sptr = CFSwapInt16( *sptr ) ;
193 }
194#endif
f3078f07 195 return c ;
dd05f811 196}
6239ee05 197#endif
dd05f811 198
e9576ca5
SC
199wxCursorRefData::wxCursorRefData()
200{
f3078f07 201 m_hCursor = NULL;
6239ee05
SC
202#if wxMAC_USE_COCOA
203#else
f3078f07
DS
204 m_disposeHandle = false;
205 m_releaseHandle = false;
206 m_isColorCursor = false;
207 m_themeCursor = -1;
6239ee05 208#endif
e9576ca5
SC
209}
210
211wxCursorRefData::~wxCursorRefData()
212{
6239ee05
SC
213#if wxMAC_USE_COCOA
214 if ( m_hCursor )
215 wxMacCocoaRelease(m_hCursor);
216#else
c6a071d2
SC
217 if ( m_isColorCursor )
218 {
4f74e0d1
SC
219#ifndef __LP64__
220 ::DisposeCCursor( (CCrsrHandle) m_hCursor ) ;
221#endif
c6a071d2 222 }
e40298d5
JS
223 else if ( m_disposeHandle )
224 {
225 ::DisposeHandle( (Handle ) m_hCursor ) ;
f3078f07 226 }
e40298d5
JS
227 else if ( m_releaseHandle )
228 {
229 // we don't release the resource since it may already
230 // be in use again
231 }
6239ee05 232#endif
e9576ca5
SC
233}
234
e9576ca5
SC
235wxCursor::wxCursor()
236{
237}
238
239wxCursor::wxCursor(const char WXUNUSED(bits)[], int WXUNUSED(width), int WXUNUSED(height),
240 int WXUNUSED(hotSpotX), int WXUNUSED(hotSpotY), const char WXUNUSED(maskBits)[])
241{
242}
243
c6a071d2
SC
244wxCursor::wxCursor( const wxImage &image )
245{
5e0526df 246#if wxUSE_IMAGE
ce72eadb 247 CreateFromImage( image ) ;
5e0526df 248#endif
c6a071d2
SC
249}
250
f3078f07 251wxCursor::wxCursor(const char **bits)
c5e59178
SC
252{
253 (void) CreateFromXpm(bits);
254}
255
f3078f07 256wxCursor::wxCursor(char **bits)
c5e59178
SC
257{
258 (void) CreateFromXpm((const char **)bits);
259}
260
261bool wxCursor::CreateFromXpm(const char **bits)
262{
476a5dec 263#if wxUSE_IMAGE
637b7e4f 264 wxCHECK_MSG( bits != NULL, false, wxT("invalid cursor data") );
c5e59178
SC
265 wxXPMDecoder decoder;
266 wxImage img = decoder.ReadData(bits);
637b7e4f 267 wxCHECK_MSG( img.Ok(), false, wxT("invalid cursor data") );
f3078f07
DS
268 CreateFromImage( img ) ;
269 return true;
476a5dec 270#else
f3078f07 271 return false;
476a5dec 272#endif
c5e59178
SC
273}
274
f3078f07
DS
275WXHCURSOR wxCursor::GetHCURSOR() const
276{
277 return (M_CURSORDATA ? M_CURSORDATA->m_hCursor : 0);
20b69855
SC
278}
279
b7cacb43 280bool wxCursor::IsOk() const
f3078f07 281{
6239ee05
SC
282#if wxMAC_USE_COCOA
283 return GetHCURSOR() != NULL;
284#else
f3078f07 285 return (m_refData != NULL && ( M_CURSORDATA->m_hCursor != NULL || M_CURSORDATA->m_themeCursor != -1 ) ) ;
6239ee05 286#endif
20b69855
SC
287}
288
6239ee05 289#if !wxMAC_USE_COCOA
c5e59178
SC
290short GetCTabIndex( CTabHandle colors , RGBColor *col )
291{
292 short retval = 0 ;
293 unsigned long bestdiff = 0xFFFF ;
f3078f07 294
c5e59178
SC
295 for ( int i = 0 ; i < (**colors).ctSize ; ++i )
296 {
297 unsigned long diff = abs(col->red - (**colors).ctTable[i].rgb.red ) +
298 abs(col->green - (**colors).ctTable[i].rgb.green ) +
299 abs(col->blue - (**colors).ctTable[i].rgb.blue ) ;
f3078f07 300
c5e59178
SC
301 if ( diff < bestdiff )
302 {
303 bestdiff = diff ;
304 retval = (**colors).ctTable[i].value ;
305 }
306 }
f3078f07 307
c5e59178
SC
308 return retval ;
309}
6239ee05 310#endif
c5e59178 311
476a5dec
RN
312#if wxUSE_IMAGE
313
f3078f07 314void wxCursor::CreateFromImage(const wxImage & image)
c6a071d2
SC
315{
316 m_refData = new wxCursorRefData;
6239ee05
SC
317 int hotSpotX = image.GetOptionInt(wxIMAGE_OPTION_CUR_HOTSPOT_X);
318 int hotSpotY = image.GetOptionInt(wxIMAGE_OPTION_CUR_HOTSPOT_Y);
319#if wxMAC_USE_COCOA
320 wxBitmap bmp( image );
321 CGImageRef cgimage = wxMacCreateCGImageFromBitmap(bmp);
322 if ( cgimage )
323 {
324 M_CURSORDATA->m_hCursor = wxMacCocoaCreateCursorFromCGImage( cgimage, hotSpotX, hotSpotY );
325 CFRelease( cgimage );
326 }
327#else
4f74e0d1 328#ifndef __LP64__
b737ad10
RR
329 int w = 16;
330 int h = 16;
331
b737ad10
RR
332 int image_w = image.GetWidth();
333 int image_h = image.GetHeight();
334
335 wxASSERT_MSG( hotSpotX >= 0 && hotSpotX < image_w &&
336 hotSpotY >= 0 && hotSpotY < image_h,
f3078f07 337 wxT("invalid cursor hot spot coordinates") );
b737ad10
RR
338
339 wxImage image16(image); // final image of correct size
f3078f07 340
b737ad10
RR
341 // if image is too small then place it in the center, resize it if too big
342 if ((w > image_w) && (h > image_h))
343 {
f3078f07 344 wxPoint offset((w - image_w) / 2, (h - image_h) / 2);
b737ad10
RR
345 hotSpotX = hotSpotX + offset.x;
346 hotSpotY = hotSpotY + offset.y;
f3078f07 347
b737ad10
RR
348 image16 = image.Size(wxSize(w, h), offset);
349 }
350 else if ((w != image_w) || (h != image_h))
351 {
f3078f07
DS
352 hotSpotX = int(hotSpotX * double(w) / double(image_w));
353 hotSpotY = int(hotSpotY * double(h) / double(image_h));
b737ad10
RR
354
355 image16 = image.Scale(w, h);
356 }
357
358 unsigned char * rgbBits = image16.GetData();
c6a071d2
SC
359 bool bHasMask = image16.HasMask() ;
360
f3078f07 361 PixMapHandle pm = (PixMapHandle) NewHandleClear( sizeof(PixMap) ) ;
c5e59178
SC
362 short extent = 16 ;
363 short bytesPerPixel = 1 ;
364 short depth = 8 ;
365 Rect bounds = { 0 , 0 , extent , extent } ;
f3078f07 366 CCrsrHandle ch = (CCrsrHandle) NewHandleClear( sizeof(CCrsr) ) ;
c5e59178 367 CTabHandle newColors = GetCTable( 8 ) ;
f3078f07
DS
368 HandToHand( (Handle *) &newColors );
369
c5e59178
SC
370 // set the values to the indices
371 for ( int i = 0 ; i < (**newColors).ctSize ; ++i )
372 {
373 (**newColors).ctTable[i].value = i ;
374 }
c5e59178 375
f3078f07
DS
376 HLock( (Handle)ch );
377 (**ch).crsrType = 0x8001; // color cursors
378 (**ch).crsrMap = pm;
379 short bytesPerRow = bytesPerPixel * extent;
380
381 (**pm).baseAddr = 0;
c5e59178 382 (**pm).rowBytes = bytesPerRow | 0x8000;
f3078f07
DS
383 (**pm).bounds = bounds;
384 (**pm).pmVersion = 0;
385 (**pm).packType = 0;
386 (**pm).packSize = 0;
387 (**pm).hRes = 0x00480000; // 72 DPI default res
388 (**pm).vRes = 0x00480000; // 72 DPI default res
c5e59178
SC
389 (**pm).pixelSize = depth;
390 (**pm).pixelType = 0;
f3078f07 391 (**pm).cmpCount = 1;
c5e59178
SC
392 (**pm).cmpSize = depth;
393 (**pm).pmTable = newColors;
394
f3078f07 395 (**ch).crsrData = NewHandleClear( extent * bytesPerRow ) ;
c5e59178
SC
396 (**ch).crsrXData = NULL ;
397 (**ch).crsrXValid = 0;
398 (**ch).crsrXHandle = NULL;
399
400 (**ch).crsrHotSpot.h = hotSpotX ;
401 (**ch).crsrHotSpot.v = hotSpotY ;
f3078f07 402 (**ch).crsrXTable = 0 ;
c5e59178 403 (**ch).crsrID = GetCTSeed() ;
f3078f07 404
c5e59178
SC
405 memset( (**ch).crsr1Data , 0 , sizeof( Bits16 ) ) ;
406 memset( (**ch).crsrMask , 0 , sizeof( Bits16 ) ) ;
f3078f07 407
c5e59178
SC
408 unsigned char mr = image16.GetMaskRed() ;
409 unsigned char mg = image16.GetMaskGreen() ;
410 unsigned char mb = image16.GetMaskBlue() ;
f3078f07 411
c5e59178
SC
412 for ( int y = 0 ; y < h ; ++y )
413 {
f3078f07
DS
414 short rowbits = 0, maskbits = 0 ;
415
c5e59178
SC
416 for ( int x = 0 ; x < w ; ++x )
417 {
418 long pos = (y * w + x) * 3;
419
420 unsigned char r = rgbBits[pos] ;
f3078f07
DS
421 unsigned char g = rgbBits[pos + 1] ;
422 unsigned char b = rgbBits[pos + 2] ;
423 RGBColor col = { 0xFFFF, 0xFFFF, 0xFFFF } ;
424
425 if ( bHasMask && r == mr && g == mg && b == mb )
c5e59178
SC
426 {
427 // masked area, does not appear anywhere
428 }
429 else
430 {
431 if ( (int)r + (int)g + (int)b < 0x0200 )
f3078f07
DS
432 rowbits |= ( 1 << (15 - x) ) ;
433
434 maskbits |= ( 1 << (15 - x) ) ;
435
c5e59178
SC
436 col = *((RGBColor*) wxColor( r , g , b ).GetPixel()) ;
437 }
f3078f07
DS
438
439 *((*(**ch).crsrData) + y * bytesPerRow + x) =
c5e59178
SC
440 GetCTabIndex( newColors , &col) ;
441 }
7e81aa03 442#ifdef WORDS_BIGENDIAN
c5e59178
SC
443 (**ch).crsr1Data[y] = rowbits ;
444 (**ch).crsrMask[y] = maskbits ;
7e81aa03
SC
445#else
446 (**ch).crsr1Data[y] = CFSwapInt16(rowbits) ;
447 (**ch).crsrMask[y] = CFSwapInt16(maskbits) ;
448#endif
c5e59178 449 }
f3078f07 450
c5e59178 451 if ( !bHasMask )
c5e59178 452 memcpy( (**ch).crsrMask , (**ch).crsr1Data , sizeof( Bits16) ) ;
f3078f07
DS
453
454 HUnlock( (Handle)ch ) ;
c5e59178
SC
455 M_CURSORDATA->m_hCursor = ch ;
456 M_CURSORDATA->m_isColorCursor = true ;
4f74e0d1 457#endif
6239ee05 458#endif
c6a071d2
SC
459}
460
476a5dec
RN
461#endif //wxUSE_IMAGE
462
e9576ca5
SC
463wxCursor::wxCursor(const wxString& cursor_file, long flags, int hotSpotX, int hotSpotY)
464{
465 m_refData = new wxCursorRefData;
c6a071d2
SC
466 if ( flags == wxBITMAP_TYPE_MACCURSOR_RESOURCE )
467 {
6239ee05
SC
468#if wxMAC_USE_COCOA
469 wxFAIL_MSG( wxT("Not implemented") );
470#else
4f74e0d1 471#ifndef __LP64__
e40298d5 472 Str255 theName ;
f3078f07
DS
473 wxMacStringToPascal( cursor_file , theName ) ;
474
e40298d5
JS
475 Handle resHandle = ::GetNamedResource( 'crsr' , theName ) ;
476 if ( resHandle )
477 {
478 short theId = -1 ;
479 OSType theType ;
f3078f07 480
e40298d5
JS
481 GetResInfo( resHandle , &theId , &theType , theName ) ;
482 ReleaseResource( resHandle ) ;
f3078f07 483
e40298d5
JS
484 M_CURSORDATA->m_hCursor = GetCCursor( theId ) ;
485 if ( M_CURSORDATA->m_hCursor )
486 M_CURSORDATA->m_isColorCursor = true ;
487 }
488 else
f3078f07 489 {
e40298d5
JS
490 Handle resHandle = ::GetNamedResource( 'CURS' , theName ) ;
491 if ( resHandle )
492 {
493 short theId = -1 ;
494 OSType theType ;
f3078f07 495
e40298d5
JS
496 GetResInfo( resHandle , &theId , &theType , theName ) ;
497 ReleaseResource( resHandle ) ;
f3078f07
DS
498
499 M_CURSORDATA->m_hCursor = GetCursor( theId ) ;
e40298d5
JS
500 if ( M_CURSORDATA->m_hCursor )
501 M_CURSORDATA->m_releaseHandle = true ;
502 }
c6a071d2 503 }
6239ee05 504#endif
4f74e0d1 505#endif
c6a071d2
SC
506 }
507 else
508 {
476a5dec 509#if wxUSE_IMAGE
c6a071d2 510 wxImage image ;
f3078f07
DS
511 image.LoadFile( cursor_file, flags ) ;
512 if ( image.Ok() )
c6a071d2 513 {
f3078f07
DS
514 image.SetOption( wxIMAGE_OPTION_CUR_HOTSPOT_X, hotSpotX ) ;
515 image.SetOption( wxIMAGE_OPTION_CUR_HOTSPOT_Y, hotSpotY ) ;
701bc6ca
KH
516 m_refData->DecRef() ;
517 m_refData = NULL ;
f3078f07 518 CreateFromImage( image ) ;
c6a071d2 519 }
476a5dec 520#endif
c6a071d2 521 }
e9576ca5
SC
522}
523
524// Cursors by stock number
525wxCursor::wxCursor(int cursor_type)
526{
e40298d5 527 m_refData = new wxCursorRefData;
6239ee05
SC
528#if wxMAC_USE_COCOA
529 M_CURSORDATA->m_hCursor = wxMacCocoaCreateStockCursor( cursor_type );
530#else
e40298d5
JS
531 switch (cursor_type)
532 {
c5e59178 533 case wxCURSOR_COPY_ARROW:
f3078f07 534 M_CURSORDATA->m_themeCursor = kThemeCopyArrowCursor;
c5e59178 535 break;
f3078f07 536
e9576ca5 537 case wxCURSOR_WAIT:
f3078f07 538 M_CURSORDATA->m_themeCursor = kThemeWatchCursor;
e40298d5 539 break;
f3078f07 540
e9576ca5 541 case wxCURSOR_IBEAM:
f3078f07 542 M_CURSORDATA->m_themeCursor = kThemeIBeamCursor;
e40298d5 543 break;
f3078f07 544
e9576ca5 545 case wxCURSOR_CROSS:
e40298d5
JS
546 M_CURSORDATA->m_themeCursor = kThemeCrossCursor;
547 break;
f3078f07 548
e9576ca5 549 case wxCURSOR_SIZENWSE:
f3078f07 550 M_CURSORDATA->m_hCursor = wxGetStockCursor(kwxCursorSizeNWSE);
e40298d5 551 break;
f3078f07 552
e9576ca5 553 case wxCURSOR_SIZENESW:
f3078f07 554 M_CURSORDATA->m_hCursor = wxGetStockCursor(kwxCursorSizeNESW);
e40298d5 555 break;
f3078f07 556
e9576ca5 557 case wxCURSOR_SIZEWE:
f3078f07 558 M_CURSORDATA->m_themeCursor = kThemeResizeLeftRightCursor;
e40298d5 559 break;
f3078f07 560
e9576ca5 561 case wxCURSOR_SIZENS:
f3078f07 562 M_CURSORDATA->m_hCursor = wxGetStockCursor(kwxCursorSizeNS);
e40298d5 563 break;
f3078f07 564
e40298d5 565 case wxCURSOR_SIZING:
f3078f07 566 M_CURSORDATA->m_hCursor = wxGetStockCursor(kwxCursorSize);
e40298d5 567 break;
f3078f07 568
e9576ca5 569 case wxCURSOR_HAND:
f3078f07 570 M_CURSORDATA->m_themeCursor = kThemePointingHandCursor;
e40298d5 571 break;
f3078f07 572
e9576ca5 573 case wxCURSOR_BULLSEYE:
f3078f07 574 M_CURSORDATA->m_hCursor = wxGetStockCursor(kwxCursorBullseye);
fe3fcb05 575 break;
f3078f07 576
e9576ca5 577 case wxCURSOR_PENCIL:
f3078f07 578 M_CURSORDATA->m_hCursor = wxGetStockCursor(kwxCursorPencil);
fe3fcb05 579 break;
f3078f07 580
e9576ca5 581 case wxCURSOR_MAGNIFIER:
f3078f07 582 M_CURSORDATA->m_hCursor = wxGetStockCursor(kwxCursorMagnifier);
fe3fcb05 583 break;
f3078f07 584
e9576ca5 585 case wxCURSOR_NO_ENTRY:
f3078f07 586 M_CURSORDATA->m_hCursor = wxGetStockCursor(kwxCursorNoEntry);
fe3fcb05 587 break;
f3078f07 588
e9576ca5 589 case wxCURSOR_WATCH:
f3078f07
DS
590 M_CURSORDATA->m_themeCursor = kThemeWatchCursor;
591 break;
592
e9576ca5 593 case wxCURSOR_PAINT_BRUSH:
f3078f07
DS
594 M_CURSORDATA->m_hCursor = wxGetStockCursor(kwxCursorPaintBrush);
595 break;
596
e9576ca5 597 case wxCURSOR_POINT_LEFT:
f3078f07
DS
598 M_CURSORDATA->m_hCursor = wxGetStockCursor(kwxCursorPointLeft);
599 break;
600
e9576ca5 601 case wxCURSOR_POINT_RIGHT:
f3078f07
DS
602 M_CURSORDATA->m_hCursor = wxGetStockCursor(kwxCursorPointRight);
603 break;
604
e9576ca5 605 case wxCURSOR_QUESTION_ARROW:
f3078f07
DS
606 M_CURSORDATA->m_hCursor = wxGetStockCursor(kwxCursorQuestionArrow);
607 break;
608
e9576ca5 609 case wxCURSOR_BLANK:
f3078f07
DS
610 M_CURSORDATA->m_hCursor = wxGetStockCursor(kwxCursorBlank);
611 break;
612
c6a071d2 613 case wxCURSOR_RIGHT_ARROW:
f3078f07
DS
614 M_CURSORDATA->m_hCursor = wxGetStockCursor(kwxCursorRightArrow);
615 break;
616
c6a071d2 617 case wxCURSOR_SPRAYCAN:
f3078f07
DS
618 M_CURSORDATA->m_hCursor = wxGetStockCursor(kwxCursorRoller);
619 break;
620
c6a071d2 621 case wxCURSOR_CHAR:
e9576ca5 622 case wxCURSOR_ARROW:
c6a071d2
SC
623 case wxCURSOR_LEFT_BUTTON:
624 case wxCURSOR_RIGHT_BUTTON:
625 case wxCURSOR_MIDDLE_BUTTON:
e40298d5 626 default:
f3078f07 627 M_CURSORDATA->m_themeCursor = kThemeArrowCursor;
e40298d5
JS
628 break;
629 }
f3078f07 630
e40298d5 631 if ( M_CURSORDATA->m_themeCursor == -1 )
f3078f07 632 M_CURSORDATA->m_releaseHandle = true;
6239ee05 633#endif
519cb848 634}
e9576ca5 635
f3078f07 636void wxCursor::MacInstall() const
519cb848 637{
e40298d5 638 gMacCurrentCursor = *this ;
6239ee05
SC
639#if wxMAC_USE_COCOA
640 if ( IsOk() )
641 wxMacCocoaSetCursor( M_CURSORDATA->m_hCursor );
642#else
e40298d5
JS
643 if ( m_refData && M_CURSORDATA->m_themeCursor != -1 )
644 {
645 SetThemeCursor( M_CURSORDATA->m_themeCursor ) ;
646 }
647 else if ( m_refData && M_CURSORDATA->m_hCursor )
648 {
4f74e0d1
SC
649#ifndef __LP64__
650 if ( M_CURSORDATA->m_isColorCursor )
e40298d5
JS
651 ::SetCCursor( (CCrsrHandle) M_CURSORDATA->m_hCursor ) ;
652 else
653 ::SetCursor( * (CursHandle) M_CURSORDATA->m_hCursor ) ;
4f74e0d1 654#endif
e40298d5
JS
655 }
656 else
657 {
658 SetThemeCursor( kThemeArrowCursor ) ;
659 }
6239ee05 660#endif
e9576ca5
SC
661}
662
663wxCursor::~wxCursor()
664{
665}
666
667// Global cursor setting
668void wxSetCursor(const wxCursor& cursor)
669{
e40298d5 670 cursor.MacInstall() ;
e9576ca5 671}