blob: 3700583b270365bd2a12e939f5ffbbeacccdd2a9 (
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", true);
return new Settings(new GLib.Settings.full(schema, null, null));
}
}
}
|