]>
Commit | Line | Data |
---|---|---|
2bda0e17 | 1 | ///////////////////////////////////////////////////////////////////////////// |
eff4ffbf | 2 | // Name: src/msw/cursor.cpp |
2bda0e17 KB |
3 | // Purpose: wxCursor class |
4 | // Author: Julian Smart | |
5 | // Modified by: | |
6 | // Created: 01/02/97 | |
7 | // RCS-ID: $Id$ | |
eff4ffbf | 8 | // Copyright: (c) 1997-2003 Julian Smart and Vadim Zeitlin |
65571936 | 9 | // Licence: wxWindows licence |
2bda0e17 KB |
10 | ///////////////////////////////////////////////////////////////////////////// |
11 | ||
0d0512bd VZ |
12 | // ============================================================================ |
13 | // declarations | |
14 | // ============================================================================ | |
15 | ||
16 | // ---------------------------------------------------------------------------- | |
17 | // headers | |
18 | // ---------------------------------------------------------------------------- | |
19 | ||
2bda0e17 KB |
20 | // For compilers that support precompilation, includes "wx.h". |
21 | #include "wx/wxprec.h" | |
22 | ||
23 | #ifdef __BORLANDC__ | |
0d0512bd | 24 | #pragma hdrstop |
2bda0e17 KB |
25 | #endif |
26 | ||
c8326d64 WS |
27 | #include "wx/cursor.h" |
28 | ||
2bda0e17 | 29 | #ifndef WX_PRECOMP |
0d0512bd VZ |
30 | #include "wx/utils.h" |
31 | #include "wx/app.h" | |
fef15b42 | 32 | #include "wx/bitmap.h" |
0d0512bd | 33 | #include "wx/icon.h" |
ed39ff57 | 34 | #include "wx/settings.h" |
51d5ec54 | 35 | #include "wx/intl.h" |
155ecd4c | 36 | #include "wx/image.h" |
02761f6c | 37 | #include "wx/module.h" |
2bda0e17 KB |
38 | #endif |
39 | ||
40 | #include "wx/msw/private.h" | |
a6c2e2c7 | 41 | #include "wx/msw/missing.h" // IDC_HAND |
eff4ffbf | 42 | |
eff4ffbf VZ |
43 | // define functions missing in MicroWin |
44 | #ifdef __WXMICROWIN__ | |
45 | static inline void DestroyCursor(HCURSOR) { } | |
46 | static inline void SetCursor(HCURSOR) { } | |
47 | #endif // __WXMICROWIN__ | |
48 | ||
49 | // ---------------------------------------------------------------------------- | |
50 | // private classes | |
51 | // ---------------------------------------------------------------------------- | |
52 | ||
53 | class WXDLLEXPORT wxCursorRefData : public wxGDIImageRefData | |
54 | { | |
55 | public: | |
56 | // the second parameter is used to tell us to delete the cursor when we're | |
57 | // done with it (normally we shouldn't call DestroyCursor() this is why it | |
58 | // doesn't happen by default) | |
59 | wxCursorRefData(HCURSOR hcursor = 0, bool takeOwnership = false); | |
60 | ||
61 | virtual ~wxCursorRefData() { Free(); } | |
62 | ||
63 | virtual void Free(); | |
64 | ||
65 | ||
66 | // return the size of the standard cursor: notice that the system only | |
67 | // supports the cursors of this size | |
68 | static wxCoord GetStandardWidth(); | |
69 | static wxCoord GetStandardHeight(); | |
70 | ||
71 | private: | |
72 | bool m_destroyCursor; | |
73 | ||
74 | // standard cursor size, computed on first use | |
75 | static wxSize ms_sizeStd; | |
76 | }; | |
77 | ||
0d0512bd VZ |
78 | // ---------------------------------------------------------------------------- |
79 | // wxWin macros | |
80 | // ---------------------------------------------------------------------------- | |
81 | ||
621b3e21 | 82 | IMPLEMENT_DYNAMIC_CLASS(wxCursor, wxGDIObject) |
bfbd6dc1 VZ |
83 | |
84 | // ---------------------------------------------------------------------------- | |
85 | // globals | |
86 | // ---------------------------------------------------------------------------- | |
87 | ||
88 | // Current cursor, in order to hang on to cursor handle when setting the cursor | |
89 | // globally | |
90 | static wxCursor *gs_globalCursor = NULL; | |
91 | ||
92 | // ---------------------------------------------------------------------------- | |
93 | // private classes | |
94 | // ---------------------------------------------------------------------------- | |
95 | ||
96 | class wxCursorModule : public wxModule | |
97 | { | |
98 | public: | |
99 | virtual bool OnInit() | |
100 | { | |
101 | gs_globalCursor = new wxCursor; | |
102 | ||
02b7b6b0 | 103 | return true; |
bfbd6dc1 VZ |
104 | } |
105 | ||
106 | virtual void OnExit() | |
107 | { | |
108 | delete gs_globalCursor; | |
109 | gs_globalCursor = (wxCursor *)NULL; | |
110 | } | |
111 | }; | |
112 | ||
113 | // ============================================================================ | |
114 | // implementation | |
115 | // ============================================================================ | |
2bda0e17 | 116 | |
0d0512bd VZ |
117 | // ---------------------------------------------------------------------------- |
118 | // wxCursorRefData | |
119 | // ---------------------------------------------------------------------------- | |
120 | ||
eff4ffbf VZ |
121 | wxSize wxCursorRefData::ms_sizeStd; |
122 | ||
123 | wxCoord wxCursorRefData::GetStandardWidth() | |
124 | { | |
125 | if ( !ms_sizeStd.x ) | |
126 | ms_sizeStd.x = wxSystemSettings::GetMetric(wxSYS_CURSOR_X); | |
127 | ||
128 | return ms_sizeStd.x; | |
129 | } | |
130 | ||
131 | wxCoord wxCursorRefData::GetStandardHeight() | |
2bda0e17 | 132 | { |
eff4ffbf VZ |
133 | if ( !ms_sizeStd.y ) |
134 | ms_sizeStd.y = wxSystemSettings::GetMetric(wxSYS_CURSOR_Y); | |
135 | ||
136 | return ms_sizeStd.y; | |
137 | } | |
138 | ||
139 | wxCursorRefData::wxCursorRefData(HCURSOR hcursor, bool destroy) | |
140 | { | |
141 | m_hCursor = (WXHCURSOR)hcursor; | |
142 | ||
143 | if ( m_hCursor ) | |
144 | { | |
145 | m_width = GetStandardWidth(); | |
146 | m_height = GetStandardHeight(); | |
147 | } | |
0d0512bd | 148 | |
eff4ffbf | 149 | m_destroyCursor = destroy; |
2bda0e17 KB |
150 | } |
151 | ||
0d0512bd | 152 | void wxCursorRefData::Free() |
2bda0e17 | 153 | { |
032af30f VZ |
154 | if ( m_hCursor ) |
155 | { | |
7f0586ef | 156 | #ifndef __WXWINCE__ |
032af30f VZ |
157 | if ( m_destroyCursor ) |
158 | ::DestroyCursor((HCURSOR)m_hCursor); | |
7f0586ef | 159 | #endif |
032af30f VZ |
160 | |
161 | m_hCursor = 0; | |
162 | } | |
2bda0e17 KB |
163 | } |
164 | ||
0d0512bd | 165 | // ---------------------------------------------------------------------------- |
2bda0e17 | 166 | // Cursors |
0d0512bd VZ |
167 | // ---------------------------------------------------------------------------- |
168 | ||
169 | wxCursor::wxCursor() | |
2bda0e17 KB |
170 | { |
171 | } | |
172 | ||
461dae94 | 173 | #if wxUSE_IMAGE |
eff4ffbf | 174 | wxCursor::wxCursor(const wxImage& image) |
bff4ec63 | 175 | { |
eff4ffbf VZ |
176 | // image has to be of the standard cursor size, otherwise we won't be able |
177 | // to create it | |
178 | const int w = wxCursorRefData::GetStandardWidth(); | |
179 | const int h = wxCursorRefData::GetStandardHeight(); | |
180 | ||
b737ad10 RR |
181 | int hotSpotX = image.GetOptionInt(wxIMAGE_OPTION_CUR_HOTSPOT_X); |
182 | int hotSpotY = image.GetOptionInt(wxIMAGE_OPTION_CUR_HOTSPOT_Y); | |
183 | int image_w = image.GetWidth(); | |
184 | int image_h = image.GetHeight(); | |
eff4ffbf | 185 | |
b737ad10 RR |
186 | wxASSERT_MSG( hotSpotX >= 0 && hotSpotX < image_w && |
187 | hotSpotY >= 0 && hotSpotY < image_h, | |
7fd328a3 | 188 | _T("invalid cursor hot spot coordinates") ); |
eff4ffbf | 189 | |
b737ad10 RR |
190 | wxImage imageSized(image); // final image of correct size |
191 | ||
192 | // if image is too small then place it in the center, resize it if too big | |
193 | if ((w > image_w) && (h > image_h)) | |
194 | { | |
195 | wxPoint offset((w - image_w)/2, (h - image_h)/2); | |
196 | hotSpotX = hotSpotX + offset.x; | |
197 | hotSpotY = hotSpotY + offset.y; | |
198 | ||
199 | imageSized = image.Size(wxSize(w, h), offset); | |
200 | } | |
201 | else if ((w != image_w) || (h != image_h)) | |
202 | { | |
ccbb33c9 JS |
203 | hotSpotX = int(hotSpotX * double(w) / double(image_w)); |
204 | hotSpotY = int(hotSpotY * double(h) / double(image_h)); | |
b737ad10 RR |
205 | |
206 | imageSized = image.Scale(w, h); | |
207 | } | |
208 | ||
ccbb33c9 | 209 | HCURSOR hcursor = wxBitmapToHCURSOR( wxBitmap(imageSized), |
b737ad10 RR |
210 | hotSpotX, hotSpotY ); |
211 | ||
eff4ffbf VZ |
212 | if ( !hcursor ) |
213 | { | |
7fd328a3 VZ |
214 | wxLogWarning(_("Failed to create cursor.")); |
215 | return; | |
eff4ffbf | 216 | } |
7fd328a3 VZ |
217 | |
218 | m_refData = new wxCursorRefData(hcursor, true /* delete it later */); | |
bff4ec63 | 219 | } |
c7c441cc | 220 | #endif // wxUSE_IMAGE |
bff4ec63 | 221 | |
eff4ffbf | 222 | // MicroWin doesn't have support needed for the other ctors |
04ef50df | 223 | #ifdef __WXMICROWIN__ |
2bda0e17 | 224 | |
0ef5b1da | 225 | wxCursor::InitFromStock(wxStockCursor WXUNUSED(cursor_type)) |
eff4ffbf VZ |
226 | { |
227 | } | |
228 | ||
229 | #else // !__WXMICROWIN__ | |
230 | ||
231 | wxCursor::wxCursor(const wxString& filename, | |
dd021ce2 | 232 | wxBitmapType kind, |
eff4ffbf VZ |
233 | int hotSpotX, |
234 | int hotSpotY) | |
235 | { | |
236 | HCURSOR hcursor; | |
237 | switch ( kind ) | |
0d0512bd | 238 | { |
eff4ffbf | 239 | case wxBITMAP_TYPE_CUR_RESOURCE: |
e0a050e3 | 240 | hcursor = ::LoadCursor(wxGetInstance(), filename.fn_str()); |
eff4ffbf VZ |
241 | break; |
242 | ||
7f0586ef | 243 | #ifndef __WXWINCE__ |
eff4ffbf | 244 | case wxBITMAP_TYPE_CUR: |
e0a050e3 | 245 | hcursor = ::LoadCursorFromFile(filename.fn_str()); |
eff4ffbf | 246 | break; |
7f0586ef | 247 | #endif |
eff4ffbf | 248 | |
677a9e28 | 249 | case wxBITMAP_TYPE_ICO: |
7fd328a3 VZ |
250 | hcursor = wxBitmapToHCURSOR |
251 | ( | |
252 | wxIcon(filename, wxBITMAP_TYPE_ICO), | |
253 | hotSpotX, | |
254 | hotSpotY | |
255 | ); | |
eff4ffbf VZ |
256 | break; |
257 | ||
258 | case wxBITMAP_TYPE_BMP: | |
7fd328a3 VZ |
259 | hcursor = wxBitmapToHCURSOR |
260 | ( | |
261 | wxBitmap(filename, wxBITMAP_TYPE_BMP), | |
262 | hotSpotX, | |
263 | hotSpotY | |
264 | ); | |
eff4ffbf VZ |
265 | break; |
266 | ||
267 | default: | |
0ef5b1da | 268 | wxLogError( _T("unknown cursor resource type '%d'"), kind ); |
eff4ffbf VZ |
269 | |
270 | hcursor = NULL; | |
0d0512bd | 271 | } |
eff4ffbf VZ |
272 | |
273 | if ( hcursor ) | |
0d0512bd | 274 | { |
eff4ffbf | 275 | m_refData = new wxCursorRefData(hcursor, true /* delete it later */); |
eff4ffbf | 276 | } |
2bda0e17 KB |
277 | } |
278 | ||
7da60d7c | 279 | // Cursors by stock number |
0ef5b1da | 280 | void wxCursor::InitFromStock(wxStockCursor idCursor) |
7da60d7c | 281 | { |
1c6f2414 WS |
282 | // all wxWidgets standard cursors |
283 | static const struct StdCursor | |
284 | { | |
285 | // is this a standard Windows cursor? | |
286 | bool isStd; | |
287 | ||
288 | // the cursor name or id | |
289 | LPCTSTR name; | |
290 | } stdCursors[] = | |
291 | { | |
292 | { true, NULL }, // wxCURSOR_NONE | |
293 | { true, IDC_ARROW }, // wxCURSOR_ARROW | |
294 | { false, _T("WXCURSOR_RIGHT_ARROW") }, // wxCURSOR_RIGHT_ARROW | |
295 | { false, _T("WXCURSOR_BULLSEYE") }, // wxCURSOR_BULLSEYE | |
296 | { true, IDC_ARROW }, // WXCURSOR_CHAR | |
c8326d64 | 297 | |
27e7e859 JS |
298 | // Displays as an I-beam on XP, so use a cursor file |
299 | // { true, IDC_CROSS }, // WXCURSOR_CROSS | |
300 | { false, _T("WXCURSOR_CROSS") }, // WXCURSOR_CROSS | |
fe384096 RD |
301 | |
302 | // See special handling below for wxCURSOR_HAND | |
303 | // { false, _T("WXCURSOR_HAND") }, // wxCURSOR_HAND | |
304 | { true, IDC_HAND }, // wxCURSOR_HAND | |
c8326d64 | 305 | |
1c6f2414 WS |
306 | { true, IDC_IBEAM }, // WXCURSOR_IBEAM |
307 | { true, IDC_ARROW }, // WXCURSOR_LEFT_BUTTON | |
308 | { false, _T("WXCURSOR_MAGNIFIER") }, // wxCURSOR_MAGNIFIER | |
309 | { true, IDC_ARROW }, // WXCURSOR_MIDDLE_BUTTON | |
310 | { true, IDC_NO }, // WXCURSOR_NO_ENTRY | |
311 | { false, _T("WXCURSOR_PBRUSH") }, // wxCURSOR_PAINT_BRUSH | |
312 | { false, _T("WXCURSOR_PENCIL") }, // wxCURSOR_PENCIL | |
313 | { false, _T("WXCURSOR_PLEFT") }, // wxCURSOR_POINT_LEFT | |
314 | { false, _T("WXCURSOR_PRIGHT") }, // wxCURSOR_POINT_RIGHT | |
315 | { true, IDC_HELP }, // WXCURSOR_QUESTION_ARROW | |
316 | { true, IDC_ARROW }, // WXCURSOR_RIGHT_BUTTON | |
317 | { true, IDC_SIZENESW }, // WXCURSOR_SIZENESW | |
318 | { true, IDC_SIZENS }, // WXCURSOR_SIZENS | |
319 | { true, IDC_SIZENWSE }, // WXCURSOR_SIZENWSE | |
320 | { true, IDC_SIZEWE }, // WXCURSOR_SIZEWE | |
321 | { true, IDC_SIZEALL }, // WXCURSOR_SIZING | |
322 | { false, _T("WXCURSOR_PBRUSH") }, // wxCURSOR_SPRAYCAN | |
323 | { true, IDC_WAIT }, // WXCURSOR_WAIT | |
97000852 | 324 | { true, IDC_WAIT }, // WXCURSOR_WATCH |
1c6f2414 WS |
325 | { false, _T("WXCURSOR_BLANK") }, // wxCURSOR_BLANK |
326 | { true, IDC_APPSTARTING }, // wxCURSOR_ARROWWAIT | |
327 | ||
328 | // no entry for wxCURSOR_MAX | |
329 | }; | |
330 | ||
331 | wxCOMPILE_TIME_ASSERT( WXSIZEOF(stdCursors) == wxCURSOR_MAX, | |
332 | CursorsIdArrayMismatch ); | |
333 | ||
eff4ffbf VZ |
334 | wxCHECK_RET( idCursor > 0 && (size_t)idCursor < WXSIZEOF(stdCursors), |
335 | _T("invalid cursor id in wxCursor() ctor") ); | |
336 | ||
337 | const StdCursor& stdCursor = stdCursors[idCursor]; | |
fe384096 | 338 | bool deleteLater = !stdCursor.isStd; |
eff4ffbf VZ |
339 | |
340 | HCURSOR hcursor = ::LoadCursor(stdCursor.isStd ? NULL : wxGetInstance(), | |
341 | stdCursor.name); | |
342 | ||
fe384096 RD |
343 | // IDC_HAND may not be available on some versions of Windows. |
344 | if ( !hcursor && idCursor == wxCURSOR_HAND) | |
345 | { | |
346 | hcursor = ::LoadCursor(wxGetInstance(), _T("WXCURSOR_HAND")); | |
347 | deleteLater = true; | |
348 | } | |
c8326d64 | 349 | |
eff4ffbf | 350 | if ( !hcursor ) |
2bda0e17 | 351 | { |
eff4ffbf | 352 | wxLogLastError(_T("LoadCursor")); |
2bda0e17 | 353 | } |
eff4ffbf | 354 | else |
15dadf31 | 355 | { |
fe384096 | 356 | m_refData = new wxCursorRefData(hcursor, deleteLater); |
15dadf31 | 357 | } |
2bda0e17 KB |
358 | } |
359 | ||
eff4ffbf VZ |
360 | #endif // __WXMICROWIN__/!__WXMICROWIN__ |
361 | ||
0d0512bd | 362 | wxCursor::~wxCursor() |
2bda0e17 | 363 | { |
2bda0e17 KB |
364 | } |
365 | ||
eff4ffbf VZ |
366 | // ---------------------------------------------------------------------------- |
367 | // other wxCursor functions | |
368 | // ---------------------------------------------------------------------------- | |
369 | ||
eff4ffbf VZ |
370 | wxGDIImageRefData *wxCursor::CreateData() const |
371 | { | |
372 | return new wxCursorRefData; | |
373 | } | |
374 | ||
0d0512bd | 375 | // ---------------------------------------------------------------------------- |
2bda0e17 | 376 | // Global cursor setting |
0d0512bd VZ |
377 | // ---------------------------------------------------------------------------- |
378 | ||
bfbd6dc1 | 379 | const wxCursor *wxGetGlobalCursor() |
2bda0e17 | 380 | { |
bfbd6dc1 VZ |
381 | return gs_globalCursor; |
382 | } | |
2bda0e17 | 383 | |
bfbd6dc1 VZ |
384 | void wxSetCursor(const wxCursor& cursor) |
385 | { | |
386 | if ( cursor.Ok() ) | |
6bf57206 | 387 | { |
bfbd6dc1 | 388 | ::SetCursor(GetHcursorOf(cursor)); |
6bf57206 | 389 | |
bfbd6dc1 VZ |
390 | if ( gs_globalCursor ) |
391 | *gs_globalCursor = cursor; | |
6bf57206 | 392 | } |
2bda0e17 | 393 | } |