don't use wxVector<wxDataFormat> from wx/clipbrd.h as wxDataFormat definition is not available in it
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@58038 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -62,7 +62,7 @@ public:
|
||||
|
||||
// ask if data in correct format is available
|
||||
virtual bool IsSupportedAsync( wxEvtHandler *sink );
|
||||
|
||||
|
||||
// fill data with data on the clipboard (if available)
|
||||
virtual bool GetData( wxDataObject& data ) = 0;
|
||||
|
||||
@@ -105,17 +105,11 @@ public:
|
||||
class WXDLLIMPEXP_CORE wxClipboardEvent : public wxEvent
|
||||
{
|
||||
public:
|
||||
wxClipboardEvent(wxEventType commandType = wxEVT_NULL)
|
||||
: wxEvent(0,commandType)
|
||||
{ }
|
||||
wxClipboardEvent(wxEventType evtType = wxEVT_NULL);
|
||||
wxClipboardEvent(const wxClipboardEvent& event);
|
||||
|
||||
wxClipboardEvent(const wxClipboardEvent& event)
|
||||
: wxEvent(event),
|
||||
m_formats(event.m_formats)
|
||||
{ }
|
||||
|
||||
bool SupportsFormat( const wxDataFormat &format ) const;
|
||||
void AddFormat( const wxDataFormat &format );
|
||||
bool SupportsFormat(const wxDataFormat& format) const;
|
||||
void AddFormat(const wxDataFormat& format);
|
||||
|
||||
virtual wxEvent *Clone() const { return new wxClipboardEvent(*this); }
|
||||
|
||||
|
Reference in New Issue
Block a user