summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEmmanuele Bassi <ebassi@gnome.org>2020-12-16 16:01:14 +0000
committerEmmanuele Bassi <ebassi@gnome.org>2020-12-16 16:29:01 +0000
commit387078b40c77b6a8fe2d7ec7f81b322fa660191d (patch)
treea05676219920bdef3361f76ca67e87c2826b6a8e
parent5203bf0b834c08a8315fa7b9e9f7f9c74a3c9b13 (diff)
downloadgtk+-387078b40c77b6a8fe2d7ec7f81b322fa660191d.tar.gz
docs: Document GtkNativeDialogClass
-rw-r--r--gtk/gtknativedialog.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/gtk/gtknativedialog.h b/gtk/gtknativedialog.h
index 09f8546f19..a4e75680d4 100644
--- a/gtk/gtknativedialog.h
+++ b/gtk/gtknativedialog.h
@@ -32,10 +32,18 @@ G_BEGIN_DECLS
GDK_AVAILABLE_IN_ALL
G_DECLARE_DERIVABLE_TYPE (GtkNativeDialog, gtk_native_dialog, GTK, NATIVE_DIALOG, GObject)
+/**
+ * GtkNativeDialogClass:
+ * @response: class handler for the #GtkNativeDialog::response signal
+ *
+ * Class structure for #GtkNativeDialog.
+ */
struct _GtkNativeDialogClass
{
+ /*< private >*/
GObjectClass parent_class;
+ /*< public >*/
void (* response) (GtkNativeDialog *self, int response_id);
/* <private> */