summaryrefslogtreecommitdiffstats
path: root/subprojects/libhandy/glade/glade-hdy-window.h
diff options
context:
space:
mode:
Diffstat (limited to 'subprojects/libhandy/glade/glade-hdy-window.h')
-rw-r--r--subprojects/libhandy/glade/glade-hdy-window.h34
1 files changed, 34 insertions, 0 deletions
diff --git a/subprojects/libhandy/glade/glade-hdy-window.h b/subprojects/libhandy/glade/glade-hdy-window.h
new file mode 100644
index 0000000..75f15e4
--- /dev/null
+++ b/subprojects/libhandy/glade/glade-hdy-window.h
@@ -0,0 +1,34 @@
+/*
+ * Copyright (C) 2020 Alexander Mikhaylenko <alexm@gnome.org>
+ *
+ * SPDX-License-Identifier: LGPL-2.1+
+ */
+
+#pragma once
+
+#include <gladeui/glade.h>
+
+#include <handy.h>
+
+void glade_hdy_window_post_create (GladeWidgetAdaptor *adaptor,
+ GObject *object,
+ GladeCreateReason reason);
+
+void glade_hdy_window_add_child (GladeWidgetAdaptor *adaptor,
+ GObject *object,
+ GObject *child);
+void glade_hdy_window_remove_child (GladeWidgetAdaptor *adaptor,
+ GObject *object,
+ GObject *child);
+void glade_hdy_window_replace_child (GladeWidgetAdaptor *adaptor,
+ GtkWidget *object,
+ GtkWidget *current,
+ GtkWidget *new_widget);
+
+GList *glade_hdy_window_get_children (GladeWidgetAdaptor *adaptor,
+ GObject *object);
+
+gboolean glade_hdy_window_add_verify (GladeWidgetAdaptor *adaptor,
+ GtkWidget *object,
+ GtkWidget *child,
+ gboolean user_feedback);