summaryrefslogtreecommitdiff
path: root/gtk/gtkappchooserwidget.h
diff options
context:
space:
mode:
Diffstat (limited to 'gtk/gtkappchooserwidget.h')
-rw-r--r--gtk/gtkappchooserwidget.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/gtk/gtkappchooserwidget.h b/gtk/gtkappchooserwidget.h
index 27067128e4..19aba13701 100644
--- a/gtk/gtkappchooserwidget.h
+++ b/gtk/gtkappchooserwidget.h
@@ -53,9 +53,21 @@ struct _GtkAppChooserWidget {
GtkAppChooserWidgetPrivate *priv;
};
+/**
+ * GtkAppChooserWidgetClass:
+ * @parent_class: The parent class.
+ * @application_selected: Signal emitted when an application item is
+ * selected from the widget's list.
+ * @application_activated: Signal emitted when an application item is
+ * activated from the widget's list.
+ * @populate_popup: Signal emitted when a context menu is about to
+ * popup over an application item.
+ */
struct _GtkAppChooserWidgetClass {
GtkBoxClass parent_class;
+ /*< public >*/
+
void (* application_selected) (GtkAppChooserWidget *self,
GAppInfo *app_info);
@@ -66,6 +78,8 @@ struct _GtkAppChooserWidgetClass {
GtkMenu *menu,
GAppInfo *app_info);
+ /*< private >*/
+
/* padding for future class expansion */
gpointer padding[16];
};