| 1 | /////////////////////////////////////////////////////////////////////////////// |
| 2 | // Name: msw/ole/dataobj.h |
| 3 | // Purpose: declaration of the wxDataObject class |
| 4 | // Author: Vadim Zeitlin |
| 5 | // Modified by: |
| 6 | // Created: 10.05.98 |
| 7 | // RCS-ID: $Id$ |
| 8 | // Copyright: (c) 1998 Vadim Zeitlin <zeitlin@dptmaths.ens-cachan.fr> |
| 9 | // Licence: wxWindows licence |
| 10 | /////////////////////////////////////////////////////////////////////////////// |
| 11 | |
| 12 | #ifndef _WX_MSW_OLE_DATAOBJ_H |
| 13 | #define _WX_MSW_OLE_DATAOBJ_H |
| 14 | |
| 15 | // ---------------------------------------------------------------------------- |
| 16 | // forward declarations |
| 17 | // ---------------------------------------------------------------------------- |
| 18 | |
| 19 | struct IDataObject; |
| 20 | |
| 21 | // ---------------------------------------------------------------------------- |
| 22 | // wxDataObject is a "smart" and polymorphic piece of data. |
| 23 | // ---------------------------------------------------------------------------- |
| 24 | |
| 25 | class WXDLLEXPORT wxDataObject : public wxDataObjectBase |
| 26 | { |
| 27 | public: |
| 28 | // ctor & dtor |
| 29 | wxDataObject(); |
| 30 | virtual ~wxDataObject(); |
| 31 | |
| 32 | // retrieve IDataObject interface (for other OLE related classes) |
| 33 | IDataObject *GetInterface() const { return m_pIDataObject; } |
| 34 | |
| 35 | // tell the object that it should be now owned by IDataObject - i.e. when |
| 36 | // it is deleted, it should delete us as well |
| 37 | void SetAutoDelete(); |
| 38 | |
| 39 | // return true if we support this format in "Get" direction |
| 40 | bool IsSupportedFormat(const wxDataFormat& format) const |
| 41 | { return wxDataObjectBase::IsSupported(format, Get); } |
| 42 | |
| 43 | // function to return symbolic name of clipboard format (for debug messages) |
| 44 | #ifdef __WXDEBUG__ |
| 45 | static const wxChar *GetFormatName(wxDataFormat format); |
| 46 | |
| 47 | #define wxGetFormatName(format) wxDataObject::GetFormatName(format) |
| 48 | #else // !Debug |
| 49 | #define wxGetFormatName(format) _T("") |
| 50 | #endif // Debug/!Debug |
| 51 | // they need to be accessed from wxIDataObject, so made them public, |
| 52 | // or wxIDataObject friend |
| 53 | public: |
| 54 | virtual const void* GetSizeFromBuffer( const void* buffer, size_t* size, |
| 55 | const wxDataFormat& format ); |
| 56 | virtual void* SetSizeInBuffer( void* buffer, size_t size, |
| 57 | const wxDataFormat& format ); |
| 58 | virtual size_t GetBufferOffset( const wxDataFormat& format ); |
| 59 | private: |
| 60 | IDataObject *m_pIDataObject; // pointer to the COM interface |
| 61 | |
| 62 | DECLARE_NO_COPY_CLASS(wxDataObject) |
| 63 | }; |
| 64 | |
| 65 | #endif //_WX_MSW_OLE_DATAOBJ_H |