2022-07-26 21:46:43 -04:00
|
|
|
/* exported Indicator */
|
|
|
|
const {Gio, GObject} = imports.gi;
|
|
|
|
|
|
|
|
const SystemActions = imports.misc.systemActions;
|
|
|
|
|
|
|
|
const {QuickToggle, SystemIndicator} = imports.ui.quickSettings;
|
|
|
|
|
|
|
|
const RotationToggle = GObject.registerClass(
|
|
|
|
class RotationToggle extends QuickToggle {
|
|
|
|
_init() {
|
|
|
|
this._systemActions = new SystemActions.getDefault();
|
|
|
|
|
|
|
|
super._init({
|
2023-01-30 15:32:39 -05:00
|
|
|
title: _('Auto Rotate'),
|
2022-07-26 21:46:43 -04:00
|
|
|
});
|
|
|
|
|
|
|
|
this._systemActions.bind_property('can-lock-orientation',
|
|
|
|
this, 'visible',
|
|
|
|
GObject.BindingFlags.DEFAULT |
|
|
|
|
GObject.BindingFlags.SYNC_CREATE);
|
|
|
|
this._systemActions.bind_property('orientation-lock-icon',
|
|
|
|
this, 'icon-name',
|
|
|
|
GObject.BindingFlags.DEFAULT |
|
|
|
|
GObject.BindingFlags.SYNC_CREATE);
|
|
|
|
|
|
|
|
this._settings = new Gio.Settings({
|
|
|
|
schema_id: 'org.gnome.settings-daemon.peripherals.touchscreen',
|
|
|
|
});
|
|
|
|
this._settings.bind('orientation-lock',
|
|
|
|
this, 'checked',
|
|
|
|
Gio.SettingsBindFlags.INVERT_BOOLEAN);
|
|
|
|
|
|
|
|
this.connect('clicked',
|
|
|
|
() => this._systemActions.activateLockOrientation());
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
var Indicator = GObject.registerClass(
|
|
|
|
class Indicator extends SystemIndicator {
|
|
|
|
_init() {
|
|
|
|
super._init();
|
|
|
|
|
|
|
|
this.quickSettingsItems.push(new RotationToggle());
|
|
|
|
}
|
|
|
|
});
|