2006-08-27 09:42:42 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: wx/dfb/cursor.h
|
|
|
|
// Purpose: wxCursor declaration
|
|
|
|
// Author: Vaclav Slavik
|
|
|
|
// Created: 2006-08-08
|
|
|
|
// Copyright: (c) 2006 REA Elektronik GmbH
|
|
|
|
// Licence: wxWindows licence
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#ifndef _WX_DFB_CURSOR_H_
|
|
|
|
#define _WX_DFB_CURSOR_H_
|
|
|
|
|
2007-12-15 17:54:20 +00:00
|
|
|
#include "wx/gdiobj.h"
|
2006-08-27 09:42:42 +00:00
|
|
|
#include "wx/gdicmn.h"
|
|
|
|
|
2007-07-09 10:09:52 +00:00
|
|
|
class WXDLLIMPEXP_FWD_CORE wxBitmap;
|
2006-08-27 09:42:42 +00:00
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// wxCursor
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
2007-12-15 17:54:20 +00:00
|
|
|
class WXDLLIMPEXP_CORE wxCursor : public wxGDIObject
|
2006-08-27 09:42:42 +00:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
wxCursor() {}
|
2008-09-25 17:56:07 +00:00
|
|
|
wxCursor(wxStockCursor id) { InitFromStock(id); }
|
|
|
|
#if WXWIN_COMPATIBILITY_2_8
|
|
|
|
wxCursor(int id) { InitFromStock((wxStockCursor)id); }
|
|
|
|
#endif
|
2006-08-27 09:42:42 +00:00
|
|
|
wxCursor(const wxString& name,
|
2008-09-25 17:56:07 +00:00
|
|
|
wxBitmapType type = wxCURSOR_DEFAULT_TYPE,
|
2006-08-27 09:42:42 +00:00
|
|
|
int hotSpotX = 0, int hotSpotY = 0);
|
|
|
|
|
|
|
|
// implementation
|
|
|
|
wxBitmap GetBitmap() const;
|
|
|
|
|
|
|
|
protected:
|
2008-09-25 17:56:07 +00:00
|
|
|
void InitFromStock(wxStockCursor);
|
|
|
|
|
2006-08-27 09:42:42 +00:00
|
|
|
// ref counting code
|
2007-12-15 17:54:20 +00:00
|
|
|
virtual wxGDIRefData *CreateGDIRefData() const;
|
|
|
|
virtual wxGDIRefData *CloneGDIRefData(const wxGDIRefData *data) const;
|
2006-08-27 09:42:42 +00:00
|
|
|
|
|
|
|
DECLARE_DYNAMIC_CLASS(wxCursor)
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // _WX_DFB_CURSOR_H_
|