2012-04-13 16:18:57 -07:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this file,
|
|
|
|
* You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
|
|
|
|
'use strict';
|
|
|
|
|
|
|
|
const Cc = Components.classes;
|
|
|
|
const Ci = Components.interfaces;
|
|
|
|
const Cu = Components.utils;
|
|
|
|
const Cr = Components.results;
|
|
|
|
|
2012-10-31 09:13:28 -07:00
|
|
|
this.EXPORTED_SYMBOLS = ['AccessFu'];
|
2012-04-13 16:18:57 -07:00
|
|
|
|
|
|
|
Cu.import('resource://gre/modules/Services.jsm');
|
|
|
|
|
2012-06-20 14:07:51 -07:00
|
|
|
Cu.import('resource://gre/modules/accessibility/Utils.jsm');
|
2012-04-13 16:18:57 -07:00
|
|
|
|
2012-05-03 19:28:35 -07:00
|
|
|
const ACCESSFU_DISABLE = 0;
|
|
|
|
const ACCESSFU_ENABLE = 1;
|
|
|
|
const ACCESSFU_AUTO = 2;
|
|
|
|
|
2012-10-31 09:13:28 -07:00
|
|
|
this.AccessFu = {
|
2012-04-13 16:18:57 -07:00
|
|
|
/**
|
2012-10-01 13:33:26 -07:00
|
|
|
* Initialize chrome-layer accessibility functionality.
|
|
|
|
* If accessibility is enabled on the platform, then a special accessibility
|
|
|
|
* mode is started.
|
2012-04-13 16:18:57 -07:00
|
|
|
*/
|
|
|
|
attach: function attach(aWindow) {
|
2013-03-15 06:50:55 -07:00
|
|
|
Utils.init(aWindow);
|
2012-04-13 16:18:57 -07:00
|
|
|
|
2012-11-05 10:27:18 -08:00
|
|
|
try {
|
|
|
|
Cc['@mozilla.org/android/bridge;1'].
|
|
|
|
getService(Ci.nsIAndroidBridge).handleGeckoMessage(
|
2013-02-04 13:22:30 -08:00
|
|
|
JSON.stringify({ type: 'Accessibility:Ready' }));
|
2012-11-05 10:27:18 -08:00
|
|
|
Services.obs.addObserver(this, 'Accessibility:Settings', false);
|
|
|
|
} catch (x) {
|
|
|
|
// Not on Android
|
2013-04-23 10:39:15 -07:00
|
|
|
if (Utils.MozBuildApp === 'b2g') {
|
|
|
|
aWindow.addEventListener('ContentStart', this, false);
|
|
|
|
}
|
2012-08-17 15:49:34 -07:00
|
|
|
}
|
2012-08-17 15:49:34 -07:00
|
|
|
|
2013-05-24 11:57:28 -07:00
|
|
|
this._activatePref = new PrefCache(
|
|
|
|
'accessibility.accessfu.activate', this._enableOrDisable.bind(this), true);
|
2012-04-13 16:18:57 -07:00
|
|
|
},
|
|
|
|
|
2013-04-23 10:39:15 -07:00
|
|
|
/**
|
|
|
|
* Shut down chrome-layer accessibility functionality from the outside.
|
|
|
|
*/
|
|
|
|
detach: function detach() {
|
|
|
|
// Avoid disabling twice.
|
|
|
|
if (this._enabled) {
|
|
|
|
this._disable();
|
|
|
|
}
|
|
|
|
if (Utils.MozBuildApp === 'mobile/android') {
|
|
|
|
Services.obs.removeObserver(this, 'Accessibility:Settings');
|
|
|
|
} else if (Utils.MozBuildApp === 'b2g') {
|
|
|
|
Utils.win.shell.contentBrowser.contentWindow.removeEventListener(
|
|
|
|
'mozContentEvent', this);
|
|
|
|
Utils.win.removeEventListener('ContentStart', this);
|
|
|
|
}
|
2013-05-24 11:57:28 -07:00
|
|
|
delete this._activatePref;
|
2013-04-23 10:39:15 -07:00
|
|
|
Utils.uninit();
|
|
|
|
},
|
|
|
|
|
2012-04-13 16:18:57 -07:00
|
|
|
/**
|
2012-05-07 09:44:44 -07:00
|
|
|
* Start AccessFu mode, this primarily means controlling the virtual cursor
|
|
|
|
* with arrow keys.
|
2012-04-13 16:18:57 -07:00
|
|
|
*/
|
2012-05-14 14:21:59 -07:00
|
|
|
_enable: function _enable() {
|
2012-05-10 10:33:12 -07:00
|
|
|
if (this._enabled)
|
|
|
|
return;
|
|
|
|
this._enabled = true;
|
|
|
|
|
2012-11-05 10:27:18 -08:00
|
|
|
Cu.import('resource://gre/modules/accessibility/Utils.jsm');
|
|
|
|
Cu.import('resource://gre/modules/accessibility/TouchAdapter.jsm');
|
2012-12-07 10:39:17 -08:00
|
|
|
Cu.import('resource://gre/modules/accessibility/Presentation.jsm');
|
2012-11-05 10:27:18 -08:00
|
|
|
|
2012-06-20 14:07:51 -07:00
|
|
|
Logger.info('enable');
|
2012-08-17 15:49:34 -07:00
|
|
|
|
2013-04-23 10:39:15 -07:00
|
|
|
for each (let mm in Utils.AllMessageManagers) {
|
|
|
|
this._addMessageListeners(mm);
|
2012-10-01 13:33:26 -07:00
|
|
|
this._loadFrameScript(mm);
|
2013-04-23 10:39:15 -07:00
|
|
|
}
|
2012-10-01 13:33:26 -07:00
|
|
|
|
2012-08-17 15:49:34 -07:00
|
|
|
// Add stylesheet
|
|
|
|
let stylesheetURL = 'chrome://global/content/accessibility/AccessFu.css';
|
2013-03-15 06:50:55 -07:00
|
|
|
let stylesheet = Utils.win.document.createProcessingInstruction(
|
2012-08-17 15:49:34 -07:00
|
|
|
'xml-stylesheet', 'href="' + stylesheetURL + '" type="text/css"');
|
2013-03-15 06:50:55 -07:00
|
|
|
Utils.win.document.insertBefore(stylesheet, Utils.win.document.firstChild);
|
|
|
|
this.stylesheet = Cu.getWeakReference(stylesheet);
|
2012-08-17 15:49:34 -07:00
|
|
|
|
2013-05-24 11:57:28 -07:00
|
|
|
|
|
|
|
// Populate quicknav modes
|
|
|
|
this._quicknavModesPref =
|
|
|
|
new PrefCache(
|
|
|
|
'accessibility.accessfu.quicknav_modes',
|
|
|
|
(aName, aValue) => {
|
|
|
|
this.Input.quickNavMode.updateModes(aValue);
|
|
|
|
}, true);
|
|
|
|
|
|
|
|
// Check for output notification
|
|
|
|
this._notifyOutputPref =
|
|
|
|
new PrefCache('accessibility.accessfu.notify_output');
|
|
|
|
|
|
|
|
|
2013-04-25 09:16:10 -07:00
|
|
|
this.Input.start();
|
2013-03-15 06:50:55 -07:00
|
|
|
Output.start();
|
|
|
|
TouchAdapter.start();
|
2012-04-13 16:18:57 -07:00
|
|
|
|
2012-10-01 13:33:26 -07:00
|
|
|
Services.obs.addObserver(this, 'remote-browser-frame-shown', false);
|
2013-05-21 11:16:49 -07:00
|
|
|
Services.obs.addObserver(this, 'in-process-browser-or-app-frame-shown', false);
|
2012-10-01 13:33:26 -07:00
|
|
|
Services.obs.addObserver(this, 'Accessibility:NextObject', false);
|
|
|
|
Services.obs.addObserver(this, 'Accessibility:PreviousObject', false);
|
2012-10-19 10:06:08 -07:00
|
|
|
Services.obs.addObserver(this, 'Accessibility:Focus', false);
|
2013-05-23 07:06:27 -07:00
|
|
|
Services.obs.addObserver(this, 'Accessibility:ActivateObject', false);
|
2013-03-15 06:50:55 -07:00
|
|
|
Utils.win.addEventListener('TabOpen', this);
|
2013-05-21 11:16:49 -07:00
|
|
|
Utils.win.addEventListener('TabClose', this);
|
2013-03-15 06:50:55 -07:00
|
|
|
Utils.win.addEventListener('TabSelect', this);
|
2013-04-23 10:39:15 -07:00
|
|
|
|
|
|
|
if (this.readyCallback) {
|
|
|
|
this.readyCallback();
|
|
|
|
delete this.readyCallback;
|
|
|
|
}
|
2012-04-13 16:18:57 -07:00
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Disable AccessFu and return to default interaction mode.
|
|
|
|
*/
|
2012-05-14 14:21:59 -07:00
|
|
|
_disable: function _disable() {
|
2012-05-10 10:33:12 -07:00
|
|
|
if (!this._enabled)
|
|
|
|
return;
|
2012-10-01 13:33:26 -07:00
|
|
|
|
2012-05-10 10:33:12 -07:00
|
|
|
this._enabled = false;
|
|
|
|
|
2012-06-20 14:07:51 -07:00
|
|
|
Logger.info('disable');
|
2012-04-13 16:18:57 -07:00
|
|
|
|
2013-03-15 06:50:55 -07:00
|
|
|
Utils.win.document.removeChild(this.stylesheet.get());
|
|
|
|
|
2013-04-23 10:39:15 -07:00
|
|
|
for each (let mm in Utils.AllMessageManagers) {
|
2012-10-01 13:33:26 -07:00
|
|
|
mm.sendAsyncMessage('AccessFu:Stop');
|
2013-04-23 10:39:15 -07:00
|
|
|
this._removeMessageListeners(mm);
|
|
|
|
}
|
2012-08-17 15:49:34 -07:00
|
|
|
|
2013-04-25 09:16:10 -07:00
|
|
|
this.Input.stop();
|
2013-03-15 06:50:55 -07:00
|
|
|
Output.stop();
|
|
|
|
TouchAdapter.stop();
|
2012-04-13 16:18:57 -07:00
|
|
|
|
2013-03-15 06:50:55 -07:00
|
|
|
Utils.win.removeEventListener('TabOpen', this);
|
2013-05-21 11:16:49 -07:00
|
|
|
Utils.win.removeEventListener('TabClose', this);
|
2013-03-15 06:50:55 -07:00
|
|
|
Utils.win.removeEventListener('TabSelect', this);
|
2012-10-16 11:07:16 -07:00
|
|
|
|
2012-10-01 13:33:26 -07:00
|
|
|
Services.obs.removeObserver(this, 'remote-browser-frame-shown');
|
2013-05-21 11:16:49 -07:00
|
|
|
Services.obs.removeObserver(this, 'in-process-browser-or-app-frame-shown');
|
2012-10-01 13:33:26 -07:00
|
|
|
Services.obs.removeObserver(this, 'Accessibility:NextObject');
|
|
|
|
Services.obs.removeObserver(this, 'Accessibility:PreviousObject');
|
2012-10-19 10:06:08 -07:00
|
|
|
Services.obs.removeObserver(this, 'Accessibility:Focus');
|
2013-05-23 07:06:27 -07:00
|
|
|
Services.obs.removeObserver(this, 'Accessibility:ActivateObject');
|
2013-04-23 10:39:15 -07:00
|
|
|
|
|
|
|
if (this.doneCallback) {
|
|
|
|
this.doneCallback();
|
|
|
|
delete this.doneCallback;
|
|
|
|
}
|
2012-04-13 16:18:57 -07:00
|
|
|
},
|
|
|
|
|
2012-10-01 13:33:26 -07:00
|
|
|
_enableOrDisable: function _enableOrDisable() {
|
2012-06-13 12:22:52 -07:00
|
|
|
try {
|
2013-05-24 11:57:28 -07:00
|
|
|
let activatePref = this._activatePref.value;
|
|
|
|
if (activatePref == ACCESSFU_ENABLE ||
|
|
|
|
this._systemPref && activatePref == ACCESSFU_AUTO)
|
2012-10-01 13:33:26 -07:00
|
|
|
this._enable();
|
|
|
|
else
|
|
|
|
this._disable();
|
2012-06-13 12:22:52 -07:00
|
|
|
} catch (x) {
|
2012-11-05 10:27:18 -08:00
|
|
|
dump('Error ' + x.message + ' ' + x.fileName + ':' + x.lineNumber);
|
2012-06-13 12:22:52 -07:00
|
|
|
}
|
2012-04-13 16:18:57 -07:00
|
|
|
},
|
|
|
|
|
2012-10-01 13:33:26 -07:00
|
|
|
receiveMessage: function receiveMessage(aMessage) {
|
|
|
|
if (Logger.logLevel >= Logger.DEBUG)
|
|
|
|
Logger.debug('Recieved', aMessage.name, JSON.stringify(aMessage.json));
|
|
|
|
|
|
|
|
switch (aMessage.name) {
|
|
|
|
case 'AccessFu:Ready':
|
2012-12-07 10:39:17 -08:00
|
|
|
let mm = Utils.getMessageManager(aMessage.target);
|
2013-04-23 10:39:15 -07:00
|
|
|
if (this._enabled) {
|
|
|
|
mm.sendAsyncMessage('AccessFu:Start',
|
|
|
|
{method: 'start', buildApp: Utils.MozBuildApp});
|
|
|
|
}
|
2012-12-07 10:39:17 -08:00
|
|
|
break;
|
2012-10-01 13:33:26 -07:00
|
|
|
case 'AccessFu:Present':
|
2012-12-07 10:39:17 -08:00
|
|
|
this._output(aMessage.json, aMessage.target);
|
|
|
|
break;
|
|
|
|
case 'AccessFu:Input':
|
2013-04-25 09:16:10 -07:00
|
|
|
this.Input.setEditState(aMessage.json);
|
2012-12-07 10:39:17 -08:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
_output: function _output(aPresentationData, aBrowser) {
|
2013-04-24 10:33:16 -07:00
|
|
|
for each (let presenter in aPresentationData) {
|
|
|
|
if (!presenter)
|
|
|
|
continue;
|
2012-12-07 10:39:17 -08:00
|
|
|
|
2013-04-24 10:33:16 -07:00
|
|
|
try {
|
|
|
|
Output[presenter.type](presenter.details, aBrowser);
|
2012-10-01 13:33:26 -07:00
|
|
|
} catch (x) {
|
2012-10-19 13:39:36 -07:00
|
|
|
Logger.logException(x);
|
2012-08-17 15:49:34 -07:00
|
|
|
}
|
2013-04-24 10:33:16 -07:00
|
|
|
}
|
|
|
|
|
2013-05-24 11:57:28 -07:00
|
|
|
if (this._notifyOutputPref.value) {
|
2013-04-24 10:33:16 -07:00
|
|
|
Services.obs.notifyObservers(null, 'accessfu-output',
|
|
|
|
JSON.stringify(aPresentationData));
|
|
|
|
}
|
2012-04-13 16:18:57 -07:00
|
|
|
},
|
|
|
|
|
2012-10-01 13:33:26 -07:00
|
|
|
_loadFrameScript: function _loadFrameScript(aMessageManager) {
|
2013-04-23 10:39:15 -07:00
|
|
|
if (this._processedMessageManagers.indexOf(aMessageManager) < 0) {
|
|
|
|
aMessageManager.loadFrameScript(
|
|
|
|
'chrome://global/content/accessibility/content-script.js', true);
|
|
|
|
this._processedMessageManagers.push(aMessageManager);
|
|
|
|
} else if (this._enabled) {
|
|
|
|
// If the content-script is already loaded and AccessFu is enabled,
|
|
|
|
// send an AccessFu:Start message.
|
|
|
|
aMessageManager.sendAsyncMessage('AccessFu:Start',
|
|
|
|
{method: 'start', buildApp: Utils.MozBuildApp});
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
_addMessageListeners: function _addMessageListeners(aMessageManager) {
|
2012-10-01 13:33:26 -07:00
|
|
|
aMessageManager.addMessageListener('AccessFu:Present', this);
|
|
|
|
aMessageManager.addMessageListener('AccessFu:Input', this);
|
|
|
|
aMessageManager.addMessageListener('AccessFu:Ready', this);
|
2013-04-23 10:39:15 -07:00
|
|
|
},
|
|
|
|
|
|
|
|
_removeMessageListeners: function _removeMessageListeners(aMessageManager) {
|
|
|
|
aMessageManager.removeMessageListener('AccessFu:Present', this);
|
|
|
|
aMessageManager.removeMessageListener('AccessFu:Input', this);
|
|
|
|
aMessageManager.removeMessageListener('AccessFu:Ready', this);
|
|
|
|
},
|
|
|
|
|
|
|
|
_handleMessageManager: function _handleMessageManager(aMessageManager) {
|
|
|
|
if (this._enabled) {
|
|
|
|
this._addMessageListeners(aMessageManager);
|
|
|
|
}
|
|
|
|
this._loadFrameScript(aMessageManager);
|
2012-10-01 13:33:26 -07:00
|
|
|
},
|
|
|
|
|
2012-04-13 16:18:57 -07:00
|
|
|
observe: function observe(aSubject, aTopic, aData) {
|
|
|
|
switch (aTopic) {
|
2012-05-10 10:33:12 -07:00
|
|
|
case 'Accessibility:Settings':
|
2012-10-01 13:33:26 -07:00
|
|
|
this._systemPref = JSON.parse(aData).enabled;
|
|
|
|
this._enableOrDisable();
|
2012-05-10 10:33:12 -07:00
|
|
|
break;
|
2012-08-20 15:29:22 -07:00
|
|
|
case 'Accessibility:NextObject':
|
2013-04-25 09:16:10 -07:00
|
|
|
this.Input.moveCursor('moveNext', 'Simple', 'gesture');
|
2012-08-20 15:29:22 -07:00
|
|
|
break;
|
|
|
|
case 'Accessibility:PreviousObject':
|
2013-04-25 09:16:10 -07:00
|
|
|
this.Input.moveCursor('movePrevious', 'Simple', 'gesture');
|
2012-08-20 15:29:22 -07:00
|
|
|
break;
|
2013-05-23 07:06:27 -07:00
|
|
|
case 'Accessibility:ActivateObject':
|
|
|
|
this.Input.activateCurrent();
|
|
|
|
break;
|
2012-10-19 10:06:08 -07:00
|
|
|
case 'Accessibility:Focus':
|
|
|
|
this._focused = JSON.parse(aData);
|
|
|
|
if (this._focused) {
|
2013-03-15 06:50:55 -07:00
|
|
|
let mm = Utils.getMessageManager(Utils.CurrentBrowser);
|
2012-10-19 10:06:08 -07:00
|
|
|
mm.sendAsyncMessage('AccessFu:VirtualCursor',
|
|
|
|
{action: 'whereIsIt', move: true});
|
|
|
|
}
|
2012-08-20 15:29:22 -07:00
|
|
|
break;
|
2012-10-01 13:33:26 -07:00
|
|
|
case 'remote-browser-frame-shown':
|
2013-05-21 11:16:49 -07:00
|
|
|
case 'in-process-browser-or-app-frame-shown':
|
2012-10-01 13:33:26 -07:00
|
|
|
{
|
2013-04-23 10:39:15 -07:00
|
|
|
let mm = aSubject.QueryInterface(Ci.nsIFrameLoader).messageManager;
|
|
|
|
this._handleMessageManager(mm);
|
2012-10-01 13:33:26 -07:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
handleEvent: function handleEvent(aEvent) {
|
2012-10-16 11:07:16 -07:00
|
|
|
switch (aEvent.type) {
|
2013-04-23 10:39:15 -07:00
|
|
|
case 'ContentStart':
|
|
|
|
{
|
|
|
|
Utils.win.shell.contentBrowser.contentWindow.addEventListener(
|
|
|
|
'mozContentEvent', this, false, true);
|
|
|
|
break;
|
|
|
|
}
|
2012-10-16 11:07:16 -07:00
|
|
|
case 'mozContentEvent':
|
|
|
|
{
|
|
|
|
if (aEvent.detail.type == 'accessibility-screenreader') {
|
|
|
|
this._systemPref = aEvent.detail.enabled;
|
|
|
|
this._enableOrDisable();
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case 'TabOpen':
|
|
|
|
{
|
2013-04-23 10:39:15 -07:00
|
|
|
let mm = Utils.getMessageManager(aEvent.target);
|
|
|
|
this._handleMessageManager(mm);
|
2012-10-16 11:07:16 -07:00
|
|
|
break;
|
|
|
|
}
|
2013-05-21 11:16:49 -07:00
|
|
|
case 'TabClose':
|
|
|
|
{
|
|
|
|
let mm = Utils.getMessageManager(aEvent.target);
|
|
|
|
let mmIndex = this._processedMessageManagers.indexOf(mm);
|
|
|
|
if (mmIndex > -1) {
|
|
|
|
this._removeMessageListeners(mm);
|
|
|
|
this._processedMessageManagers.splice(mmIndex, 1);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
2012-10-19 10:06:08 -07:00
|
|
|
case 'TabSelect':
|
|
|
|
{
|
|
|
|
if (this._focused) {
|
2013-03-15 06:50:55 -07:00
|
|
|
let mm = Utils.getMessageManager(Utils.CurrentBrowser);
|
2012-10-19 10:06:08 -07:00
|
|
|
// We delay this for half a second so the awesomebar could close,
|
|
|
|
// and we could use the current coordinates for the content item.
|
|
|
|
// XXX TODO figure out how to avoid magic wait here.
|
2013-03-15 06:50:55 -07:00
|
|
|
Utils.win.setTimeout(
|
2012-10-19 10:06:08 -07:00
|
|
|
function () {
|
|
|
|
mm.sendAsyncMessage('AccessFu:VirtualCursor', {action: 'whereIsIt'});
|
|
|
|
}, 500);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
2012-04-13 16:18:57 -07:00
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2012-12-07 10:39:17 -08:00
|
|
|
announce: function announce(aAnnouncement) {
|
|
|
|
this._output(Presentation.announce(aAnnouncement),
|
2013-03-15 06:50:55 -07:00
|
|
|
Utils.CurrentBrowser);
|
2012-12-07 10:39:17 -08:00
|
|
|
},
|
|
|
|
|
2012-10-01 13:33:26 -07:00
|
|
|
// So we don't enable/disable twice
|
2012-10-19 10:06:08 -07:00
|
|
|
_enabled: false,
|
|
|
|
|
|
|
|
// Layerview is focused
|
2013-04-23 10:39:15 -07:00
|
|
|
_focused: false,
|
|
|
|
|
|
|
|
// Keep track of message managers tha already have a 'content-script.js'
|
|
|
|
// injected.
|
|
|
|
_processedMessageManagers: []
|
2012-10-01 13:33:26 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
var Output = {
|
2013-03-15 06:50:55 -07:00
|
|
|
start: function start() {
|
2012-11-05 10:27:18 -08:00
|
|
|
Cu.import('resource://gre/modules/Geometry.jsm');
|
2012-10-01 13:33:26 -07:00
|
|
|
},
|
|
|
|
|
2013-03-15 06:50:55 -07:00
|
|
|
stop: function stop() {
|
|
|
|
if (this.highlightBox) {
|
|
|
|
Utils.win.document.documentElement.removeChild(this.highlightBox.get());
|
|
|
|
delete this.highlightBox;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (this.announceBox) {
|
|
|
|
Utils.win.document.documentElement.removeChild(this.announceBox.get());
|
|
|
|
delete this.announceBox;
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2012-10-01 13:33:26 -07:00
|
|
|
Speech: function Speech(aDetails, aBrowser) {
|
|
|
|
for each (let action in aDetails.actions)
|
|
|
|
Logger.info('tts.' + action.method, '"' + action.data + '"', JSON.stringify(action.options));
|
|
|
|
},
|
|
|
|
|
|
|
|
Visual: function Visual(aDetails, aBrowser) {
|
2012-12-07 10:39:17 -08:00
|
|
|
switch (aDetails.method) {
|
|
|
|
case 'showBounds':
|
|
|
|
{
|
2013-03-15 06:50:55 -07:00
|
|
|
let highlightBox = null;
|
2012-12-07 10:39:17 -08:00
|
|
|
if (!this.highlightBox) {
|
|
|
|
// Add highlight box
|
2013-03-15 06:50:55 -07:00
|
|
|
highlightBox = Utils.win.document.
|
2012-12-07 10:39:17 -08:00
|
|
|
createElementNS('http://www.w3.org/1999/xhtml', 'div');
|
2013-03-15 06:50:55 -07:00
|
|
|
Utils.win.document.documentElement.appendChild(highlightBox);
|
|
|
|
highlightBox.id = 'virtual-cursor-box';
|
2012-12-07 10:39:17 -08:00
|
|
|
|
|
|
|
// Add highlight inset for inner shadow
|
2013-03-15 06:50:55 -07:00
|
|
|
let inset = Utils.win.document.
|
2012-12-07 10:39:17 -08:00
|
|
|
createElementNS('http://www.w3.org/1999/xhtml', 'div');
|
|
|
|
inset.id = 'virtual-cursor-inset';
|
|
|
|
|
2013-03-15 06:50:55 -07:00
|
|
|
highlightBox.appendChild(inset);
|
|
|
|
this.highlightBox = Cu.getWeakReference(highlightBox);
|
|
|
|
} else {
|
|
|
|
highlightBox = this.highlightBox.get();
|
2012-12-07 10:39:17 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
let padding = aDetails.padding;
|
|
|
|
let r = this._adjustBounds(aDetails.bounds, aBrowser);
|
|
|
|
|
|
|
|
// First hide it to avoid flickering when changing the style.
|
2013-03-15 06:50:55 -07:00
|
|
|
highlightBox.style.display = 'none';
|
|
|
|
highlightBox.style.top = (r.top - padding) + 'px';
|
|
|
|
highlightBox.style.left = (r.left - padding) + 'px';
|
|
|
|
highlightBox.style.width = (r.width + padding*2) + 'px';
|
|
|
|
highlightBox.style.height = (r.height + padding*2) + 'px';
|
|
|
|
highlightBox.style.display = 'block';
|
2012-10-01 13:33:26 -07:00
|
|
|
|
2012-12-07 10:39:17 -08:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case 'hideBounds':
|
|
|
|
{
|
2013-03-15 06:50:55 -07:00
|
|
|
let highlightBox = this.highlightBox ? this.highlightBox.get() : null;
|
|
|
|
if (highlightBox)
|
|
|
|
highlightBox.get().style.display = 'none';
|
2012-12-07 10:39:17 -08:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case 'showAnnouncement':
|
|
|
|
{
|
2013-03-15 06:50:55 -07:00
|
|
|
let announceBox = this.announceBox ? this.announceBox.get() : null;
|
|
|
|
if (!announceBox) {
|
|
|
|
announceBox = Utils.win.document.
|
2012-12-07 10:39:17 -08:00
|
|
|
createElementNS('http://www.w3.org/1999/xhtml', 'div');
|
2013-03-15 06:50:55 -07:00
|
|
|
announceBox.id = 'announce-box';
|
|
|
|
Utils.win.document.documentElement.appendChild(announceBox);
|
|
|
|
this.announceBox = Cu.getWeakReference(announceBox);
|
2012-12-07 10:39:17 -08:00
|
|
|
}
|
|
|
|
|
2013-03-15 06:50:55 -07:00
|
|
|
announceBox.innerHTML = '<div>' + aDetails.text + '</div>';
|
|
|
|
announceBox.classList.add('showing');
|
2012-12-07 10:39:17 -08:00
|
|
|
|
|
|
|
if (this._announceHideTimeout)
|
2013-03-15 06:50:55 -07:00
|
|
|
Utils.win.clearTimeout(this._announceHideTimeout);
|
2012-12-07 10:39:17 -08:00
|
|
|
|
|
|
|
if (aDetails.duration > 0)
|
2013-03-15 06:50:55 -07:00
|
|
|
this._announceHideTimeout = Utils.win.setTimeout(
|
2012-12-07 10:39:17 -08:00
|
|
|
function () {
|
2013-03-15 06:50:55 -07:00
|
|
|
announceBox.classList.remove('showing');
|
2012-12-07 10:39:17 -08:00
|
|
|
this._announceHideTimeout = 0;
|
|
|
|
}.bind(this), aDetails.duration);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case 'hideAnnouncement':
|
|
|
|
{
|
2013-03-15 06:50:55 -07:00
|
|
|
let announceBox = this.announceBox ? this.announceBox.get() : null;
|
|
|
|
if (announceBox)
|
|
|
|
announceBox.classList.remove('showing');
|
2012-12-07 10:39:17 -08:00
|
|
|
break;
|
|
|
|
}
|
2012-10-01 13:33:26 -07:00
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
Android: function Android(aDetails, aBrowser) {
|
|
|
|
if (!this._bridge)
|
|
|
|
this._bridge = Cc['@mozilla.org/android/bridge;1'].getService(Ci.nsIAndroidBridge);
|
|
|
|
|
|
|
|
for each (let androidEvent in aDetails) {
|
|
|
|
androidEvent.type = 'Accessibility:Event';
|
|
|
|
if (androidEvent.bounds)
|
|
|
|
androidEvent.bounds = this._adjustBounds(androidEvent.bounds, aBrowser);
|
2013-02-04 13:22:30 -08:00
|
|
|
this._bridge.handleGeckoMessage(JSON.stringify(androidEvent));
|
2012-10-01 13:33:26 -07:00
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2012-11-12 15:46:09 -08:00
|
|
|
Haptic: function Haptic(aDetails, aBrowser) {
|
2013-03-15 06:50:55 -07:00
|
|
|
Utils.win.navigator.vibrate(aDetails.pattern);
|
2012-11-12 15:46:09 -08:00
|
|
|
},
|
|
|
|
|
2012-10-01 13:33:26 -07:00
|
|
|
_adjustBounds: function(aJsonBounds, aBrowser) {
|
|
|
|
let bounds = new Rect(aJsonBounds.left, aJsonBounds.top,
|
|
|
|
aJsonBounds.right - aJsonBounds.left,
|
|
|
|
aJsonBounds.bottom - aJsonBounds.top);
|
2013-03-15 06:50:55 -07:00
|
|
|
let vp = Utils.getViewport(Utils.win) || { zoom: 1.0, offsetY: 0 };
|
2013-05-21 11:16:50 -07:00
|
|
|
let root = Utils.win;
|
|
|
|
let offset = { left: -root.mozInnerScreenX, top: -root.mozInnerScreenY };
|
|
|
|
let scale = 1 / Utils.getPixelsPerCSSPixel(Utils.win);
|
|
|
|
|
|
|
|
if (!aBrowser.contentWindow) {
|
|
|
|
// OOP browser, add offset of browser.
|
|
|
|
// The offset of the browser element in relation to its parent window.
|
|
|
|
let clientRect = aBrowser.getBoundingClientRect();
|
|
|
|
let win = aBrowser.ownerDocument.defaultView;
|
|
|
|
offset.left += clientRect.left + win.mozInnerScreenX;
|
|
|
|
offset.top += clientRect.top + win.mozInnerScreenY;
|
|
|
|
}
|
2012-10-01 13:33:26 -07:00
|
|
|
|
2013-05-21 11:16:50 -07:00
|
|
|
return bounds.scale(scale, scale).translate(offset.left, offset.top).
|
2012-10-01 13:33:26 -07:00
|
|
|
scale(vp.zoom, vp.zoom).expandToIntegers();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
var Input = {
|
|
|
|
editState: {},
|
|
|
|
|
2013-03-15 06:50:55 -07:00
|
|
|
start: function start() {
|
2013-04-25 12:39:16 -07:00
|
|
|
// XXX: This is too disruptive on desktop for now.
|
|
|
|
// Might need to add special modifiers.
|
|
|
|
if (Utils.MozBuildApp != 'browser') {
|
|
|
|
Utils.win.document.addEventListener('keypress', this, true);
|
|
|
|
}
|
2013-03-15 06:50:55 -07:00
|
|
|
Utils.win.addEventListener('mozAccessFuGesture', this, true);
|
2012-10-01 13:33:26 -07:00
|
|
|
},
|
|
|
|
|
2013-03-15 06:50:55 -07:00
|
|
|
stop: function stop() {
|
2013-04-25 12:39:16 -07:00
|
|
|
if (Utils.MozBuildApp != 'browser') {
|
|
|
|
Utils.win.document.removeEventListener('keypress', this, true);
|
|
|
|
}
|
2013-03-15 06:50:55 -07:00
|
|
|
Utils.win.removeEventListener('mozAccessFuGesture', this, true);
|
2012-10-01 13:33:26 -07:00
|
|
|
},
|
|
|
|
|
|
|
|
handleEvent: function Input_handleEvent(aEvent) {
|
|
|
|
try {
|
|
|
|
switch (aEvent.type) {
|
|
|
|
case 'keypress':
|
|
|
|
this._handleKeypress(aEvent);
|
|
|
|
break;
|
|
|
|
case 'mozAccessFuGesture':
|
2012-12-11 10:12:12 -08:00
|
|
|
this._handleGesture(aEvent.detail);
|
2012-10-01 13:33:26 -07:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
} catch (x) {
|
2012-10-19 13:39:36 -07:00
|
|
|
Logger.logException(x);
|
2012-10-01 13:33:26 -07:00
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2012-12-11 10:12:12 -08:00
|
|
|
_handleGesture: function _handleGesture(aGesture) {
|
|
|
|
let gestureName = aGesture.type + aGesture.touches.length;
|
|
|
|
Logger.info('Gesture', aGesture.type,
|
|
|
|
'(fingers: ' + aGesture.touches.length + ')');
|
2012-10-01 13:33:26 -07:00
|
|
|
|
2012-12-11 10:12:12 -08:00
|
|
|
switch (gestureName) {
|
|
|
|
case 'dwell1':
|
|
|
|
case 'explore1':
|
|
|
|
this.moveCursor('moveToPoint', 'Simple', 'gesture',
|
|
|
|
aGesture.x, aGesture.y);
|
|
|
|
break;
|
|
|
|
case 'doubletap1':
|
|
|
|
this.activateCurrent();
|
|
|
|
break;
|
|
|
|
case 'swiperight1':
|
|
|
|
this.moveCursor('moveNext', 'Simple', 'gestures');
|
|
|
|
break;
|
|
|
|
case 'swipeleft1':
|
|
|
|
this.moveCursor('movePrevious', 'Simple', 'gesture');
|
|
|
|
break;
|
|
|
|
case 'swiperight2':
|
|
|
|
this.scroll(-1, true);
|
|
|
|
break;
|
|
|
|
case 'swipedown2':
|
|
|
|
this.scroll(-1);
|
|
|
|
break;
|
|
|
|
case 'swipeleft2':
|
|
|
|
this.scroll(1, true);
|
|
|
|
break;
|
|
|
|
case 'swipeup2':
|
|
|
|
this.scroll(1);
|
|
|
|
break;
|
|
|
|
case 'explore2':
|
2013-03-15 06:50:55 -07:00
|
|
|
Utils.CurrentBrowser.contentWindow.scrollBy(
|
2012-12-11 10:12:12 -08:00
|
|
|
-aGesture.deltaX, -aGesture.deltaY);
|
|
|
|
break;
|
2012-12-11 10:12:12 -08:00
|
|
|
case 'swiperight3':
|
|
|
|
this.moveCursor('moveNext', this.quickNavMode.current, 'gesture');
|
|
|
|
break;
|
|
|
|
case 'swipeleft3':
|
|
|
|
this.moveCursor('movePrevious', this.quickNavMode.current, 'gesture');
|
|
|
|
break;
|
|
|
|
case 'swipedown3':
|
|
|
|
this.quickNavMode.next();
|
|
|
|
AccessFu.announce('quicknav_' + this.quickNavMode.current);
|
|
|
|
break;
|
|
|
|
case 'swipeup3':
|
|
|
|
this.quickNavMode.previous();
|
|
|
|
AccessFu.announce('quicknav_' + this.quickNavMode.current);
|
|
|
|
break;
|
2012-10-01 13:33:26 -07:00
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
_handleKeypress: function _handleKeypress(aEvent) {
|
|
|
|
let target = aEvent.target;
|
|
|
|
|
|
|
|
// Ignore keys with modifiers so the content could take advantage of them.
|
|
|
|
if (aEvent.ctrlKey || aEvent.altKey || aEvent.metaKey)
|
|
|
|
return;
|
|
|
|
|
|
|
|
switch (aEvent.keyCode) {
|
|
|
|
case 0:
|
|
|
|
// an alphanumeric key was pressed, handle it separately.
|
|
|
|
// If it was pressed with either alt or ctrl, just pass through.
|
|
|
|
// If it was pressed with meta, pass the key on without the meta.
|
|
|
|
if (this.editState.editing)
|
|
|
|
return;
|
|
|
|
|
|
|
|
let key = String.fromCharCode(aEvent.charCode);
|
|
|
|
try {
|
|
|
|
let [methodName, rule] = this.keyMap[key];
|
|
|
|
this.moveCursor(methodName, rule, 'keyboard');
|
|
|
|
} catch (x) {
|
|
|
|
return;
|
2012-05-07 09:44:44 -07:00
|
|
|
}
|
2012-10-01 13:33:26 -07:00
|
|
|
break;
|
|
|
|
case aEvent.DOM_VK_RIGHT:
|
|
|
|
if (this.editState.editing) {
|
|
|
|
if (!this.editState.atEnd)
|
|
|
|
// Don't move forward if caret is not at end of entry.
|
|
|
|
// XXX: Fix for rtl
|
|
|
|
return;
|
|
|
|
else
|
|
|
|
target.blur();
|
2012-05-02 22:10:55 -07:00
|
|
|
}
|
2012-10-01 13:33:26 -07:00
|
|
|
this.moveCursor(aEvent.shiftKey ? 'moveLast' : 'moveNext', 'Simple', 'keyboard');
|
2012-05-02 22:10:55 -07:00
|
|
|
break;
|
2012-10-01 13:33:26 -07:00
|
|
|
case aEvent.DOM_VK_LEFT:
|
|
|
|
if (this.editState.editing) {
|
|
|
|
if (!this.editState.atStart)
|
|
|
|
// Don't move backward if caret is not at start of entry.
|
|
|
|
// XXX: Fix for rtl
|
|
|
|
return;
|
|
|
|
else
|
|
|
|
target.blur();
|
|
|
|
}
|
|
|
|
this.moveCursor(aEvent.shiftKey ? 'moveFirst' : 'movePrevious', 'Simple', 'keyboard');
|
2012-06-03 19:02:56 -07:00
|
|
|
break;
|
2012-10-01 13:33:26 -07:00
|
|
|
case aEvent.DOM_VK_UP:
|
|
|
|
if (this.editState.multiline) {
|
|
|
|
if (!this.editState.atStart)
|
|
|
|
// Don't blur content if caret is not at start of text area.
|
|
|
|
return;
|
|
|
|
else
|
|
|
|
target.blur();
|
2012-07-10 16:10:15 -07:00
|
|
|
}
|
2012-10-01 13:33:26 -07:00
|
|
|
|
|
|
|
if (Utils.MozBuildApp == 'mobile/android')
|
|
|
|
// Return focus to native Android browser chrome.
|
|
|
|
Cc['@mozilla.org/android/bridge;1'].
|
|
|
|
getService(Ci.nsIAndroidBridge).handleGeckoMessage(
|
2013-02-04 13:22:30 -08:00
|
|
|
JSON.stringify({ type: 'ToggleChrome:Focus' }));
|
2012-06-06 10:02:24 -07:00
|
|
|
break;
|
2012-10-01 13:33:26 -07:00
|
|
|
case aEvent.DOM_VK_RETURN:
|
|
|
|
case aEvent.DOM_VK_ENTER:
|
|
|
|
if (this.editState.editing)
|
|
|
|
return;
|
|
|
|
this.activateCurrent();
|
2012-04-13 16:18:57 -07:00
|
|
|
break;
|
2012-10-01 13:33:26 -07:00
|
|
|
default:
|
|
|
|
return;
|
2012-04-13 16:18:57 -07:00
|
|
|
}
|
2012-05-07 09:44:44 -07:00
|
|
|
|
2012-10-01 13:33:26 -07:00
|
|
|
aEvent.preventDefault();
|
|
|
|
aEvent.stopPropagation();
|
2012-05-07 09:44:44 -07:00
|
|
|
},
|
|
|
|
|
2012-10-01 13:33:26 -07:00
|
|
|
moveCursor: function moveCursor(aAction, aRule, aInputType, aX, aY) {
|
2013-03-15 06:50:55 -07:00
|
|
|
let mm = Utils.getMessageManager(Utils.CurrentBrowser);
|
2012-10-01 13:33:26 -07:00
|
|
|
mm.sendAsyncMessage('AccessFu:VirtualCursor',
|
|
|
|
{action: aAction, rule: aRule,
|
|
|
|
x: aX, y: aY, origin: 'top',
|
|
|
|
inputType: aInputType});
|
|
|
|
},
|
2012-05-07 09:44:44 -07:00
|
|
|
|
2012-10-01 13:33:26 -07:00
|
|
|
activateCurrent: function activateCurrent() {
|
2013-03-15 06:50:55 -07:00
|
|
|
let mm = Utils.getMessageManager(Utils.CurrentBrowser);
|
2012-10-01 13:33:26 -07:00
|
|
|
mm.sendAsyncMessage('AccessFu:Activate', {});
|
2012-05-07 09:44:44 -07:00
|
|
|
},
|
|
|
|
|
2012-10-01 13:33:26 -07:00
|
|
|
setEditState: function setEditState(aEditState) {
|
|
|
|
this.editState = aEditState;
|
|
|
|
},
|
2012-05-10 10:33:12 -07:00
|
|
|
|
2012-10-01 13:33:26 -07:00
|
|
|
scroll: function scroll(aPage, aHorizontal) {
|
2013-03-15 06:50:55 -07:00
|
|
|
let mm = Utils.getMessageManager(Utils.CurrentBrowser);
|
2012-10-01 13:33:26 -07:00
|
|
|
mm.sendAsyncMessage('AccessFu:Scroll', {page: aPage, horizontal: aHorizontal, origin: 'top'});
|
|
|
|
},
|
2012-04-13 16:18:57 -07:00
|
|
|
|
2012-11-05 10:27:18 -08:00
|
|
|
get keyMap() {
|
|
|
|
delete this.keyMap;
|
|
|
|
this.keyMap = {
|
|
|
|
a: ['moveNext', 'Anchor'],
|
|
|
|
A: ['movePrevious', 'Anchor'],
|
|
|
|
b: ['moveNext', 'Button'],
|
|
|
|
B: ['movePrevious', 'Button'],
|
|
|
|
c: ['moveNext', 'Combobox'],
|
|
|
|
C: ['movePrevious', 'Combobox'],
|
|
|
|
e: ['moveNext', 'Entry'],
|
|
|
|
E: ['movePrevious', 'Entry'],
|
|
|
|
f: ['moveNext', 'FormElement'],
|
|
|
|
F: ['movePrevious', 'FormElement'],
|
|
|
|
g: ['moveNext', 'Graphic'],
|
|
|
|
G: ['movePrevious', 'Graphic'],
|
|
|
|
h: ['moveNext', 'Heading'],
|
|
|
|
H: ['movePrevious', 'Heading'],
|
|
|
|
i: ['moveNext', 'ListItem'],
|
|
|
|
I: ['movePrevious', 'ListItem'],
|
|
|
|
k: ['moveNext', 'Link'],
|
|
|
|
K: ['movePrevious', 'Link'],
|
|
|
|
l: ['moveNext', 'List'],
|
|
|
|
L: ['movePrevious', 'List'],
|
|
|
|
p: ['moveNext', 'PageTab'],
|
|
|
|
P: ['movePrevious', 'PageTab'],
|
|
|
|
r: ['moveNext', 'RadioButton'],
|
|
|
|
R: ['movePrevious', 'RadioButton'],
|
|
|
|
s: ['moveNext', 'Separator'],
|
|
|
|
S: ['movePrevious', 'Separator'],
|
|
|
|
t: ['moveNext', 'Table'],
|
|
|
|
T: ['movePrevious', 'Table'],
|
|
|
|
x: ['moveNext', 'Checkbox'],
|
|
|
|
X: ['movePrevious', 'Checkbox']
|
|
|
|
};
|
2012-12-11 10:12:12 -08:00
|
|
|
|
|
|
|
return this.keyMap;
|
|
|
|
},
|
|
|
|
|
|
|
|
quickNavMode: {
|
|
|
|
get current() {
|
|
|
|
return this.modes[this._currentIndex];
|
|
|
|
},
|
|
|
|
|
|
|
|
previous: function quickNavMode_previous() {
|
|
|
|
if (--this._currentIndex < 0)
|
|
|
|
this._currentIndex = this.modes.length - 1;
|
|
|
|
},
|
|
|
|
|
|
|
|
next: function quickNavMode_next() {
|
|
|
|
if (++this._currentIndex >= this.modes.length)
|
|
|
|
this._currentIndex = 0;
|
|
|
|
},
|
|
|
|
|
2013-05-24 11:57:28 -07:00
|
|
|
updateModes: function updateModes(aModes) {
|
|
|
|
if (aModes) {
|
|
|
|
this.modes = aModes.split(',');
|
|
|
|
} else {
|
2012-12-11 10:12:12 -08:00
|
|
|
this.modes = [];
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
_currentIndex: -1
|
2012-04-13 16:18:57 -07:00
|
|
|
}
|
2012-10-01 13:33:26 -07:00
|
|
|
};
|
2013-04-25 09:16:10 -07:00
|
|
|
AccessFu.Input = Input;
|