summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEmmanuele Bassi <ebassi@gnome.org>2020-12-16 16:04:29 +0000
committerEmmanuele Bassi <ebassi@gnome.org>2020-12-16 16:29:01 +0000
commit2ffa2be64e2d68d6dd365a827e7c4da17b3efe86 (patch)
tree9fe6b024bca01b59d36c8654ed23ce45420295b9
parent387078b40c77b6a8fe2d7ec7f81b322fa660191d (diff)
downloadgtk+-2ffa2be64e2d68d6dd365a827e7c4da17b3efe86.tar.gz
doc: Document missing GtkNotebook types
-rw-r--r--gtk/gtknotebook.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/gtk/gtknotebook.h b/gtk/gtknotebook.h
index d02e384e74..d219f78c42 100644
--- a/gtk/gtknotebook.h
+++ b/gtk/gtknotebook.h
@@ -44,8 +44,22 @@ G_BEGIN_DECLS
#define GTK_NOTEBOOK_PAGE(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GTK_TYPE_NOTEBOOK_PAGE, GtkNotebookPage))
#define GTK_IS_NOTEBOOK_PAGE(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GTK_TYPE_NOTEBOOK_PAGE))
+/**
+ * GtkNotebookPage:
+ *
+ * A page in the #GtkNotebook.
+ *
+ * The `GtkNotebookPage` structure only contains private data.
+ */
typedef struct _GtkNotebookPage GtkNotebookPage;
+/**
+ * GtkNotebookTab:
+ * @GTK_NOTEBOOK_TAB_FIRST: the first tab in the notebook
+ * @GTK_NOTEBOOK_TAB_LAST: the last tab in the notebook
+ *
+ * The parameter used in the action signals of #GtkNotebook.
+ */
typedef enum
{
GTK_NOTEBOOK_TAB_FIRST,