Gtk.Clipboard¶
| Subclasses: | None | 
|---|
Methods¶
| Inherited: | GObject.Object (37) | 
|---|---|
| Structs: | GObject.ObjectClass (5) | 
| class | get(selection) | 
| class | get_default(display) | 
| class | get_for_display(display, selection) | 
| clear() | |
| get_display() | |
| get_owner() | |
| request_contents(target, callback, *user_data) | |
| request_image(callback, *user_data) | |
| request_rich_text(buffer, callback, *user_data) | |
| request_targets(callback, *user_data) | |
| request_text(callback, *user_data) | |
| request_uris(callback, *user_data) | |
| set_can_store(targets) | |
| set_image(pixbuf) | |
| set_text(text, len) | |
| store() | |
| wait_for_contents(target) | |
| wait_for_image() | |
| wait_for_rich_text(buffer) | |
| wait_for_targets() | |
| wait_for_text() | |
| wait_for_uris() | |
| wait_is_image_available() | |
| wait_is_rich_text_available(buffer) | |
| wait_is_target_available(target) | |
| wait_is_text_available() | |
| wait_is_uris_available() | 
Virtual Methods¶
| Inherited: | GObject.Object (7) | 
|---|
Properties¶
None
Signals¶
| Inherited: | GObject.Object (1) | 
|---|
| Name | Short Description | 
|---|---|
| owner-change | The ::owner-changesignal is emitted when GTK+ receives an event that indicates that the ownership of the selection associated with clipboard has changed. | 
Fields¶
| Inherited: | GObject.Object (1) | 
|---|
Class Details¶
- 
class Gtk.Clipboard(**kwargs)¶
- Bases: - GObject.Object- Abstract: - No - The - Gtk.Clipboardobject represents a clipboard of data shared between different processes or between different widgets in the same process. Each clipboard is identified by a name encoded as a- Gdk.Atom. (Conversion to and from strings can be done with- Gdk.Atom.intern() and- Gdk.Atom.name().) The default clipboard corresponds to the “CLIPBOARD” atom; another commonly used clipboard is the “PRIMARY” clipboard, which, in X, traditionally contains the currently selected text.- To support having a number of different formats on the clipboard at the same time, the clipboard mechanism allows providing callbacks instead of the actual data. When you set the contents of the clipboard, you can either supply the data directly (via functions like - Gtk.Clipboard.set_text()), or you can supply a callback to be called at a later time when the data is needed (via gtk_clipboard_set_with_data() or gtk_clipboard_set_with_owner().) Providing a callback also avoids having to make copies of the data when it is not needed.- gtk_clipboard_set_with_data() and gtk_clipboard_set_with_owner() are quite similar; the choice between the two depends mostly on which is more convenient in a particular situation. The former is most useful when you want to have a blob of data with callbacks to convert it into the various data types that you advertise. When the clear_func you provided is called, you simply free the data blob. The latter is more useful when the contents of clipboard reflect the internal state of a - GObject.Object(As an example, for the PRIMARY clipboard, when an entry widget provides the clipboard’s contents the contents are simply the text within the selected region.) If the contents change, the entry widget can call gtk_clipboard_set_with_owner() to update the timestamp for clipboard ownership, without having to worry about clear_func being called.- Requesting the data from the clipboard is essentially asynchronous. If the contents of the clipboard are provided within the same process, then a direct function call will be made to retrieve the data, but if they are provided by another process, then the data needs to be retrieved from the other process, which may take some time. To avoid blocking the user interface, the call to request the selection, - Gtk.Clipboard.request_contents() takes a callback that will be called when the contents are received (or when the request fails.) If you don’t want to deal with providing a separate callback, you can also use- Gtk.Clipboard.wait_for_contents(). What this does is run the GLib main loop recursively waiting for the contents. This can simplify the code flow, but you still have to be aware that other callbacks in your program can be called while this recursive mainloop is running.- Along with the functions to get the clipboard contents as an arbitrary data chunk, there are also functions to retrieve it as text, - Gtk.Clipboard.request_text() and- Gtk.Clipboard.wait_for_text(). These functions take care of determining which formats are advertised by the clipboard provider, asking for the clipboard in the best available format and converting the results into the UTF-8 encoding. (The standard form for representing strings in GTK+.)- 
classmethod get(selection)[source]¶
- Parameters: - selection ( - Gdk.Atom) – a- Gdk.Atomwhich identifies the clipboard to use- Returns: - the appropriate clipboard object. If no clipboard already exists, a new one will be created. Once a clipboard object has been created, it is persistent and, since it is owned by GTK+, must not be freed or unreffed. - Return type: - Gtk.Clipboard- Returns the clipboard object for the given selection. See - Gtk.Clipboard.get_for_display() for complete details.
 - 
classmethod get_default(display)[source]¶
- Parameters: - display ( - Gdk.Display) – the- Gdk.Displayfor which the clipboard is to be retrieved.- Returns: - the default clipboard object. - Return type: - Gtk.Clipboard- Returns the default clipboard object for use with cut/copy/paste menu items and keyboard shortcuts. - New in version 3.16. 
 - 
classmethod get_for_display(display, selection)[source]¶
- Parameters: - display (Gdk.Display) – theGdk.Displayfor which the clipboard is to be retrieved or created.
- selection (Gdk.Atom) – aGdk.Atomwhich identifies the clipboard to use.
 - Returns: - the appropriate clipboard object. If no clipboard already exists, a new one will be created. Once a clipboard object has been created, it is persistent and, since it is owned by GTK+, must not be freed or unrefd. - Return type: - Returns the clipboard object for the given selection. Cut/copy/paste menu items and keyboard shortcuts should use the default clipboard, returned by passing %GDK_SELECTION_CLIPBOARD for selection. (%GDK_NONE is supported as a synonym for GDK_SELECTION_CLIPBOARD for backwards compatibility reasons.) The currently-selected object or text should be provided on the clipboard identified by #GDK_SELECTION_PRIMARY. Cut/copy/paste menu items conceptually copy the contents of the #GDK_SELECTION_PRIMARY clipboard to the default clipboard, i.e. they copy the selection to what the user sees as the clipboard. - (Passing #GDK_NONE is the same as using - gdk_atom_intern ("CLIPBOARD", FALSE).- See the FreeDesktop Clipboard Specification for a detailed discussion of the “CLIPBOARD” vs. “PRIMARY” selections under the X window system. On Win32 the #GDK_SELECTION_PRIMARY clipboard is essentially ignored.) - It’s possible to have arbitrary named clipboards; if you do invent new clipboards, you should prefix the selection name with an underscore (because the ICCCM requires that nonstandard atoms are underscore-prefixed), and namespace it as well. For example, if your application called “Foo” has a special-purpose clipboard, you might call it “_FOO_SPECIAL_CLIPBOARD”. - New in version 2.2. 
- display (
 - 
clear()[source]¶
- Clears the contents of the clipboard. Generally this should only be called between the time you call gtk_clipboard_set_with_owner() or gtk_clipboard_set_with_data(), and when the clear_func you supplied is called. Otherwise, the clipboard may be owned by someone else. 
 - 
get_display()[source]¶
- Returns: - the - Gdk.Displayassociated with self- Return type: - Gdk.Display- Gets the - Gdk.Displayassociated with self- New in version 2.2. 
 - 
get_owner()[source]¶
- Returns: - the owner of the clipboard, if any; otherwise - None.- Return type: - GObject.Objector- None- If the clipboard contents callbacks were set with gtk_clipboard_set_with_owner(), and the gtk_clipboard_set_with_data() or - Gtk.Clipboard.clear() has not subsequently called, returns the owner set by gtk_clipboard_set_with_owner().
 - 
request_contents(target, callback, *user_data)[source]¶
- Parameters: - target (Gdk.Atom) – an atom representing the form into which the clipboard owner should convert the selection.
- callback (Gtk.ClipboardReceivedFunc) – A function to call when the results are received (or the retrieval fails). If the retrieval fails the length field of selection_data will be negative.
- user_data (objectorNone) – user data to pass to callback
 - Requests the contents of clipboard as the given target. When the results of the result are later received the supplied callback will be called. 
- target (
 - 
request_image(callback, *user_data)[source]¶
- Parameters: - callback (Gtk.ClipboardImageReceivedFunc) – a function to call when the image is received, or the retrieval fails. (It will always be called one way or the other.)
- user_data (objectorNone) – user data to pass to callback.
 - Requests the contents of the clipboard as image. When the image is later received, it will be converted to a - GdkPixbuf.Pixbuf, and callback will be called.- The pixbuf parameter to callback will contain the resulting - GdkPixbuf.Pixbufif the request succeeded, or- Noneif it failed. This could happen for various reasons, in particular if the clipboard was empty or if the contents of the clipboard could not be converted into an image.- New in version 2.6. 
- callback (
 - 
request_rich_text(buffer, callback, *user_data)[source]¶
- Parameters: - buffer (Gtk.TextBuffer) – aGtk.TextBuffer
- callback (Gtk.ClipboardRichTextReceivedFunc) – a function to call when the text is received, or the retrieval fails. (It will always be called one way or the other.)
- user_data (objectorNone) – user data to pass to callback.
 - Requests the contents of the clipboard as rich text. When the rich text is later received, callback will be called. - The text parameter to callback will contain the resulting rich text if the request succeeded, or - Noneif it failed. The length parameter will contain text’s length. This function can fail for various reasons, in particular if the clipboard was empty or if the contents of the clipboard could not be converted into rich text form.- New in version 2.10. 
- buffer (
 - 
request_targets(callback, *user_data)[source]¶
- Parameters: - callback (Gtk.ClipboardTargetsReceivedFunc) – a function to call when the targets are received, or the retrieval fails. (It will always be called one way or the other.)
- user_data (objectorNone) – user data to pass to callback.
 - Requests the contents of the clipboard as list of supported targets. When the list is later received, callback will be called. - The targets parameter to callback will contain the resulting targets if the request succeeded, or - Noneif it failed.- New in version 2.4. 
- callback (
 - 
request_text(callback, *user_data)[source]¶
- Parameters: - callback (Gtk.ClipboardTextReceivedFunc) – a function to call when the text is received, or the retrieval fails. (It will always be called one way or the other.)
- user_data (objectorNone) – user data to pass to callback.
 - Requests the contents of the clipboard as text. When the text is later received, it will be converted to UTF-8 if necessary, and callback will be called. - The text parameter to callback will contain the resulting text if the request succeeded, or - Noneif it failed. This could happen for various reasons, in particular if the clipboard was empty or if the contents of the clipboard could not be converted into text form.
- callback (
 - 
request_uris(callback, *user_data)[source]¶
- Parameters: - callback (Gtk.ClipboardURIReceivedFunc) – a function to call when the URIs are received, or the retrieval fails. (It will always be called one way or the other.)
- user_data (objectorNone) – user data to pass to callback.
 - Requests the contents of the clipboard as URIs. When the URIs are later received callback will be called. - The uris parameter to callback will contain the resulting array of URIs if the request succeeded, or - Noneif it failed. This could happen for various reasons, in particular if the clipboard was empty or if the contents of the clipboard could not be converted into URI form.- New in version 2.14. 
- callback (
 - 
set_can_store(targets)[source]¶
- Parameters: - targets ([ - Gtk.TargetEntry] or- None) – array containing information about which forms should be stored or- Noneto indicate that all forms should be stored.- Hints that the clipboard data should be stored somewhere when the application exits or when - Gtk.Clipboard.store() is called.- This value is reset when the clipboard owner changes. Where the clipboard data is stored is platform dependent, see - Gdk.Display.store_clipboard() for more information.- New in version 2.6. 
 - 
set_image(pixbuf)[source]¶
- Parameters: - pixbuf ( - GdkPixbuf.Pixbuf) – a- GdkPixbuf.Pixbuf- Sets the contents of the clipboard to the given - GdkPixbuf.Pixbuf. GTK+ will take responsibility for responding for requests for the image, and for converting the image into the requested format.- New in version 2.6. 
 - 
set_text(text, len)[source]¶
- Parameters: - Sets the contents of the clipboard to the given UTF-8 string. GTK+ will make a copy of the text and take responsibility for responding for requests for the text, and for converting the text into the requested format. 
 - 
store()[source]¶
- Stores the current clipboard data somewhere so that it will stay around after the application has quit. - New in version 2.6. 
 - 
wait_for_contents(target)[source]¶
- Parameters: - target ( - Gdk.Atom) – an atom representing the form into which the clipboard owner should convert the selection.- Returns: - a newly-allocated - Gtk.SelectionDataobject or- Noneif retrieving the given target failed. If non-- None, this value must be freed with- Gtk.SelectionData.free() when you are finished with it.- Return type: - Gtk.SelectionDataor- None- Requests the contents of the clipboard using the given target. This function waits for the data to be received using the main loop, so events, timeouts, etc, may be dispatched during the wait. 
 - 
wait_for_image()[source]¶
- Returns: - a newly-allocated - GdkPixbuf.Pixbufobject which must be disposed with- GObject.Object.unref(), or- Noneif retrieving the selection data failed. (This could happen for various reasons, in particular if the clipboard was empty or if the contents of the clipboard could not be converted into an image.)- Return type: - GdkPixbuf.Pixbufor- None- Requests the contents of the clipboard as image and converts the result to a - GdkPixbuf.Pixbuf. This function waits for the data to be received using the main loop, so events, timeouts, etc, may be dispatched during the wait.- New in version 2.6. 
 - 
wait_for_rich_text(buffer)[source]¶
- Parameters: - buffer ( - Gtk.TextBuffer) – a- Gtk.TextBuffer- Returns: - a newly-allocated binary block of data which must be freed with - GLib.free(), or- Noneif retrieving the selection data failed. (This could happen for various reasons, in particular if the clipboard was empty or if the contents of the clipboard could not be converted into text form.)- format: - return location for the format of the returned data - Return type: - ( - bytesor- None, format:- Gdk.Atom)- Requests the contents of the clipboard as rich text. This function waits for the data to be received using the main loop, so events, timeouts, etc, may be dispatched during the wait. - New in version 2.10. 
 - 
wait_for_targets()[source]¶
- Returns: - Trueif any targets are present on the clipboard, otherwise- False.- targets: - location to store an array of targets. The result stored here must be freed with - GLib.free().- Return type: - ( - bool, targets: [- Gdk.Atom])- Returns a list of targets that are present on the clipboard, or - Noneif there aren’t any targets available. The returned list must be freed with- GLib.free(). This function waits for the data to be received using the main loop, so events, timeouts, etc, may be dispatched during the wait.- New in version 2.4. 
 - 
wait_for_text()[source]¶
- Returns: - a newly-allocated UTF-8 string which must be freed with - GLib.free(), or- Noneif retrieving the selection data failed. (This could happen for various reasons, in particular if the clipboard was empty or if the contents of the clipboard could not be converted into text form.)- Return type: - stror- None- Requests the contents of the clipboard as text and converts the result to UTF-8 if necessary. This function waits for the data to be received using the main loop, so events, timeouts, etc, may be dispatched during the wait. 
 - 
wait_for_uris()[source]¶
- Returns: - a newly-allocated - None-terminated array of strings which must be freed with- GLib.strfreev(), or- Noneif retrieving the selection data failed. (This could happen for various reasons, in particular if the clipboard was empty or if the contents of the clipboard could not be converted into URI form.)- Return type: - [ - str] or- None- Requests the contents of the clipboard as URIs. This function waits for the data to be received using the main loop, so events, timeouts, etc, may be dispatched during the wait. - New in version 2.14. 
 - 
wait_is_image_available()[source]¶
- Returns: - Trueis there is an image available,- Falseotherwise.- Return type: - bool- Test to see if there is an image available to be pasted This is done by requesting the TARGETS atom and checking if it contains any of the supported image targets. This function waits for the data to be received using the main loop, so events, timeouts, etc, may be dispatched during the wait. - This function is a little faster than calling - Gtk.Clipboard.wait_for_image() since it doesn’t need to retrieve the actual image data.- New in version 2.6. 
 - 
wait_is_rich_text_available(buffer)[source]¶
- Parameters: - buffer ( - Gtk.TextBuffer) – a- Gtk.TextBuffer- Returns: - Trueis there is rich text available,- Falseotherwise.- Return type: - bool- Test to see if there is rich text available to be pasted This is done by requesting the TARGETS atom and checking if it contains any of the supported rich text targets. This function waits for the data to be received using the main loop, so events, timeouts, etc, may be dispatched during the wait. - This function is a little faster than calling - Gtk.Clipboard.wait_for_rich_text() since it doesn’t need to retrieve the actual text.- New in version 2.10. 
 - 
wait_is_target_available(target)[source]¶
- Parameters: - target ( - Gdk.Atom) – A- Gdk.Atomindicating which target to look for.- Returns: - Trueif the target is available,- Falseotherwise.- Return type: - bool- Checks if a clipboard supports pasting data of a given type. This function can be used to determine if a “Paste” menu item should be insensitive or not. - If you want to see if there’s text available on the clipboard, use - Gtk.Clipboard.wait_is_text_available() instead.- New in version 2.6. 
 - 
wait_is_text_available()[source]¶
- Returns: - Trueis there is text available,- Falseotherwise.- Return type: - bool- Test to see if there is text available to be pasted This is done by requesting the TARGETS atom and checking if it contains any of the supported text targets. This function waits for the data to be received using the main loop, so events, timeouts, etc, may be dispatched during the wait. - This function is a little faster than calling - Gtk.Clipboard.wait_for_text() since it doesn’t need to retrieve the actual text.
 - 
wait_is_uris_available()[source]¶
- Returns: - Trueis there is an URI list available,- Falseotherwise.- Return type: - bool- Test to see if there is a list of URIs available to be pasted This is done by requesting the TARGETS atom and checking if it contains the URI targets. This function waits for the data to be received using the main loop, so events, timeouts, etc, may be dispatched during the wait. - This function is a little faster than calling - Gtk.Clipboard.wait_for_uris() since it doesn’t need to retrieve the actual URI data.- New in version 2.14. 
 
- 
classmethod 
Signal Details¶
- 
Gtk.Clipboard.signals.owner_change(clipboard, event)¶
- Signal Name: - owner-change- Flags: - Parameters: - clipboard (Gtk.Clipboard) – The object which received the signal
- event (Gdk.EventOwnerChange) – the GdkEventOwnerChange event
 - The - ::owner-changesignal is emitted when GTK+ receives an event that indicates that the ownership of the selection associated with clipboard has changed.- New in version 2.6. 
- clipboard (