Bug 1197700 - Correct mistakes in InputMethod.webidl. r=kanru, r=janjongboom, sr=smaug

This commit is contained in:
Tim Chien 2015-09-10 22:27:00 +02:00
parent e360e7619b
commit 97fd8227ab
7 changed files with 486 additions and 361 deletions

View File

@ -114,7 +114,7 @@ this.Keyboard = {
if (this.formMM == mm) {
// The application has been closed unexpectingly. Let's tell the
// keyboard app that the focus has been lost.
this.sendToKeyboard('Keyboard:FocusChange', { 'type': 'blur' });
this.sendToKeyboard('Keyboard:Blur', {});
// Notify system app to hide keyboard.
SystemAppProxy.dispatchEvent({
type: 'inputmethod-contextchange',
@ -131,7 +131,8 @@ this.Keyboard = {
},
initFormsFrameScript: function(mm) {
mm.addMessageListener('Forms:Input', this);
mm.addMessageListener('Forms:Focus', this);
mm.addMessageListener('Forms:Blur', this);
mm.addMessageListener('Forms:SelectionChange', this);
mm.addMessageListener('Forms:GetText:Result:OK', this);
mm.addMessageListener('Forms:GetText:Result:Error', this);
@ -192,8 +193,11 @@ this.Keyboard = {
}
switch (msg.name) {
case 'Forms:Input':
this.handleFocusChange(msg);
case 'Forms:Focus':
this.handleFocus(msg);
break;
case 'Forms:Blur':
this.handleBlur(msg);
break;
case 'Forms:SelectionChange':
case 'Forms:GetText:Result:OK':
@ -274,43 +278,19 @@ this.Keyboard = {
}
},
forwardEvent: function keyboardForwardEvent(newEventName, msg) {
handleFocus: function keyboardHandleFocus(msg) {
// Set the formMM to the new message manager received.
let mm = msg.target.QueryInterface(Ci.nsIFrameLoaderOwner)
.frameLoader.messageManager;
if (newEventName === 'Keyboard:FocusChange') {
if (msg.data.type !== 'blur') { // Focus on a new input field
// Set the formMM to the new message manager so that
// message gets to the right form now on.
this.formMM = mm;
} else { // input is blurred
// A blur message can't be sent to the keyboard if the focus has
// already been taken away at first place.
// This check is here to prevent problem caused by out-of-order
// ipc messages from two processes.
if (mm !== this.formMM) {
return false;
}
this.formMM = null;
}
}
this.sendToKeyboard(newEventName, msg.data);
return true;
},
handleFocusChange: function keyboardHandleFocusChange(msg) {
let isSent = this.forwardEvent('Keyboard:FocusChange', msg);
if (!isSent) {
return;
}
this.forwardEvent('Keyboard:Focus', msg);
// Chrome event, used also to render value selectors; that's why we need
// the info about choices / min / max here as well...
SystemAppProxy.dispatchEvent({
type: 'inputmethod-contextchange',
inputType: msg.data.type,
inputType: msg.data.inputType,
value: msg.data.value,
choices: JSON.stringify(msg.data.choices),
min: msg.data.min,
@ -318,6 +298,32 @@ this.Keyboard = {
});
},
handleBlur: function keyboardHandleBlur(msg) {
let mm = msg.target.QueryInterface(Ci.nsIFrameLoaderOwner)
.frameLoader.messageManager;
// A blur message can't be sent to the keyboard if the focus has
// already been taken away at first place.
// This check is here to prevent problem caused by out-of-order
// ipc messages from two processes.
if (mm !== this.formMM) {
return;
}
// unset formMM
this.formMM = null;
this.forwardEvent('Keyboard:Blur', msg);
SystemAppProxy.dispatchEvent({
type: 'inputmethod-contextchange',
inputType: 'blur'
});
},
forwardEvent: function keyboardForwardEvent(newEventName, msg) {
this.sendToKeyboard(newEventName, msg.data);
},
setSelectedOption: function keyboardSetSelectedOption(msg) {
this.sendToForm('Forms:Select:Choice', msg.data);
},

View File

@ -186,8 +186,6 @@ MozInputMethod.prototype = {
_wrappedInputContext: null,
_layouts: {},
_window: null,
_isSystem: false,
_isKeyboard: true,
classID: Components.ID("{4607330d-e7d2-40a4-9eb8-43967eae0142}"),
@ -206,20 +204,8 @@ MozInputMethod.prototype = {
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;
}
perm = Services.perms.testExactPermissionFromPrincipal(principal, "input");
if (perm !== Ci.nsIPermissionManager.ALLOW_ACTION) {
this._isKeyboard = false;
return;
}
cpmm.addWeakMessageListener('Keyboard:FocusChange', this);
cpmm.addWeakMessageListener('Keyboard:Focus', this);
cpmm.addWeakMessageListener('Keyboard:Blur', this);
cpmm.addWeakMessageListener('Keyboard:SelectionChange', this);
cpmm.addWeakMessageListener('Keyboard:GetContext:Result:OK', this);
cpmm.addWeakMessageListener('Keyboard:LayoutsChange', this);
@ -230,12 +216,9 @@ MozInputMethod.prototype = {
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:Focus', this);
cpmm.removeWeakMessageListener('Keyboard:Blur', this);
cpmm.removeWeakMessageListener('Keyboard:SelectionChange', this);
cpmm.removeWeakMessageListener('Keyboard:GetContext:Result:OK', this);
cpmm.removeWeakMessageListener('Keyboard:LayoutsChange', this);
@ -255,14 +238,12 @@ MozInputMethod.prototype = {
this.takePromiseResolver(data.requestId) : null;
switch(msg.name) {
case 'Keyboard:FocusChange':
if (data.type !== 'blur') {
case 'Keyboard:Focus':
// XXX Bug 904339 could receive 'text' event twice
this.setInputContext(data);
}
else {
break;
case 'Keyboard:Blur':
this.setInputContext(null);
}
break;
case 'Keyboard:SelectionChange':
if (this.inputcontext) {
@ -322,8 +303,8 @@ MozInputMethod.prototype = {
}
if (data) {
this._mgmt._supportsSwitching = this._layouts[data.type] ?
this._layouts[data.type] > 1 :
this._mgmt._supportsSwitching = this._layouts[data.inputType] ?
this._layouts[data.inputType] > 1 :
false;
this._inputcontext = new MozInputContext(data);
@ -400,35 +381,25 @@ MozInputMethod.prototype = {
},
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.");
}
}
};
@ -494,12 +465,10 @@ InputContextDOMRequestIpcHelper.prototype = {
*/
function MozInputContext(ctx) {
this._context = {
inputtype: ctx.type,
inputmode: ctx.inputmode,
type: ctx.type,
inputType: ctx.inputType,
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,
@ -648,11 +617,11 @@ MozInputContext.prototype = {
// type of the input field
get inputType() {
return this._context.inputtype;
return this._context.inputType;
},
get inputMode() {
return this._context.inputmode;
return this._context.inputMode;
},
get lang() {

View File

@ -997,7 +997,7 @@ let FormAssistant = {
unhandleFocus: function fa_unhandleFocus() {
this.setFocusedElement(null);
this.isHandlingFocus = false;
sendAsyncMessage("Forms:Input", { "type": "blur" });
sendAsyncMessage("Forms:Blur", {});
},
isFocusableElement: function fa_isFocusableElement(element) {
@ -1026,7 +1026,7 @@ let FormAssistant = {
},
sendInputState: function(element) {
sendAsyncMessage("Forms:Input", getJSON(element, this._focusCounter));
sendAsyncMessage("Forms:Focus", getJSON(element, this._focusCounter));
},
getSelectionInfo: function fa_getSelectionInfo() {
@ -1113,28 +1113,30 @@ function getJSON(element, focusCounter) {
// need it's number control here in order to get the correct 'type' etc.:
element = element.ownerNumberControl || element;
let type = element.type || "";
let type = element.tagName.toLowerCase();
let inputType = (element.type || "").toLowerCase();
let value = element.value || "";
let max = element.max || "";
let min = element.min || "";
// Treat contenteditble element as a special text area field
// Treat contenteditable element as a special text area field
if (isContentEditable(element)) {
type = "textarea";
type = "contenteditable";
inputType = "textarea";
value = getContentEditableText(element);
}
// Until the input type=date/datetime/range have been implemented
// let's return their real type even if the platform returns 'text'
let attributeType = element.getAttribute("type") || "";
let attributeInputType = element.getAttribute("type") || "";
if (attributeType) {
var typeLowerCase = attributeType.toLowerCase();
switch (typeLowerCase) {
if (attributeInputType) {
let inputTypeLowerCase = attributeInputType.toLowerCase();
switch (inputTypeLowerCase) {
case "datetime":
case "datetime-local":
case "range":
type = typeLowerCase;
inputType = inputTypeLowerCase;
break;
}
}
@ -1145,11 +1147,11 @@ function getJSON(element, focusCounter) {
// inputmode for fields. This shouldn't be used outside of pre-installed
// apps because the attribute is going to disappear as soon as a definitive
// solution will be find.
let inputmode = element.getAttribute('x-inputmode');
if (inputmode) {
inputmode = inputmode.toLowerCase();
let inputMode = element.getAttribute('x-inputmode');
if (inputMode) {
inputMode = inputMode.toLowerCase();
} else {
inputmode = '';
inputMode = '';
}
let range = getSelectionRange(element);
@ -1158,10 +1160,12 @@ function getJSON(element, focusCounter) {
return {
"contextId": focusCounter,
"type": type.toLowerCase(),
"type": type,
"inputType": inputType,
"inputMode": inputMode,
"choices": getListForElement(element),
"value": value,
"inputmode": inputmode,
"selectionStart": range[0],
"selectionEnd": range[1],
"max": max,

View File

@ -38,9 +38,9 @@ function runTest() {
return;
}
todo_is(gContext.type, 'input', 'The input context type should match.');
is(gContext.type, 'input', 'The input context type should match.');
is(gContext.inputType, 'text', 'The inputType should match.');
is(gContext.inputMode, 'verbatim', 'The input mode should match.');
is(gContext.inputMode, 'verbatim', 'The inputMode should match.');
is(gContext.lang, 'zh', 'The language should match.');
is(gContext.textBeforeCursor + gContext.textAfterCursor, 'Yuan',
'Should get the text around the cursor.');

View File

@ -54,6 +54,9 @@ function runTest() {
mm.loadFrameScript('data:,(' + encodeURIComponent(appFrameScript.toString()) + ')();', false);
im.oninputcontextchange = function() {
is(im.inputcontext.type, 'contenteditable', 'type');
is(im.inputcontext.inputType, 'textarea', 'inputType');
if (im.inputcontext) {
im.oninputcontextchange = null;
register();

View File

@ -786,9 +786,9 @@ var interfaceNamesInGlobalScope =
// IMPORTANT: Do not change this list without review from a DOM peer!
{name: "MozEmergencyCbModeEvent", b2g: true},
// IMPORTANT: Do not change this list without review from a DOM peer!
{name: "MozInputContext", b2g: true},
{name: "MozInputContext", b2g: true, permission: ["input"]},
// IMPORTANT: Do not change this list without review from a DOM peer!
{name: "MozInputMethodManager", b2g: true},
{name: "MozInputMethodManager", b2g: true, permission: ["input"]},
// IMPORTANT: Do not change this list without review from a DOM peer!
"MozMmsMessage",
// IMPORTANT: Do not change this list without review from a DOM peer!

View File

@ -4,140 +4,209 @@
* You can obtain one at http://mozilla.org/MPL/2.0/.
*/
/**
* InputMethod API implements a bridge between the web content hosting an input
* element and the input content (a.k.a. input app, virtual keyboard app,
* or IME). This API is input content facing in order for it to interact with
* the remote input element.
* The API also contains a few Gaia System app only methods
* (marked with "input-manage" permission) for Gaia System app to interact with
* some types of inputs and to regulate the input apps.
*/
[JSImplementation="@mozilla.org/b2g-inputmethod;1",
NavigatorProperty="mozInputMethod",
Pref="dom.mozInputMethod.enabled",
CheckAnyPermissions="input input-manage"]
interface MozInputMethod : EventTarget {
// Input Method Manager contain a few global methods expose to apps
readonly attribute MozInputMethodManager mgmt;
// Fired when the input context changes, include changes from and to null.
// The new InputContext instance will be available in the event
// object under |inputcontext| property. When it changes to null it
// means the app (the user of this API) no longer has the control of
// the original focused input field.
// Note that if the app saves the original context, it might get
// void; implementation decides when to void the input context.
attribute EventHandler oninputcontextchange;
// An "input context" is mapped to a text field that the app is
// allow to mutate. this attribute should be null when there is no
// text field currently focused.
readonly attribute MozInputContext? inputcontext;
/**
* Activate or decactive current API instance.
* Gaia System app call this method via BrowserElement#setInputMethodActive.
*/
[ChromeOnly]
// Activate or decactive current input method window.
void setActive(boolean isActive);
// Add a dynamically declared input.
//
// The id must not be the same with any statically declared input in the app
// manifest. If an input of the same id is already declared, the info of that
// input will be updated.
Promise<void> addInput(DOMString inputId, object inputManifest);
/**
* InputMethodManager contain a few global methods expose to input apps.
*/
readonly attribute MozInputMethodManager mgmt;
// Remove a dynamically declared input.
//
// The id must not be the same with any statically declared input in the app
// manifest. Silently resolves if the input is not previously declared;
// rejects if attempt to remove a statically declared input.
/**
* Fired when the input context changes, include changes from and to null.
* The new InputContext instance will be available in the event
* object under |inputcontext| property. When it changes to null it
* means the app (the user of this API) no longer has the control of
* the original focused input field.
* Note that if the app saves the original context, it might get
* void; implementation decides when to void the input context.
*/
[CheckAnyPermissions="input"]
attribute EventHandler oninputcontextchange;
/**
* An "input context" is mapped to a text field that the app is
* allow to mutate. This attribute should be null when there is no
* text field currently focused.
*/
[CheckAnyPermissions="input"]
readonly attribute MozInputContext? inputcontext;
/**
* Add a dynamically declared input.
*
* The id must not be the same with any statically declared input in the app
* manifest. If an input of the same id is already declared, the info of that
* input will be updated.
*/
[CheckAnyPermissions="input"]
Promise<void> addInput(DOMString inputId,
MozInputMethodInputManifest inputManifest);
/**
* Remove a dynamically declared input.
*
* The id must not be the same with any statically declared input in the app
* manifest. Silently resolves if the input is not previously declared;
* rejects if attempt to remove a statically declared input.
*/
[CheckAnyPermissions="input"]
Promise<void> removeInput(DOMString id);
// The following are internal methods for Firefox OS system app only.
/**
* Remove focus from the current input, usable by Gaia System app, globally,
* regardless of the current focus state.
*/
[CheckAnyPermissions="input-manage"]
void removeFocus();
// Set the value on the currently focused element. This has to be used
// for special situations where the value had to be chosen amongst a
// list (type=month) or a widget (type=date, time, etc.).
// If the value passed in parameter isn't valid (in the term of HTML5
// Forms Validation), the value will simply be ignored by the element.
[Throws]
/**
* The following are internal methods for Firefox OS System app only,
* for handling the "option" group inputs.
*/
/**
* Set the value on the currently focused element. This has to be used
* for special situations where the value had to be chosen amongst a
* list (type=month) or a widget (type=date, time, etc.).
* If the value passed in parameter isn't valid (in the term of HTML5
* Forms Validation), the value will simply be ignored by the element.
*/
[CheckAnyPermissions="input-manage"]
void setValue(DOMString value);
// Select the <select> option specified by index.
// If this method is called on a <select> that support multiple
// selection, then the option specified by index will be added to
// the selection.
// If this method is called for a select that does not support multiple
// selection the previous element will be unselected.
[Throws]
/**
* Select the <select> option specified by index.
* If this method is called on a <select> that support multiple
* selection, then the option specified by index will be added to
* the selection.
* If this method is called for a select that does not support multiple
* selection the previous element will be unselected.
*/
[CheckAnyPermissions="input-manage"]
void setSelectedOption(long index);
// Select the <select> options specified by indexes. All other options
// will be deselected.
// If this method is called for a <select> that does not support multiple
// selection, then the last index specified in indexes will be selected.
[Throws]
/**
* Select the <select> options specified by indexes. All other options
* will be deselected.
* If this method is called for a <select> that does not support multiple
* selection, then the last index specified in indexes will be selected.
*/
[CheckAnyPermissions="input-manage"]
void setSelectedOptions(sequence<long> indexes);
[Throws]
void removeFocus();
};
// Manages the list of IMEs, enables/disables IME and switches to an
// IME.
/**
* InputMethodManager contains a few of the global methods for the input app.
*/
[JSImplementation="@mozilla.org/b2g-imm;1",
Pref="dom.mozInputMethod.enabled"]
Pref="dom.mozInputMethod.enabled",
CheckAnyPermissions="input"]
interface MozInputMethodManager {
// Ask the OS to show a list of available IMEs for users to switch from.
// OS should ignore this request if the app is currently not the active one.
/**
* Ask the OS to show a list of available inputs for users to switch from.
* OS should sliently ignore this request if the app is currently not the
* active one.
*/
void showAll();
// Ask the OS to switch away from the current active Keyboard app.
// OS should ignore this request if the app is currently not the active one.
/**
* Ask the OS to switch away from the current active input app.
* OS should sliently ignore this request if the app is currently not the
* active one.
*/
void next();
// To know if the OS supports IME switching or not.
// Use case: let the keyboard app knows if it is necessary to show the "IME switching"
// (globe) button. We have a use case that when there is only one IME enabled, we
// should not show the globe icon.
/**
* If this method returns true, it is recommented that the input app provides
* a shortcut that would invoke the next() method above, for easy switching
* between inputs -- i.e. show a "global" button on screen if the input app
* implements an on-screen virtual keyboard.
*
* The returning value is depend on the inputType of the current input context.
*/
boolean supportsSwitching();
// Ask the OS to hide the current active Keyboard app. (was: |removeFocus()|)
// OS should ignore this request if the app is currently not the active one.
// The OS will void the current input context (if it exists).
// This method belong to |mgmt| because we would like to allow Keyboard to access to
// this method w/o a input context.
/**
* Ask the OS to remove the input focus, will cause the lost of input context.
* OS should sliently ignore this request if the app is currently not the
* active one.
*/
void hide();
};
// The input context, which consists of attributes and information of current input field.
// It also hosts the methods available to the keyboard app to mutate the input field represented.
// An "input context" gets void when the app is no longer allowed to interact with the text field,
// e.g., the text field does no longer exist, the app is being switched to background, and etc.
/**
* The input context, which consists of attributes and information of current
* input field. It also hosts the methods available to the keyboard app to
* mutate the input field represented. An "input context" gets void when the
* app is no longer allowed to interact with the text field,
* e.g., the text field does no longer exist, the app is being switched to
* background, and etc.
*/
[JSImplementation="@mozilla.org/b2g-inputcontext;1",
Pref="dom.mozInputMethod.enabled"]
Pref="dom.mozInputMethod.enabled",
CheckAnyPermissions="input"]
interface MozInputContext: EventTarget {
// The tag name of input field, which is enum of "input", "textarea", or "contenteditable"
readonly attribute DOMString? type;
// The type of the input field, which is enum of text, number, password, url, search, email, and so on.
// See http://www.whatwg.org/specs/web-apps/current-work/multipage/states-of-the-type-attribute.html#states-of-the-type-attribute
readonly attribute DOMString? inputType;
/*
* The inputmode string, representing the input mode.
/**
* Type of the InputContext. See MozInputMethodInputContextTypes
*/
readonly attribute MozInputMethodInputContextTypes? type;
/**
* InputType of the InputContext. See MozInputMethodInputContextInputTypes.
*/
readonly attribute MozInputMethodInputContextInputTypes? inputType;
/**
* The inputmode string, representing the inputmode of the input.
* See http://www.whatwg.org/specs/web-apps/current-work/multipage/association-of-controls-and-forms.html#input-modalities:-the-inputmode-attribute
*/
readonly attribute DOMString? inputMode;
/*
/**
* The primary language for the input field.
* It is the value of HTMLElement.lang.
* See http://www.whatwg.org/specs/web-apps/current-work/multipage/elements.html#htmlelement
*/
readonly attribute DOMString? lang;
/*
/**
* Get the whole text content of the input field.
* @return DOMString
*/
Promise<DOMString> getText(optional long offset, optional long length);
// The start and stop position of the selection.
/**
* The start and stop position of the current selection.
*/
readonly attribute long selectionStart;
readonly attribute long selectionEnd;
// The text before and after the begining of the selected text.
/**
* The text before and after the begining of the selected text.
*/
readonly attribute DOMString? textBeforeCursor;
readonly attribute DOMString? textAfterCursor;
/*
/**
* Set the selection range of the the editable text.
* Note: This method cannot be used to move the cursor during composition. Calling this
* method will cancel composition.
@ -160,7 +229,7 @@ interface MozInputContext: EventTarget {
*/
attribute EventHandler onselectionchange;
/*
/**
* Commit text to current input field and replace text around
* cursor position. It will clear the current composition.
*
@ -171,8 +240,7 @@ interface MozInputContext: EventTarget {
*/
Promise<boolean> replaceSurroundingText(DOMString text, optional long offset, optional long length);
/*
*
/**
* Delete text around the cursor.
* @param offset The offset from the cursor position where deletion starts.
* @param length The length of text to delete.
@ -181,7 +249,7 @@ interface MozInputContext: EventTarget {
*/
Promise<boolean> deleteSurroundingText(long offset, long length);
/*
/**
* Notifies when the text around the cursor is changed, due to either text
* editing or cursor movement. If the cursor has been moved, but the text around has not
* changed, the IME won't get notification.
@ -192,7 +260,7 @@ interface MozInputContext: EventTarget {
*/
attribute EventHandler onsurroundingtextchange;
/*
/**
* Send a string/character with its key events. There are two ways of invocating
* the method for backward compability purpose.
*
@ -220,7 +288,7 @@ interface MozInputContext: EventTarget {
optional long modifiers,
optional boolean repeat);
/*
/**
* Send a string/character with keydown, and keypress events.
* keyup should be called afterwards to ensure properly sequence.
*
@ -231,18 +299,17 @@ interface MozInputContext: EventTarget {
*/
Promise<boolean> keydown(MozInputMethodRequiredKeyboardEventDict dict);
/*
/**
* Send a keyup event. keydown should be called first to ensure properly sequence.
*
* @param dict See MozInputMethodKeyboardEventDict.
*
* @return A promise. Resolve to true if succeeds.
* Rejects to a string indicating the error.
*
*/
Promise<boolean> keyup(MozInputMethodRequiredKeyboardEventDict dict);
/*
/**
* Set current composing text. This method will start composition or update
* composition if it has started. The composition will be started right
* before the cursor position and any selected text will be replaced by the
@ -278,7 +345,7 @@ interface MozInputContext: EventTarget {
optional sequence<CompositionClauseParameters> clauses,
optional MozInputMethodKeyboardEventDict dict);
/*
/**
* End composition, clear the composing text and commit given text to
* current input field. The text will be committed before the cursor
* position.
@ -307,11 +374,87 @@ enum CompositionClauseSelectionType {
};
dictionary CompositionClauseParameters {
DOMString selectionType = "raw-input";
CompositionClauseSelectionType selectionType = "raw-input";
long length;
};
/*
/**
* Types are HTML tag names of the inputs that is explosed with InputContext,
* *and* the special keyword "contenteditable" for contenteditable element.
*/
enum MozInputMethodInputContextTypes {
"input", "textarea", "contenteditable"
/**
* <select> is managed by the API but it's not exposed through InputContext
* yet.
*/
// "select"
};
/**
* InputTypes of the input that InputContext is representing. The value
* is inferred from the type attribute of input element.
*
* See https://html.spec.whatwg.org/multipage/forms.html#states-of-the-type-attribute
*
* They are divided into groups -- an layout/input capable of handling one type
* in the group is considered as capable of handling all of the types in the
* same group.
* The layout/input that could handle type "text" is considered as the fallback
* if none of layout/input installed can handle a specific type.
*
* Groups and fallbacks is enforced in Gaia System app currently.
*
* Noted that the actual virtual keyboard to show, for example in the case of
* Gaia Keyboard app, will also depend on the inputMode of the input element.
*/
enum MozInputMethodInputContextInputTypes {
/**
* Group "text". Be reminded that contenteditable element is assigned with
* an input type of "textarea".
*/
"text", "search", "textarea",
/**
* Group "number"
*/
"number", "tel",
/**
* Group "url"
*/
"url",
/**
* Group "email"
*/
"email",
/**
* Group "password".
* An non-Latin alphabet layout/input should not be able to handle this type.
*/
"password"
/**
* Group "option". These types are handled by System app itself currently, and
* not exposed and allowed to handled with input context.
*/
//"datetime", "date", "month", "week", "time", "datetime-local", "color",
/**
* These types are ignored by the API even though they are valid
* HTMLInputElement#type.
*/
//"checkbox", "radio", "file", "submit", "image", "range", "reset", "button"
};
/**
* An input app can host multiple inputs (a.k.a. layouts) and the capability of
* the input is described by the input manifest.
*/
dictionary MozInputMethodInputManifest {
required DOMString launch_path;
required DOMString name;
DOMString? description;
sequence<MozInputMethodInputContextInputTypes> types;
};
/**
* A MozInputMethodKeyboardEventDictBase contains the following properties,
* indicating the properties of the keyboard event caused.
*
@ -320,12 +463,12 @@ dictionary CompositionClauseParameters {
*
*/
dictionary MozInputMethodKeyboardEventDictBase {
/*
/**
* String/character to output, or a registered name of non-printable key.
* (To be defined in the inheriting dictionary types.)
*/
// DOMString key;
/*
/**
* String/char indicating the virtual hardware key pressed. Optional.
* Must be a value defined in
* http://www.w3.org/TR/DOM-Level-3-Events-code/#keyboard-chording-virtual
@ -333,7 +476,7 @@ dictionary MozInputMethodKeyboardEventDictBase {
* not be empty string. Otherwise, it should be empty string.
*/
DOMString code = "";
/*
/**
* keyCode of the keyboard event. Optional.
* To be disregarded if |key| is an alphanumeric character.
* If the key causes inputting a character and if your keyboard app emulates
@ -343,11 +486,11 @@ dictionary MozInputMethodKeyboardEventDictBase {
* the value should be proper value for the key value.
*/
long? keyCode;
/*
/**
* Indicates whether a key would be sent repeatedly. Optional.
*/
boolean repeat = false;
/*
/**
* Optional. True if |key| property is explicitly referring to a printable key.
* When this is set, key will be printable even if the |key| value matches any
* of the registered name of non-printable keys.
@ -355,7 +498,7 @@ dictionary MozInputMethodKeyboardEventDictBase {
boolean printable = false;
};
/*
/**
* For methods like setComposition() and endComposition(), the optional
* dictionary type argument is really optional when all of it's property
* are optional.
@ -365,7 +508,7 @@ dictionary MozInputMethodKeyboardEventDict : MozInputMethodKeyboardEventDictBase
DOMString? key;
};
/*
/**
* For methods like keydown() and keyup(), the dictionary type argument is
* considered required only if at least one of it's property is required.
* This dictionary type is used to denote that argument.