Added experimental async clipboard format query
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@57484 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -19,6 +19,7 @@
|
|||||||
|
|
||||||
#include "wx/object.h"
|
#include "wx/object.h"
|
||||||
#include "wx/chartype.h"
|
#include "wx/chartype.h"
|
||||||
|
#include "wx/vector.h"
|
||||||
|
|
||||||
class WXDLLIMPEXP_FWD_CORE wxDataFormat;
|
class WXDLLIMPEXP_FWD_CORE wxDataFormat;
|
||||||
class WXDLLIMPEXP_FWD_CORE wxDataObject;
|
class WXDLLIMPEXP_FWD_CORE wxDataObject;
|
||||||
@@ -94,6 +95,43 @@ public:
|
|||||||
bool m_usePrimary;
|
bool m_usePrimary;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
// ----------------------------------------------------------------------------
|
||||||
|
// asynchronous clipboard event
|
||||||
|
// ----------------------------------------------------------------------------
|
||||||
|
|
||||||
|
class WXDLLIMPEXP_CORE wxClipboardEvent : public wxEvent
|
||||||
|
{
|
||||||
|
public:
|
||||||
|
wxClipboardEvent(wxEventType commandType = wxEVT_NULL)
|
||||||
|
: wxEvent(0,commandType)
|
||||||
|
{ }
|
||||||
|
|
||||||
|
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 { return new wxClipboardEvent(*this); }
|
||||||
|
|
||||||
|
protected:
|
||||||
|
wxVector<wxDataFormat> m_formats;
|
||||||
|
|
||||||
|
private:
|
||||||
|
DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxClipboardEvent)
|
||||||
|
};
|
||||||
|
|
||||||
|
extern WXDLLIMPEXP_CORE const wxEventType wxEVT_CLIPBOARD_CHANGED;
|
||||||
|
|
||||||
|
typedef void (wxEvtHandler::*wxClipboardEventFunction)(wxClipboardEvent&);
|
||||||
|
|
||||||
|
#define wxClipboardEventHandler(func) \
|
||||||
|
(wxObjectEventFunction)(wxEventFunction)wxStaticCastEvent(wxClipboardEventFunction, &func)
|
||||||
|
|
||||||
|
#define EVT_CLIPBOARD_CHANGED(func) wx__DECLARE_EVT0(wxEVT_CLIPBOARD_CHANGED, wxClipboardEventHandler(func))
|
||||||
|
|
||||||
// ----------------------------------------------------------------------------
|
// ----------------------------------------------------------------------------
|
||||||
// globals
|
// globals
|
||||||
// ----------------------------------------------------------------------------
|
// ----------------------------------------------------------------------------
|
||||||
|
@@ -15,6 +15,8 @@
|
|||||||
// wxClipboard
|
// wxClipboard
|
||||||
// ----------------------------------------------------------------------------
|
// ----------------------------------------------------------------------------
|
||||||
|
|
||||||
|
#include "wx/weakref.h"
|
||||||
|
|
||||||
class WXDLLIMPEXP_CORE wxClipboard : public wxClipboardBase
|
class WXDLLIMPEXP_CORE wxClipboard : public wxClipboardBase
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
@@ -46,6 +48,9 @@ public:
|
|||||||
// ask if data in correct format is available
|
// ask if data in correct format is available
|
||||||
virtual bool IsSupported( const wxDataFormat& format );
|
virtual bool IsSupported( const wxDataFormat& format );
|
||||||
|
|
||||||
|
// ask if data in correct format is available
|
||||||
|
virtual bool IsSupportedAsync( wxEvtHandler *sink );
|
||||||
|
|
||||||
// fill data with data on the clipboard (if available)
|
// fill data with data on the clipboard (if available)
|
||||||
virtual bool GetData( wxDataObject& data );
|
virtual bool GetData( wxDataObject& data );
|
||||||
|
|
||||||
@@ -116,6 +121,11 @@ private:
|
|||||||
bool m_open;
|
bool m_open;
|
||||||
bool m_formatSupported;
|
bool m_formatSupported;
|
||||||
|
|
||||||
|
public:
|
||||||
|
// async stuff
|
||||||
|
wxEvtHandlerRef m_sink;
|
||||||
|
private:
|
||||||
|
GtkWidget *m_targetsWidgetAsync; // for getting list of supported formats
|
||||||
|
|
||||||
DECLARE_DYNAMIC_CLASS(wxClipboard)
|
DECLARE_DYNAMIC_CLASS(wxClipboard)
|
||||||
};
|
};
|
||||||
|
@@ -32,6 +32,31 @@
|
|||||||
#include "wx/module.h"
|
#include "wx/module.h"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
// ---------------------------------------------------------
|
||||||
|
// wxClipboardEvent
|
||||||
|
// ---------------------------------------------------------
|
||||||
|
|
||||||
|
IMPLEMENT_DYNAMIC_CLASS(wxClipboardEvent,wxEvent)
|
||||||
|
|
||||||
|
DEFINE_EVENT_TYPE(wxEVT_CLIPBOARD_CHANGED)
|
||||||
|
|
||||||
|
bool wxClipboardEvent::SupportsFormat( const wxDataFormat &format ) const
|
||||||
|
{
|
||||||
|
wxVector<wxDataFormat>::size_type n;
|
||||||
|
for (n = 0; n < m_formats.size(); n++)
|
||||||
|
{ if (m_formats[n] == format) return true; }
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
void wxClipboardEvent::AddFormat( const wxDataFormat &format )
|
||||||
|
{
|
||||||
|
m_formats.push_back( format );
|
||||||
|
}
|
||||||
|
|
||||||
|
// ---------------------------------------------------------
|
||||||
|
// wxClipboardBase
|
||||||
|
// ---------------------------------------------------------
|
||||||
|
|
||||||
static wxClipboard *gs_clipboard = NULL;
|
static wxClipboard *gs_clipboard = NULL;
|
||||||
|
|
||||||
/*static*/ wxClipboard *wxClipboardBase::Get()
|
/*static*/ wxClipboard *wxClipboardBase::Get()
|
||||||
|
Reference in New Issue
Block a user