X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/b068c4e8a1f4919360329c345eae36ff95ab5a10..bf7d7ee7062f7f6028df40e43745235658e38b4d:/include/wx/clipbrd.h diff --git a/include/wx/clipbrd.h b/include/wx/clipbrd.h index 7f79269aed..d04fa7df9a 100644 --- a/include/wx/clipbrd.h +++ b/include/wx/clipbrd.h @@ -46,6 +46,9 @@ public: // close the clipboard after Add/SetData() and GetData() virtual void Close() = 0; + // query whether the clipboard is opened + virtual bool IsOpened() const = 0; + // add to the clipboard data // // NB: the clipboard owns the pointer and will delete it, so data must be @@ -73,15 +76,6 @@ public: // X11 has two clipboards which get selected by this call. Empty on MSW. virtual void UsePrimarySelection( bool WXUNUSED(primary) = FALSE ) { } -#ifdef WXWIN_COMPATIBILITY_2 - // deprecated version - bool GetData(wxDataObject *data) - { - wxCHECK_MSG(data, FALSE, wxT("NULL pointer in wxClipboard")); - - return GetData(*data); - } -#endif // WXWIN_COMPATIBILITY_2 }; // ---------------------------------------------------------------------------- @@ -94,6 +88,8 @@ public: #include "wx/motif/clipbrd.h" #elif defined(__WXGTK__) #include "wx/gtk/clipbrd.h" +#elif defined(__WXMGL__) + #include "wx/mgl/clipbrd.h" #elif defined(__WXQT__) #include "wx/gtk/clipbrd.h" #elif defined(__WXMAC__) @@ -111,6 +107,36 @@ public: // The global clipboard object WXDLLEXPORT_DATA(extern wxClipboard *) wxTheClipboard; +// ---------------------------------------------------------------------------- +// helpful class for opening the clipboard and automatically closing it +// ---------------------------------------------------------------------------- + +class WXDLLEXPORT wxClipboardLocker +{ +public: + wxClipboardLocker(wxClipboard *clipboard = (wxClipboard *)NULL) + { + m_clipboard = clipboard ? clipboard : wxTheClipboard; + if ( m_clipboard ) + { + m_clipboard->Open(); + } + } + + bool operator!() const { return !m_clipboard->IsOpened(); } + + ~wxClipboardLocker() + { + if ( m_clipboard ) + { + m_clipboard->Close(); + } + } + +private: + wxClipboard *m_clipboard; +}; + #endif // wxUSE_CLIPBOARD #endif // _WX_CLIPBRD_H_BASE_