]> git.saurik.com Git - wxWidgets.git/blob - include/wx/cocoa/cursor.h
wxMGL revitalised with OpenWatcom.
[wxWidgets.git] / include / wx / cocoa / cursor.h
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: cursor.h
3 // Purpose: wxCursor class
4 // Author: David Elliott <dfe@cox.net>
5 // Modified by:
6 // Created: 2002/11/27
7 // RCS-ID:
8 // Copyright: (c) David Elliott
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
11
12 #ifndef _WX_COCOA_CURSOR_H_
13 #define _WX_COCOA_CURSOR_H_
14
15 #include "wx/bitmap.h"
16
17 class WXDLLEXPORT wxCursorRefData: public wxObjectRefData
18 {
19 DECLARE_NO_COPY_CLASS(wxCursorRefData)
20
21 friend class WXDLLEXPORT wxBitmap;
22 friend class WXDLLEXPORT wxCursor;
23 public:
24 wxCursorRefData();
25 ~wxCursorRefData();
26
27 protected:
28 int m_width, m_height;
29 WX_NSCursor m_hCursor;
30 };
31
32 #define M_CURSORDATA ((wxCursorRefData *)m_refData)
33 #define M_CURSORHANDLERDATA ((wxCursorRefData *)bitmap->m_refData)
34
35 // Cursor
36 class WXDLLEXPORT wxCursor: public wxBitmap
37 {
38 DECLARE_DYNAMIC_CLASS(wxCursor)
39
40 public:
41 wxCursor();
42
43 // Copy constructors
44 wxCursor(const wxCursor& cursor)
45 : wxBitmap()
46 { Ref(cursor); }
47
48 wxCursor(const char bits[], int width, int height, int hotSpotX = -1, int hotSpotY = -1,
49 const char maskBits[] = NULL);
50
51 wxCursor(const wxString& name, long flags = 0,
52 int hotSpotX = 0, int hotSpotY = 0);
53
54 wxCursor(int cursor_type);
55 ~wxCursor();
56
57 virtual bool Ok() const { return m_refData ; }
58
59 inline wxCursor& operator = (const wxCursor& cursor) { if (*this == cursor) return (*this); Ref(cursor); return *this; }
60 inline bool operator == (const wxCursor& cursor) const { return m_refData == cursor.m_refData; }
61 inline bool operator != (const wxCursor& cursor) const { return m_refData != cursor.m_refData; }
62
63 inline WX_NSCursor GetNSCursor() const
64 {
65 return (M_CURSORDATA ? M_CURSORDATA->m_hCursor : 0);
66 }
67
68 };
69
70 extern WXDLLEXPORT void wxSetCursor(const wxCursor& cursor);
71
72 #endif // _WX_COCOA_CURSOR_H_