1999-07-29 05:11:30 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: clipbrd.h
|
|
|
|
// Purpose: Clipboard functionality.
|
|
|
|
// Note: this functionality is under review, and
|
|
|
|
// is derived from wxWindows 1.xx code. Please contact
|
|
|
|
// the wxWindows 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
|
|
|
|
// 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
|
|
|
|
WXDLLEXPORT bool wxOpenClipboard();
|
|
|
|
WXDLLEXPORT bool wxIsClipboardOpened();
|
|
|
|
#define wxClipboardOpen wxIsClipboardOpened
|
|
|
|
WXDLLEXPORT bool wxCloseClipboard();
|
|
|
|
|
|
|
|
// get/set data
|
|
|
|
WXDLLEXPORT bool wxEmptyClipboard();
|
|
|
|
WXDLLEXPORT bool wxSetClipboardData(wxDataFormat dataFormat,
|
|
|
|
const void *data,
|
|
|
|
int width = 0, int height = 0);
|
|
|
|
WXDLLEXPORT void* wxGetClipboardData(wxDataFormat dataFormat,
|
|
|
|
long *len = NULL);
|
|
|
|
|
|
|
|
// clipboard formats
|
|
|
|
WXDLLEXPORT bool wxIsClipboardFormatAvailable(wxDataFormat dataFormat);
|
|
|
|
WXDLLEXPORT wxDataFormat wxEnumClipboardFormats(wxDataFormat dataFormat);
|
|
|
|
WXDLLEXPORT int wxRegisterClipboardFormat(wxChar *formatName);
|
|
|
|
WXDLLEXPORT bool wxGetClipboardFormatName(wxDataFormat dataFormat,
|
|
|
|
wxChar *formatName,
|
|
|
|
int maxCount);
|
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// wxClipboard
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
class WXDLLEXPORT wxDataObject;
|
1999-07-29 05:11:30 +00:00
|
|
|
class WXDLLEXPORT wxClipboard : public wxObject
|
|
|
|
{
|
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();
|
|
|
|
~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
|
|
|
|
virtual bool IsSupported( 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)
|
|
|
|
virtual bool GetData( wxDataObject *data );
|
|
|
|
|
|
|
|
// 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
|
|
|
// X11 has two clipboards which get selected by this call. Empty on MSW.
|
|
|
|
void UsePrimarySelection( bool WXUNUSED(primary) = FALSE ) { }
|
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
|
1999-07-29 05:11:30 +00:00
|
|
|
#endif
|
|
|
|
// _WX_CLIPBRD_H_
|