aboutsummaryrefslogtreecommitdiff
path: root/client/src/settings.vala
blob: 17177232f751b41aa252aff7b3551a8c851ea2d3 (plain) (blame)
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
namespace Dino {

public class Settings {

    private GLib.Settings gsettings;

    public bool send_read {
        get { return gsettings.get_boolean("send-read"); }
        set { gsettings.set_boolean("send-read", value); }
    }

    public bool convert_utf8_smileys {
        get { return gsettings.get_boolean("convert-utf8-smileys"); }
        set { gsettings.set_boolean("convert-utf8-smileys", value); }
    }

    public Settings(GLib.Settings gsettings) {
        this.gsettings = gsettings;
    }

    public static Settings instance() {
        SettingsSchemaSource sss = SettingsSchemaSource.get_default();
        SettingsSchema schema = sss.lookup("org.dino-im", false);
        return new Settings(new GLib.Settings.full(schema, null, null));
    }
}

}