2019-01-31 09:07:06 -05:00
|
|
|
/* exported KbdA11yDialog */
|
2019-02-08 22:21:36 -05:00
|
|
|
const { Clutter, Gio, GObject } = imports.gi;
|
|
|
|
|
2017-11-07 09:40:51 -05:00
|
|
|
const Dialog = imports.ui.dialog;
|
|
|
|
const ModalDialog = imports.ui.modalDialog;
|
|
|
|
|
|
|
|
const KEYBOARD_A11Y_SCHEMA = 'org.gnome.desktop.a11y.keyboard';
|
|
|
|
const KEY_STICKY_KEYS_ENABLED = 'stickykeys-enable';
|
|
|
|
const KEY_SLOW_KEYS_ENABLED = 'slowkeys-enable';
|
|
|
|
|
2019-01-31 14:38:24 -05:00
|
|
|
var KbdA11yDialog = GObject.registerClass(
|
2017-10-30 21:23:39 -04:00
|
|
|
class KbdA11yDialog extends GObject.Object {
|
2017-10-30 20:03:21 -04:00
|
|
|
_init() {
|
2017-10-30 21:23:39 -04:00
|
|
|
super._init();
|
|
|
|
|
2017-11-07 09:40:51 -05:00
|
|
|
this._a11ySettings = new Gio.Settings({ schema_id: KEYBOARD_A11Y_SCHEMA });
|
|
|
|
|
|
|
|
let deviceManager = Clutter.DeviceManager.get_default();
|
|
|
|
deviceManager.connect('kbd-a11y-flags-changed',
|
2017-12-01 19:27:35 -05:00
|
|
|
this._showKbdA11yDialog.bind(this));
|
2017-10-30 21:23:39 -04:00
|
|
|
}
|
2017-11-07 09:40:51 -05:00
|
|
|
|
2017-10-30 20:03:21 -04:00
|
|
|
_showKbdA11yDialog(deviceManager, newFlags, whatChanged) {
|
2017-11-07 09:40:51 -05:00
|
|
|
let dialog = new ModalDialog.ModalDialog();
|
|
|
|
let title, body;
|
|
|
|
let key, enabled;
|
|
|
|
|
|
|
|
if (whatChanged & Clutter.KeyboardA11yFlags.SLOW_KEYS_ENABLED) {
|
|
|
|
key = KEY_SLOW_KEYS_ENABLED;
|
2019-08-19 15:22:20 -04:00
|
|
|
enabled = (newFlags & Clutter.KeyboardA11yFlags.SLOW_KEYS_ENABLED) > 0;
|
2019-09-12 18:27:56 -04:00
|
|
|
title = enabled
|
|
|
|
? _("Slow Keys Turned On")
|
|
|
|
: _("Slow Keys Turned Off");
|
2017-11-07 09:40:51 -05:00
|
|
|
body = _("You just held down the Shift key for 8 seconds. This is the shortcut " +
|
|
|
|
"for the Slow Keys feature, which affects the way your keyboard works.");
|
|
|
|
|
|
|
|
} else if (whatChanged & Clutter.KeyboardA11yFlags.STICKY_KEYS_ENABLED) {
|
|
|
|
key = KEY_STICKY_KEYS_ENABLED;
|
2019-08-19 15:22:20 -04:00
|
|
|
enabled = (newFlags & Clutter.KeyboardA11yFlags.STICKY_KEYS_ENABLED) > 0;
|
2019-09-12 18:27:56 -04:00
|
|
|
title = enabled
|
|
|
|
? _("Sticky Keys Turned On")
|
|
|
|
: _("Sticky Keys Turned Off");
|
|
|
|
body = enabled
|
|
|
|
? _("You just pressed the Shift key 5 times in a row. This is the shortcut " +
|
|
|
|
"for the Sticky Keys feature, which affects the way your keyboard works.")
|
|
|
|
: _("You just pressed two keys at once, or pressed the Shift key 5 times in a row. " +
|
|
|
|
"This turns off the Sticky Keys feature, which affects the way your keyboard works.");
|
2017-11-07 09:40:51 -05:00
|
|
|
} else {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
let icon = new Gio.ThemedIcon({ name: 'preferences-desktop-accessibility-symbolic' });
|
|
|
|
let contentParams = { icon, title, body, styleClass: 'access-dialog' };
|
|
|
|
let content = new Dialog.MessageDialogContent(contentParams);
|
|
|
|
|
|
|
|
dialog.contentLayout.add_actor(content);
|
|
|
|
|
|
|
|
dialog.addButton({ label: enabled ? _("Leave On") : _("Turn On"),
|
|
|
|
action: () => {
|
|
|
|
this._a11ySettings.set_boolean(key, true);
|
|
|
|
dialog.close();
|
|
|
|
},
|
|
|
|
default: enabled,
|
|
|
|
key: !enabled ? Clutter.Escape : null });
|
|
|
|
|
|
|
|
dialog.addButton({ label: enabled ? _("Turn Off") : _("Leave Off"),
|
|
|
|
action: () => {
|
|
|
|
this._a11ySettings.set_boolean(key, false);
|
|
|
|
dialog.close();
|
|
|
|
},
|
|
|
|
default: !enabled,
|
|
|
|
key: enabled ? Clutter.Escape : null });
|
|
|
|
|
|
|
|
dialog.open();
|
|
|
|
}
|
|
|
|
});
|