X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/655719367ac5e131d9642e5783f3ecf64d1a3385..4b4d23c77e1971e8eb2df9bbd7e4ef817e8f447e:/include/wx/clipbrd.h diff --git a/include/wx/clipbrd.h b/include/wx/clipbrd.h index 3de8f49cf8..f4c29ba4b7 100644 --- a/include/wx/clipbrd.h +++ b/include/wx/clipbrd.h @@ -26,6 +26,7 @@ class WXDLLEXPORT wxDataFormat; class WXDLLEXPORT wxDataObject; +class WXDLLEXPORT wxClipboard; // ---------------------------------------------------------------------------- // wxClipboard represents the system clipboard. Normally, you should use @@ -38,7 +39,7 @@ class WXDLLEXPORT wxDataObject; class WXDLLEXPORT wxClipboardBase : public wxObject { public: - wxClipboardBase(); + wxClipboardBase() {} // open the clipboard before Add/SetData() and GetData() virtual bool Open() = 0; @@ -76,8 +77,17 @@ public: // X11 has two clipboards which get selected by this call. Empty on MSW. virtual void UsePrimarySelection( bool WXUNUSED(primary) = FALSE ) { } + // Returns global instance (wxTheClipboard) of the object: + static wxClipboard *Get(); }; +// ---------------------------------------------------------------------------- +// globals +// ---------------------------------------------------------------------------- + +// The global clipboard object - backward compatible access macro: +#define wxTheClipboard (wxClipboard::Get()) + // ---------------------------------------------------------------------------- // include platform-specific class declaration // ---------------------------------------------------------------------------- @@ -100,13 +110,6 @@ public: #include "wx/os2/clipbrd.h" #endif -// ---------------------------------------------------------------------------- -// globals -// ---------------------------------------------------------------------------- - -// The global clipboard object -WXDLLEXPORT_DATA(extern wxClipboard *) wxTheClipboard; - // ---------------------------------------------------------------------------- // helpful class for opening the clipboard and automatically closing it // ----------------------------------------------------------------------------