[]Struct gtk::Clipboard

pub struct Clipboard(_, _);

The Clipboard object 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 Clipboard::set_text), or you can supply a callback to be called at a later time when the data is needed (via Clipboard::set_with_data or Clipboard::set_with_owner.) Providing a callback also avoids having to make copies of the data when it is not needed.

Clipboard::set_with_data and 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 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, 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 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, Clipboard::request_text and 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+.)

Implements

glib::object::ObjectExt

Implementations

impl Clipboard[src]

pub fn clear(&self)[src]

Clears the contents of the clipboard. Generally this should only be called between the time you call Clipboard::set_with_owner or Clipboard::set_with_data, and when the clear_func you supplied is called. Otherwise, the clipboard may be owned by someone else.

pub fn get_display(&self) -> Option<Display>[src]

Gets the gdk::Display associated with self

Returns

the gdk::Display associated with self

pub fn get_owner(&self) -> Option<Object>[src]

If the clipboard contents callbacks were set with Clipboard::set_with_owner, and the Clipboard::set_with_data or Clipboard::clear has not subsequently called, returns the owner set by Clipboard::set_with_owner.

Returns

the owner of the clipboard, if any; otherwise None.

pub fn get_selection(&self) -> Option<Atom>[src]

Gets the selection that this clipboard is for.

Feature: v3_22

Returns

the selection

pub fn request_contents<P: FnOnce(&Clipboard, &SelectionData) + 'static>(
    &self,
    target: &Atom,
    callback: P
)
[src]

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

an atom representing the form into which the clipboard owner should convert the selection.

callback

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

user data to pass to callback

pub fn request_image<P: FnOnce(&Clipboard, &Pixbuf) + 'static>(
    &self,
    callback: P
)
[src]

Requests the contents of the clipboard as image. When the image is later received, it will be converted to a gdk_pixbuf::Pixbuf, and callback will be called.

The pixbuf parameter to callback will contain the resulting gdk_pixbuf::Pixbuf if the request succeeded, or None if 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.

callback

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

user data to pass to callback.

pub fn request_rich_text<P: IsA<TextBuffer>, Q: FnOnce(&Clipboard, &Atom, Option<&str>, usize) + 'static>(
    &self,
    buffer: &P,
    callback: Q
)
[src]

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 None if 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.

buffer

a TextBuffer

callback

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

user data to pass to callback.

pub fn request_text<P: FnOnce(&Clipboard, Option<&str>) + 'static>(
    &self,
    callback: P
)
[src]

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 None if 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

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

user data to pass to callback.

pub fn set_image(&self, pixbuf: &Pixbuf)[src]

Sets the contents of the clipboard to the given gdk_pixbuf::Pixbuf. GTK+ will take responsibility for responding for requests for the image, and for converting the image into the requested format.

pixbuf

a gdk_pixbuf::Pixbuf

pub fn set_text(&self, text: &str)[src]

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.

text

a UTF-8 string.

len

length of text, in bytes, or -1, in which case the length will be determined with strlen.

pub fn store(&self)[src]

Stores the current clipboard data somewhere so that it will stay around after the application has quit.

pub fn wait_for_contents(&self, target: &Atom) -> Option<SelectionData>[src]

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.

target

an atom representing the form into which the clipboard owner should convert the selection.

Returns

a newly-allocated SelectionData object or None if retrieving the given target failed. If non-None, this value must be freed with SelectionData::free when you are finished with it.

pub fn wait_for_image(&self) -> Option<Pixbuf>[src]

Requests the contents of the clipboard as image and converts the result to a gdk_pixbuf::Pixbuf. This function waits for the data to be received using the main loop, so events, timeouts, etc, may be dispatched during the wait.

Returns

a newly-allocated gdk_pixbuf::Pixbuf object which must be disposed with gobject::ObjectExt::unref, or None if 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.)

pub fn wait_for_rich_text<P: IsA<TextBuffer>>(
    &self,
    buffer: &P
) -> (Vec<u8>, Atom)
[src]

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.

buffer

a TextBuffer

format

return location for the format of the returned data

length

return location for the length of the returned data

Returns

a newly-allocated binary block of data which must be freed with g_free, or None if 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.)

pub fn wait_for_targets(&self) -> Option<Vec<Atom>>[src]

Returns a list of targets that are present on the clipboard, or None if there aren’t any targets available. The returned list must be freed with g_free. This function waits for the data to be received using the main loop, so events, timeouts, etc, may be dispatched during the wait.

targets

location to store an array of targets. The result stored here must be freed with g_free.

n_targets

location to store number of items in targets.

Returns

true if any targets are present on the clipboard, otherwise false.

pub fn wait_for_text(&self) -> Option<GString>[src]

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.

Returns

a newly-allocated UTF-8 string which must be freed with g_free, or None if 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.)

pub fn wait_for_uris(&self) -> Vec<GString>[src]

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.

Returns

a newly-allocated None-terminated array of strings which must be freed with g_strfreev, or None if 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.)

pub fn wait_is_image_available(&self) -> bool[src]

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 Clipboard::wait_for_image since it doesn’t need to retrieve the actual image data.

Returns

true is there is an image available, false otherwise.

pub fn wait_is_rich_text_available<P: IsA<TextBuffer>>(
    &self,
    buffer: &P
) -> bool
[src]

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 Clipboard::wait_for_rich_text since it doesn’t need to retrieve the actual text.

buffer

a TextBuffer

Returns

true is there is rich text available, false otherwise.

pub fn wait_is_target_available(&self, target: &Atom) -> bool[src]

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.

target

A gdk::Atom indicating which target to look for.

Returns

true if the target is available, false otherwise.

pub fn wait_is_text_available(&self) -> bool[src]

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 Clipboard::wait_for_text since it doesn’t need to retrieve the actual text.

Returns

true is there is text available, false otherwise.

pub fn wait_is_uris_available(&self) -> bool[src]

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 Clipboard::wait_for_uris since it doesn’t need to retrieve the actual URI data.

Returns

true is there is an URI list available, false otherwise.

pub fn get(selection: &Atom) -> Clipboard[src]

Returns the clipboard object for the given selection. See Clipboard::get_for_display for complete details.

selection

a gdk::Atom which 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.

pub fn get_default(display: &Display) -> Option<Clipboard>[src]

Returns the default clipboard object for use with cut/copy/paste menu items and keyboard shortcuts.

Feature: v3_16

display

the gdk::Display for which the clipboard is to be retrieved.

Returns

the default clipboard object.

pub fn get_for_display(display: &Display, selection: &Atom) -> Clipboard[src]

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”.

display

the gdk::Display for which the clipboard is to be retrieved or created.

selection

a gdk::Atom which 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.

impl Clipboard[src]

pub fn set_with_data<F: Fn(&Clipboard, &SelectionData, u32) + 'static>(
    &self,
    targets: &[TargetEntry],
    f: F
) -> bool
[src]

Virtually sets the contents of the specified clipboard by providing a list of supported formats for the clipboard data and a function to call to get the actual data when it is requested.

targets

array containing information about the available forms for the clipboard data

n_targets

number of elements in targets

get_func

function to call to get the actual clipboard data

clear_func

when the clipboard contents are set again, this function will be called, and get_func will not be subsequently called.

user_data

user data to pass to get_func and clear_func.

Returns

true if setting the clipboard data succeeded. If setting the clipboard data failed the provided callback functions will be ignored.

Trait Implementations

impl Clone for Clipboard

impl Debug for Clipboard

impl Display for Clipboard[src]

impl Eq for Clipboard

impl Hash for Clipboard

impl Ord for Clipboard

impl<T: ObjectType> PartialEq<T> for Clipboard

impl<T: ObjectType> PartialOrd<T> for Clipboard

impl StaticType for Clipboard

Auto Trait Implementations

impl RefUnwindSafe for Clipboard

impl !Send for Clipboard

impl !Sync for Clipboard

impl Unpin for Clipboard

impl UnwindSafe for Clipboard

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<Super, Sub> CanDowncast<Sub> for Super where
    Sub: IsA<Super>,
    Super: IsA<Super>, 

impl<T> Cast for T where
    T: ObjectType, 

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ObjectExt for T where
    T: ObjectType, 

impl<'a, T> ToGlibContainerFromSlice<'a, *const GList> for T where
    T: GlibPtrDefault + ToGlibPtr<'a, <T as GlibPtrDefault>::GlibType>, 

type Storage = (Option<List>, Vec<Stash<'a, <T as GlibPtrDefault>::GlibType, T>>)

impl<'a, T> ToGlibContainerFromSlice<'a, *const GPtrArray> for T where
    T: GlibPtrDefault + ToGlibPtr<'a, <T as GlibPtrDefault>::GlibType>, 

type Storage = (Option<PtrArray>, Vec<Stash<'a, <T as GlibPtrDefault>::GlibType, T>>)

impl<'a, T> ToGlibContainerFromSlice<'a, *mut GArray> for T where
    T: GlibPtrDefault + ToGlibPtr<'a, <T as GlibPtrDefault>::GlibType>, 

type Storage = (Option<Array>, Vec<Stash<'a, <T as GlibPtrDefault>::GlibType, T>>)

impl<'a, T> ToGlibContainerFromSlice<'a, *mut GList> for T where
    T: GlibPtrDefault + ToGlibPtr<'a, <T as GlibPtrDefault>::GlibType>, 

type Storage = (Option<List>, Vec<Stash<'a, <T as GlibPtrDefault>::GlibType, T>>)

impl<'a, T> ToGlibContainerFromSlice<'a, *mut GPtrArray> for T where
    T: GlibPtrDefault + ToGlibPtr<'a, <T as GlibPtrDefault>::GlibType>, 

type Storage = (Option<PtrArray>, Vec<Stash<'a, <T as GlibPtrDefault>::GlibType, T>>)

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToSendValue for T where
    T: ToValue + SetValue + Send + ?Sized

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T> ToValue for T where
    T: SetValue + ?Sized

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.