summaryrefslogtreecommitdiff
path: root/gtk/gtkrecentchooser.h
diff options
context:
space:
mode:
authorWilliam Jon McCann <william.jon.mccann@gmail.com>2014-01-20 20:16:55 -0500
committerWilliam Jon McCann <william.jon.mccann@gmail.com>2014-01-21 12:41:16 -0500
commit4fd6ce6a9168cfe405ec0dd6c34c1134c8a37eef (patch)
tree7a2f088e0b7d0298bd8729242186de5f2be90eda /gtk/gtkrecentchooser.h
parentcc7b5d0a573a8331d0197b65fc4441f73bcea3e9 (diff)
downloadgtk+-4fd6ce6a9168cfe405ec0dd6c34c1134c8a37eef.tar.gz
docs: add docs for GtkRecentChooserIface
Diffstat (limited to 'gtk/gtkrecentchooser.h')
-rw-r--r--gtk/gtkrecentchooser.h27
1 files changed, 27 insertions, 0 deletions
diff --git a/gtk/gtkrecentchooser.h b/gtk/gtkrecentchooser.h
index ec14f36bd7..b09417b31d 100644
--- a/gtk/gtkrecentchooser.h
+++ b/gtk/gtkrecentchooser.h
@@ -96,10 +96,37 @@ GDK_AVAILABLE_IN_ALL
GQuark gtk_recent_chooser_error_quark (void);
+/**
+ * GtkRecentChooserIface:
+ * @set_current_uri: Sets uri as the current URI for chooser.
+ * @get_current_uri: Gets the URI currently selected by chooser.
+ * @select_uri: Selects uri inside chooser.
+ * @unselect_uri: Unselects uri inside chooser.
+ * @select_all: Selects all the items inside chooser, if the chooser
+ * supports multiple selection.
+ * @unselect_all: Unselects all the items inside chooser.
+ * @get_items: Gets the list of recently used resources in form of
+ * #GtkRecentInfo objects.
+ * @get_recent_manager: Gets the #GtkRecentManager used by chooser.
+ * @add_filter: Adds filter to the list of #GtkRecentFilter objects
+ * held by chooser.
+ * @remove_filter: Removes filter from the list of #GtkRecentFilter
+ * objects held by chooser.
+ * @list_filters: Gets the #GtkRecentFilter objects held by chooser.
+ * @set_sort_func: Sets the comparison function used when sorting to
+ * be sort_func.
+ * @item_activated: Signal emitted when the user "activates" a recent
+ * item in the recent chooser.
+ * @selection_changed: Signal emitted when there is a change in the
+ * set of selected recently used resources.
+ */
struct _GtkRecentChooserIface
{
+ /*< private >*/
GTypeInterface base_iface;
+ /*< public >*/
+
/*
* Methods
*/