summaryrefslogtreecommitdiffstats
path: root/subprojects/libhandy/src/hdy-preferences-group.h
diff options
context:
space:
mode:
Diffstat (limited to 'subprojects/libhandy/src/hdy-preferences-group.h')
-rw-r--r--subprojects/libhandy/src/hdy-preferences-group.h51
1 files changed, 51 insertions, 0 deletions
diff --git a/subprojects/libhandy/src/hdy-preferences-group.h b/subprojects/libhandy/src/hdy-preferences-group.h
new file mode 100644
index 0000000..2a7952c
--- /dev/null
+++ b/subprojects/libhandy/src/hdy-preferences-group.h
@@ -0,0 +1,51 @@
+/*
+ * Copyright (C) 2019 Purism SPC
+ *
+ * SPDX-License-Identifier: LGPL-2.1+
+ */
+
+#pragma once
+
+#if !defined(_HANDY_INSIDE) && !defined(HANDY_COMPILATION)
+#error "Only <handy.h> can be included directly."
+#endif
+
+#include "hdy-version.h"
+
+#include <gtk/gtk.h>
+
+G_BEGIN_DECLS
+
+#define HDY_TYPE_PREFERENCES_GROUP (hdy_preferences_group_get_type())
+
+HDY_AVAILABLE_IN_ALL
+G_DECLARE_DERIVABLE_TYPE (HdyPreferencesGroup, hdy_preferences_group, HDY, PREFERENCES_GROUP, GtkBin)
+
+/**
+ * HdyPreferencesGroupClass
+ * @parent_class: The parent class
+ */
+struct _HdyPreferencesGroupClass
+{
+ GtkBinClass parent_class;
+
+ /*< private >*/
+ gpointer padding[4];
+};
+
+HDY_AVAILABLE_IN_ALL
+GtkWidget *hdy_preferences_group_new (void);
+
+HDY_AVAILABLE_IN_ALL
+const gchar *hdy_preferences_group_get_title (HdyPreferencesGroup *self);
+HDY_AVAILABLE_IN_ALL
+void hdy_preferences_group_set_title (HdyPreferencesGroup *self,
+ const gchar *title);
+
+HDY_AVAILABLE_IN_ALL
+const gchar *hdy_preferences_group_get_description (HdyPreferencesGroup *self);
+HDY_AVAILABLE_IN_ALL
+void hdy_preferences_group_set_description (HdyPreferencesGroup *self,
+ const gchar *description);
+
+G_END_DECLS