1999-07-29 05:11:30 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
2011-03-20 00:14:35 +00:00
|
|
|
// Name: wx/os2/clipbrd.h
|
1999-07-29 05:11:30 +00:00
|
|
|
// Purpose: Clipboard functionality.
|
|
|
|
// Note: this functionality is under review, and
|
2004-05-23 14:56:36 +00:00
|
|
|
// is derived from wxWidgets 1.xx code. Please contact
|
|
|
|
// the wxWidgets developers for further information.
|
1999-10-14 04:43:46 +00:00
|
|
|
// Author: David Webster
|
1999-07-29 05:11:30 +00:00
|
|
|
// Modified by:
|
1999-10-14 04:43:46 +00:00
|
|
|
// Created: 10/13/99
|
1999-07-29 05:11:30 +00:00
|
|
|
// RCS-ID: $Id$
|
1999-10-14 04:43:46 +00:00
|
|
|
// Copyright: (c) David Webster
|
2004-05-23 20:53:33 +00:00
|
|
|
// Licence: wxWindows licence
|
1999-07-29 05:11:30 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#ifndef _WX_CLIPBRD_H_
|
|
|
|
#define _WX_CLIPBRD_H_
|
|
|
|
|
1999-10-14 04:43:46 +00:00
|
|
|
#if wxUSE_CLIPBOARD
|
1999-07-29 05:11:30 +00:00
|
|
|
|
1999-10-14 04:43:46 +00:00
|
|
|
#include "wx/list.h"
|
|
|
|
#include "wx/module.h"
|
|
|
|
#include "wx/dataobj.h" // for wxDataFormat
|
|
|
|
|
|
|
|
// These functions superceded by wxClipboard, but retained in order to
|
|
|
|
// implement wxClipboard, and for compatibility.
|
|
|
|
|
|
|
|
// open/close the clipboard
|
2008-03-26 15:06:00 +00:00
|
|
|
WXDLLIMPEXP_CORE bool wxOpenClipboard();
|
|
|
|
WXDLLIMPEXP_CORE bool wxIsClipboardOpened();
|
1999-10-14 04:43:46 +00:00
|
|
|
#define wxClipboardOpen wxIsClipboardOpened
|
2008-03-26 15:06:00 +00:00
|
|
|
WXDLLIMPEXP_CORE bool wxCloseClipboard();
|
1999-10-14 04:43:46 +00:00
|
|
|
|
|
|
|
// get/set data
|
2008-03-26 15:06:00 +00:00
|
|
|
WXDLLIMPEXP_CORE bool wxEmptyClipboard();
|
|
|
|
WXDLLIMPEXP_CORE bool wxSetClipboardData(wxDataFormat dataFormat,
|
1999-10-14 04:43:46 +00:00
|
|
|
const void *data,
|
|
|
|
int width = 0, int height = 0);
|
2008-03-26 15:06:00 +00:00
|
|
|
WXDLLIMPEXP_CORE void* wxGetClipboardData(wxDataFormat dataFormat,
|
1999-10-14 04:43:46 +00:00
|
|
|
long *len = NULL);
|
|
|
|
|
|
|
|
// clipboard formats
|
2008-03-26 15:06:00 +00:00
|
|
|
WXDLLIMPEXP_CORE bool wxIsClipboardFormatAvailable(wxDataFormat dataFormat);
|
|
|
|
WXDLLIMPEXP_CORE wxDataFormat wxEnumClipboardFormats(wxDataFormat dataFormat);
|
|
|
|
WXDLLIMPEXP_CORE int wxRegisterClipboardFormat(wxChar *formatName);
|
|
|
|
WXDLLIMPEXP_CORE bool wxGetClipboardFormatName(wxDataFormat dataFormat,
|
1999-10-14 04:43:46 +00:00
|
|
|
wxChar *formatName,
|
|
|
|
int maxCount);
|
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// wxClipboard
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
2007-07-09 10:09:52 +00:00
|
|
|
class WXDLLIMPEXP_FWD_CORE wxDataObject;
|
2008-03-26 15:06:00 +00:00
|
|
|
class WXDLLIMPEXP_CORE wxClipboard : public wxClipboardBase
|
1999-07-29 05:11:30 +00:00
|
|
|
{
|
1999-10-14 04:43:46 +00:00
|
|
|
DECLARE_DYNAMIC_CLASS(wxClipboard)
|
1999-07-29 05:11:30 +00:00
|
|
|
|
1999-10-14 04:43:46 +00:00
|
|
|
public:
|
|
|
|
wxClipboard();
|
2006-09-05 20:47:48 +00:00
|
|
|
virtual ~wxClipboard();
|
1999-07-29 05:11:30 +00:00
|
|
|
|
1999-10-14 04:43:46 +00:00
|
|
|
// open the clipboard before SetData() and GetData()
|
|
|
|
virtual bool Open();
|
1999-07-29 05:11:30 +00:00
|
|
|
|
1999-10-14 04:43:46 +00:00
|
|
|
// close the clipboard after SetData() and GetData()
|
|
|
|
virtual void Close();
|
1999-07-29 05:11:30 +00:00
|
|
|
|
1999-10-22 04:37:39 +00:00
|
|
|
// query whether the clipboard is opened
|
|
|
|
virtual bool IsOpened() const;
|
|
|
|
|
1999-10-14 04:43:46 +00:00
|
|
|
// set the clipboard data. all other formats will be deleted.
|
|
|
|
virtual bool SetData( wxDataObject *data );
|
1999-07-29 05:11:30 +00:00
|
|
|
|
1999-10-14 04:43:46 +00:00
|
|
|
// add to the clipboard data.
|
|
|
|
virtual bool AddData( wxDataObject *data );
|
1999-07-29 05:11:30 +00:00
|
|
|
|
1999-10-14 04:43:46 +00:00
|
|
|
// ask if data in correct format is available
|
2004-06-21 08:54:35 +00:00
|
|
|
virtual bool IsSupported( const wxDataFormat& format );
|
1999-07-29 05:11:30 +00:00
|
|
|
|
1999-10-14 04:43:46 +00:00
|
|
|
// fill data with data on the clipboard (if available)
|
2001-04-22 20:36:00 +00:00
|
|
|
virtual bool GetData( wxDataObject& data );
|
1999-10-14 04:43:46 +00:00
|
|
|
|
|
|
|
// clears wxTheClipboard and the system's clipboard if possible
|
|
|
|
virtual void Clear();
|
1999-07-29 05:11:30 +00:00
|
|
|
|
1999-10-21 05:13:26 +00:00
|
|
|
// flushes the clipboard: this means that the data which is currently on
|
|
|
|
// clipboard will stay available even after the application exits (possibly
|
|
|
|
// eating memory), otherwise the clipboard will be emptied on exit
|
|
|
|
virtual bool Flush();
|
1999-10-14 04:43:46 +00:00
|
|
|
|
1999-10-21 05:13:26 +00:00
|
|
|
private:
|
|
|
|
bool m_clearOnExit;
|
1999-10-14 04:43:46 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // wxUSE_CLIPBOARD
|
2007-03-31 02:57:55 +00:00
|
|
|
#endif // _WX_CLIPBRD_H_
|