1 /////////////////////////////////////////////////////////////////////////////
2 // Name: wx/palmos/clipbrd.h
3 // Purpose: wxClipboad class and clipboard functions for Palm OS
4 // Author: William Osborne - minimal working wxPalmOS port
8 // Copyright: (c) William Osborne
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 #ifndef _WX_CLIPBRD_H_
13 #define _WX_CLIPBRD_H_
18 #include "wx/module.h"
19 #include "wx/dataobj.h" // for wxDataFormat
21 // These functions superceded by wxClipboard, but retained in order to
22 // implement wxClipboard, and for compatibility.
24 // open/close the clipboard
25 WXDLLIMPEXP_CORE
bool wxOpenClipboard();
26 WXDLLIMPEXP_CORE
bool wxIsClipboardOpened();
27 #define wxClipboardOpen wxIsClipboardOpened
28 WXDLLIMPEXP_CORE
bool wxCloseClipboard();
31 WXDLLIMPEXP_CORE
bool wxEmptyClipboard();
32 WXDLLIMPEXP_CORE
bool wxSetClipboardData(wxDataFormat dataFormat
,
34 int width
= 0, int height
= 0);
35 WXDLLIMPEXP_CORE
void* wxGetClipboardData(wxDataFormat dataFormat
,
39 WXDLLIMPEXP_CORE
bool wxIsClipboardFormatAvailable(wxDataFormat dataFormat
);
40 WXDLLIMPEXP_CORE wxDataFormat
wxEnumClipboardFormats(wxDataFormat dataFormat
);
41 WXDLLIMPEXP_CORE
int wxRegisterClipboardFormat(wxChar
*formatName
);
42 WXDLLIMPEXP_CORE
bool wxGetClipboardFormatName(wxDataFormat dataFormat
,
46 //-----------------------------------------------------------------------------
48 //-----------------------------------------------------------------------------
50 class WXDLLIMPEXP_FWD_CORE wxDataObject
;
51 class WXDLLIMPEXP_CORE wxClipboard
: public wxObject
53 DECLARE_DYNAMIC_CLASS(wxClipboard
)
57 virtual ~wxClipboard();
59 // open the clipboard before SetData() and GetData()
62 // close the clipboard after SetData() and GetData()
65 // query whether the clipboard is opened
66 virtual bool IsOpened() const;
68 // set the clipboard data. all other formats will be deleted.
69 virtual bool SetData( wxDataObject
*data
);
71 // add to the clipboard data.
72 virtual bool AddData( wxDataObject
*data
);
74 // ask if data in correct format is available
75 virtual bool IsSupported( wxDataFormat format
);
77 // fill data with data on the clipboard (if available)
78 virtual bool GetData( wxDataObject
& data
);
80 // clears wxTheClipboard and the system's clipboard if possible
83 // flushes the clipboard: this means that the data which is currently on
84 // clipboard will stay available even after the application exits (possibly
85 // eating memory), otherwise the clipboard will be emptied on exit
93 #endif // wxUSE_CLIPBOARD