2012-03-19 17:30:51 +00: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/. */
|
|
|
|
|
2012-06-06 12:19:33 +00:00
|
|
|
"use strict";
|
2012-03-19 17:30:51 +00:00
|
|
|
|
|
|
|
const Ci = Components.interfaces;
|
|
|
|
const Cu = Components.utils;
|
|
|
|
|
|
|
|
Cu.import("resource://gre/modules/XPCOMUtils.jsm");
|
|
|
|
Cu.import("resource://gre/modules/Services.jsm");
|
2012-08-19 19:00:22 +00:00
|
|
|
Cu.import("resource://gre/modules/ObjectWrapper.jsm");
|
2012-03-19 17:30:51 +00:00
|
|
|
|
2012-11-07 11:53:24 +00:00
|
|
|
XPCOMUtils.defineLazyServiceGetter(this, "cpmm",
|
|
|
|
"@mozilla.org/childprocessmessagemanager;1", "nsIMessageSender");
|
|
|
|
|
2012-03-19 17:30:51 +00:00
|
|
|
// -----------------------------------------------------------------------
|
|
|
|
// MozKeyboard
|
|
|
|
// -----------------------------------------------------------------------
|
|
|
|
|
|
|
|
function MozKeyboard() { }
|
|
|
|
|
|
|
|
MozKeyboard.prototype = {
|
|
|
|
classID: Components.ID("{397a7fdf-2254-47be-b74e-76625a1a66d5}"),
|
2012-06-06 12:19:33 +00:00
|
|
|
|
|
|
|
QueryInterface: XPCOMUtils.generateQI([
|
|
|
|
Ci.nsIB2GKeyboard, Ci.nsIDOMGlobalPropertyInitializer, Ci.nsIObserver
|
|
|
|
]),
|
|
|
|
|
|
|
|
classInfo: XPCOMUtils.generateCI({
|
|
|
|
"classID": Components.ID("{397a7fdf-2254-47be-b74e-76625a1a66d5}"),
|
|
|
|
"contractID": "@mozilla.org/b2g-keyboard;1",
|
|
|
|
"interfaces": [Ci.nsIB2GKeyboard],
|
|
|
|
"flags": Ci.nsIClassInfo.DOM_OBJECT,
|
|
|
|
"classDescription": "B2G Virtual Keyboard"
|
|
|
|
}),
|
|
|
|
|
|
|
|
init: function mozKeyboardInit(win) {
|
2012-03-19 17:30:51 +00:00
|
|
|
Services.obs.addObserver(this, "inner-window-destroyed", false);
|
2012-11-07 11:53:24 +00:00
|
|
|
cpmm.addMessageListener('Keyboard:FocusChange', this);
|
2012-06-06 12:19:33 +00:00
|
|
|
|
|
|
|
this._window = win;
|
|
|
|
this._utils = win.QueryInterface(Ci.nsIInterfaceRequestor)
|
|
|
|
.getInterface(Ci.nsIDOMWindowUtils);
|
2012-03-19 17:30:51 +00:00
|
|
|
this.innerWindowID = this._utils.currentInnerWindowID;
|
2012-06-06 12:19:33 +00:00
|
|
|
this._focusHandler = null;
|
2012-03-19 17:30:51 +00:00
|
|
|
},
|
|
|
|
|
2012-06-06 12:19:33 +00:00
|
|
|
uninit: function mozKeyboardUninit() {
|
|
|
|
Services.obs.removeObserver(this, "inner-window-destroyed");
|
2012-11-07 11:53:24 +00:00
|
|
|
cpmm.removeMessageListener('Keyboard:FocusChange', this);
|
|
|
|
|
2012-06-06 12:19:33 +00:00
|
|
|
this._window = null;
|
|
|
|
this._utils = null;
|
|
|
|
this._focusHandler = null;
|
2012-03-19 17:30:51 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
sendKey: function mozKeyboardSendKey(keyCode, charCode) {
|
|
|
|
charCode = (charCode == undefined) ? keyCode : charCode;
|
2012-06-06 12:19:33 +00:00
|
|
|
["keydown", "keypress", "keyup"].forEach((function sendKey(type) {
|
2012-03-19 17:30:51 +00:00
|
|
|
this._utils.sendKeyEvent(type, keyCode, charCode, null);
|
|
|
|
}).bind(this));
|
2012-06-06 12:19:33 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
setSelectedOption: function mozKeyboardSetSelectedOption(index) {
|
2012-11-07 11:53:24 +00:00
|
|
|
cpmm.sendAsyncMessage('Keyboard:SetSelectedOption', {
|
|
|
|
'index': index
|
2012-06-06 12:19:33 +00:00
|
|
|
});
|
|
|
|
},
|
|
|
|
|
2012-06-06 12:19:33 +00:00
|
|
|
setValue: function mozKeyboardSetValue(value) {
|
2012-11-07 11:53:24 +00:00
|
|
|
cpmm.sendAsyncMessage('Keyboard:SetValue', {
|
|
|
|
'value': value
|
2012-06-06 12:19:33 +00:00
|
|
|
});
|
|
|
|
},
|
|
|
|
|
2012-06-06 12:19:33 +00:00
|
|
|
setSelectedOptions: function mozKeyboardSetSelectedOptions(indexes) {
|
2012-11-07 11:53:24 +00:00
|
|
|
cpmm.sendAsyncMessage('Keyboard:SetSelectedOptions', {
|
|
|
|
'indexes': indexes
|
2012-06-06 12:19:33 +00:00
|
|
|
});
|
|
|
|
},
|
|
|
|
|
2012-10-17 11:18:14 +00:00
|
|
|
removeFocus: function mozKeyboardRemoveFocus() {
|
2012-11-07 11:53:24 +00:00
|
|
|
cpmm.sendAsyncMessage('Keyboard:RemoveFocus', {});
|
2012-10-17 11:18:14 +00:00
|
|
|
},
|
|
|
|
|
2012-06-06 12:19:33 +00:00
|
|
|
set onfocuschange(val) {
|
|
|
|
this._focusHandler = val;
|
|
|
|
},
|
|
|
|
|
|
|
|
get onfocuschange() {
|
|
|
|
return this._focusHandler;
|
|
|
|
},
|
|
|
|
|
2012-11-07 11:53:24 +00:00
|
|
|
receiveMessage: function mozKeyboardReceiveMessage(msg) {
|
2012-06-06 12:19:33 +00:00
|
|
|
let handler = this._focusHandler;
|
|
|
|
if (!handler || !(handler instanceof Ci.nsIDOMEventListener))
|
|
|
|
return;
|
|
|
|
|
|
|
|
let detail = {
|
|
|
|
"detail": msg.json
|
|
|
|
};
|
|
|
|
|
2012-08-19 19:00:22 +00:00
|
|
|
let evt = new this._window.CustomEvent("focuschanged",
|
|
|
|
ObjectWrapper.wrap(detail, this._window));
|
2012-06-06 12:19:33 +00:00
|
|
|
handler.handleEvent(evt);
|
|
|
|
},
|
|
|
|
|
|
|
|
observe: function mozKeyboardObserve(subject, topic, data) {
|
2012-11-07 11:53:24 +00:00
|
|
|
let wId = subject.QueryInterface(Ci.nsISupportsPRUint64).data;
|
|
|
|
if (wId == this.innerWindowID)
|
|
|
|
this.uninit();
|
2012-03-19 17:30:51 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2012-10-31 16:13:28 +00:00
|
|
|
this.NSGetFactory = XPCOMUtils.generateNSGetFactory([MozKeyboard]);
|
2012-06-06 12:19:33 +00:00
|
|
|
|