mirror of
https://github.com/roytam1/palemoon27.git
synced 2026-05-26 14:18:48 +00:00
fe0509a62e
- Bug 904479 - Added createPromiseWithId() that returns id of resolver r=kanru,nsm (2ac672d882) - Bug 1166580 - Disable mozHasPendingMessage tests on non-browser platform. r=me (03c689964b) - Bug 1162281 - Invalid system message handler in an App Manifest can break the entire system. r=fabrice (e192a95f9c) - Bug 1198988 - Turn off some useless dump() calls r=ferjm (34fc83b236) - Bug 1164498: Remove |DispatchBluetoothReply|, r=btian (6143335efa) - Bug 1001757 - Add ability to store core apps outside of profile on desktop b2g; r=fabrice (f6b605e7aa) - Bug 1155245 - Set the app status correctly for hosted certified apps in developer mode. r=fabrice (131178b80e) - Bug 1179052 - Add some raptor markers to b2g gecko startup r=gwagner (222256fad8) - Bug 1163904 - handle -url command line argument. r=fabrice (ee61af1ff9) - Bug 1167275 - JS error in shell.js handleCmdLine() r=me (32e75c604f) - Bug 1167197 - Fix GMPProvider on Android r=cpearce Bug 1181209 - Make changes to Gecko needed for b2gdroid to boot. r=fabrice (b35d3a372f) - Bug 1158544 - Remove FTPChannelChild::mWasOpened and make the base class mWasOpened protected; r=mcmanus (9111e1bc00) - Bug 1171716 - Part 2: Use NS_ReleaseOnMainThread in nsBaseChannel. r=froydnj (f138124f14) - partial of Bug 1177175 - Add a UITour target inside the TP panel. (603cc719b3) - Bug 1175545 - Dont process alt-svc on 421 r=hurley (ad0f2f6e91) - Bug 1191291 - convert nsHttpChannel::RetargetDeliveryTo warning to log r=michal.novotny (b9c6003df8) - Bug 1182487 - Don't try to write to HTTP cache entry in nsHttpChannel when entry is open for reading only. r=michal (b36d7014a0) - Bug 1173069 - Don't accumulate the cache hit telemetry for intercepted channels; r=mayhemer,jdm (aaed79183d) - Bug 1208755 HttpBaseChannel::ShouldIntercept() should not assume every channel has a LoadInfo. r=ckerschb (d55be94901) - Bug 1201229 - Return an empty string for a header when an error occurs; r=dragana (256d0462c8) - Bug 1048048 - add preload content policy types - web platform test updates (r=dveditz) (baa1004dd6) - Bug 1048048 - add preload content policy types - csp changes (r=dveditz) (17914dadba) - Bug 1048048 - add preload content policy types for stylesheets (r=cam) (29af13263a) - Bug 1048048 - add preload content policy types (r=ehsan) (f58a32d51b) - Bug 1201747 - Don't inspect the subject principal in StorageAllowedForPrincipal. r=mystor (4f2c100882) - Bug 1176829 - Remove custom elements base element queue. r=smaug (03a520c13d) - Bug 1176829 follow-up, finish removing unused member to fix bustage. CLOSED TREE (29c6150af8) - Bug 1179909: Build fix. r=me CLOSED TREE (40e3bdb971) - Bug 1188932 - Allow the User-Agent header to be explicitly set by requests, r=bkelly, r=jgraham (37aacbd37d)
795 lines
21 KiB
JavaScript
795 lines
21 KiB
JavaScript
/* 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;
|
|
|
|
Cu.import("resource://gre/modules/XPCOMUtils.jsm");
|
|
Cu.import("resource://gre/modules/Services.jsm");
|
|
Cu.import("resource://gre/modules/DOMRequestHelper.jsm");
|
|
|
|
XPCOMUtils.defineLazyServiceGetter(this, "cpmm",
|
|
"@mozilla.org/childprocessmessagemanager;1", "nsISyncMessageSender");
|
|
|
|
XPCOMUtils.defineLazyServiceGetter(this, "tm",
|
|
"@mozilla.org/thread-manager;1", "nsIThreadManager");
|
|
|
|
/*
|
|
* A WeakMap to map input method iframe window to
|
|
* it's active status, kbID, and ipcHelper.
|
|
*/
|
|
let WindowMap = {
|
|
// WeakMap of <window, object> pairs.
|
|
_map: null,
|
|
|
|
/*
|
|
* Set the object associated to the window and return it.
|
|
*/
|
|
_getObjForWin: function(win) {
|
|
if (!this._map) {
|
|
this._map = new WeakMap();
|
|
}
|
|
if (this._map.has(win)) {
|
|
return this._map.get(win);
|
|
} else {
|
|
let obj = {
|
|
active: false,
|
|
kbID: undefined,
|
|
ipcHelper: null
|
|
};
|
|
this._map.set(win, obj);
|
|
|
|
return obj;
|
|
}
|
|
},
|
|
|
|
/*
|
|
* Check if the given window is active.
|
|
*/
|
|
isActive: function(win) {
|
|
if (!this._map || !win) {
|
|
return false;
|
|
}
|
|
|
|
return this._getObjForWin(win).active;
|
|
},
|
|
|
|
/*
|
|
* Set the active status of the given window.
|
|
*/
|
|
setActive: function(win, isActive) {
|
|
if (!win) {
|
|
return;
|
|
}
|
|
let obj = this._getObjForWin(win);
|
|
obj.active = isActive;
|
|
},
|
|
|
|
/*
|
|
* Get the keyboard ID (assigned by Keyboard.jsm) of the given window.
|
|
*/
|
|
getKbID: function(win) {
|
|
if (!this._map || !win) {
|
|
return undefined;
|
|
}
|
|
|
|
let obj = this._getObjForWin(win);
|
|
return obj.kbID;
|
|
},
|
|
|
|
/*
|
|
* Set the keyboard ID (assigned by Keyboard.jsm) of the given window.
|
|
*/
|
|
setKbID: function(win, kbID) {
|
|
if (!win) {
|
|
return;
|
|
}
|
|
let obj = this._getObjForWin(win);
|
|
obj.kbID = kbID;
|
|
},
|
|
|
|
/*
|
|
* Get InputContextDOMRequestIpcHelper instance attached to this window.
|
|
*/
|
|
getInputContextIpcHelper: function(win) {
|
|
if (!win) {
|
|
return;
|
|
}
|
|
let obj = this._getObjForWin(win);
|
|
if (!obj.ipcHelper) {
|
|
obj.ipcHelper = new InputContextDOMRequestIpcHelper(win);
|
|
}
|
|
return obj.ipcHelper;
|
|
},
|
|
|
|
/*
|
|
* Unset InputContextDOMRequestIpcHelper instance.
|
|
*/
|
|
unsetInputContextIpcHelper: function(win) {
|
|
if (!win) {
|
|
return;
|
|
}
|
|
let obj = this._getObjForWin(win);
|
|
if (!obj.ipcHelper) {
|
|
return;
|
|
}
|
|
obj.ipcHelper = null;
|
|
}
|
|
};
|
|
|
|
let cpmmSendAsyncMessageWithKbID = function (self, msg, data) {
|
|
data.kbID = WindowMap.getKbID(self._window);
|
|
cpmm.sendAsyncMessage(msg, data);
|
|
};
|
|
|
|
/**
|
|
* ==============================================
|
|
* InputMethodManager
|
|
* ==============================================
|
|
*/
|
|
function MozInputMethodManager(win) {
|
|
this._window = win;
|
|
}
|
|
|
|
MozInputMethodManager.prototype = {
|
|
_supportsSwitching: false,
|
|
_window: null,
|
|
|
|
classID: Components.ID("{7e9d7280-ef86-11e2-b778-0800200c9a66}"),
|
|
|
|
QueryInterface: XPCOMUtils.generateQI([]),
|
|
|
|
showAll: function() {
|
|
if (!WindowMap.isActive(this._window)) {
|
|
return;
|
|
}
|
|
cpmmSendAsyncMessageWithKbID(this, 'Keyboard:ShowInputMethodPicker', {});
|
|
},
|
|
|
|
next: function() {
|
|
if (!WindowMap.isActive(this._window)) {
|
|
return;
|
|
}
|
|
cpmmSendAsyncMessageWithKbID(this, 'Keyboard:SwitchToNextInputMethod', {});
|
|
},
|
|
|
|
supportsSwitching: function() {
|
|
if (!WindowMap.isActive(this._window)) {
|
|
return false;
|
|
}
|
|
return this._supportsSwitching;
|
|
},
|
|
|
|
hide: function() {
|
|
if (!WindowMap.isActive(this._window)) {
|
|
return;
|
|
}
|
|
cpmmSendAsyncMessageWithKbID(this, 'Keyboard:RemoveFocus', {});
|
|
}
|
|
};
|
|
|
|
/**
|
|
* ==============================================
|
|
* InputMethod
|
|
* ==============================================
|
|
*/
|
|
function MozInputMethod() { }
|
|
|
|
MozInputMethod.prototype = {
|
|
__proto__: DOMRequestIpcHelper.prototype,
|
|
|
|
_inputcontext: null,
|
|
_wrappedInputContext: null,
|
|
_layouts: {},
|
|
_window: null,
|
|
_isSystem: false,
|
|
_isKeyboard: true,
|
|
|
|
classID: Components.ID("{4607330d-e7d2-40a4-9eb8-43967eae0142}"),
|
|
|
|
QueryInterface: XPCOMUtils.generateQI([
|
|
Ci.nsIDOMGlobalPropertyInitializer,
|
|
Ci.nsIObserver,
|
|
Ci.nsISupportsWeakReference
|
|
]),
|
|
|
|
init: function mozInputMethodInit(win) {
|
|
this._window = win;
|
|
this._mgmt = new MozInputMethodManager(win);
|
|
this.innerWindowID = win.QueryInterface(Ci.nsIInterfaceRequestor)
|
|
.getInterface(Ci.nsIDOMWindowUtils)
|
|
.currentInnerWindowID;
|
|
|
|
Services.obs.addObserver(this, "inner-window-destroyed", false);
|
|
|
|
let principal = win.document.nodePrincipal;
|
|
let perm = Services.perms.testExactPermissionFromPrincipal(principal,
|
|
"input-manage");
|
|
if (perm === Ci.nsIPermissionManager.ALLOW_ACTION) {
|
|
this._isSystem = true;
|
|
}
|
|
|
|
// Check if we can use keyboard related APIs.
|
|
let testing = false;
|
|
try {
|
|
testing = Services.prefs.getBoolPref("dom.mozInputMethod.testing");
|
|
} catch (e) {
|
|
}
|
|
perm = Services.perms.testExactPermissionFromPrincipal(principal, "input");
|
|
if (!testing && perm !== Ci.nsIPermissionManager.ALLOW_ACTION) {
|
|
this._isKeyboard = false;
|
|
return;
|
|
}
|
|
|
|
cpmm.addWeakMessageListener('Keyboard:FocusChange', this);
|
|
cpmm.addWeakMessageListener('Keyboard:SelectionChange', this);
|
|
cpmm.addWeakMessageListener('Keyboard:GetContext:Result:OK', this);
|
|
cpmm.addWeakMessageListener('Keyboard:LayoutsChange', this);
|
|
cpmm.addWeakMessageListener('InputRegistry:Result:OK', this);
|
|
cpmm.addWeakMessageListener('InputRegistry:Result:Error', this);
|
|
},
|
|
|
|
uninit: function mozInputMethodUninit() {
|
|
this._window = null;
|
|
this._mgmt = null;
|
|
Services.obs.removeObserver(this, "inner-window-destroyed");
|
|
if (!this._isKeyboard) {
|
|
return;
|
|
}
|
|
|
|
cpmm.removeWeakMessageListener('Keyboard:FocusChange', this);
|
|
cpmm.removeWeakMessageListener('Keyboard:SelectionChange', this);
|
|
cpmm.removeWeakMessageListener('Keyboard:GetContext:Result:OK', this);
|
|
cpmm.removeWeakMessageListener('Keyboard:LayoutsChange', this);
|
|
cpmm.removeWeakMessageListener('InputRegistry:Result:OK', this);
|
|
cpmm.removeWeakMessageListener('InputRegistry:Result:Error', this);
|
|
this.setActive(false);
|
|
},
|
|
|
|
receiveMessage: function mozInputMethodReceiveMsg(msg) {
|
|
if (!msg.name.startsWith('InputRegistry') &&
|
|
!WindowMap.isActive(this._window)) {
|
|
return;
|
|
}
|
|
|
|
let data = msg.data;
|
|
let resolver = ('requestId' in data) ?
|
|
this.takePromiseResolver(data.requestId) : null;
|
|
|
|
switch(msg.name) {
|
|
case 'Keyboard:FocusChange':
|
|
if (data.type !== 'blur') {
|
|
// XXX Bug 904339 could receive 'text' event twice
|
|
this.setInputContext(data);
|
|
}
|
|
else {
|
|
this.setInputContext(null);
|
|
}
|
|
break;
|
|
case 'Keyboard:SelectionChange':
|
|
if (this.inputcontext) {
|
|
this._inputcontext.updateSelectionContext(data, false);
|
|
}
|
|
break;
|
|
case 'Keyboard:GetContext:Result:OK':
|
|
this.setInputContext(data);
|
|
break;
|
|
case 'Keyboard:LayoutsChange':
|
|
this._layouts = data;
|
|
break;
|
|
|
|
case 'InputRegistry:Result:OK':
|
|
resolver.resolve();
|
|
|
|
break;
|
|
|
|
case 'InputRegistry:Result:Error':
|
|
resolver.reject(data.error);
|
|
|
|
break;
|
|
}
|
|
},
|
|
|
|
observe: function mozInputMethodObserve(subject, topic, data) {
|
|
let wId = subject.QueryInterface(Ci.nsISupportsPRUint64).data;
|
|
if (wId == this.innerWindowID)
|
|
this.uninit();
|
|
},
|
|
|
|
get mgmt() {
|
|
return this._mgmt;
|
|
},
|
|
|
|
get inputcontext() {
|
|
if (!WindowMap.isActive(this._window)) {
|
|
return null;
|
|
}
|
|
return this._wrappedInputContext;
|
|
},
|
|
|
|
set oninputcontextchange(handler) {
|
|
this.__DOM_IMPL__.setEventHandler("oninputcontextchange", handler);
|
|
},
|
|
|
|
get oninputcontextchange() {
|
|
return this.__DOM_IMPL__.getEventHandler("oninputcontextchange");
|
|
},
|
|
|
|
setInputContext: function mozKeyboardContextChange(data) {
|
|
if (this._inputcontext) {
|
|
this._inputcontext.destroy();
|
|
this._inputcontext = null;
|
|
this._wrappedInputContext = null;
|
|
this._mgmt._supportsSwitching = false;
|
|
}
|
|
|
|
if (data) {
|
|
this._mgmt._supportsSwitching = this._layouts[data.type] ?
|
|
this._layouts[data.type] > 1 :
|
|
false;
|
|
|
|
this._inputcontext = new MozInputContext(data);
|
|
this._inputcontext.init(this._window);
|
|
// inputcontext will be exposed as a WebIDL object. Create its
|
|
// content-side object explicitly to avoid Bug 1001325.
|
|
this._wrappedInputContext =
|
|
this._window.MozInputContext._create(this._window, this._inputcontext);
|
|
}
|
|
|
|
let event = new this._window.Event("inputcontextchange",
|
|
Cu.cloneInto({}, this._window));
|
|
this.__DOM_IMPL__.dispatchEvent(event);
|
|
},
|
|
|
|
setActive: function mozInputMethodSetActive(isActive) {
|
|
if (WindowMap.isActive(this._window) === isActive) {
|
|
return;
|
|
}
|
|
|
|
WindowMap.setActive(this._window, isActive);
|
|
|
|
if (isActive) {
|
|
// Activate current input method.
|
|
// If there is already an active context, then this will trigger
|
|
// a GetContext:Result:OK event, and we can initialize ourselves.
|
|
// Otherwise silently ignored.
|
|
|
|
// get keyboard ID from Keyboard.jsm,
|
|
// or if we already have it, get it from our map
|
|
// Note: if we need to get it from Keyboard.jsm,
|
|
// we have to use a synchronous message
|
|
var kbID = WindowMap.getKbID(this._window);
|
|
if (kbID) {
|
|
cpmmSendAsyncMessageWithKbID(this, 'Keyboard:Register', {});
|
|
} else {
|
|
let res = cpmm.sendSyncMessage('Keyboard:Register', {});
|
|
WindowMap.setKbID(this._window, res[0]);
|
|
}
|
|
|
|
cpmmSendAsyncMessageWithKbID(this, 'Keyboard:GetContext', {});
|
|
} else {
|
|
// Deactive current input method.
|
|
cpmmSendAsyncMessageWithKbID(this, 'Keyboard:Unregister', {});
|
|
if (this._inputcontext) {
|
|
this.setInputContext(null);
|
|
}
|
|
}
|
|
},
|
|
|
|
addInput: function(inputId, inputManifest) {
|
|
return this._sendPromise(function(resolverId) {
|
|
let appId = this._window.document.nodePrincipal.appId;
|
|
|
|
cpmm.sendAsyncMessage('InputRegistry:Add', {
|
|
requestId: resolverId,
|
|
inputId: inputId,
|
|
inputManifest: inputManifest,
|
|
appId: appId
|
|
});
|
|
}.bind(this));
|
|
},
|
|
|
|
removeInput: function(inputId) {
|
|
return this.createPromiseWithId(function(resolverId) {
|
|
let appId = this._window.document.nodePrincipal.appId;
|
|
|
|
cpmm.sendAsyncMessage('InputRegistry:Remove', {
|
|
requestId: resolverId,
|
|
inputId: inputId,
|
|
appId: appId
|
|
});
|
|
}.bind(this));
|
|
},
|
|
|
|
setValue: function(value) {
|
|
this._ensureIsSystem();
|
|
cpmm.sendAsyncMessage('System:SetValue', {
|
|
'value': value
|
|
});
|
|
},
|
|
|
|
setSelectedOption: function(index) {
|
|
this._ensureIsSystem();
|
|
cpmm.sendAsyncMessage('System:SetSelectedOption', {
|
|
'index': index
|
|
});
|
|
},
|
|
|
|
setSelectedOptions: function(indexes) {
|
|
this._ensureIsSystem();
|
|
cpmm.sendAsyncMessage('System:SetSelectedOptions', {
|
|
'indexes': indexes
|
|
});
|
|
},
|
|
|
|
removeFocus: function() {
|
|
this._ensureIsSystem();
|
|
cpmm.sendAsyncMessage('System:RemoveFocus', {});
|
|
},
|
|
|
|
_ensureIsSystem: function() {
|
|
if (!this._isSystem) {
|
|
throw new this._window.Error("Should have 'input-manage' permssion.");
|
|
}
|
|
}
|
|
};
|
|
|
|
/**
|
|
* ==============================================
|
|
* InputContextDOMRequestIpcHelper
|
|
* ==============================================
|
|
*/
|
|
function InputContextDOMRequestIpcHelper(win) {
|
|
this.initDOMRequestHelper(win,
|
|
["Keyboard:GetText:Result:OK",
|
|
"Keyboard:GetText:Result:Error",
|
|
"Keyboard:SetSelectionRange:Result:OK",
|
|
"Keyboard:ReplaceSurroundingText:Result:OK",
|
|
"Keyboard:SendKey:Result:OK",
|
|
"Keyboard:SendKey:Result:Error",
|
|
"Keyboard:SetComposition:Result:OK",
|
|
"Keyboard:EndComposition:Result:OK",
|
|
"Keyboard:SequenceError"]);
|
|
}
|
|
|
|
InputContextDOMRequestIpcHelper.prototype = {
|
|
__proto__: DOMRequestIpcHelper.prototype,
|
|
_inputContext: null,
|
|
|
|
attachInputContext: function(inputCtx) {
|
|
if (this._inputContext) {
|
|
throw new Error("InputContextDOMRequestIpcHelper: detach the context first.");
|
|
}
|
|
|
|
this._inputContext = inputCtx;
|
|
},
|
|
|
|
// Unset ourselves when the window is destroyed.
|
|
uninit: function() {
|
|
WindowMap.unsetInputContextIpcHelper(this._window);
|
|
},
|
|
|
|
detachInputContext: function() {
|
|
// All requests that are still pending need to be invalidated
|
|
// because the context is no longer valid.
|
|
this.forEachPromiseResolver(k => {
|
|
this.takePromiseResolver(k).reject("InputContext got destroyed");
|
|
});
|
|
|
|
this._inputContext = null;
|
|
},
|
|
|
|
receiveMessage: function(msg) {
|
|
if (!this._inputContext) {
|
|
dump('InputContextDOMRequestIpcHelper received message without context attached.\n');
|
|
return;
|
|
}
|
|
|
|
this._inputContext.receiveMessage(msg);
|
|
}
|
|
};
|
|
|
|
/**
|
|
* ==============================================
|
|
* InputContext
|
|
* ==============================================
|
|
*/
|
|
function MozInputContext(ctx) {
|
|
this._context = {
|
|
inputtype: ctx.type,
|
|
inputmode: ctx.inputmode,
|
|
lang: ctx.lang,
|
|
type: ["textarea", "contenteditable"].indexOf(ctx.type) > -1 ?
|
|
ctx.type :
|
|
"text",
|
|
selectionStart: ctx.selectionStart,
|
|
selectionEnd: ctx.selectionEnd,
|
|
textBeforeCursor: ctx.textBeforeCursor,
|
|
textAfterCursor: ctx.textAfterCursor
|
|
};
|
|
|
|
this._contextId = ctx.contextId;
|
|
}
|
|
|
|
MozInputContext.prototype = {
|
|
_window: null,
|
|
_context: null,
|
|
_contextId: -1,
|
|
_ipcHelper: null,
|
|
|
|
classID: Components.ID("{1e38633d-d08b-4867-9944-afa5c648adb6}"),
|
|
|
|
QueryInterface: XPCOMUtils.generateQI([
|
|
Ci.nsIObserver,
|
|
Ci.nsISupportsWeakReference
|
|
]),
|
|
|
|
init: function ic_init(win) {
|
|
this._window = win;
|
|
|
|
this._ipcHelper = WindowMap.getInputContextIpcHelper(win);
|
|
this._ipcHelper.attachInputContext(this);
|
|
},
|
|
|
|
destroy: function ic_destroy() {
|
|
// A consuming application might still hold a cached version of
|
|
// this object. After destroying all methods will throw because we
|
|
// cannot create new promises anymore, but we still hold
|
|
// (outdated) information in the context. So let's clear that out.
|
|
for (var k in this._context) {
|
|
if (this._context.hasOwnProperty(k)) {
|
|
this._context[k] = null;
|
|
}
|
|
}
|
|
|
|
this._ipcHelper.detachInputContext();
|
|
this._ipcHelper = null;
|
|
|
|
this._window = null;
|
|
},
|
|
|
|
receiveMessage: function ic_receiveMessage(msg) {
|
|
if (!msg || !msg.json) {
|
|
dump('InputContext received message without data\n');
|
|
return;
|
|
}
|
|
|
|
let json = msg.json;
|
|
let resolver = this._ipcHelper.takePromiseResolver(json.requestId);
|
|
|
|
if (!resolver) {
|
|
dump('InputContext received invalid requestId.\n');
|
|
return;
|
|
}
|
|
|
|
// Update context first before resolving promise to avoid race condition
|
|
if (json.selectioninfo) {
|
|
this.updateSelectionContext(json.selectioninfo, true);
|
|
}
|
|
|
|
switch (msg.name) {
|
|
case "Keyboard:SendKey:Result:OK":
|
|
resolver.resolve();
|
|
break;
|
|
case "Keyboard:SendKey:Result:Error":
|
|
resolver.reject(json.error);
|
|
break;
|
|
case "Keyboard:GetText:Result:OK":
|
|
resolver.resolve(json.text);
|
|
break;
|
|
case "Keyboard:GetText:Result:Error":
|
|
resolver.reject(json.error);
|
|
break;
|
|
case "Keyboard:SetSelectionRange:Result:OK":
|
|
case "Keyboard:ReplaceSurroundingText:Result:OK":
|
|
resolver.resolve(
|
|
Cu.cloneInto(json.selectioninfo, this._window));
|
|
break;
|
|
case "Keyboard:SequenceError":
|
|
// Occurs when a new element got focus, but the inputContext was
|
|
// not invalidated yet...
|
|
resolver.reject("InputContext has expired");
|
|
break;
|
|
case "Keyboard:SetComposition:Result:OK": // Fall through.
|
|
case "Keyboard:EndComposition:Result:OK":
|
|
resolver.resolve();
|
|
break;
|
|
default:
|
|
dump("Could not find a handler for " + msg.name);
|
|
resolver.reject();
|
|
break;
|
|
}
|
|
},
|
|
|
|
updateSelectionContext: function ic_updateSelectionContext(ctx, ownAction) {
|
|
if (!this._context) {
|
|
return;
|
|
}
|
|
|
|
let selectionDirty = this._context.selectionStart !== ctx.selectionStart ||
|
|
this._context.selectionEnd !== ctx.selectionEnd;
|
|
let surroundDirty = this._context.textBeforeCursor !== ctx.textBeforeCursor ||
|
|
this._context.textAfterCursor !== ctx.textAfterCursor;
|
|
|
|
this._context.selectionStart = ctx.selectionStart;
|
|
this._context.selectionEnd = ctx.selectionEnd;
|
|
this._context.textBeforeCursor = ctx.textBeforeCursor;
|
|
this._context.textAfterCursor = ctx.textAfterCursor;
|
|
|
|
if (selectionDirty) {
|
|
this._fireEvent("selectionchange", {
|
|
selectionStart: ctx.selectionStart,
|
|
selectionEnd: ctx.selectionEnd,
|
|
ownAction: ownAction
|
|
});
|
|
}
|
|
|
|
if (surroundDirty) {
|
|
this._fireEvent("surroundingtextchange", {
|
|
beforeString: ctx.textBeforeCursor,
|
|
afterString: ctx.textAfterCursor,
|
|
ownAction: ownAction
|
|
});
|
|
}
|
|
},
|
|
|
|
_fireEvent: function ic_fireEvent(eventName, aDetail) {
|
|
let detail = {
|
|
detail: aDetail
|
|
};
|
|
|
|
let event = new this._window.CustomEvent(eventName,
|
|
Cu.cloneInto(detail, this._window));
|
|
this.__DOM_IMPL__.dispatchEvent(event);
|
|
},
|
|
|
|
// tag name of the input field
|
|
get type() {
|
|
return this._context.type;
|
|
},
|
|
|
|
// type of the input field
|
|
get inputType() {
|
|
return this._context.inputtype;
|
|
},
|
|
|
|
get inputMode() {
|
|
return this._context.inputmode;
|
|
},
|
|
|
|
get lang() {
|
|
return this._context.lang;
|
|
},
|
|
|
|
getText: function ic_getText(offset, length) {
|
|
let self = this;
|
|
return this._sendPromise(function(resolverId) {
|
|
cpmmSendAsyncMessageWithKbID(self, 'Keyboard:GetText', {
|
|
contextId: self._contextId,
|
|
requestId: resolverId,
|
|
offset: offset,
|
|
length: length
|
|
});
|
|
});
|
|
},
|
|
|
|
get selectionStart() {
|
|
return this._context.selectionStart;
|
|
},
|
|
|
|
get selectionEnd() {
|
|
return this._context.selectionEnd;
|
|
},
|
|
|
|
get textBeforeCursor() {
|
|
return this._context.textBeforeCursor;
|
|
},
|
|
|
|
get textAfterCursor() {
|
|
return this._context.textAfterCursor;
|
|
},
|
|
|
|
setSelectionRange: function ic_setSelectionRange(start, length) {
|
|
let self = this;
|
|
return this._sendPromise(function(resolverId) {
|
|
cpmmSendAsyncMessageWithKbID(self, 'Keyboard:SetSelectionRange', {
|
|
contextId: self._contextId,
|
|
requestId: resolverId,
|
|
selectionStart: start,
|
|
selectionEnd: start + length
|
|
});
|
|
});
|
|
},
|
|
|
|
get onsurroundingtextchange() {
|
|
return this.__DOM_IMPL__.getEventHandler("onsurroundingtextchange");
|
|
},
|
|
|
|
set onsurroundingtextchange(handler) {
|
|
this.__DOM_IMPL__.setEventHandler("onsurroundingtextchange", handler);
|
|
},
|
|
|
|
get onselectionchange() {
|
|
return this.__DOM_IMPL__.getEventHandler("onselectionchange");
|
|
},
|
|
|
|
set onselectionchange(handler) {
|
|
this.__DOM_IMPL__.setEventHandler("onselectionchange", handler);
|
|
},
|
|
|
|
replaceSurroundingText: function ic_replaceSurrText(text, offset, length) {
|
|
let self = this;
|
|
return this._sendPromise(function(resolverId) {
|
|
cpmmSendAsyncMessageWithKbID(self, 'Keyboard:ReplaceSurroundingText', {
|
|
contextId: self._contextId,
|
|
requestId: resolverId,
|
|
text: text,
|
|
offset: offset || 0,
|
|
length: length || 0
|
|
});
|
|
});
|
|
},
|
|
|
|
deleteSurroundingText: function ic_deleteSurrText(offset, length) {
|
|
return this.replaceSurroundingText(null, offset, length);
|
|
},
|
|
|
|
sendKey: function ic_sendKey(keyCode, charCode, modifiers, repeat) {
|
|
let self = this;
|
|
|
|
// XXX: modifiers are ignored in this API method.
|
|
|
|
return this._sendPromise(function(resolverId) {
|
|
cpmmSendAsyncMessageWithKbID(self, 'Keyboard:SendKey', {
|
|
contextId: self._contextId,
|
|
requestId: resolverId,
|
|
keyCode: keyCode,
|
|
charCode: charCode,
|
|
repeat: repeat
|
|
});
|
|
});
|
|
},
|
|
|
|
setComposition: function ic_setComposition(text, cursor, clauses) {
|
|
let self = this;
|
|
return this._sendPromise(function(resolverId) {
|
|
cpmmSendAsyncMessageWithKbID(self, 'Keyboard:SetComposition', {
|
|
contextId: self._contextId,
|
|
requestId: resolverId,
|
|
text: text,
|
|
cursor: (typeof cursor !== 'undefined') ? cursor : text.length,
|
|
clauses: clauses || null
|
|
});
|
|
});
|
|
},
|
|
|
|
endComposition: function ic_endComposition(text) {
|
|
let self = this;
|
|
return this._sendPromise(function(resolverId) {
|
|
cpmmSendAsyncMessageWithKbID(self, 'Keyboard:EndComposition', {
|
|
contextId: self._contextId,
|
|
requestId: resolverId,
|
|
text: text || ''
|
|
});
|
|
});
|
|
},
|
|
|
|
_sendPromise: function(callback) {
|
|
let self = this;
|
|
return this._ipcHelper.createPromiseWithId(function(aResolverId) {
|
|
if (!WindowMap.isActive(self._window)) {
|
|
self._ipcHelper.removePromiseResolver(aResolverId);
|
|
reject('Input method is not active.');
|
|
return;
|
|
}
|
|
callback(aResolverId);
|
|
});
|
|
}
|
|
};
|
|
|
|
this.NSGetFactory = XPCOMUtils.generateNSGetFactory([MozInputMethod]);
|