1998-05-20 10:01:55 -04:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: cursor.h
|
|
|
|
// Purpose:
|
|
|
|
// Author: Robert Roebling
|
1998-10-26 05:56:58 -05:00
|
|
|
// Id: $Id$
|
|
|
|
// Copyright: (c) 1998 Robert Roebling
|
1998-12-09 12:30:17 -05:00
|
|
|
// Licence: wxWindows licence
|
1998-05-20 10:01:55 -04:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef __GTKCURSORH__
|
|
|
|
#define __GTKCURSORH__
|
|
|
|
|
|
|
|
#ifdef __GNUG__
|
|
|
|
#pragma interface
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "wx/defs.h"
|
|
|
|
#include "wx/object.h"
|
|
|
|
#include "wx/gdicmn.h"
|
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// wxCursor
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
class wxCursor: public wxObject
|
|
|
|
{
|
1999-11-22 14:44:25 -05:00
|
|
|
public:
|
1998-05-20 10:01:55 -04:00
|
|
|
|
1998-12-09 12:30:17 -05:00
|
|
|
wxCursor();
|
1998-07-04 11:17:59 -04:00
|
|
|
wxCursor( int cursorId );
|
1998-05-20 10:01:55 -04:00
|
|
|
wxCursor( const wxCursor &cursor );
|
2000-11-18 09:46:58 -05:00
|
|
|
wxCursor( const char bits[], int width, int height,
|
|
|
|
int hotSpotX=-1, int hotSpotY=-1,
|
|
|
|
const char maskBits[]=0, wxColour *fg=0, wxColour *bg=0 );
|
1998-12-09 12:30:17 -05:00
|
|
|
~wxCursor();
|
1998-05-20 10:01:55 -04:00
|
|
|
wxCursor& operator = ( const wxCursor& cursor );
|
1998-12-09 12:30:17 -05:00
|
|
|
bool operator == ( const wxCursor& cursor ) const;
|
|
|
|
bool operator != ( const wxCursor& cursor ) const;
|
|
|
|
bool Ok() const;
|
|
|
|
|
1999-11-22 14:44:25 -05:00
|
|
|
// implementation
|
|
|
|
|
1998-12-09 12:30:17 -05:00
|
|
|
GdkCursor *GetCursor() const;
|
1998-05-20 10:01:55 -04:00
|
|
|
|
1999-11-22 14:44:25 -05:00
|
|
|
private:
|
|
|
|
DECLARE_DYNAMIC_CLASS(wxCursor)
|
1998-05-20 10:01:55 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // __GTKCURSORH__
|