]> git.saurik.com Git - wxWidgets.git/blob - include/wx/msw/cursor.h
Added wxBackingFile and wxBackedInputStream.
[wxWidgets.git] / include / wx / msw / cursor.h
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: wx/msw/cursor.h
3 // Purpose: wxCursor class
4 // Author: Julian Smart
5 // Modified by:
6 // Created: 01/02/97
7 // RCS-ID: $Id$
8 // Copyright: (c) Julian Smart
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
11
12 #ifndef _WX_CURSOR_H_
13 #define _WX_CURSOR_H_
14
15 #include "wx/msw/gdiimage.h"
16
17 class WXDLLEXPORT wxImage;
18
19 // Cursor
20 class WXDLLEXPORT wxCursor : public wxGDIImage
21 {
22 public:
23 // constructors
24 wxCursor();
25 wxCursor(const wxImage& image);
26 wxCursor(const char bits[], int width, int height,
27 int hotSpotX = -1, int hotSpotY = -1,
28 const char maskBits[] = NULL);
29 wxCursor(const wxString& name,
30 long flags = wxBITMAP_TYPE_CUR_RESOURCE,
31 int hotSpotX = 0, int hotSpotY = 0);
32 wxCursor(int idCursor);
33 virtual ~wxCursor();
34
35 bool operator==(const wxCursor& cursor) const;
36 bool operator!=(const wxCursor& cursor) const
37 { return !(*this == cursor); }
38
39 // implementation only
40 void SetHCURSOR(WXHCURSOR cursor) { SetHandle((WXHANDLE)cursor); }
41 WXHCURSOR GetHCURSOR() const { return (WXHCURSOR)GetHandle(); }
42
43 protected:
44 virtual wxGDIImageRefData *CreateData() const;
45
46 private:
47 DECLARE_DYNAMIC_CLASS(wxCursor)
48 };
49
50 #endif
51 // _WX_CURSOR_H_