Home | Trees | Index | Help |
|
---|
Package wx :: Class Clipboard |
|
object
--+ |Object
--+ | Clipboard
wx.Clipboard represents the system clipboard and provides methods to copy data to it or paste data from it. Normally, you should only use wx.TheClipboard which is a reference to a global wx.Clipboard instance.
Call wx.TheClipboard's Open
method to get ownership of the
clipboard. If this operation returns True, you now own the
clipboard. Call SetData
to put data on the clipboard, or GetData
to retrieve data from the clipboard. Call Close
to close the
clipboard and relinquish ownership. You should keep the clipboard open
only momentarily.
See Also:
Method Summary | |
---|---|
Clipboard | __init__(self)
|
__del__(self)
| |
bool |
Call this function to add the data object to the clipboard. |
Clears data from the clipboard object and also the system's clipboard if possible. | |
Closes the clipboard. | |
bool |
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. |
Clipboard |
Returns global instance (wxTheClipboard) of the object. (Static method) |
bool |
Call this function to fill data with data on the clipboard, if available in the required format. |
bool |
Query whether the clipboard is opened |
bool |
Returns True if the given format is available in the data object(s) on the clipboard. |
bool |
Call this function to open the clipboard before calling SetData and GetData. |
bool |
Set the clipboard data, this is the same as Clear followed by
AddData . |
On platforms supporting it (the X11 based platforms), selects the so called PRIMARY SELECTION as the clipboard as opposed to the normal clipboard, if primary is True. |
Property Summary | |
---|---|
thisown : The membership flag |
Instance Method Details |
---|
AddData(self, data)Call this function to add the data object to the clipboard. You may call this function repeatedly after having cleared the clipboard. After this function has been called, the clipboard owns the data, so do not delete the data explicitly.
|
Clear(self)Clears data from the clipboard object and also the system's clipboard if possible. |
Close(self)Closes the clipboard. |
Flush(self)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. Returns False if the operation is unsuccesful for any reason.
|
GetData(self, data)Call this function to fill data with data on the clipboard, if available in the required format. Returns true on success.
|
IsOpened(self)Query whether the clipboard is opened
|
IsSupported(self, format)Returns True if the given format is available in the data object(s) on the clipboard.
|
Open(self)Call this function to open the clipboard before calling SetData and GetData. Call Close when you have finished with the clipboard. You should keep the clipboard open for only a very short time. Returns True on success.
|
SetData(self, data)Set the clipboard data, this is the same as
|
UsePrimarySelection(self, primary=True)On platforms supporting it (the X11 based platforms), selects the so called PRIMARY SELECTION as the clipboard as opposed to the normal clipboard, if primary is True.
|
Static Method Details |
---|
Get()Returns global instance (wxTheClipboard) of the object.
|
Property Details |
---|
thisownThe membership flag |
Home | Trees | Index | Help |
|
---|
Generated by Epydoc 2.1.20050511.rpd on Thu Mar 22 12:12:19 2007 | http://epydoc.sf.net |