// wxCursorRefData
//-----------------------------------------------------------------------------
-class wxCursorRefData: public wxObjectRefData
+class wxCursorRefData : public wxGDIRefData
{
public:
wxCursorRefData(const wxBitmap& bmp = wxNullBitmap, int id = -1)
: m_id(id), m_bitmap(bmp) {}
+ virtual bool IsOk() const { return m_bitmap.IsOk(); }
+
int m_id;
wxBitmap m_bitmap;
};
#warning "FIXME"
}
-bool wxCursor::Ok() const
-{
- return m_refData && M_CURSOR->m_bitmap.Ok();
-}
-
-bool wxCursor::operator==(const wxCursor& cursor) const
-{
- if ( Ok() )
- {
- if ( !cursor.Ok() )
- return false;
- else if ( M_CURSOR->m_id != M_CURSOR_OF(cursor)->m_id )
- return false;
- else if ( M_CURSOR->m_id == -1 ) // non-stock cursor
- return (m_refData == cursor.m_refData);
- else
- return true; // IDs != -1 and are the same
- }
- else
- {
- return !cursor.Ok();
- }
-}
-
-wxObjectRefData *wxCursor::CreateRefData() const
+wxGDIRefData *wxCursor::CreateGDIRefData() const
{
return new wxCursorRefData;
}
-wxObjectRefData *wxCursor::CloneRefData(const wxObjectRefData *data) const
+wxGDIRefData *wxCursor::CloneGDIRefData(const wxGDIRefData *data) const
{
return new wxCursorRefData(*(wxCursorRefData *)data);
}