mirror of
https://gitlab.com/asus-linux/asusctl.git
synced 2026-02-06 00:15:04 +01:00
79 lines
2.5 KiB
TypeScript
79 lines
2.5 KiB
TypeScript
import { AnimeDbus } from "../dbus/animatrix";
|
|
|
|
import GObject from 'gi://GObject';
|
|
import * as PopupMenu from 'resource:///org/gnome/shell/ui/popupMenu.js';
|
|
|
|
export const MenuToggleAnimePower = GObject.registerClass(
|
|
class MenuToggleAnimePower extends PopupMenu.PopupSwitchMenuItem {
|
|
private _dbus_anime: AnimeDbus;
|
|
public toggle_callback = () => {};
|
|
|
|
constructor(dbus_anime: AnimeDbus) {
|
|
super(
|
|
"AniMatrix Display Power", dbus_anime.deviceState.display_enabled
|
|
);
|
|
this._dbus_anime = dbus_anime;
|
|
this.label = "AniMatrix Display Power";
|
|
|
|
this.connectObject(
|
|
"toggled", () => this._toggleMode(),
|
|
this);
|
|
|
|
this.connect("destroy", () => {
|
|
this.destroy();
|
|
});
|
|
|
|
this.sync();
|
|
}
|
|
|
|
_toggleMode() {
|
|
this._dbus_anime.getDeviceState();
|
|
if (this.state !== this._dbus_anime.deviceState.display_enabled)
|
|
this._dbus_anime.setEnableDisplay(this.state);
|
|
this.toggle_callback();
|
|
}
|
|
|
|
sync() {
|
|
this._dbus_anime.getDeviceState();
|
|
const checked = this._dbus_anime.deviceState.display_enabled;
|
|
this.setToggleState(checked);
|
|
}
|
|
});
|
|
|
|
|
|
export const MenuToggleAnimeBuiltins = GObject.registerClass(
|
|
class MenuToggleAnimeBuiltins extends PopupMenu.PopupSwitchMenuItem {
|
|
private _dbus_anime: AnimeDbus;
|
|
public toggle_callback = () => {};
|
|
|
|
constructor(dbus_anime: AnimeDbus) {
|
|
super(
|
|
"AniMatrix Powersave Animation", dbus_anime.deviceState.builtin_anims_enabled
|
|
);
|
|
this._dbus_anime = dbus_anime;
|
|
this.label = "AniMatrix Powersave Animation";
|
|
|
|
this.connectObject(
|
|
"toggled", () => this._toggleMode(),
|
|
this);
|
|
|
|
this.connect("destroy", () => {
|
|
this.destroy();
|
|
});
|
|
|
|
this.sync();
|
|
}
|
|
|
|
_toggleMode() {
|
|
this._dbus_anime.getDeviceState();
|
|
if (this.state !== this._dbus_anime.deviceState.builtin_anims_enabled)
|
|
this._dbus_anime.setPowersaveAnim(this.state);
|
|
this.toggle_callback();
|
|
}
|
|
|
|
sync() {
|
|
this._dbus_anime.getDeviceState();
|
|
const checked = this._dbus_anime.deviceState.display_enabled;
|
|
this.setToggleState(checked);
|
|
}
|
|
}); |