1998-05-20 10:01:55 -04:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
2006-01-22 21:28:01 -05:00
|
|
|
// Name: wx/gtk1/cursor.h
|
1998-05-20 10:01:55 -04:00
|
|
|
// Purpose:
|
|
|
|
// Author: Robert Roebling
|
1998-10-26 05:56:58 -05:00
|
|
|
// Id: $Id$
|
|
|
|
// Copyright: (c) 1998 Robert Roebling
|
2004-05-23 16:53:33 -04:00
|
|
|
// Licence: wxWindows licence
|
1998-05-20 10:01:55 -04:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#ifndef __GTKCURSORH__
|
|
|
|
#define __GTKCURSORH__
|
|
|
|
|
2007-12-15 12:54:20 -05:00
|
|
|
#include "wx/gdiobj.h"
|
1998-05-20 10:01:55 -04:00
|
|
|
#include "wx/gdicmn.h"
|
|
|
|
|
2002-01-31 17:11:06 -05:00
|
|
|
#if wxUSE_IMAGE
|
|
|
|
#include "wx/image.h"
|
|
|
|
#endif
|
|
|
|
|
1998-05-20 10:01:55 -04:00
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// wxCursor
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
2007-12-15 12:54:20 -05:00
|
|
|
class WXDLLIMPEXP_CORE wxCursor : public wxGDIObject
|
1998-05-20 10:01:55 -04:00
|
|
|
{
|
1999-11-22 14:44:25 -05:00
|
|
|
public:
|
1998-12-09 12:30:17 -05:00
|
|
|
wxCursor();
|
2008-09-25 13:56:07 -04:00
|
|
|
wxCursor(wxStockCursor id) { InitFromStock(id); }
|
|
|
|
#if WXWIN_COMPATIBILITY_2_8
|
|
|
|
wxCursor(int id) { InitFromStock((wxStockCursor)id); }
|
|
|
|
#endif
|
2002-01-31 17:11:06 -05:00
|
|
|
#if wxUSE_IMAGE
|
|
|
|
wxCursor( const wxImage & image );
|
|
|
|
#endif
|
2000-11-18 09:46:58 -05:00
|
|
|
wxCursor( const char bits[], int width, int height,
|
|
|
|
int hotSpotX=-1, int hotSpotY=-1,
|
2008-09-25 13:56:07 -04:00
|
|
|
const char maskBits[] = NULL,
|
|
|
|
const wxColour* fg = NULL, const wxColour* bg = NULL);
|
|
|
|
|
|
|
|
/* WARNING: the following ctor is missing:
|
|
|
|
|
|
|
|
wxCursor(const wxString& name,
|
|
|
|
wxBitmapType type = wxCURSOR_DEFAULT_TYPE,
|
|
|
|
int hotSpotX = 0, int hotSpotY = 0);
|
|
|
|
*/
|
|
|
|
|
2006-09-05 16:47:48 -04:00
|
|
|
virtual ~wxCursor();
|
1998-12-09 12:30:17 -05:00
|
|
|
|
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
|
|
|
|
2007-12-15 12:54:20 -05:00
|
|
|
protected:
|
2008-09-25 13:56:07 -04:00
|
|
|
void InitFromStock(wxStockCursor);
|
|
|
|
|
2007-12-15 12:54:20 -05:00
|
|
|
virtual wxGDIRefData *CreateGDIRefData() const;
|
|
|
|
virtual wxGDIRefData *CloneGDIRefData(const wxGDIRefData *data) const;
|
|
|
|
|
1999-11-22 14:44:25 -05:00
|
|
|
private:
|
|
|
|
DECLARE_DYNAMIC_CLASS(wxCursor)
|
1998-05-20 10:01:55 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // __GTKCURSORH__
|