diff options
author | fiaxh <git@mx.ax.lt> | 2017-12-31 20:19:51 +0100 |
---|---|---|
committer | fiaxh <git@mx.ax.lt> | 2017-12-31 22:48:14 +0100 |
commit | c7c1fb51246f52801de118e1f519630a51adefdb (patch) | |
tree | 5ccc394ba6c525d24b586a63cc52cf5a348ab926 /libdino/src/entity | |
parent | 119e7cce4ffb2774fa77bbfcef5dda80a5483f3f (diff) | |
download | dino-c7c1fb51246f52801de118e1f519630a51adefdb.tar.gz dino-c7c1fb51246f52801de118e1f519630a51adefdb.zip |
Restore window state (size, maximized, position)
Diffstat (limited to 'libdino/src/entity')
-rw-r--r-- | libdino/src/entity/settings.vala | 61 |
1 files changed, 61 insertions, 0 deletions
diff --git a/libdino/src/entity/settings.vala b/libdino/src/entity/settings.vala index bf1ebed4..f94a92ca 100644 --- a/libdino/src/entity/settings.vala +++ b/libdino/src/entity/settings.vala @@ -11,6 +11,12 @@ public class Settings : Object { send_marker_ = col_to_bool_or_default("send_marker", true); notifications_ = col_to_bool_or_default("notifications", true); convert_utf8_smileys_ = col_to_bool_or_default("convert_utf8_smileys", true); + + current_width = col_to_int_or_default("window_width", 1200); + current_height = col_to_int_or_default("window_height", 700); + is_maximized = col_to_bool_or_default("window_maximized", false); + position_x = col_to_int_or_default("window_position_x", -1); + position_y = col_to_int_or_default("window_position_y", -1); } private bool col_to_bool_or_default(string key, bool def) { @@ -18,6 +24,11 @@ public class Settings : Object { return val != null ? bool.parse(val) : def; } + private int col_to_int_or_default(string key, int def) { + string? val = db.settings.select({db.settings.value}).with(db.settings.key, "=", key)[db.settings.value]; + return val != null ? int.parse(val) : def; + } + private bool send_typing_; public bool send_typing { get { return send_typing_; } @@ -53,6 +64,56 @@ public class Settings : Object { convert_utf8_smileys_ = value; } } + + private int current_width_; + public int current_width { + get { return current_width_; } + set { + if (value == current_width_) return; + db.settings.insert().or("REPLACE").value(db.settings.key, "window_width").value(db.settings.value, value.to_string()).perform(); + current_width_ = value; + } + } + + private int current_height_; + public int current_height { + get { return current_height_; } + set { + if (value == current_height_) return; + db.settings.insert().or("REPLACE").value(db.settings.key, "window_height").value(db.settings.value, value.to_string()).perform(); + current_height_ = value; + } + } + + private bool is_maximized_; + public bool is_maximized { + get { return is_maximized_; } + set { + if (value == is_maximized_) return; + db.settings.insert().or("REPLACE").value(db.settings.key, "window_maximized").value(db.settings.value, value.to_string()).perform(); + is_maximized_ = value; + } + } + + private int position_x_; + public int position_x { + get { return position_x_; } + set { + if (value == position_x_) return; + db.settings.insert().or("REPLACE").value(db.settings.key, "window_position_x").value(db.settings.value, value.to_string()).perform(); + position_x_ = value; + } + } + + private int position_y_; + public int position_y { + get { return position_y_; } + set { + if (value == position_y_) return; + db.settings.insert().or("REPLACE").value(db.settings.key, "window_position_y").value(db.settings.value, value.to_string()).perform(); + position_y_ = value; + } + } } } |