1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
/*
* Copyright (C) 2019 Alexander Mikhaylenko <exalm7659@gmail.com>
*
* SPDX-License-Identifier: LGPL-2.1+
*/
#pragma once
#include <gladeui/glade.h>
#include <handy.h>
void glade_hdy_preferences_window_post_create (GladeWidgetAdaptor *adaptor,
GObject *container,
GladeCreateReason reason);
gboolean glade_hdy_preferences_window_add_verify (GladeWidgetAdaptor *adaptor,
GtkWidget *object,
GtkWidget *child,
gboolean user_feedback);
void glade_hdy_preferences_window_add_child (GladeWidgetAdaptor *adaptor,
GObject *container,
GObject *child);
void glade_hdy_preferences_window_remove_child (GladeWidgetAdaptor *adaptor,
GObject *container,
GObject *child);
void glade_hdy_preferences_window_replace_child (GladeWidgetAdaptor *adaptor,
GObject *container,
GObject *current,
GObject *new_widget);
GList *glade_hdy_preferences_window_get_children (GladeWidgetAdaptor *adaptor,
GObject *object);
void glade_hdy_preferences_window_action_activate (GladeWidgetAdaptor *adaptor,
GObject *object,
const gchar *action_path);
void glade_hdy_preferences_window_child_set_property (GladeWidgetAdaptor *adaptor,
GObject *container,
GObject *child,
const gchar *property_name,
const GValue *value);
void glade_hdy_preferences_window_child_get_property (GladeWidgetAdaptor *adaptor,
GObject *container,
GObject *child,
const gchar *property_name,
GValue *value);
|