X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/b5dbe15d0bacde245539f54c4d97af6b4696f01f..90230407984b0bbe9d6ed6ae6dc2376700ef1d42:/include/wx/dfb/cursor.h?ds=sidebyside diff --git a/include/wx/dfb/cursor.h b/include/wx/dfb/cursor.h index a56b1f1afe..0a22bb67b8 100644 --- a/include/wx/dfb/cursor.h +++ b/include/wx/dfb/cursor.h @@ -11,7 +11,7 @@ #ifndef _WX_DFB_CURSOR_H_ #define _WX_DFB_CURSOR_H_ -#include "wx/object.h" +#include "wx/gdiobj.h" #include "wx/gdicmn.h" class WXDLLIMPEXP_FWD_CORE wxBitmap; @@ -20,28 +20,27 @@ class WXDLLIMPEXP_FWD_CORE wxBitmap; // wxCursor //----------------------------------------------------------------------------- -class WXDLLIMPEXP_CORE wxCursor: public wxObject +class WXDLLIMPEXP_CORE wxCursor : public wxGDIObject { public: wxCursor() {} - wxCursor(int cursorId); - wxCursor(const char bits[], int width, int height, - int hotSpotX=-1, int hotSpotY=-1, - const char maskBits[]=0, wxColour *fg=0, wxColour *bg=0); + wxCursor(wxStockCursor id) { InitFromStock(id); } +#if WXWIN_COMPATIBILITY_2_8 + wxCursor(int id) { InitFromStock((wxStockCursor)id); } +#endif wxCursor(const wxString& name, - long flags = wxBITMAP_TYPE_CUR_RESOURCE, + wxBitmapType type = wxCURSOR_DEFAULT_TYPE, int hotSpotX = 0, int hotSpotY = 0); - bool Ok() const { return IsOk(); } - bool IsOk() const; - // implementation wxBitmap GetBitmap() const; protected: + void InitFromStock(wxStockCursor); + // ref counting code - virtual wxObjectRefData *CreateRefData() const; - virtual wxObjectRefData *CloneRefData(const wxObjectRefData *data) const; + virtual wxGDIRefData *CreateGDIRefData() const; + virtual wxGDIRefData *CloneGDIRefData(const wxGDIRefData *data) const; DECLARE_DYNAMIC_CLASS(wxCursor) };