wxGTK compatible clipboard implementation (not OLE clipboard - it will come

later)


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@1621 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
1999-02-06 23:25:47 +00:00
parent d79b79b5e8
commit 26f86486b0
5 changed files with 454 additions and 376 deletions

View File

@@ -4,7 +4,7 @@
// Author: Robert Roebling
// Id: $Id$
// Copyright: (c) 1998 Robert Roebling
// Licence: wxWindows licence
// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
@@ -42,50 +42,49 @@ extern wxClipboard* wxTheClipboard;
// wxClipboard
//-----------------------------------------------------------------------------
class wxClipboard: public wxObject
class wxClipboard : public wxObject
{
DECLARE_DYNAMIC_CLASS(wxClipboard)
DECLARE_DYNAMIC_CLASS(wxClipboard)
public:
wxClipboard();
~wxClipboard();
wxClipboard();
~wxClipboard();
/* open the clipboard before SetData() and GetData() */
virtual bool Open();
/* close the clipboard after SetData() and GetData() */
virtual void Close();
/* set the clipboard data. all other formats will be deleted. */
virtual bool SetData( wxDataObject *data );
// open the clipboard before SetData() and GetData()
virtual bool Open();
/* add to the clipboard data. */
virtual bool AddData( wxDataObject *data );
/* ask if data in correct format is available */
virtual bool IsSupported( wxDataObject &data );
/* fill data with data on the clipboard (if available) */
virtual bool GetData( wxDataObject &data );
/* clears wxTheClipboard and the system's clipboard if possible */
virtual void Clear();
// close the clipboard after SetData() and GetData()
virtual void Close();
/* implementation */
bool m_open;
bool m_ownsClipboard;
bool m_ownsPrimarySelection;
wxDataBroker *m_dataBroker;
GtkWidget *m_clipboardWidget;
bool m_formatSupported;
GdkAtom m_targetRequested;
// set the clipboard data. all other formats will be deleted.
virtual bool SetData( wxDataObject *data );
wxDataObject *m_receivedData;
// add to the clipboard data.
virtual bool AddData( wxDataObject *data );
// ask if data in correct format is available
virtual bool IsSupported( wxDataObject &data );
// fill data with data on the clipboard (if available)
virtual bool GetData( wxDataObject &data );
// clears wxTheClipboard and the system's clipboard if possible
virtual void Clear();
// implementation
bool m_open;
bool m_ownsClipboard;
bool m_ownsPrimarySelection;
wxDataBroker *m_dataBroker;
GtkWidget *m_clipboardWidget;
bool m_formatSupported;
GdkAtom m_targetRequested;
wxDataObject *m_receivedData;
};
//-----------------------------------------------------------------------------
@@ -95,7 +94,7 @@ public:
class wxClipboardModule: public wxModule
{
DECLARE_DYNAMIC_CLASS(wxClipboardModule)
public:
wxClipboardModule() {}
bool OnInit();