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"
|
|
|
|
|
2003-07-20 20:07:58 -04:00
|
|
|
class WXDLLEXPORT wxCursorRefData: public wxObjectRefData
|
2003-03-21 21:56:04 -05:00
|
|
|
{
|
|
|
|
DECLARE_NO_COPY_CLASS(wxCursorRefData)
|
2006-10-17 10:44:52 -04:00
|
|
|
|
2003-03-21 21:56:04 -05:00
|
|
|
friend class WXDLLEXPORT wxBitmap;
|
|
|
|
friend class WXDLLEXPORT wxCursor;
|
|
|
|
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;
|
2003-03-21 21:56:04 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
#define M_CURSORDATA ((wxCursorRefData *)m_refData)
|
|
|
|
#define M_CURSORHANDLERDATA ((wxCursorRefData *)bitmap->m_refData)
|
|
|
|
|
|
|
|
// Cursor
|
|
|
|
class WXDLLEXPORT wxCursor: public wxBitmap
|
|
|
|
{
|
|
|
|
DECLARE_DYNAMIC_CLASS(wxCursor)
|
|
|
|
|
|
|
|
public:
|
|
|
|
wxCursor();
|
|
|
|
|
|
|
|
wxCursor(const char bits[], int width, int height, int hotSpotX = -1, int hotSpotY = -1,
|
|
|
|
const char maskBits[] = NULL);
|
|
|
|
|
|
|
|
wxCursor(const wxString& name, long flags = 0,
|
|
|
|
int hotSpotX = 0, int hotSpotY = 0);
|
|
|
|
|
|
|
|
wxCursor(int cursor_type);
|
2006-09-05 16:47:48 -04:00
|
|
|
virtual ~wxCursor();
|
2003-03-21 21:56:04 -05:00
|
|
|
|
2006-10-08 17:56:55 -04:00
|
|
|
virtual bool Ok() const { return IsOk(); }
|
|
|
|
virtual bool IsOk() const { return m_refData ; }
|
2003-03-21 21:56:04 -05:00
|
|
|
|
2005-09-24 17:43:15 -04:00
|
|
|
inline bool operator == (const wxCursor& cursor) const { return m_refData == cursor.m_refData; }
|
|
|
|
inline bool operator != (const wxCursor& cursor) const { return m_refData != cursor.m_refData; }
|
2006-10-17 10:44:52 -04:00
|
|
|
|
2004-10-06 18:11:46 -04:00
|
|
|
inline WX_NSCursor GetNSCursor() const
|
2006-10-17 10:44:52 -04:00
|
|
|
{
|
2004-10-06 18:11:46 -04:00
|
|
|
return (M_CURSORDATA ? M_CURSORDATA->m_hCursor : 0);
|
|
|
|
}
|
2003-03-21 21:56:04 -05:00
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
extern WXDLLEXPORT void wxSetCursor(const wxCursor& cursor);
|
|
|
|
|
2006-10-17 10:44:52 -04:00
|
|
|
#endif
|
|
|
|
// _WX_COCOA_CURSOR_H_
|