diff options
author | William Jon McCann <william.jon.mccann@gmail.com> | 2014-01-17 15:17:45 -0500 |
---|---|---|
committer | William Jon McCann <william.jon.mccann@gmail.com> | 2014-01-20 12:31:21 -0500 |
commit | add1ca00f4cc1517b233f3a2ae2afd0230d3de38 (patch) | |
tree | cc5222d06ef81f9cf46b1a1e4d62fd3767213ef9 /gtk/gtkappchooserbutton.h | |
parent | f3f7c385d924ef2d22a804b2dca5190c1f8590d4 (diff) | |
download | gtk+-add1ca00f4cc1517b233f3a2ae2afd0230d3de38.tar.gz |
docs: add Gtk*Class docs
https://bugzilla.gnome.org/show_bug.cgi?id=81006
Diffstat (limited to 'gtk/gtkappchooserbutton.h')
-rw-r--r-- | gtk/gtkappchooserbutton.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/gtk/gtkappchooserbutton.h b/gtk/gtkappchooserbutton.h index 1e9f7755c2..e737e04bb5 100644 --- a/gtk/gtkappchooserbutton.h +++ b/gtk/gtkappchooserbutton.h @@ -49,12 +49,23 @@ struct _GtkAppChooserButton { GtkAppChooserButtonPrivate *priv; }; +/** + * GtkAppChooserButtonClass: + * @parent_class: The parent class. + * @custom_item_activated: Signal emitted when a custom item, + * previously added with gtk_app_chooser_button_append_custom_item(), + * is activated from the dropdown menu. + */ struct _GtkAppChooserButtonClass { GtkComboBoxClass parent_class; + /*< public >*/ + void (* custom_item_activated) (GtkAppChooserButton *self, const gchar *item_name); + /*< private >*/ + /* padding for future class expansion */ gpointer padding[16]; }; |