]> Pileus Git - ~andy/gtk/blobdiff - gtk/gtkaccelgroup.h
Move documentation from templates to inline comments: GtkAccelGroup
[~andy/gtk] / gtk / gtkaccelgroup.h
index 80780dba5a152a8a8a4e4ebb2a48c067a834c00c..b1e874491ed948677de861ff6f05f9e435081e3c 100644 (file)
@@ -66,10 +66,23 @@ typedef gboolean (*GtkAccelGroupActivate) (GtkAccelGroup  *accel_group,
                                           guint           keyval,
                                           GdkModifierType modifier);
 
+/**
+ * GtkAccelGroupFindFunc:
+ * @key: 
+ * @closure: 
+ * @data: 
+ * 
+ * Since: 2.2
+ */
 typedef gboolean (*GtkAccelGroupFindFunc) (GtkAccelKey    *key,
                                           GClosure       *closure,
                                           gpointer        data);
 
+/**
+ * GtkAccelGroup:
+ * 
+ * An object representing and maintaining a group of accelerators.
+ */
 struct _GtkAccelGroup
 {
   GObject             parent;
@@ -180,7 +193,20 @@ struct _GtkAccelGroupEntry
 
 
 #ifndef GTK_DISABLE_DEPRECATED
+/**
+ * gtk_accel_group_ref:
+ * 
+ * Deprecated equivalent of g_object_ref().
+ * 
+ * Returns: the accel group that was passed in
+ */
 #define        gtk_accel_group_ref     g_object_ref
+
+/**
+ * gtk_accel_group_unref:
+ * 
+ * Deprecated equivalent of g_object_unref().
+ */
 #define        gtk_accel_group_unref   g_object_unref
 #endif /* GTK_DISABLE_DEPRECATED */