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