From 4a4b5956c9b12bbfb583da1794ef0184e760ac33 Mon Sep 17 00:00:00 2001 From: fiaxh Date: Mon, 21 Aug 2017 17:16:25 +0200 Subject: Move settings from GSettings to own db --- libdino/src/settings.vala | 38 -------------------------------------- 1 file changed, 38 deletions(-) delete mode 100644 libdino/src/settings.vala (limited to 'libdino/src/settings.vala') diff --git a/libdino/src/settings.vala b/libdino/src/settings.vala deleted file mode 100644 index aac83917..00000000 --- a/libdino/src/settings.vala +++ /dev/null @@ -1,38 +0,0 @@ -namespace Dino { - -public class Settings { - - private GLib.Settings gsettings; - - public bool send_typing { - get { return gsettings.get_boolean("send-typing"); } - set { gsettings.set_boolean("send-typing", value); } - } - - public bool send_marker { - get { return gsettings.get_boolean("send-marker"); } - set { gsettings.set_boolean("send-marker", value); } - } - - public bool notifications { - get { return gsettings.get_boolean("notifications"); } - set { gsettings.set_boolean("notifications", 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)); - } -} - -} -- cgit v1.2.3