2011-09-28 13:16:26 +00:00
|
|
|
// -*- mode: js; js-indent-level: 4; indent-tabs-mode: nil -*-
|
2019-01-31 14:07:06 +00:00
|
|
|
/* exported ATIndicator */
|
2010-07-21 08:44:59 +00:00
|
|
|
|
2019-02-09 03:21:36 +00:00
|
|
|
const { Gio, GLib, GObject, St } = imports.gi;
|
2010-07-21 08:44:59 +00:00
|
|
|
|
|
|
|
const PanelMenu = imports.ui.panelMenu;
|
|
|
|
const PopupMenu = imports.ui.popupMenu;
|
|
|
|
|
2013-08-18 09:31:25 +00:00
|
|
|
const A11Y_SCHEMA = 'org.gnome.desktop.a11y';
|
|
|
|
const KEY_ALWAYS_SHOW = 'always-show-universal-access-status';
|
2013-08-13 16:39:07 +00:00
|
|
|
|
2013-08-18 09:31:25 +00:00
|
|
|
const A11Y_KEYBOARD_SCHEMA = 'org.gnome.desktop.a11y.keyboard';
|
|
|
|
const KEY_STICKY_KEYS_ENABLED = 'stickykeys-enable';
|
|
|
|
const KEY_BOUNCE_KEYS_ENABLED = 'bouncekeys-enable';
|
|
|
|
const KEY_SLOW_KEYS_ENABLED = 'slowkeys-enable';
|
|
|
|
const KEY_MOUSE_KEYS_ENABLED = 'mousekeys-enable';
|
2010-07-21 08:44:59 +00:00
|
|
|
|
2013-08-18 09:31:25 +00:00
|
|
|
const APPLICATIONS_SCHEMA = 'org.gnome.desktop.a11y.applications';
|
2010-07-21 08:44:59 +00:00
|
|
|
|
2017-07-18 17:47:27 +00:00
|
|
|
var DPI_FACTOR_LARGE = 1.25;
|
2010-07-21 08:44:59 +00:00
|
|
|
|
2013-08-18 09:31:25 +00:00
|
|
|
const WM_SCHEMA = 'org.gnome.desktop.wm.preferences';
|
|
|
|
const KEY_VISUAL_BELL = 'visual-bell';
|
2010-07-21 08:44:59 +00:00
|
|
|
|
2013-08-18 09:31:25 +00:00
|
|
|
const DESKTOP_INTERFACE_SCHEMA = 'org.gnome.desktop.interface';
|
|
|
|
const KEY_GTK_THEME = 'gtk-theme';
|
|
|
|
const KEY_ICON_THEME = 'icon-theme';
|
|
|
|
const KEY_TEXT_SCALING_FACTOR = 'text-scaling-factor';
|
2010-07-21 08:44:59 +00:00
|
|
|
|
2013-08-18 09:31:25 +00:00
|
|
|
const HIGH_CONTRAST_THEME = 'HighContrast';
|
2010-07-21 08:44:59 +00:00
|
|
|
|
2017-10-31 01:23:39 +00:00
|
|
|
var ATIndicator = GObject.registerClass(
|
|
|
|
class ATIndicator extends PanelMenu.Button {
|
2017-10-31 00:03:21 +00:00
|
|
|
_init() {
|
2019-06-14 18:58:50 +00:00
|
|
|
super._init(0.5, _("Accessibility"));
|
2013-06-06 21:26:42 +00:00
|
|
|
|
|
|
|
this._hbox = new St.BoxLayout({ style_class: 'panel-status-menu-box' });
|
|
|
|
this._hbox.add_child(new St.Icon({ style_class: 'system-status-icon',
|
|
|
|
icon_name: 'preferences-desktop-accessibility-symbolic' }));
|
2014-02-18 12:45:26 +00:00
|
|
|
this._hbox.add_child(PopupMenu.arrowIcon(St.Side.BOTTOM));
|
2013-06-06 21:26:42 +00:00
|
|
|
|
2019-04-09 23:17:51 +00:00
|
|
|
this.add_child(this._hbox);
|
2010-07-21 08:44:59 +00:00
|
|
|
|
2014-06-24 19:17:09 +00:00
|
|
|
this._a11ySettings = new Gio.Settings({ schema_id: A11Y_SCHEMA });
|
2019-01-30 00:18:24 +00:00
|
|
|
this._a11ySettings.connect(`changed::${KEY_ALWAYS_SHOW}`, this._queueSyncMenuVisibility.bind(this));
|
2013-08-13 16:39:07 +00:00
|
|
|
|
2010-07-21 08:44:59 +00:00
|
|
|
let highContrast = this._buildHCItem();
|
|
|
|
this.menu.addMenuItem(highContrast);
|
|
|
|
|
2011-02-17 15:05:22 +00:00
|
|
|
let magnifier = this._buildItem(_("Zoom"), APPLICATIONS_SCHEMA,
|
2019-01-29 19:36:54 +00:00
|
|
|
'screen-magnifier-enabled');
|
2010-07-21 08:44:59 +00:00
|
|
|
this.menu.addMenuItem(magnifier);
|
|
|
|
|
2010-11-12 18:37:51 +00:00
|
|
|
let textZoom = this._buildFontItem();
|
2010-07-21 08:44:59 +00:00
|
|
|
this.menu.addMenuItem(textZoom);
|
|
|
|
|
2012-06-15 21:54:04 +00:00
|
|
|
let screenReader = this._buildItem(_("Screen Reader"), APPLICATIONS_SCHEMA,
|
2019-01-29 19:36:54 +00:00
|
|
|
'screen-reader-enabled');
|
2012-06-15 21:54:04 +00:00
|
|
|
this.menu.addMenuItem(screenReader);
|
2010-07-21 08:44:59 +00:00
|
|
|
|
2011-08-29 17:02:42 +00:00
|
|
|
let screenKeyboard = this._buildItem(_("Screen Keyboard"), APPLICATIONS_SCHEMA,
|
2019-01-29 19:36:54 +00:00
|
|
|
'screen-keyboard-enabled');
|
2011-08-29 17:02:42 +00:00
|
|
|
this.menu.addMenuItem(screenKeyboard);
|
2010-07-21 08:44:59 +00:00
|
|
|
|
2011-11-14 14:34:42 +00:00
|
|
|
let visualBell = this._buildItem(_("Visual Alerts"), WM_SCHEMA, KEY_VISUAL_BELL);
|
2010-07-21 08:44:59 +00:00
|
|
|
this.menu.addMenuItem(visualBell);
|
|
|
|
|
2013-08-13 16:39:07 +00:00
|
|
|
let stickyKeys = this._buildItem(_("Sticky Keys"), A11Y_KEYBOARD_SCHEMA, KEY_STICKY_KEYS_ENABLED);
|
2010-07-21 08:44:59 +00:00
|
|
|
this.menu.addMenuItem(stickyKeys);
|
|
|
|
|
2013-08-13 16:39:07 +00:00
|
|
|
let slowKeys = this._buildItem(_("Slow Keys"), A11Y_KEYBOARD_SCHEMA, KEY_SLOW_KEYS_ENABLED);
|
2010-07-21 08:44:59 +00:00
|
|
|
this.menu.addMenuItem(slowKeys);
|
|
|
|
|
2013-08-13 16:39:07 +00:00
|
|
|
let bounceKeys = this._buildItem(_("Bounce Keys"), A11Y_KEYBOARD_SCHEMA, KEY_BOUNCE_KEYS_ENABLED);
|
2010-07-21 08:44:59 +00:00
|
|
|
this.menu.addMenuItem(bounceKeys);
|
|
|
|
|
2013-08-13 16:39:07 +00:00
|
|
|
let mouseKeys = this._buildItem(_("Mouse Keys"), A11Y_KEYBOARD_SCHEMA, KEY_MOUSE_KEYS_ENABLED);
|
2010-07-21 08:44:59 +00:00
|
|
|
this.menu.addMenuItem(mouseKeys);
|
|
|
|
|
2012-08-13 17:04:03 +00:00
|
|
|
this._syncMenuVisibility();
|
2017-10-31 01:23:39 +00:00
|
|
|
}
|
2012-08-13 17:04:03 +00:00
|
|
|
|
2017-10-31 00:03:21 +00:00
|
|
|
_syncMenuVisibility() {
|
2012-08-13 17:04:03 +00:00
|
|
|
this._syncMenuVisibilityIdle = 0;
|
|
|
|
|
2013-08-13 16:39:07 +00:00
|
|
|
let alwaysShow = this._a11ySettings.get_boolean(KEY_ALWAYS_SHOW);
|
2012-08-13 17:04:03 +00:00
|
|
|
let items = this.menu._getMenuItems();
|
|
|
|
|
2019-04-09 23:17:51 +00:00
|
|
|
this.visible = alwaysShow || items.some(f => !!f.state);
|
2012-08-13 17:04:03 +00:00
|
|
|
|
2013-11-29 00:45:39 +00:00
|
|
|
return GLib.SOURCE_REMOVE;
|
2017-10-31 01:23:39 +00:00
|
|
|
}
|
2012-08-13 17:04:03 +00:00
|
|
|
|
2017-10-31 00:03:21 +00:00
|
|
|
_queueSyncMenuVisibility() {
|
2012-08-13 17:04:03 +00:00
|
|
|
if (this._syncMenuVisibilityIdle)
|
|
|
|
return;
|
|
|
|
|
2019-08-19 18:50:33 +00:00
|
|
|
this._syncMenuVisibilityIdle = GLib.idle_add(GLib.PRIORITY_DEFAULT, this._syncMenuVisibility.bind(this));
|
2017-03-16 00:30:49 +00:00
|
|
|
GLib.Source.set_name_by_id(this._syncMenuVisibilityIdle, '[gnome-shell] this._syncMenuVisibility');
|
2017-10-31 01:23:39 +00:00
|
|
|
}
|
2010-07-21 08:44:59 +00:00
|
|
|
|
2019-01-31 13:43:52 +00:00
|
|
|
_buildItemExtended(string, initialValue, writable, onSet) {
|
|
|
|
let widget = new PopupMenu.PopupSwitchMenuItem(string, initialValue);
|
2019-08-20 00:51:42 +00:00
|
|
|
if (!writable) {
|
2019-07-16 09:24:13 +00:00
|
|
|
widget.reactive = false;
|
2019-08-20 00:51:42 +00:00
|
|
|
} else {
|
2017-10-31 00:38:18 +00:00
|
|
|
widget.connect('toggled', item => {
|
2019-01-31 13:43:52 +00:00
|
|
|
onSet(item.state);
|
2010-07-21 08:44:59 +00:00
|
|
|
});
|
2019-08-20 00:51:42 +00:00
|
|
|
}
|
2010-07-21 08:44:59 +00:00
|
|
|
return widget;
|
2017-10-31 01:23:39 +00:00
|
|
|
}
|
2010-07-21 08:44:59 +00:00
|
|
|
|
2017-10-31 00:03:21 +00:00
|
|
|
_buildItem(string, schema, key) {
|
2014-06-24 19:17:09 +00:00
|
|
|
let settings = new Gio.Settings({ schema_id: schema });
|
2019-04-26 08:56:07 +00:00
|
|
|
let widget = this._buildItemExtended(string,
|
|
|
|
settings.get_boolean(key),
|
|
|
|
settings.is_writable(key),
|
|
|
|
enabled => settings.set_boolean(key, enabled));
|
|
|
|
|
2019-01-30 00:18:24 +00:00
|
|
|
settings.connect(`changed::${key}`, () => {
|
2015-03-20 19:42:51 +00:00
|
|
|
widget.setToggleState(settings.get_boolean(key));
|
|
|
|
|
|
|
|
this._queueSyncMenuVisibility();
|
2017-10-31 00:38:18 +00:00
|
|
|
});
|
2015-03-20 19:42:51 +00:00
|
|
|
|
2010-07-21 08:44:59 +00:00
|
|
|
return widget;
|
2017-10-31 01:23:39 +00:00
|
|
|
}
|
2010-07-21 08:44:59 +00:00
|
|
|
|
2017-10-31 00:03:21 +00:00
|
|
|
_buildHCItem() {
|
2014-06-24 19:17:09 +00:00
|
|
|
let interfaceSettings = new Gio.Settings({ schema_id: DESKTOP_INTERFACE_SCHEMA });
|
2012-11-13 14:34:20 +00:00
|
|
|
let gtkTheme = interfaceSettings.get_string(KEY_GTK_THEME);
|
|
|
|
let iconTheme = interfaceSettings.get_string(KEY_ICON_THEME);
|
2019-08-19 19:38:51 +00:00
|
|
|
let hasHC = gtkTheme == HIGH_CONTRAST_THEME;
|
2010-07-21 08:44:59 +00:00
|
|
|
let highContrast = this._buildItemExtended(
|
|
|
|
_("High Contrast"),
|
|
|
|
hasHC,
|
2012-11-13 14:34:20 +00:00
|
|
|
interfaceSettings.is_writable(KEY_GTK_THEME) &&
|
2019-01-30 22:00:35 +00:00
|
|
|
interfaceSettings.is_writable(KEY_ICON_THEME),
|
2017-10-31 00:38:18 +00:00
|
|
|
enabled => {
|
2010-07-21 08:44:59 +00:00
|
|
|
if (enabled) {
|
2012-11-13 14:34:20 +00:00
|
|
|
interfaceSettings.set_string(KEY_GTK_THEME, HIGH_CONTRAST_THEME);
|
|
|
|
interfaceSettings.set_string(KEY_ICON_THEME, HIGH_CONTRAST_THEME);
|
2019-01-29 01:27:05 +00:00
|
|
|
} else if (!hasHC) {
|
2012-11-13 14:34:20 +00:00
|
|
|
interfaceSettings.set_string(KEY_GTK_THEME, gtkTheme);
|
|
|
|
interfaceSettings.set_string(KEY_ICON_THEME, iconTheme);
|
2011-02-18 15:15:35 +00:00
|
|
|
} else {
|
2012-11-13 14:34:20 +00:00
|
|
|
interfaceSettings.reset(KEY_GTK_THEME);
|
|
|
|
interfaceSettings.reset(KEY_ICON_THEME);
|
2010-07-21 08:44:59 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2019-01-30 00:18:24 +00:00
|
|
|
interfaceSettings.connect(`changed::${KEY_GTK_THEME}`, () => {
|
2019-04-26 08:56:07 +00:00
|
|
|
let value = interfaceSettings.get_string(KEY_GTK_THEME);
|
|
|
|
if (value == HIGH_CONTRAST_THEME) {
|
|
|
|
highContrast.setToggleState(true);
|
|
|
|
} else {
|
|
|
|
highContrast.setToggleState(false);
|
|
|
|
gtkTheme = value;
|
|
|
|
}
|
2015-03-20 19:42:51 +00:00
|
|
|
|
|
|
|
this._queueSyncMenuVisibility();
|
2017-10-31 00:38:18 +00:00
|
|
|
});
|
2010-11-12 16:36:41 +00:00
|
|
|
|
2019-01-30 00:18:24 +00:00
|
|
|
interfaceSettings.connect(`changed::${KEY_ICON_THEME}`, () => {
|
2019-04-26 08:56:07 +00:00
|
|
|
let value = interfaceSettings.get_string(KEY_ICON_THEME);
|
|
|
|
if (value != HIGH_CONTRAST_THEME)
|
|
|
|
iconTheme = value;
|
|
|
|
});
|
|
|
|
|
|
|
|
return highContrast;
|
|
|
|
}
|
|
|
|
|
|
|
|
_buildFontItem() {
|
|
|
|
let settings = new Gio.Settings({ schema_id: DESKTOP_INTERFACE_SCHEMA });
|
2011-03-03 16:01:19 +00:00
|
|
|
let factor = settings.get_double(KEY_TEXT_SCALING_FACTOR);
|
2019-08-19 19:38:51 +00:00
|
|
|
let initialSetting = factor > 1.0;
|
2010-09-18 15:29:05 +00:00
|
|
|
let widget = this._buildItemExtended(_("Large Text"),
|
2019-01-31 13:43:52 +00:00
|
|
|
initialSetting,
|
2011-03-03 16:01:19 +00:00
|
|
|
settings.is_writable(KEY_TEXT_SCALING_FACTOR),
|
2017-10-31 00:38:18 +00:00
|
|
|
enabled => {
|
2019-08-20 00:51:42 +00:00
|
|
|
if (enabled) {
|
2019-09-12 22:41:47 +00:00
|
|
|
settings.set_double(
|
|
|
|
KEY_TEXT_SCALING_FACTOR, DPI_FACTOR_LARGE);
|
2019-08-20 00:51:42 +00:00
|
|
|
} else {
|
2011-03-03 16:01:19 +00:00
|
|
|
settings.reset(KEY_TEXT_SCALING_FACTOR);
|
2019-08-20 00:51:42 +00:00
|
|
|
}
|
2010-07-21 08:44:59 +00:00
|
|
|
});
|
2019-04-26 08:56:07 +00:00
|
|
|
|
2019-01-30 00:18:24 +00:00
|
|
|
settings.connect(`changed::${KEY_TEXT_SCALING_FACTOR}`, () => {
|
2019-08-20 00:20:08 +00:00
|
|
|
factor = settings.get_double(KEY_TEXT_SCALING_FACTOR);
|
2019-08-19 19:38:51 +00:00
|
|
|
let active = factor > 1.0;
|
2019-04-26 08:56:07 +00:00
|
|
|
widget.setToggleState(active);
|
|
|
|
|
|
|
|
this._queueSyncMenuVisibility();
|
|
|
|
});
|
|
|
|
|
2010-07-21 08:44:59 +00:00
|
|
|
return widget;
|
|
|
|
}
|
2011-11-20 14:38:48 +00:00
|
|
|
});
|