X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/8f7b34a878bbcb2f71a0c7694e2a3bec51460218..2a0ca9dbafcdb76d95bca0319d29699ac1fefc64:/include/wx/mgl/clipbrd.h diff --git a/include/wx/mgl/clipbrd.h b/include/wx/mgl/clipbrd.h index 0467cfb37b..4a7e56896e 100644 --- a/include/wx/mgl/clipbrd.h +++ b/include/wx/mgl/clipbrd.h @@ -1,20 +1,15 @@ ///////////////////////////////////////////////////////////////////////////// -// Name: clipboard.h +// Name: wx/mgl/clipboard.h // Purpose: // Author: Vaclav Slavik // Id: $Id$ -// Copyright: (c) 2001 SciTech Software, Inc. (www.scitechsoft.com) +// Copyright: (c) 2001-2002 SciTech Software, Inc. (www.scitechsoft.com) // Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// - #ifndef __WX_CLIPBOARD_H__ #define __WX_CLIPBOARD_H__ -#ifdef __GNUG__ -#pragma interface "clipbrd.h" -#endif - #if wxUSE_CLIPBOARD #include "wx/object.h" @@ -27,11 +22,11 @@ // wxClipboard // ---------------------------------------------------------------------------- -class WXDLLEXPORT wxClipboard : public wxClipboardBase +class WXDLLIMPEXP_CORE wxClipboard : public wxClipboardBase { public: wxClipboard() {} - ~wxClipboard() {} + virtual ~wxClipboard() {} // open the clipboard before SetData() and GetData() virtual bool Open() {} @@ -57,11 +52,6 @@ public: // clears wxTheClipboard and the system's clipboard if possible virtual void Clear() {} - // If primary == TRUE, use primary selection in all further ops, - // primary == FALSE resets it. - virtual void UsePrimarySelection(bool primary = TRUE) - { m_usePrimary = primary; } - // implementation from now on bool m_open; bool m_ownsClipboard; @@ -74,7 +64,6 @@ public: bool m_formatSupported; GdkAtom m_targetRequested; - bool m_usePrimary; wxDataObject *m_receivedData; private: