summaryrefslogtreecommitdiff
path: root/examples/application6/exampleappprefs.c
blob: dd6569967261ad1a7cd3e261dfdccf20590e141a (plain)
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
#include <gtk/gtk.h>

#include "exampleapp.h"
#include "exampleappwin.h"
#include "exampleappprefs.h"

struct ExampleAppPrefs {
        GtkDialog parent;
};

struct ExampleAppPrefsClass {
        GtkDialogClass parent_class;
};

typedef struct ExampleAppPrefsPrivate ExampleAppPrefsPrivate;
struct ExampleAppPrefsPrivate {
        GSettings *settings;
        GtkWidget *font;
        GtkWidget *transition;
        GtkWidget *close;
};

G_DEFINE_TYPE_WITH_PRIVATE(ExampleAppPrefs, example_app_prefs, GTK_TYPE_DIALOG)

static void
example_app_prefs_init (ExampleAppPrefs *prefs)
{
        ExampleAppPrefsPrivate *priv;

        priv = example_app_prefs_get_instance_private (prefs);
        gtk_widget_init_template (GTK_WIDGET (prefs));
        priv->settings = g_settings_new ("org.gtk.exampleapp");

        g_settings_bind (priv->settings, "font",
                         priv->font, "font",
                         G_SETTINGS_BIND_DEFAULT);
        g_settings_bind (priv->settings, "transition",
                         priv->transition, "active-id",
                         G_SETTINGS_BIND_DEFAULT);
        g_signal_connect_swapped (priv->close, "clicked",
                                  G_CALLBACK (gtk_widget_destroy), prefs);
}

static void
example_app_prefs_dispose (GObject *object)
{
        ExampleAppPrefsPrivate *priv;

        priv = example_app_prefs_get_instance_private (EXAMPLE_APP_PREFS (object));
        g_clear_object (&priv->settings);

        G_OBJECT_CLASS (example_app_prefs_parent_class)->dispose (object);
}

static void
example_app_prefs_class_init (ExampleAppPrefsClass *class)
{
        G_OBJECT_CLASS (class)->dispose = example_app_prefs_dispose;

        gtk_widget_class_set_template_from_resource (GTK_WIDGET_CLASS (class),
                                                     "/org/gtk/exampleapp/prefs.ui");
        gtk_widget_class_bind_template_child_private (GTK_WIDGET_CLASS (class), ExampleAppPrefs, font);
        gtk_widget_class_bind_template_child_private (GTK_WIDGET_CLASS (class), ExampleAppPrefs, transition);
        gtk_widget_class_bind_template_child_private (GTK_WIDGET_CLASS (class), ExampleAppPrefs, close);
}

ExampleAppPrefs *
example_app_prefs_new (ExampleAppWindow *win)
{
        return g_object_new (EXAMPLE_APP_PREFS_TYPE, "transient-for", win, NULL);
}