Add a preference window

This commit is contained in:
2023-05-09 16:59:56 +09:00
parent a45953a314
commit cc8f3638a5
5 changed files with 96 additions and 21 deletions

View File

@@ -11,3 +11,7 @@ indent_size = tab
[.json] [.json]
indent_style = space indent_style = space
indent_size = 4 indent_size = 4
[.nix]
indent_style = space
indent_size = 2

2
.gitignore vendored Normal file
View File

@@ -0,0 +1,2 @@
@types/
schemas/gschemas.compiled

View File

@@ -1,29 +1,54 @@
/* extension.js const Gio = imports.gi.Gio;
* const St = imports.gi.St;
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
/* exported init */ const ExtensionUtils = imports.misc.extensionUtils;
const Me = ExtensionUtils.getCurrentExtension();
const Main = imports.ui.main;
const PanelMenu = imports.ui.panelMenu;
const Windows = Me.imports.sources.windows;
class Extension { class Extension {
constructor() {} constructor() {
this._layoutIndicator = null;
this._windows = new Windows.WindowManager();
}
enable() {} enable() {
this._windows.enable();
disable() {} this.settings = ExtensionUtils.getSettings(
"org.gnome.shell.extensions.fairy"
);
let indicatorName = `${Me.metadata.name} Layout Indicator`;
this._layoutIndicator = new PanelMenu.Button(0.0, indicatorName, false);
// Add an icon
let icon = new St.Icon({
gicon: new Gio.ThemedIcon({ name: "face-laugh-symbolic" }),
style_class: "system-status-icon",
});
this._layoutIndicator.add_child(icon);
this.settings.bind(
"show-layout",
this._layoutIndicator,
"visible",
Gio.SettingsBindFlags.DEFAULT
);
Main.panel.addToStatusArea(indicatorName, this._layoutIndicator);
}
disable() {
this._windows.disable();
this._layoutIndicator.destroy();
this._layoutIndicator = null;
this.settings = null;
}
} }
function init() { function init() {

37
prefs.js Normal file
View File

@@ -0,0 +1,37 @@
"use strict";
const { Adw, Gio, Gtk } = imports.gi;
const ExtensionUtils = imports.misc.extensionUtils;
const Me = ExtensionUtils.getCurrentExtension();
function init() { }
function fillPreferencesWindow(window) {
const settings = ExtensionUtils.getSettings(
"org.gnome.shell.extensions.fairy"
);
const page = new Adw.PreferencesPage();
const group = new Adw.PreferencesGroup();
page.add(group);
const row = new Adw.ActionRow({ title: "Show Layout Indicator" });
group.add(row);
const toggle = new Gtk.Switch({
active: settings.get_boolean("show-layout"),
valign: Gtk.Align.CENTER,
});
settings.bind(
"show-layout",
toggle,
"active",
Gio.SettingsBindFlags.DEFAULT
);
row.add_suffix(toggle);
row.activatable_widget = toggle;
window.add(page);
}

7
shell.nix Normal file
View File

@@ -0,0 +1,7 @@
{pkgs ? import <nixpkgs> {}}:
pkgs.mkShell {
packages = with pkgs; [
nodejs
glib
];
}