2000-09-14 16:39:16 +00:00
|
|
|
<!-- ##### SECTION Title ##### -->
|
|
|
|
Clipboards
|
|
|
|
|
|
|
|
<!-- ##### SECTION Short_Description ##### -->
|
2002-11-29 23:08:54 +00:00
|
|
|
Storing data on clipboards
|
2000-09-14 16:39:16 +00:00
|
|
|
|
|
|
|
<!-- ##### SECTION Long_Description ##### -->
|
|
|
|
<para>
|
|
|
|
The #GtkClipboard 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
|
|
|
|
#GdkAtom. (Conversion to and from strings can be done with
|
|
|
|
gdk_atom_intern() and gdk_atom_name().) The default clipboard
|
2002-01-01 23:51:00 +00:00
|
|
|
corresponds to the "CLIPBOARD" atom; another commonly used clipboard
|
|
|
|
is the "PRIMARY" clipboard, which, in X, traditionally contains
|
|
|
|
the currently selected text.
|
2000-09-14 16:39:16 +00:00
|
|
|
</para>
|
|
|
|
<para>
|
|
|
|
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.
|
|
|
|
</para>
|
|
|
|
<para>
|
|
|
|
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
|
Doc typo fix. (#68172)
* gtk/gtksocket.c (gtk_socket_get_id): Doc typo fix. (#68172)
* gtk/gtktreemodel.c (gtk_tree_path_is_descendant): Fix docs.
* gtk/gtktreemodel.c (gtk_tree_model_rows_reordered): Document.
* gtk/gtkwindow.c (gtk_window_remove_accel_group): Fix docs.
* gtk/gtkrc.c (gtk_rc_get_style_by_paths),
gtk/gtkwidget.c (gtk_widget_get_toplevel,
gtk_widget_push_composite_child), gtk/gtkdialog.c
(gtk_dialog_new_with_buttons, gtk_dialog_run): Keep gtk-doc
from messing up the indentation of inline examples.
* gtk/gtkmain.c, gtk/gtkrc.c: Consistently call g_getenv()
instead of getenv().
* gtk/gtktreemodel.c, gtk/gtkaccelgroup.c, gtk/gtkclipboard.c,
gtk/gtkdnd.c, gtk/gtkiconfactory.c, gtk/gtkrc.c,
gtk/gtkstyle.c, gtk/gtkselection.c: Doc fixes.
* gtk/gtkaccelmap.c (gtk_accel_map_add_filter,
gtk_accel_map_foreach_unfiltered, gtk_accel_map_load_scanner):
Document.
* gtk/tmpl/gtksocket.sgml: Mention gtk_socket_get_id()
instead of GTK_WINDOW_XWINDOW(). (#68172)
* gtk/gtk-sections.txt: Move functions which are documented
as "private" or "internal" into Private subsections.
* gtk/tmpl/gtkdnd.sgml, gtk/tmpl/gtkobject.sgml,
gtk/tmpl/gtkrc.sgml, gtk/tmpl/gtktooltips.sgml,
gtk/tmpl/gtkwidget.sgml, gtk/tmpl/gtkclipboard.sgml,
gtk/tmpl/gtkstyle.sgml, gtk/tmpl/gtkselection.sgml,
gtk/tmpl/gtkfeatures.sgml: Minor markup fixes.
* gtk/tmpl/gtksignal.sgml: Add link to GLib signal docs.
* gtk/tmpl/gtkpreview.sgml, gtk/tmpl/gtktext.sgml,
gtk/tmpl/gtktree.sgml: Remove "deprecated" from short desc.
* gtk/tmpl/gtkrc.sgml: Correct names of default RC files.
2002-01-08 00:04:57 +00:00
|
|
|
contents of clipboard reflect the internal state of a #GObject
|
2000-09-14 16:39:16 +00:00
|
|
|
(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.
|
|
|
|
</para>
|
|
|
|
<para>
|
|
|
|
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().
|
Doc typo fix. (#68172)
* gtk/gtksocket.c (gtk_socket_get_id): Doc typo fix. (#68172)
* gtk/gtktreemodel.c (gtk_tree_path_is_descendant): Fix docs.
* gtk/gtktreemodel.c (gtk_tree_model_rows_reordered): Document.
* gtk/gtkwindow.c (gtk_window_remove_accel_group): Fix docs.
* gtk/gtkrc.c (gtk_rc_get_style_by_paths),
gtk/gtkwidget.c (gtk_widget_get_toplevel,
gtk_widget_push_composite_child), gtk/gtkdialog.c
(gtk_dialog_new_with_buttons, gtk_dialog_run): Keep gtk-doc
from messing up the indentation of inline examples.
* gtk/gtkmain.c, gtk/gtkrc.c: Consistently call g_getenv()
instead of getenv().
* gtk/gtktreemodel.c, gtk/gtkaccelgroup.c, gtk/gtkclipboard.c,
gtk/gtkdnd.c, gtk/gtkiconfactory.c, gtk/gtkrc.c,
gtk/gtkstyle.c, gtk/gtkselection.c: Doc fixes.
* gtk/gtkaccelmap.c (gtk_accel_map_add_filter,
gtk_accel_map_foreach_unfiltered, gtk_accel_map_load_scanner):
Document.
* gtk/tmpl/gtksocket.sgml: Mention gtk_socket_get_id()
instead of GTK_WINDOW_XWINDOW(). (#68172)
* gtk/gtk-sections.txt: Move functions which are documented
as "private" or "internal" into Private subsections.
* gtk/tmpl/gtkdnd.sgml, gtk/tmpl/gtkobject.sgml,
gtk/tmpl/gtkrc.sgml, gtk/tmpl/gtktooltips.sgml,
gtk/tmpl/gtkwidget.sgml, gtk/tmpl/gtkclipboard.sgml,
gtk/tmpl/gtkstyle.sgml, gtk/tmpl/gtkselection.sgml,
gtk/tmpl/gtkfeatures.sgml: Minor markup fixes.
* gtk/tmpl/gtksignal.sgml: Add link to GLib signal docs.
* gtk/tmpl/gtkpreview.sgml, gtk/tmpl/gtktext.sgml,
gtk/tmpl/gtktree.sgml: Remove "deprecated" from short desc.
* gtk/tmpl/gtkrc.sgml: Correct names of default RC files.
2002-01-08 00:04:57 +00:00
|
|
|
What this does is run the GLib main loop recursively waiting for
|
2000-09-14 16:39:16 +00:00
|
|
|
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.
|
|
|
|
</para>
|
|
|
|
<para>
|
|
|
|
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+.)
|
|
|
|
</para>
|
2000-10-29 08:03:34 +00:00
|
|
|
|
2000-09-14 16:39:16 +00:00
|
|
|
<!-- ##### SECTION See_Also ##### -->
|
|
|
|
<para>
|
|
|
|
<variablelist>
|
|
|
|
|
|
|
|
<varlistentry>
|
|
|
|
<term>#GtkSelection</term>
|
Doc typo fix. (#68172)
* gtk/gtksocket.c (gtk_socket_get_id): Doc typo fix. (#68172)
* gtk/gtktreemodel.c (gtk_tree_path_is_descendant): Fix docs.
* gtk/gtktreemodel.c (gtk_tree_model_rows_reordered): Document.
* gtk/gtkwindow.c (gtk_window_remove_accel_group): Fix docs.
* gtk/gtkrc.c (gtk_rc_get_style_by_paths),
gtk/gtkwidget.c (gtk_widget_get_toplevel,
gtk_widget_push_composite_child), gtk/gtkdialog.c
(gtk_dialog_new_with_buttons, gtk_dialog_run): Keep gtk-doc
from messing up the indentation of inline examples.
* gtk/gtkmain.c, gtk/gtkrc.c: Consistently call g_getenv()
instead of getenv().
* gtk/gtktreemodel.c, gtk/gtkaccelgroup.c, gtk/gtkclipboard.c,
gtk/gtkdnd.c, gtk/gtkiconfactory.c, gtk/gtkrc.c,
gtk/gtkstyle.c, gtk/gtkselection.c: Doc fixes.
* gtk/gtkaccelmap.c (gtk_accel_map_add_filter,
gtk_accel_map_foreach_unfiltered, gtk_accel_map_load_scanner):
Document.
* gtk/tmpl/gtksocket.sgml: Mention gtk_socket_get_id()
instead of GTK_WINDOW_XWINDOW(). (#68172)
* gtk/gtk-sections.txt: Move functions which are documented
as "private" or "internal" into Private subsections.
* gtk/tmpl/gtkdnd.sgml, gtk/tmpl/gtkobject.sgml,
gtk/tmpl/gtkrc.sgml, gtk/tmpl/gtktooltips.sgml,
gtk/tmpl/gtkwidget.sgml, gtk/tmpl/gtkclipboard.sgml,
gtk/tmpl/gtkstyle.sgml, gtk/tmpl/gtkselection.sgml,
gtk/tmpl/gtkfeatures.sgml: Minor markup fixes.
* gtk/tmpl/gtksignal.sgml: Add link to GLib signal docs.
* gtk/tmpl/gtkpreview.sgml, gtk/tmpl/gtktext.sgml,
gtk/tmpl/gtktree.sgml: Remove "deprecated" from short desc.
* gtk/tmpl/gtkrc.sgml: Correct names of default RC files.
2002-01-08 00:04:57 +00:00
|
|
|
<listitem><para>#GtkClipboard provides a high-level wrapper around the
|
2000-09-14 16:39:16 +00:00
|
|
|
lower level routines that deal with X selections. It is
|
|
|
|
also possibly to directly manipulate the X selections,
|
|
|
|
though it is seldom necessary to do so.</para></listitem>
|
|
|
|
</varlistentry>
|
|
|
|
|
|
|
|
</variablelist>
|
|
|
|
</para>
|
|
|
|
|
2005-06-10 05:03:41 +00:00
|
|
|
<!-- ##### SECTION Stability_Level ##### -->
|
|
|
|
|
|
|
|
|
2000-09-14 16:39:16 +00:00
|
|
|
<!-- ##### STRUCT GtkClipboard ##### -->
|
|
|
|
<para>
|
|
|
|
|
|
|
|
</para>
|
|
|
|
|
|
|
|
|
2005-08-13 19:34:27 +00:00
|
|
|
<!-- ##### SIGNAL GtkClipboard::owner-change ##### -->
|
|
|
|
<para>
|
|
|
|
|
|
|
|
</para>
|
|
|
|
|
|
|
|
@clipboard: the object which received the signal.
|
|
|
|
@event:
|
|
|
|
|
2000-10-29 08:03:34 +00:00
|
|
|
<!-- ##### USER_FUNCTION GtkClipboardReceivedFunc ##### -->
|
2000-09-14 16:39:16 +00:00
|
|
|
<para>
|
2001-10-17 21:41:47 +00:00
|
|
|
A function to be called when the results of gtk_clipboard_request_contents()
|
2000-10-29 08:03:34 +00:00
|
|
|
are received, or when the request fails.
|
2000-09-14 16:39:16 +00:00
|
|
|
</para>
|
|
|
|
|
2000-10-29 08:03:34 +00:00
|
|
|
@clipboard: the #GtkClipboard
|
|
|
|
@selection_data: a #GtkSelectionData containing the data was received.
|
|
|
|
If retrieving the data failed, then then length field
|
|
|
|
of @selection_data will be negative.
|
|
|
|
@data: the @user_data supplied to gtk_clipboard_request_contents().
|
2000-09-14 16:39:16 +00:00
|
|
|
|
|
|
|
|
2000-10-29 08:03:34 +00:00
|
|
|
<!-- ##### USER_FUNCTION GtkClipboardTextReceivedFunc ##### -->
|
2000-09-14 16:39:16 +00:00
|
|
|
<para>
|
2000-10-29 08:03:34 +00:00
|
|
|
A function to be called when the results of gtk_clipboard_request_text()
|
|
|
|
are received, or when the request fails.
|
2000-09-14 16:39:16 +00:00
|
|
|
</para>
|
|
|
|
|
2000-10-29 08:03:34 +00:00
|
|
|
@clipboard: the #GtkClipboard
|
|
|
|
@text: the text received, as a UTF-8 encoded string, or %NULL
|
|
|
|
if retrieving the data failed.
|
|
|
|
@data: the @user_data supplied to gtk_clipboard_request_text().
|
2000-09-14 16:39:16 +00:00
|
|
|
|
|
|
|
|
2005-06-10 05:03:41 +00:00
|
|
|
<!-- ##### USER_FUNCTION GtkClipboardImageReceivedFunc ##### -->
|
|
|
|
<para>
|
|
|
|
A function to be called when the results of gtk_clipboard_request_image()
|
|
|
|
are received, or when the request fails.
|
|
|
|
</para>
|
|
|
|
|
|
|
|
@clipboard: the #GtkClipboard
|
|
|
|
@pixbuf: the received image
|
|
|
|
@data: the @user_data supplied to gtk_clipboard_request_image().
|
|
|
|
@Since: 2.6
|
|
|
|
|
2005-06-20 22:06:27 +00:00
|
|
|
|
2003-12-24 00:14:15 +00:00
|
|
|
<!-- ##### USER_FUNCTION GtkClipboardTargetsReceivedFunc ##### -->
|
|
|
|
<para>
|
|
|
|
A function to be called when the results of gtk_clipboard_request_targets()
|
|
|
|
are received, or when the request fails.
|
|
|
|
</para>
|
|
|
|
|
|
|
|
@clipboard: the #GtkClipboard
|
|
|
|
@atoms: the supported targets, as array of #GdkAtom, or %NULL
|
|
|
|
if retrieving the data failed.
|
|
|
|
@n_atoms: the length of the @atoms array.
|
|
|
|
@data: the @user_data supplied to gtk_clipboard_request_targets().
|
|
|
|
@Since: 2.4
|
|
|
|
|
|
|
|
|
2006-05-05 16:21:19 +00:00
|
|
|
<!-- ##### USER_FUNCTION GtkClipboardRichTextReceivedFunc ##### -->
|
|
|
|
<para>
|
|
|
|
|
|
|
|
</para>
|
|
|
|
|
|
|
|
@clipboard:
|
|
|
|
@format:
|
|
|
|
@text:
|
|
|
|
@length:
|
|
|
|
@data:
|
|
|
|
|
|
|
|
|
2000-09-14 16:39:16 +00:00
|
|
|
<!-- ##### USER_FUNCTION GtkClipboardGetFunc ##### -->
|
|
|
|
<para>
|
|
|
|
A function that will be called to provide the contents of the selection.
|
|
|
|
If multiple types of data were advertised, the requested type can
|
|
|
|
be determined from the @info parameter or by checking the target field
|
2001-10-17 21:41:47 +00:00
|
|
|
of @selection_data. If the data could successfully be converted into
|
2000-09-14 16:39:16 +00:00
|
|
|
then it should be stored into the @selection_data object by
|
|
|
|
calling gtk_selection_data_set() (or related functions such
|
2001-10-17 21:41:47 +00:00
|
|
|
as gtk_selection_data_set_text()). If no data is set, the requestor
|
2000-09-14 16:39:16 +00:00
|
|
|
will be informed that the attempt to get the data failed.
|
|
|
|
</para>
|
|
|
|
|
2000-10-29 08:03:34 +00:00
|
|
|
@clipboard: the #GtkClipboard
|
|
|
|
@selection_data: a #GtkSelectionData argument in which the requested
|
|
|
|
data should be stored.
|
|
|
|
@info: the info field corresponding to the requested
|
2000-09-14 16:39:16 +00:00
|
|
|
target from the #GtkTargetEntry array passed to
|
|
|
|
gtk_clipboard_set_with_data() or gtk_clipboard_set_with_owner().
|
|
|
|
@user_data_or_owner: the @user_data argument passed to gtk_clipboard_set_with_data(), or
|
2001-12-08 21:39:34 +00:00
|
|
|
the @owner argument passed to gtk_clipboard_set_with_owner()
|
2000-09-14 16:39:16 +00:00
|
|
|
|
2000-10-29 08:03:34 +00:00
|
|
|
|
2000-09-14 16:39:16 +00:00
|
|
|
<!-- ##### USER_FUNCTION GtkClipboardClearFunc ##### -->
|
|
|
|
<para>
|
|
|
|
A function that will be called when the contents of the clipboard are changed
|
|
|
|
or cleared. Once this has called, the @user_data_or_owner argument
|
|
|
|
will not be used again.
|
|
|
|
</para>
|
|
|
|
|
2000-10-29 08:03:34 +00:00
|
|
|
@clipboard: the #GtkClipboard
|
2000-09-14 16:39:16 +00:00
|
|
|
@user_data_or_owner: the @user_data argument passed to gtk_clipboard_set_with_data(), or
|
2001-12-08 21:39:34 +00:00
|
|
|
the @owner argument passed to gtk_clipboard_set_with_owner()
|
2000-09-14 16:39:16 +00:00
|
|
|
|
|
|
|
|
2000-10-29 08:03:34 +00:00
|
|
|
<!-- ##### FUNCTION gtk_clipboard_get ##### -->
|
|
|
|
<para>
|
|
|
|
|
|
|
|
</para>
|
|
|
|
|
|
|
|
@selection:
|
|
|
|
@Returns:
|
|
|
|
|
|
|
|
|
2002-04-30 18:16:14 +00:00
|
|
|
<!-- ##### FUNCTION gtk_clipboard_get_for_display ##### -->
|
|
|
|
<para>
|
|
|
|
|
|
|
|
</para>
|
|
|
|
|
|
|
|
@display:
|
|
|
|
@selection:
|
|
|
|
@Returns:
|
|
|
|
|
|
|
|
|
|
|
|
<!-- ##### FUNCTION gtk_clipboard_get_display ##### -->
|
|
|
|
<para>
|
|
|
|
|
|
|
|
</para>
|
|
|
|
|
|
|
|
@clipboard:
|
|
|
|
@Returns:
|
|
|
|
|
|
|
|
|
2000-10-29 08:03:34 +00:00
|
|
|
<!-- ##### FUNCTION gtk_clipboard_set_with_data ##### -->
|
2000-09-14 16:39:16 +00:00
|
|
|
<para>
|
|
|
|
|
|
|
|
</para>
|
|
|
|
|
|
|
|
@clipboard:
|
2000-10-29 08:03:34 +00:00
|
|
|
@targets:
|
|
|
|
@n_targets:
|
|
|
|
@get_func:
|
|
|
|
@clear_func:
|
|
|
|
@user_data:
|
2000-09-14 16:39:16 +00:00
|
|
|
@Returns:
|
|
|
|
|
|
|
|
|
2000-10-29 08:03:34 +00:00
|
|
|
<!-- ##### FUNCTION gtk_clipboard_set_with_owner ##### -->
|
2000-09-14 16:39:16 +00:00
|
|
|
<para>
|
|
|
|
|
|
|
|
</para>
|
|
|
|
|
|
|
|
@clipboard:
|
2000-10-29 08:03:34 +00:00
|
|
|
@targets:
|
|
|
|
@n_targets:
|
|
|
|
@get_func:
|
|
|
|
@clear_func:
|
|
|
|
@owner:
|
|
|
|
@Returns:
|
2000-09-14 16:39:16 +00:00
|
|
|
|
|
|
|
|
2000-10-29 08:03:34 +00:00
|
|
|
<!-- ##### FUNCTION gtk_clipboard_get_owner ##### -->
|
2000-09-14 16:39:16 +00:00
|
|
|
<para>
|
|
|
|
|
|
|
|
</para>
|
|
|
|
|
|
|
|
@clipboard:
|
2000-10-29 08:03:34 +00:00
|
|
|
@Returns:
|
2000-09-14 16:39:16 +00:00
|
|
|
|
|
|
|
|
2000-10-29 08:03:34 +00:00
|
|
|
<!-- ##### FUNCTION gtk_clipboard_clear ##### -->
|
2000-09-14 16:39:16 +00:00
|
|
|
<para>
|
|
|
|
|
|
|
|
</para>
|
|
|
|
|
|
|
|
@clipboard:
|
|
|
|
|
|
|
|
|
2000-10-29 08:03:34 +00:00
|
|
|
<!-- ##### FUNCTION gtk_clipboard_set_text ##### -->
|
2000-09-14 16:39:16 +00:00
|
|
|
<para>
|
2000-10-29 08:03:34 +00:00
|
|
|
|
2000-09-14 16:39:16 +00:00
|
|
|
</para>
|
|
|
|
|
2000-10-29 08:03:34 +00:00
|
|
|
@clipboard:
|
|
|
|
@text:
|
|
|
|
@len:
|
2000-09-14 16:39:16 +00:00
|
|
|
|
|
|
|
|
2004-11-12 17:52:08 +00:00
|
|
|
<!-- ##### FUNCTION gtk_clipboard_set_image ##### -->
|
|
|
|
<para>
|
|
|
|
|
|
|
|
</para>
|
|
|
|
|
|
|
|
@clipboard:
|
|
|
|
@pixbuf:
|
|
|
|
|
|
|
|
|
2000-10-29 08:03:34 +00:00
|
|
|
<!-- ##### FUNCTION gtk_clipboard_request_contents ##### -->
|
2000-09-14 16:39:16 +00:00
|
|
|
<para>
|
|
|
|
|
|
|
|
</para>
|
|
|
|
|
|
|
|
@clipboard:
|
2000-10-29 08:03:34 +00:00
|
|
|
@target:
|
2000-09-14 16:39:16 +00:00
|
|
|
@callback:
|
|
|
|
@user_data:
|
|
|
|
|
|
|
|
|
2000-10-29 08:03:34 +00:00
|
|
|
<!-- ##### FUNCTION gtk_clipboard_request_text ##### -->
|
2000-09-14 16:39:16 +00:00
|
|
|
<para>
|
2000-10-29 08:03:34 +00:00
|
|
|
|
2000-09-14 16:39:16 +00:00
|
|
|
</para>
|
|
|
|
|
2000-10-29 08:03:34 +00:00
|
|
|
@clipboard:
|
|
|
|
@callback:
|
|
|
|
@user_data:
|
2000-09-14 16:39:16 +00:00
|
|
|
|
|
|
|
|
2004-11-12 17:52:08 +00:00
|
|
|
<!-- ##### FUNCTION gtk_clipboard_request_image ##### -->
|
|
|
|
<para>
|
|
|
|
|
|
|
|
</para>
|
|
|
|
|
|
|
|
@clipboard:
|
|
|
|
@callback:
|
|
|
|
@user_data:
|
|
|
|
|
|
|
|
|
2003-12-24 00:14:15 +00:00
|
|
|
<!-- ##### FUNCTION gtk_clipboard_request_targets ##### -->
|
|
|
|
<para>
|
|
|
|
|
|
|
|
</para>
|
|
|
|
|
|
|
|
@clipboard:
|
|
|
|
@callback:
|
|
|
|
@user_data:
|
|
|
|
|
|
|
|
|
2006-05-05 16:21:19 +00:00
|
|
|
<!-- ##### FUNCTION gtk_clipboard_request_rich_text ##### -->
|
|
|
|
<para>
|
|
|
|
|
|
|
|
</para>
|
|
|
|
|
|
|
|
@clipboard:
|
|
|
|
@buffer:
|
|
|
|
@callback:
|
|
|
|
@user_data:
|
|
|
|
|
|
|
|
|
2000-09-14 16:39:16 +00:00
|
|
|
<!-- ##### FUNCTION gtk_clipboard_wait_for_contents ##### -->
|
|
|
|
<para>
|
|
|
|
|
|
|
|
</para>
|
|
|
|
|
|
|
|
@clipboard:
|
|
|
|
@target:
|
|
|
|
@Returns:
|
|
|
|
|
|
|
|
|
|
|
|
<!-- ##### FUNCTION gtk_clipboard_wait_for_text ##### -->
|
|
|
|
<para>
|
|
|
|
|
|
|
|
</para>
|
|
|
|
|
|
|
|
@clipboard:
|
2003-12-24 00:14:15 +00:00
|
|
|
@Returns:
|
2000-10-29 08:03:34 +00:00
|
|
|
|
|
|
|
|
2004-11-12 17:52:08 +00:00
|
|
|
<!-- ##### FUNCTION gtk_clipboard_wait_for_image ##### -->
|
|
|
|
<para>
|
|
|
|
|
|
|
|
</para>
|
|
|
|
|
|
|
|
@clipboard:
|
|
|
|
@Returns:
|
|
|
|
|
|
|
|
|
2006-05-05 16:21:19 +00:00
|
|
|
<!-- ##### FUNCTION gtk_clipboard_wait_for_rich_text ##### -->
|
|
|
|
<para>
|
|
|
|
|
|
|
|
</para>
|
|
|
|
|
|
|
|
@clipboard:
|
|
|
|
@buffer:
|
|
|
|
@format:
|
|
|
|
@length:
|
|
|
|
@Returns:
|
|
|
|
|
|
|
|
|
2001-11-21 21:43:47 +00:00
|
|
|
<!-- ##### FUNCTION gtk_clipboard_wait_is_text_available ##### -->
|
|
|
|
<para>
|
|
|
|
|
|
|
|
</para>
|
|
|
|
|
|
|
|
@clipboard:
|
|
|
|
@Returns:
|
|
|
|
|
|
|
|
|
2004-11-12 17:52:08 +00:00
|
|
|
<!-- ##### FUNCTION gtk_clipboard_wait_is_image_available ##### -->
|
|
|
|
<para>
|
|
|
|
|
|
|
|
</para>
|
|
|
|
|
|
|
|
@clipboard:
|
|
|
|
@Returns:
|
|
|
|
|
|
|
|
|
2006-05-05 16:21:19 +00:00
|
|
|
<!-- ##### FUNCTION gtk_clipboard_wait_is_rich_text_available ##### -->
|
|
|
|
<para>
|
|
|
|
|
|
|
|
</para>
|
|
|
|
|
|
|
|
@clipboard:
|
|
|
|
@buffer:
|
|
|
|
@Returns:
|
|
|
|
|
|
|
|
|
2003-12-24 00:14:15 +00:00
|
|
|
<!-- ##### FUNCTION gtk_clipboard_wait_for_targets ##### -->
|
|
|
|
<para>
|
|
|
|
|
|
|
|
</para>
|
|
|
|
|
|
|
|
@clipboard:
|
|
|
|
@targets:
|
|
|
|
@n_targets:
|
|
|
|
@Returns:
|
|
|
|
|
|
|
|
<!--
|
|
|
|
Local variables:
|
|
|
|
mode: sgml
|
|
|
|
sgml-parent-document: ("../gtk-docs.sgml" "book" "refsect2" "")
|
|
|
|
End:
|
|
|
|
-->
|
|
|
|
|
2004-01-22 06:48:20 +00:00
|
|
|
|
2004-10-25 19:23:22 +00:00
|
|
|
<!-- ##### FUNCTION gtk_clipboard_wait_is_target_available ##### -->
|
|
|
|
<para>
|
|
|
|
|
|
|
|
</para>
|
|
|
|
|
|
|
|
@clipboard:
|
|
|
|
@target:
|
|
|
|
@Returns:
|
|
|
|
|
|
|
|
|
|
|
|
<!-- ##### FUNCTION gtk_clipboard_set_can_store ##### -->
|
|
|
|
<para>
|
|
|
|
|
|
|
|
</para>
|
|
|
|
|
|
|
|
@clipboard:
|
|
|
|
@targets:
|
|
|
|
@n_targets:
|
|
|
|
|
|
|
|
|
|
|
|
<!-- ##### FUNCTION gtk_clipboard_store ##### -->
|
|
|
|
<para>
|
|
|
|
|
|
|
|
</para>
|
|
|
|
|
|
|
|
@clipboard:
|
|
|
|
|
|
|
|
|