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