2003-03-21 21:56:04 -05:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
2006-10-17 10:44:52 -04:00
|
|
|
// Name: wx/cocoa/cursor.h
|
2003-03-21 21:56:04 -05:00
|
|
|
// Purpose: wxCursor class
|
|
|
|
// Author: David Elliott <dfe@cox.net>
|
|
|
|
// Modified by:
|
|
|
|
// Created: 2002/11/27
|
2006-10-17 10:44:52 -04:00
|
|
|
// RCS-ID: $Id$
|
2003-03-21 21:56:04 -05:00
|
|
|
// Copyright: (c) David Elliott
|
2006-10-17 10:44:52 -04:00
|
|
|
// Licence: wxWindows licence
|
2003-03-21 21:56:04 -05:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#ifndef _WX_COCOA_CURSOR_H_
|
|
|
|
#define _WX_COCOA_CURSOR_H_
|
|
|
|
|
|
|
|
#include "wx/bitmap.h"
|
|
|
|
|
2008-03-26 11:06:00 -04:00
|
|
|
class WXDLLIMPEXP_CORE wxCursorRefData : public wxGDIRefData
|
2003-03-21 21:56:04 -05:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
wxCursorRefData();
|
2006-09-05 16:47:48 -04:00
|
|
|
virtual ~wxCursorRefData();
|
2003-03-21 21:56:04 -05:00
|
|
|
|
|
|
|
protected:
|
2003-07-20 20:07:58 -04:00
|
|
|
int m_width, m_height;
|
2004-10-06 18:11:46 -04:00
|
|
|
WX_NSCursor m_hCursor;
|
2007-12-15 12:54:20 -05:00
|
|
|
|
|
|
|
friend class WXDLLIMPEXP_FWD_CORE wxBitmap;
|
|
|
|
friend class WXDLLIMPEXP_FWD_CORE wxCursor;
|
|
|
|
|
|
|
|
DECLARE_NO_COPY_CLASS(wxCursorRefData)
|
2003-03-21 21:56:04 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
#define M_CURSORDATA ((wxCursorRefData *)m_refData)
|
|
|
|
#define M_CURSORHANDLERDATA ((wxCursorRefData *)bitmap->m_refData)
|
|
|
|
|
|
|
|
// Cursor
|
2008-03-26 11:06:00 -04:00
|
|
|
class WXDLLIMPEXP_CORE wxCursor: public wxBitmap
|
2003-03-21 21:56:04 -05:00
|
|
|
{
|
|
|
|
public:
|
2007-12-15 12:54:20 -05:00
|
|
|
wxCursor();
|
2003-03-21 21:56:04 -05:00
|
|
|
|
2007-12-15 12:54:20 -05:00
|
|
|
wxCursor(const char bits[], int width, int height,
|
|
|
|
int hotSpotX = -1, int hotSpotY = -1,
|
|
|
|
const char maskBits[] = NULL);
|
2003-03-21 21:56:04 -05:00
|
|
|
|
2007-12-15 12:54:20 -05:00
|
|
|
wxCursor(const wxString& name, long flags = 0,
|
|
|
|
int hotSpotX = 0, int hotSpotY = 0);
|
2003-03-21 21:56:04 -05:00
|
|
|
|
2007-12-15 12:54:20 -05:00
|
|
|
wxCursor(int cursor_type);
|
|
|
|
virtual ~wxCursor();
|
2003-03-21 21:56:04 -05:00
|
|
|
|
2007-12-15 12:54:20 -05:00
|
|
|
// FIXME: operator==() is wrong!
|
|
|
|
bool operator==(const wxCursor& cursor) const { return m_refData == cursor.m_refData; }
|
|
|
|
bool operator!=(const wxCursor& cursor) const { return !(*this == cursor); }
|
2006-10-17 10:44:52 -04:00
|
|
|
|
2007-12-15 12:54:20 -05:00
|
|
|
WX_NSCursor GetNSCursor() const { return M_CURSORDATA ? M_CURSORDATA->m_hCursor : 0; }
|
2003-03-21 21:56:04 -05:00
|
|
|
|
2007-12-15 12:54:20 -05:00
|
|
|
DECLARE_DYNAMIC_CLASS(wxCursor)
|
2003-03-21 21:56:04 -05:00
|
|
|
};
|
|
|
|
|
2008-03-26 11:06:00 -04:00
|
|
|
extern WXDLLIMPEXP_CORE void wxSetCursor(const wxCursor& cursor);
|
2003-03-21 21:56:04 -05:00
|
|
|
|
2006-10-17 10:44:52 -04:00
|
|
|
#endif
|
|
|
|
// _WX_COCOA_CURSOR_H_
|