]> git.saurik.com Git - wxWidgets.git/blame_incremental - include/wx/gtk/cursor.h
wxaui multi-notebook now uses a tab art provider which allows for dynamically switcha...
[wxWidgets.git] / include / wx / gtk / cursor.h
... / ...
CommitLineData
1/////////////////////////////////////////////////////////////////////////////
2// Name: cursor.h
3// Purpose:
4// Author: Robert Roebling
5// Id: $Id$
6// Copyright: (c) 1998 Robert Roebling
7// Licence: wxWindows licence
8/////////////////////////////////////////////////////////////////////////////
9
10#ifndef _WX_GTK_CURSOR_H_
11#define _WX_GTK_CURSOR_H_
12
13#include "wx/object.h"
14
15class WXDLLIMPEXP_CORE wxColour;
16class WXDLLIMPEXP_CORE wxImage;
17
18//-----------------------------------------------------------------------------
19// wxCursor
20//-----------------------------------------------------------------------------
21
22class WXDLLIMPEXP_CORE wxCursor: public wxObject
23{
24public:
25
26 wxCursor();
27 wxCursor( int cursorId );
28#if wxUSE_IMAGE
29 wxCursor( const wxImage & image );
30#endif
31 wxCursor( const char bits[], int width, int height,
32 int hotSpotX=-1, int hotSpotY=-1,
33 const char maskBits[] = NULL, const wxColour *fg = NULL, const wxColour *bg = NULL );
34 virtual ~wxCursor();
35 bool operator == ( const wxCursor& cursor ) const;
36 bool operator != ( const wxCursor& cursor ) const;
37 bool Ok() const { return IsOk(); }
38 bool IsOk() const;
39
40 // implementation
41
42 GdkCursor *GetCursor() const;
43
44private:
45 DECLARE_DYNAMIC_CLASS(wxCursor)
46};
47
48#endif // _WX_GTK_CURSOR_H_