X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/8907154c1a8a6882c6797d1f16393ddfb23e7f3a..fc39cf729508dc79e63394a46fcd3d575aebf426:/include/wx/msw/cursor.h diff --git a/include/wx/msw/cursor.h b/include/wx/msw/cursor.h index 27c9bedc85..4ed0a73b7f 100644 --- a/include/wx/msw/cursor.h +++ b/include/wx/msw/cursor.h @@ -14,32 +14,24 @@ #include "wx/msw/gdiimage.h" -class WXDLLEXPORT wxImage; +class WXDLLIMPEXP_FWD_CORE wxImage; // Cursor -class WXDLLEXPORT wxCursor : public wxGDIImage +class WXDLLIMPEXP_CORE wxCursor : public wxGDIImage { public: // constructors wxCursor(); - wxCursor(const wxCursor& cursor) : wxGDIImage(cursor) { Ref(cursor); } wxCursor(const wxImage& image); wxCursor(const char bits[], int width, int height, int hotSpotX = -1, int hotSpotY = -1, const char maskBits[] = NULL); wxCursor(const wxString& name, - long flags = wxBITMAP_TYPE_CUR_RESOURCE, + wxBitmapType flags = wxBITMAP_TYPE_CUR_RESOURCE, int hotSpotX = 0, int hotSpotY = 0); - wxCursor(int idCursor); + wxCursor(wxStockCursor idCursor); virtual ~wxCursor(); - wxCursor& operator=(const wxCursor& cursor) - { if (*this == cursor) return (*this); Ref(cursor); return *this; } - - bool operator==(const wxCursor& cursor) const; - bool operator!=(const wxCursor& cursor) const - { return !(*this == cursor); } - // implementation only void SetHCURSOR(WXHCURSOR cursor) { SetHandle((WXHANDLE)cursor); } WXHCURSOR GetHCURSOR() const { return (WXHCURSOR)GetHandle(); }