1998-05-20 14:01:55 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: cursor.h
|
|
|
|
// Purpose:
|
|
|
|
// Author: Robert Roebling
|
1998-10-26 10:56:58 +00:00
|
|
|
// Id: $Id$
|
|
|
|
// Copyright: (c) 1998 Robert Roebling
|
2004-05-23 20:53:33 +00:00
|
|
|
// Licence: wxWindows licence
|
1998-05-20 14:01:55 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2006-08-30 05:55:56 +00:00
|
|
|
#ifndef _WX_GTK_CURSOR_H_
|
|
|
|
#define _WX_GTK_CURSOR_H_
|
1998-05-20 14:01:55 +00:00
|
|
|
|
|
|
|
#include "wx/object.h"
|
|
|
|
|
2006-08-30 05:55:56 +00:00
|
|
|
class WXDLLIMPEXP_CORE wxColour;
|
|
|
|
class WXDLLIMPEXP_CORE wxImage;
|
2002-01-31 22:11:06 +00:00
|
|
|
|
1998-05-20 14:01:55 +00:00
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// wxCursor
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
2005-08-02 22:58:06 +00:00
|
|
|
class WXDLLIMPEXP_CORE wxCursor: public wxObject
|
1998-05-20 14:01:55 +00:00
|
|
|
{
|
1999-11-22 19:44:25 +00:00
|
|
|
public:
|
1998-05-20 14:01:55 +00:00
|
|
|
|
1998-12-09 17:30:17 +00:00
|
|
|
wxCursor();
|
1998-07-04 15:17:59 +00:00
|
|
|
wxCursor( int cursorId );
|
2002-01-31 22:11:06 +00:00
|
|
|
#if wxUSE_IMAGE
|
|
|
|
wxCursor( const wxImage & image );
|
|
|
|
#endif
|
2000-11-18 14:46:58 +00:00
|
|
|
wxCursor( const char bits[], int width, int height,
|
|
|
|
int hotSpotX=-1, int hotSpotY=-1,
|
2006-04-16 22:18:29 +00:00
|
|
|
const char maskBits[] = NULL, const wxColour *fg = NULL, const wxColour *bg = NULL );
|
2006-09-05 20:47:48 +00:00
|
|
|
virtual ~wxCursor();
|
2006-10-08 21:56:55 +00:00
|
|
|
bool Ok() const { return IsOk(); }
|
|
|
|
bool IsOk() const;
|
1998-12-09 17:30:17 +00:00
|
|
|
|
1999-11-22 19:44:25 +00:00
|
|
|
// implementation
|
|
|
|
|
1998-12-09 17:30:17 +00:00
|
|
|
GdkCursor *GetCursor() const;
|
1998-05-20 14:01:55 +00:00
|
|
|
|
1999-11-22 19:44:25 +00:00
|
|
|
private:
|
|
|
|
DECLARE_DYNAMIC_CLASS(wxCursor)
|
1998-05-20 14:01:55 +00:00
|
|
|
};
|
|
|
|
|
2006-08-30 05:55:56 +00:00
|
|
|
#endif // _WX_GTK_CURSOR_H_
|