+ virtual bool SaveFile( wxImage *image, wxOutputStream& stream, bool verbose=true );
+ virtual bool LoadFile( wxImage *image, wxInputStream& stream, bool verbose=true, int index=-1 );
+ virtual bool DoLoadFile( wxImage *image, wxInputStream& stream, bool verbose, int index );
+ virtual bool DoCanRead( wxInputStream& stream );
+ virtual int GetImageCount( wxInputStream& stream );
+#endif // wxUSE_STREAMS
+
+private:
+ DECLARE_DYNAMIC_CLASS(wxICOHandler)
+};
+
+
+// ----------------------------------------------------------------------------
+// wxCURHandler
+// ----------------------------------------------------------------------------
+
+class WXDLLEXPORT wxCURHandler : public wxICOHandler
+{
+public:
+ wxCURHandler()
+ {
+ m_name = _T("Windows cursor file");
+ m_extension = _T("cur");
+ m_type = wxBITMAP_TYPE_CUR;
+ m_mime = _T("image/x-cur");
+ };
+
+ // VS: This handler's meat is implemented inside wxICOHandler (the two
+ // formats are almost identical), but we hide this fact at
+ // the API level, since it is a mere implementation detail.