[gtk+] docs: add docs for GtkRecentChooserIface



commit 4fd6ce6a9168cfe405ec0dd6c34c1134c8a37eef
Author: William Jon McCann <william jon mccann gmail com>
Date:   Mon Jan 20 20:16:55 2014 -0500

    docs: add docs for GtkRecentChooserIface

 gtk/gtkrecentchooser.h |   27 +++++++++++++++++++++++++++
 1 files changed, 27 insertions(+), 0 deletions(-)
---
diff --git a/gtk/gtkrecentchooser.h b/gtk/gtkrecentchooser.h
index ec14f36..b09417b 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
    */


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]