52 lines
1.4 KiB
JavaScript
52 lines
1.4 KiB
JavaScript
|
// SPDX-FileCopyrightText: GSConnect Developers https://github.com/GSConnect
|
||
|
//
|
||
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
||
|
|
||
|
import Gdk from 'gi://Gdk';
|
||
|
import Gio from 'gi://Gio';
|
||
|
import GLib from 'gi://GLib';
|
||
|
import Gtk from 'gi://Gtk';
|
||
|
|
||
|
import Config from '../../config.js';
|
||
|
|
||
|
|
||
|
/*
|
||
|
* Window State
|
||
|
*/
|
||
|
Gtk.Window.prototype.restoreGeometry = function (context = 'default') {
|
||
|
this._windowState = new Gio.Settings({
|
||
|
settings_schema: Config.GSCHEMA.lookup(
|
||
|
'org.gnome.Shell.Extensions.GSConnect.WindowState',
|
||
|
true
|
||
|
),
|
||
|
path: `/org/gnome/shell/extensions/gsconnect/${context}/`,
|
||
|
});
|
||
|
|
||
|
// Size
|
||
|
const [width, height] = this._windowState.get_value('window-size').deepUnpack();
|
||
|
|
||
|
if (width && height)
|
||
|
this.set_default_size(width, height);
|
||
|
|
||
|
// Maximized State
|
||
|
if (this._windowState.get_boolean('window-maximized'))
|
||
|
this.maximize();
|
||
|
};
|
||
|
|
||
|
Gtk.Window.prototype.saveGeometry = function () {
|
||
|
const state = this.get_window().get_state();
|
||
|
|
||
|
// Maximized State
|
||
|
const maximized = (state & Gdk.WindowState.MAXIMIZED);
|
||
|
this._windowState.set_boolean('window-maximized', maximized);
|
||
|
|
||
|
// Leave the size at the value before maximizing
|
||
|
if (maximized || (state & Gdk.WindowState.FULLSCREEN))
|
||
|
return;
|
||
|
|
||
|
// Size
|
||
|
const size = this.get_size();
|
||
|
this._windowState.set_value('window-size', new GLib.Variant('(ii)', size));
|
||
|
};
|
||
|
|