#include "wx/event.h"
#include "wx/chartype.h"
+#include "wx/dataobj.h" // for wxDataFormat
#include "wx/vector.h"
-class WXDLLIMPEXP_FWD_CORE wxDataFormat;
-class WXDLLIMPEXP_FWD_CORE wxDataObject;
class WXDLLIMPEXP_FWD_CORE wxClipboard;
// ----------------------------------------------------------------------------
class WXDLLIMPEXP_CORE wxClipboardEvent : public wxEvent
{
public:
- wxClipboardEvent(wxEventType evtType = wxEVT_NULL);
- wxClipboardEvent(const wxClipboardEvent& event);
+ wxClipboardEvent(wxEventType evtType = wxEVT_NULL)
+ : wxEvent(0, evtType)
+ {
+ }
+
+ wxClipboardEvent(const wxClipboardEvent& event)
+ : wxEvent(event),
+ m_formats(event.m_formats)
+ {
+ }
bool SupportsFormat(const wxDataFormat& format) const;
void AddFormat(const wxDataFormat& format);
- virtual wxEvent *Clone() const;
+ virtual wxEvent *Clone() const
+ {
+ return new wxClipboardEvent(*this);
+ }
+
protected:
wxVector<wxDataFormat> m_formats;