2023-01-14 09:58:54 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2021 Huawei Device Co., Ltd.
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
2023-03-21 02:40:46 +00:00
|
|
|
import { AsyncCallback } from './basic';
|
2023-01-18 01:43:43 +00:00
|
|
|
import InputMethodSubtype from './@ohos.InputMethodSubtype';
|
2023-03-21 02:40:46 +00:00
|
|
|
import { Movement, Range } from './imf/InputMethodCommon';
|
2023-01-18 12:35:01 +00:00
|
|
|
|
2023-01-14 09:58:54 +00:00
|
|
|
/**
|
|
|
|
* Input method engine
|
|
|
|
*
|
2023-03-21 02:40:46 +00:00
|
|
|
* @namespace inputMethodEngine
|
2023-01-14 09:58:54 +00:00
|
|
|
* @syscap SystemCapability.MiscServices.InputMethodFramework
|
2023-03-21 02:40:46 +00:00
|
|
|
* @since 8
|
2023-01-14 09:58:54 +00:00
|
|
|
*/
|
|
|
|
declare namespace inputMethodEngine {
|
2023-03-21 02:40:46 +00:00
|
|
|
/**
|
|
|
|
* When "enter" key is pressed, there is no action
|
|
|
|
*
|
|
|
|
* @constant
|
|
|
|
* @syscap SystemCapability.MiscServices.InputMethodFramework
|
|
|
|
* @since 8
|
|
|
|
*/
|
|
|
|
const ENTER_KEY_TYPE_UNSPECIFIED: number;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* When "enter" key is pressed, it means GO
|
|
|
|
*
|
|
|
|
* @constant
|
|
|
|
* @syscap SystemCapability.MiscServices.InputMethodFramework
|
|
|
|
* @since 8
|
|
|
|
*/
|
|
|
|
const ENTER_KEY_TYPE_GO: number;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* When "enter" key is pressed, it means SEARCH
|
|
|
|
*
|
|
|
|
* @constant
|
|
|
|
* @syscap SystemCapability.MiscServices.InputMethodFramework
|
|
|
|
* @since 8
|
|
|
|
*/
|
|
|
|
const ENTER_KEY_TYPE_SEARCH: number;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* When "enter" key is pressed, it means SEND
|
|
|
|
*
|
|
|
|
* @constant
|
|
|
|
* @syscap SystemCapability.MiscServices.InputMethodFramework
|
|
|
|
* @since 8
|
|
|
|
*/
|
|
|
|
const ENTER_KEY_TYPE_SEND: number;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* When "enter" key is pressed, it means NEXT
|
|
|
|
*
|
|
|
|
* @constant
|
|
|
|
* @syscap SystemCapability.MiscServices.InputMethodFramework
|
|
|
|
* @since 8
|
|
|
|
*/
|
|
|
|
const ENTER_KEY_TYPE_NEXT: number;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* When "enter" key is pressed, it means DONE
|
|
|
|
*
|
|
|
|
* @constant
|
|
|
|
* @syscap SystemCapability.MiscServices.InputMethodFramework
|
|
|
|
* @since 8
|
|
|
|
*/
|
|
|
|
const ENTER_KEY_TYPE_DONE: number;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* When "enter" key is pressed, it means PREVIOUS
|
|
|
|
*
|
|
|
|
* @constant
|
|
|
|
* @syscap SystemCapability.MiscServices.InputMethodFramework
|
|
|
|
* @since 8
|
|
|
|
*/
|
|
|
|
const ENTER_KEY_TYPE_PREVIOUS: number;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Editor with no special function
|
|
|
|
*
|
|
|
|
* @constant
|
|
|
|
* @syscap SystemCapability.MiscServices.InputMethodFramework
|
|
|
|
* @since 8
|
|
|
|
*/
|
|
|
|
const PATTERN_NULL: number;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Editor of type TEXT
|
|
|
|
*
|
|
|
|
* @constant
|
|
|
|
* @syscap SystemCapability.MiscServices.InputMethodFramework
|
|
|
|
* @since 8
|
|
|
|
*/
|
|
|
|
const PATTERN_TEXT: number;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Editor of type NUMBER
|
|
|
|
*
|
|
|
|
* @constant
|
|
|
|
* @syscap SystemCapability.MiscServices.InputMethodFramework
|
|
|
|
* @since 8
|
|
|
|
*/
|
|
|
|
const PATTERN_NUMBER: number;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Editor of type PHONE NUMBER
|
|
|
|
*
|
|
|
|
* @constant
|
|
|
|
* @syscap SystemCapability.MiscServices.InputMethodFramework
|
|
|
|
* @since 8
|
|
|
|
*/
|
|
|
|
const PATTERN_PHONE: number;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Editor of type DATETIME
|
|
|
|
*
|
|
|
|
* @constant
|
|
|
|
* @syscap SystemCapability.MiscServices.InputMethodFramework
|
|
|
|
* @since 8
|
|
|
|
*/
|
|
|
|
const PATTERN_DATETIME: number;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Editor of type EMAIL
|
|
|
|
*
|
|
|
|
* @constant
|
|
|
|
* @syscap SystemCapability.MiscServices.InputMethodFramework
|
|
|
|
* @since 8
|
|
|
|
*/
|
|
|
|
const PATTERN_EMAIL: number;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Editor of type URI
|
|
|
|
*
|
|
|
|
* @constant
|
|
|
|
* @syscap SystemCapability.MiscServices.InputMethodFramework
|
|
|
|
* @since 8
|
|
|
|
*/
|
|
|
|
const PATTERN_URI: number;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Editor of type PASSWORD
|
|
|
|
*
|
|
|
|
* @constant
|
|
|
|
* @syscap SystemCapability.MiscServices.InputMethodFramework
|
|
|
|
* @since 8
|
|
|
|
*/
|
|
|
|
const PATTERN_PASSWORD: number;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Editor in SELECTING state
|
|
|
|
*
|
|
|
|
* @constant
|
|
|
|
* @syscap SystemCapability.MiscServices.InputMethodFramework
|
|
|
|
* @since 8
|
|
|
|
*/
|
|
|
|
const FLAG_SELECTING: number;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Editor in SINGLE_LINE state
|
|
|
|
*
|
|
|
|
* @constant
|
|
|
|
* @syscap SystemCapability.MiscServices.InputMethodFramework
|
|
|
|
* @since 8
|
|
|
|
*/
|
|
|
|
const FLAG_SINGLE_LINE: number;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The Editor displays in PART mode
|
|
|
|
*
|
|
|
|
* @constant
|
|
|
|
* @syscap SystemCapability.MiscServices.InputMethodFramework
|
|
|
|
* @since 8
|
|
|
|
*/
|
|
|
|
const DISPLAY_MODE_PART: number;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The Editor displays in FULL mode
|
|
|
|
*
|
|
|
|
* @constant
|
|
|
|
* @syscap SystemCapability.MiscServices.InputMethodFramework
|
|
|
|
* @since 8
|
|
|
|
*/
|
|
|
|
const DISPLAY_MODE_FULL: number;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Allows ASCII to be inputted
|
|
|
|
*
|
|
|
|
* @constant
|
|
|
|
* @syscap SystemCapability.MiscServices.InputMethodFramework
|
|
|
|
* @since 8
|
|
|
|
*/
|
|
|
|
const OPTION_ASCII: number;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Do not specify Editor's input type
|
|
|
|
*
|
|
|
|
* @constant
|
|
|
|
* @syscap SystemCapability.MiscServices.InputMethodFramework
|
|
|
|
* @since 8
|
|
|
|
*/
|
|
|
|
const OPTION_NONE: number;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Allows CHARACTERS to be inputted
|
|
|
|
*
|
|
|
|
* @constant
|
|
|
|
* @syscap SystemCapability.MiscServices.InputMethodFramework
|
|
|
|
* @since 8
|
|
|
|
*/
|
|
|
|
const OPTION_AUTO_CAP_CHARACTERS: number;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Allows SENTENCES to be inputted
|
|
|
|
*
|
|
|
|
* @constant
|
|
|
|
* @syscap SystemCapability.MiscServices.InputMethodFramework
|
|
|
|
* @since 8
|
|
|
|
*/
|
|
|
|
const OPTION_AUTO_CAP_SENTENCES: number;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Allows WORDS to be inputted
|
|
|
|
*
|
|
|
|
* @constant
|
|
|
|
* @syscap SystemCapability.MiscServices.InputMethodFramework
|
|
|
|
* @since 8
|
|
|
|
*/
|
|
|
|
const OPTION_AUTO_WORDS: number;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Allows MULTI_LINE to be inputted
|
|
|
|
*
|
|
|
|
* @constant
|
|
|
|
* @syscap SystemCapability.MiscServices.InputMethodFramework
|
|
|
|
* @since 8
|
|
|
|
*/
|
|
|
|
const OPTION_MULTI_LINE: number;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Half-screen mode
|
|
|
|
*
|
|
|
|
* @constant
|
|
|
|
* @syscap SystemCapability.MiscServices.InputMethodFramework
|
|
|
|
* @since 8
|
|
|
|
*/
|
|
|
|
const OPTION_NO_FULLSCREEN: number;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The move direction of cursor: UP
|
|
|
|
*
|
|
|
|
* @constant
|
|
|
|
* @syscap SystemCapability.MiscServices.InputMethodFramework
|
|
|
|
* @since 9
|
|
|
|
*/
|
|
|
|
const CURSOR_UP: number;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The move direction of cursor: DOWN
|
|
|
|
*
|
|
|
|
* @constant
|
|
|
|
* @syscap SystemCapability.MiscServices.InputMethodFramework
|
|
|
|
* @since 9
|
|
|
|
*/
|
|
|
|
const CURSOR_DOWN: number;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The move direction of cursor: LEFT
|
|
|
|
*
|
|
|
|
* @constant
|
|
|
|
* @syscap SystemCapability.MiscServices.InputMethodFramework
|
|
|
|
* @since 9
|
|
|
|
*/
|
|
|
|
const CURSOR_LEFT: number;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The move direction of cursor: RIGHT
|
|
|
|
*
|
|
|
|
* @constant
|
|
|
|
* @syscap SystemCapability.MiscServices.InputMethodFramework
|
|
|
|
* @since 9
|
|
|
|
*/
|
|
|
|
const CURSOR_RIGHT: number;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The window styles for input method ability.
|
|
|
|
*
|
|
|
|
* @constant
|
|
|
|
* @syscap SystemCapability.MiscServices.InputMethodFramework
|
|
|
|
* @since 9
|
|
|
|
*/
|
|
|
|
const WINDOW_TYPE_INPUT_METHOD_FLOAT: number;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get InputMethodAbility object to subscribe events about IME.
|
|
|
|
*
|
|
|
|
* @returns { InputMethodAbility } the object of the InputMethodAbility.
|
|
|
|
* @syscap SystemCapability.MiscServices.InputMethodFramework
|
|
|
|
* @since 9
|
|
|
|
*/
|
|
|
|
function getInputMethodAbility(): InputMethodAbility;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @returns { InputMethodEngine }
|
|
|
|
* @syscap SystemCapability.MiscServices.InputMethodFramework
|
|
|
|
* @since 8
|
|
|
|
* @deprecated since 9
|
|
|
|
* @useinstead inputMethodEngine#getInputMethodAbility
|
|
|
|
*/
|
|
|
|
function getInputMethodEngine(): InputMethodEngine;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get KeyboardDelegate object to subscribe key event or events about editor.
|
|
|
|
*
|
|
|
|
* @returns { KeyboardDelegate } the object of KeyboardDelegate.
|
|
|
|
* @syscap SystemCapability.MiscServices.InputMethodFramework
|
|
|
|
* @since 9
|
|
|
|
*/
|
|
|
|
function getKeyboardDelegate(): KeyboardDelegate;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @returns { KeyboardDelegate }
|
|
|
|
* @syscap SystemCapability.MiscServices.InputMethodFramework
|
|
|
|
* @since 8
|
|
|
|
* @deprecated since 9
|
|
|
|
* @useinstead inputMethodEngine#getKeyboardDelegate
|
|
|
|
*/
|
|
|
|
function createKeyboardDelegate(): KeyboardDelegate;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @interface KeyboardController
|
|
|
|
* @syscap SystemCapability.MiscServices.InputMethodFramework
|
|
|
|
* @since 8
|
|
|
|
*/
|
|
|
|
interface KeyboardController {
|
2023-01-14 09:58:54 +00:00
|
|
|
/**
|
2023-03-21 02:40:46 +00:00
|
|
|
* Hide soft keyboard
|
|
|
|
*
|
|
|
|
* @param { AsyncCallback<void> } callback - indicates the callback function of hide.
|
|
|
|
* @throws { BusinessError } 12800003 - input method client error.
|
2023-01-14 09:58:54 +00:00
|
|
|
* @syscap SystemCapability.MiscServices.InputMethodFramework
|
2023-03-21 02:40:46 +00:00
|
|
|
* @since 9
|
2023-01-14 09:58:54 +00:00
|
|
|
*/
|
2023-03-21 02:40:46 +00:00
|
|
|
hide(callback: AsyncCallback<void>): void;
|
2023-01-14 09:58:54 +00:00
|
|
|
|
|
|
|
/**
|
2023-03-21 02:40:46 +00:00
|
|
|
* Hide soft keyboard
|
|
|
|
*
|
|
|
|
* @returns { Promise<void> } the promise returned by the function
|
|
|
|
* @throws { BusinessError } 12800003 - input method client error.
|
2023-01-14 09:58:54 +00:00
|
|
|
* @syscap SystemCapability.MiscServices.InputMethodFramework
|
2023-03-21 02:40:46 +00:00
|
|
|
* @since 9
|
2023-01-14 09:58:54 +00:00
|
|
|
*/
|
2023-03-21 02:40:46 +00:00
|
|
|
hide(): Promise<void>;
|
2023-01-14 09:58:54 +00:00
|
|
|
|
|
|
|
/**
|
2023-03-21 02:40:46 +00:00
|
|
|
* @param { AsyncCallback<void> } callback - indicates the callback function of hideKeyboard.
|
2023-01-14 09:58:54 +00:00
|
|
|
* @syscap SystemCapability.MiscServices.InputMethodFramework
|
2023-03-21 02:40:46 +00:00
|
|
|
* @since 8
|
|
|
|
* @deprecated since 9
|
|
|
|
* @useinstead inputMethodEngine.KeyboardController#hide
|
2023-01-14 09:58:54 +00:00
|
|
|
*/
|
2023-03-21 02:40:46 +00:00
|
|
|
hideKeyboard(callback: AsyncCallback<void>): void;
|
2023-01-14 09:58:54 +00:00
|
|
|
|
|
|
|
/**
|
2023-03-21 02:40:46 +00:00
|
|
|
* @returns { Promise<void> } the promise returned by the function
|
|
|
|
* @syscap SystemCapability.MiscServices.InputMethodFramework
|
2023-01-14 09:58:54 +00:00
|
|
|
* @since 8
|
2023-03-21 02:40:46 +00:00
|
|
|
* @deprecated since 9
|
|
|
|
* @useinstead inputMethodEngine.KeyboardController#hide
|
|
|
|
*/
|
|
|
|
hideKeyboard(): Promise<void>;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @interface InputMethodEngine
|
|
|
|
* @syscap SystemCapability.MiscServices.InputMethodFramework
|
|
|
|
* @since 8
|
|
|
|
*/
|
|
|
|
interface InputMethodEngine {
|
|
|
|
/**
|
|
|
|
* Subscribe 'inputStart'
|
|
|
|
*
|
|
|
|
* @param { 'inputStart' } type - indicates the type of subscribe event.
|
|
|
|
* @param { (kbController: KeyboardController, textInputClient: TextInputClient) => void } callback - indicates the callback of on('inputStart').
|
2023-01-14 09:58:54 +00:00
|
|
|
* @syscap SystemCapability.MiscServices.InputMethodFramework
|
2023-03-21 02:40:46 +00:00
|
|
|
* @since 8
|
2023-01-14 09:58:54 +00:00
|
|
|
*/
|
2023-03-21 02:40:46 +00:00
|
|
|
on(
|
|
|
|
type: 'inputStart',
|
|
|
|
callback: (kbController: KeyboardController, textInputClient: TextInputClient) => void
|
|
|
|
): void;
|
2023-01-14 09:58:54 +00:00
|
|
|
|
|
|
|
/**
|
2023-03-21 02:40:46 +00:00
|
|
|
* Unsubscribe 'inputStart'
|
|
|
|
*
|
|
|
|
* @param { 'inputStart' } type - indicates the type of subscribe event.
|
|
|
|
* @param { (kbController: KeyboardController, textInputClient: TextInputClient) => void } callback - optional, indicates the callback of off('inputStart').
|
|
|
|
* @syscap SystemCapability.MiscServices.InputMethodFramework
|
2023-01-14 09:58:54 +00:00
|
|
|
* @since 8
|
2023-03-21 02:40:46 +00:00
|
|
|
*/
|
|
|
|
off(
|
|
|
|
type: 'inputStart',
|
|
|
|
callback?: (kbController: KeyboardController, textInputClient: TextInputClient) => void
|
|
|
|
): void;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Subscribe 'keyboardShow'|'keyboardHide'
|
|
|
|
*
|
|
|
|
* @param { 'keyboardShow' | 'keyboardHide' } type - indicates the type of subscribe event.
|
|
|
|
* @param { AsyncCallback<void> } callback - indicates the callback of on('keyboardShow'|'keyboardHide').
|
2023-01-14 09:58:54 +00:00
|
|
|
* @syscap SystemCapability.MiscServices.InputMethodFramework
|
2023-03-21 02:40:46 +00:00
|
|
|
* @since 8
|
2023-01-14 09:58:54 +00:00
|
|
|
*/
|
2023-03-21 02:40:46 +00:00
|
|
|
on(type: 'keyboardShow' | 'keyboardHide', callback: AsyncCallback<void>): void;
|
2023-01-14 09:58:54 +00:00
|
|
|
|
|
|
|
/**
|
2023-03-21 02:40:46 +00:00
|
|
|
* Unsubscribe 'keyboardShow'|'keyboardHide'
|
|
|
|
*
|
|
|
|
* @param { 'keyboardShow' | 'keyboardHide' } type - indicates the type of subscribe event.
|
|
|
|
* @param { AsyncCallback<void> } callback - optional, indicates the callback of off('keyboardShow'|'keyboardHide').
|
|
|
|
* @syscap SystemCapability.MiscServices.InputMethodFramework
|
2023-01-14 09:58:54 +00:00
|
|
|
* @since 8
|
2023-03-21 02:40:46 +00:00
|
|
|
*/
|
|
|
|
off(type: 'keyboardShow' | 'keyboardHide', callback?: AsyncCallback<void>): void;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* <p>Control events about IME.</p>
|
|
|
|
* <p>Events provided for IME to subscribe with callback function. When those events occur, the corresponding callback
|
|
|
|
* will be invoked.</p>
|
|
|
|
*
|
|
|
|
* @interface InputMethodAbility
|
|
|
|
* @syscap SystemCapability.MiscServices.InputMethodFramework
|
|
|
|
* @since 9
|
|
|
|
*/
|
|
|
|
interface InputMethodAbility {
|
|
|
|
/**
|
|
|
|
* Subscribe 'inputStart' event.
|
|
|
|
*
|
|
|
|
* @param { 'inputStart' } type - the type of subscribe event.
|
|
|
|
* @param { (kbController: KeyboardController, inputClient: InputClient) => void } callback - the callback of on('inputStart').
|
2023-01-14 09:58:54 +00:00
|
|
|
* @syscap SystemCapability.MiscServices.InputMethodFramework
|
2023-03-21 02:40:46 +00:00
|
|
|
* @since 9
|
2023-01-14 09:58:54 +00:00
|
|
|
*/
|
2023-03-21 02:40:46 +00:00
|
|
|
on(type: 'inputStart', callback: (kbController: KeyboardController, inputClient: InputClient) => void): void;
|
2023-01-14 09:58:54 +00:00
|
|
|
|
|
|
|
/**
|
2023-03-21 02:40:46 +00:00
|
|
|
* Unsubscribe 'inputStart' event.
|
|
|
|
*
|
|
|
|
* @param { 'inputStart' } type - the type of unsubscribe event.
|
|
|
|
* @param { (kbController: KeyboardController, inputClient: InputClient) => void } [callback] - optional, the callback of off('inputStart').
|
2023-01-14 09:58:54 +00:00
|
|
|
* @syscap SystemCapability.MiscServices.InputMethodFramework
|
2023-03-21 02:40:46 +00:00
|
|
|
* @since 9
|
2023-01-14 09:58:54 +00:00
|
|
|
*/
|
2023-03-21 02:40:46 +00:00
|
|
|
off(type: 'inputStart', callback?: (kbController: KeyboardController, inputClient: InputClient) => void): void;
|
2023-01-14 09:58:54 +00:00
|
|
|
|
|
|
|
/**
|
2023-03-21 02:40:46 +00:00
|
|
|
* Subscribe 'inputStop'.
|
|
|
|
*
|
|
|
|
* @param { 'inputStop' } type - the type of subscribe event.
|
|
|
|
* @param { AsyncCallback<void> } callback - the callback of on('inputStop').
|
2023-01-14 09:58:54 +00:00
|
|
|
* @syscap SystemCapability.MiscServices.InputMethodFramework
|
2023-03-21 02:40:46 +00:00
|
|
|
* @since 9
|
2023-01-14 09:58:54 +00:00
|
|
|
*/
|
2023-03-21 02:40:46 +00:00
|
|
|
on(type: 'inputStop', callback: AsyncCallback<void>): void;
|
2023-01-14 09:58:54 +00:00
|
|
|
|
|
|
|
/**
|
2023-03-21 02:40:46 +00:00
|
|
|
* Unsubscribe 'inputStop'.
|
|
|
|
*
|
|
|
|
* @param { 'inputStop' } type - the type of unsubscribe event.
|
|
|
|
* @param { AsyncCallback<void> } callback - the callback of off('inputStop').
|
2023-01-14 09:58:54 +00:00
|
|
|
* @syscap SystemCapability.MiscServices.InputMethodFramework
|
2023-03-21 02:40:46 +00:00
|
|
|
* @since 9
|
2023-01-14 09:58:54 +00:00
|
|
|
*/
|
2023-03-21 02:40:46 +00:00
|
|
|
off(type: 'inputStop', callback: AsyncCallback<void>): void;
|
2023-01-14 09:58:54 +00:00
|
|
|
|
|
|
|
/**
|
2023-03-21 02:40:46 +00:00
|
|
|
* Subscribe 'setCallingWindow'.
|
|
|
|
*
|
|
|
|
* @param { 'setCallingWindow' } type - the type of subscribe event.
|
|
|
|
* @param { AsyncCallback<number> } callback - the callback of on('setCallingWindow').
|
2023-01-14 09:58:54 +00:00
|
|
|
* @syscap SystemCapability.MiscServices.InputMethodFramework
|
2023-03-21 02:40:46 +00:00
|
|
|
* @since 9
|
2023-01-14 09:58:54 +00:00
|
|
|
*/
|
2023-03-21 02:40:46 +00:00
|
|
|
on(type: 'setCallingWindow', callback: AsyncCallback<number>): void;
|
2023-01-14 09:58:54 +00:00
|
|
|
|
|
|
|
/**
|
2023-03-21 02:40:46 +00:00
|
|
|
* Unsubscribe 'setCallingWindow'.
|
|
|
|
*
|
|
|
|
* @param { 'setCallingWindow' } type - the type of unsubscribe event.
|
|
|
|
* @param { AsyncCallback<number> } callback - the callback of off('setCallingWindow').
|
2023-01-14 09:58:54 +00:00
|
|
|
* @syscap SystemCapability.MiscServices.InputMethodFramework
|
2023-03-21 02:40:46 +00:00
|
|
|
* @since 9
|
2023-01-14 09:58:54 +00:00
|
|
|
*/
|
2023-03-21 02:40:46 +00:00
|
|
|
off(type: 'setCallingWindow', callback: AsyncCallback<number>): void;
|
2023-01-14 09:58:54 +00:00
|
|
|
|
|
|
|
/**
|
2023-03-21 02:40:46 +00:00
|
|
|
* Subscribe 'keyboardShow'|'keyboardHide'.
|
|
|
|
*
|
|
|
|
* @param { 'keyboardShow' | 'keyboardHide' } type - the type of subscribe event.
|
|
|
|
* @param { AsyncCallback<void> } callback - the callback of on('keyboardShow'|'keyboardHide').
|
2023-01-14 09:58:54 +00:00
|
|
|
* @syscap SystemCapability.MiscServices.InputMethodFramework
|
2023-03-21 02:40:46 +00:00
|
|
|
* @since 9
|
2023-01-14 09:58:54 +00:00
|
|
|
*/
|
2023-03-21 02:40:46 +00:00
|
|
|
on(type: 'keyboardShow' | 'keyboardHide', callback: AsyncCallback<void>): void;
|
2023-01-14 09:58:54 +00:00
|
|
|
|
|
|
|
/**
|
2023-03-21 02:40:46 +00:00
|
|
|
* Unsubscribe 'keyboardShow'|'keyboardHide'.
|
|
|
|
*
|
|
|
|
* @param { 'keyboardShow' | 'keyboardHide' } type - the type of unsubscribe event.
|
|
|
|
* @param { AsyncCallback<void> } [callback] - the callback of off('keyboardShow'|'keyboardHide').
|
2023-01-14 09:58:54 +00:00
|
|
|
* @syscap SystemCapability.MiscServices.InputMethodFramework
|
2023-03-21 02:40:46 +00:00
|
|
|
* @since 9
|
2023-01-14 09:58:54 +00:00
|
|
|
*/
|
2023-03-21 02:40:46 +00:00
|
|
|
off(type: 'keyboardShow' | 'keyboardHide', callback?: AsyncCallback<void>): void;
|
2023-01-14 09:58:54 +00:00
|
|
|
|
|
|
|
/**
|
2023-03-21 02:40:46 +00:00
|
|
|
* Subscribe 'setSubtype'.
|
|
|
|
*
|
|
|
|
* @param { 'setSubtype' } type - the type of subscribe event.
|
|
|
|
* @param { AsyncCallback<InputMethodSubtype> } callback - the callback of on('setSubtype').
|
2023-01-14 09:58:54 +00:00
|
|
|
* @syscap SystemCapability.MiscServices.InputMethodFramework
|
2023-03-21 02:40:46 +00:00
|
|
|
* @since 9
|
2023-01-14 09:58:54 +00:00
|
|
|
*/
|
2023-03-21 02:40:46 +00:00
|
|
|
on(type: 'setSubtype', callback: AsyncCallback<InputMethodSubtype>): void;
|
2023-01-14 09:58:54 +00:00
|
|
|
|
|
|
|
/**
|
2023-03-21 02:40:46 +00:00
|
|
|
* Unsubscribe 'setSubtype'.
|
|
|
|
*
|
|
|
|
* @param { 'setSubtype' } type - the type of subscribe event.
|
|
|
|
* @param { AsyncCallback<InputMethodSubtype> } [callback] - the callback of off('setSubtype').
|
|
|
|
* @syscap SystemCapability.MiscServices.InputMethodFramework
|
|
|
|
* @since 9
|
|
|
|
*/
|
|
|
|
off(type: 'setSubtype', callback?: AsyncCallback<InputMethodSubtype>): void;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @interface TextInputClient
|
|
|
|
* @syscap SystemCapability.MiscServices.InputMethodFramework
|
|
|
|
* @since 8
|
|
|
|
* @deprecated since 9
|
|
|
|
* @useinstead inputMethodEngine#InputClient
|
|
|
|
*/
|
|
|
|
interface TextInputClient {
|
|
|
|
/**
|
|
|
|
* @param { number } action - action indicates the function of "enter" key.
|
|
|
|
* @param { AsyncCallback<boolean> } callback - the callback of sendKeyFunction.
|
2023-01-14 09:58:54 +00:00
|
|
|
* @syscap SystemCapability.MiscServices.InputMethodFramework
|
2023-03-21 02:40:46 +00:00
|
|
|
* @since 8
|
|
|
|
* @deprecated since 9
|
|
|
|
* @useinstead inputMethodEngine.InputClient#sendKeyFunction
|
2023-01-14 09:58:54 +00:00
|
|
|
*/
|
2023-03-21 02:40:46 +00:00
|
|
|
sendKeyFunction(action: number, callback: AsyncCallback<boolean>): void;
|
2023-01-14 09:58:54 +00:00
|
|
|
|
|
|
|
/**
|
2023-03-21 02:40:46 +00:00
|
|
|
* @param { number } action - action indicates the function of "enter" key.
|
|
|
|
* @returns { Promise<boolean> } the promise returned by the function.
|
|
|
|
* @syscap SystemCapability.MiscServices.InputMethodFramework
|
2023-01-14 09:58:54 +00:00
|
|
|
* @since 8
|
2023-03-21 02:40:46 +00:00
|
|
|
* @deprecated since 9
|
|
|
|
* @useinstead inputMethodEngine.InputClient#sendKeyFunction
|
|
|
|
*/
|
|
|
|
sendKeyFunction(action: number): Promise<boolean>;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param { number } length - length of text which will be deleted forward.
|
|
|
|
* @param { AsyncCallback<boolean> } callback - the callback of deleteForward.
|
2023-01-14 09:58:54 +00:00
|
|
|
* @syscap SystemCapability.MiscServices.InputMethodFramework
|
2023-03-21 02:40:46 +00:00
|
|
|
* @since 8
|
|
|
|
* @deprecated since 9
|
|
|
|
* @useinstead inputMethodEngine.InputClient#deleteForward
|
2023-01-14 09:58:54 +00:00
|
|
|
*/
|
2023-03-21 02:40:46 +00:00
|
|
|
deleteForward(length: number, callback: AsyncCallback<boolean>): void;
|
2023-01-14 09:58:54 +00:00
|
|
|
|
|
|
|
/**
|
2023-03-21 02:40:46 +00:00
|
|
|
* @param { number } length - length of text which will be deleted forward.
|
|
|
|
* @returns { Promise<boolean> } the promise returned by the function.
|
|
|
|
* @syscap SystemCapability.MiscServices.InputMethodFramework
|
2023-01-14 09:58:54 +00:00
|
|
|
* @since 8
|
2023-03-21 02:40:46 +00:00
|
|
|
* @deprecated since 9
|
|
|
|
* @useinstead inputMethodEngine.InputClient#deleteForward
|
|
|
|
*/
|
|
|
|
deleteForward(length: number): Promise<boolean>;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param { number } length - length of text which will be deleted backward.
|
|
|
|
* @param { AsyncCallback<boolean> } callback - the callback of deleteBackward.
|
2023-01-14 09:58:54 +00:00
|
|
|
* @syscap SystemCapability.MiscServices.InputMethodFramework
|
2023-03-21 02:40:46 +00:00
|
|
|
* @since 8
|
|
|
|
* @deprecated since 9
|
|
|
|
* @useinstead inputMethodEngine.InputClient#deleteBackward
|
2023-01-14 09:58:54 +00:00
|
|
|
*/
|
2023-03-21 02:40:46 +00:00
|
|
|
deleteBackward(length: number, callback: AsyncCallback<boolean>): void;
|
2023-01-14 09:58:54 +00:00
|
|
|
|
|
|
|
/**
|
2023-03-21 02:40:46 +00:00
|
|
|
* @param { number } length - length of text which will be deleted backward.
|
|
|
|
* @returns { Promise<boolean> } the promise returned by the function.
|
|
|
|
* @syscap SystemCapability.MiscServices.InputMethodFramework
|
2023-01-14 09:58:54 +00:00
|
|
|
* @since 8
|
2023-03-21 02:40:46 +00:00
|
|
|
* @deprecated since 9
|
|
|
|
* @useinstead inputMethodEngine.InputClient#deleteBackward
|
|
|
|
*/
|
|
|
|
deleteBackward(length: number): Promise<boolean>;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param { string } text - text which will be inserted.
|
|
|
|
* @param { AsyncCallback<boolean> } callback - the callback of insertText.
|
2023-01-14 09:58:54 +00:00
|
|
|
* @syscap SystemCapability.MiscServices.InputMethodFramework
|
2023-03-21 02:40:46 +00:00
|
|
|
* @since 8
|
|
|
|
* @deprecated since 9
|
|
|
|
* @useinstead inputMethodEngine.InputClient#insertText
|
2023-01-14 09:58:54 +00:00
|
|
|
*/
|
2023-03-21 02:40:46 +00:00
|
|
|
insertText(text: string, callback: AsyncCallback<boolean>): void;
|
2023-01-14 09:58:54 +00:00
|
|
|
|
|
|
|
/**
|
2023-03-21 02:40:46 +00:00
|
|
|
* @param { string } text - text which will be inserted.
|
|
|
|
* @returns { Promise<boolean> } the promise returned by the function
|
|
|
|
* @syscap SystemCapability.MiscServices.InputMethodFramework
|
2023-01-14 09:58:54 +00:00
|
|
|
* @since 8
|
2023-03-21 02:40:46 +00:00
|
|
|
* @deprecated since 9
|
|
|
|
* @useinstead inputMethodEngine.InputClient#insertText
|
|
|
|
*/
|
|
|
|
insertText(text: string): Promise<boolean>;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param { number } length - the length of text which will be got.
|
|
|
|
* @param { AsyncCallback<string> } callback - the callback of getForward.
|
2023-01-14 09:58:54 +00:00
|
|
|
* @syscap SystemCapability.MiscServices.InputMethodFramework
|
2023-03-21 02:40:46 +00:00
|
|
|
* @since 8
|
|
|
|
* @deprecated since 9
|
|
|
|
* @useinstead inputMethodEngine.InputClient#getForward
|
2023-01-14 09:58:54 +00:00
|
|
|
*/
|
2023-03-21 02:40:46 +00:00
|
|
|
getForward(length: number, callback: AsyncCallback<string>): void;
|
2023-01-14 09:58:54 +00:00
|
|
|
|
|
|
|
/**
|
2023-03-21 02:40:46 +00:00
|
|
|
* @param { number } length
|
|
|
|
* @returns { Promise<string> }
|
|
|
|
* @syscap SystemCapability.MiscServices.InputMethodFramework
|
2023-01-14 09:58:54 +00:00
|
|
|
* @since 8
|
2023-03-21 02:40:46 +00:00
|
|
|
* @deprecated since 9
|
|
|
|
* @useinstead inputMethodEngine.InputClient#getForward
|
|
|
|
*/
|
|
|
|
getForward(length: number): Promise<string>;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param { number } length - the length of text which will be got.
|
|
|
|
* @param { AsyncCallback<string> } callback - the callback of getBackward.
|
2023-01-14 09:58:54 +00:00
|
|
|
* @syscap SystemCapability.MiscServices.InputMethodFramework
|
2023-03-21 02:40:46 +00:00
|
|
|
* @since 8
|
|
|
|
* @deprecated since 9
|
|
|
|
* @useinstead inputMethodEngine.InputClient#getBackward
|
2023-01-14 09:58:54 +00:00
|
|
|
*/
|
2023-03-21 02:40:46 +00:00
|
|
|
getBackward(length: number, callback: AsyncCallback<string>): void;
|
2023-01-14 09:58:54 +00:00
|
|
|
|
|
|
|
/**
|
2023-03-21 02:40:46 +00:00
|
|
|
* @param { number } length - the length of text which will be got.
|
|
|
|
* @returns { Promise<string> } the promise returned by the function.
|
|
|
|
* @syscap SystemCapability.MiscServices.InputMethodFramework
|
2023-01-14 09:58:54 +00:00
|
|
|
* @since 8
|
2023-03-21 02:40:46 +00:00
|
|
|
* @deprecated since 9
|
|
|
|
* @useinstead inputMethodEngine.InputClient#getBackward
|
|
|
|
*/
|
|
|
|
getBackward(length: number): Promise<string>;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param { AsyncCallback<EditorAttribute> } callback - the callback of getEditorAttribute.
|
2023-01-14 09:58:54 +00:00
|
|
|
* @syscap SystemCapability.MiscServices.InputMethodFramework
|
2023-03-21 02:40:46 +00:00
|
|
|
* @since 8
|
|
|
|
* @deprecated since 9
|
|
|
|
* @useinstead inputMethodEngine.InputClient#getEditorAttribute
|
2023-01-14 09:58:54 +00:00
|
|
|
*/
|
2023-03-21 02:40:46 +00:00
|
|
|
getEditorAttribute(callback: AsyncCallback<EditorAttribute>): void;
|
2023-01-14 09:58:54 +00:00
|
|
|
|
|
|
|
/**
|
2023-03-21 02:40:46 +00:00
|
|
|
* @returns { Promise<EditorAttribute> } the promise returned by the function.
|
|
|
|
* @syscap SystemCapability.MiscServices.InputMethodFramework
|
2023-01-14 09:58:54 +00:00
|
|
|
* @since 8
|
2023-03-21 02:40:46 +00:00
|
|
|
* @deprecated since 9
|
|
|
|
* @useinstead inputMethodEngine.InputClient#getEditorAttribute
|
|
|
|
*/
|
|
|
|
getEditorAttribute(): Promise<EditorAttribute>;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Control events about Editor.
|
|
|
|
*
|
|
|
|
* @interface InputClient
|
|
|
|
* @syscap SystemCapability.MiscServices.InputMethodFramework
|
|
|
|
* @since 9
|
|
|
|
*/
|
|
|
|
interface InputClient {
|
|
|
|
/**
|
|
|
|
* Send the function of the key.
|
|
|
|
*
|
|
|
|
* @param { number } action - action indicates the function of "enter" key.
|
|
|
|
* @param { AsyncCallback<boolean> } callback - the callback of sendKeyFunction.
|
|
|
|
* @throws { BusinessError } 401 - parameter error.
|
|
|
|
* @throws { BusinessError } 12800003 - input method client error.
|
2023-01-14 09:58:54 +00:00
|
|
|
* @syscap SystemCapability.MiscServices.InputMethodFramework
|
2023-03-21 02:40:46 +00:00
|
|
|
* @since 9
|
2023-01-14 09:58:54 +00:00
|
|
|
*/
|
2023-03-21 02:40:46 +00:00
|
|
|
sendKeyFunction(action: number, callback: AsyncCallback<boolean>): void;
|
2023-01-14 09:58:54 +00:00
|
|
|
|
|
|
|
/**
|
2023-03-21 02:40:46 +00:00
|
|
|
* Send the function of the key.
|
|
|
|
*
|
|
|
|
* @param { number } action - action indicates the function of "enter" key.
|
|
|
|
* @returns { Promise<boolean> } the promise returned by the function.
|
|
|
|
* @throws { BusinessError } 401 - parameter error.
|
|
|
|
* @throws { BusinessError } 12800003 - input method client error.
|
2023-01-14 09:58:54 +00:00
|
|
|
* @syscap SystemCapability.MiscServices.InputMethodFramework
|
2023-03-21 02:40:46 +00:00
|
|
|
* @since 9
|
2023-01-14 09:58:54 +00:00
|
|
|
*/
|
2023-03-21 02:40:46 +00:00
|
|
|
sendKeyFunction(action: number): Promise<boolean>;
|
2023-01-14 09:58:54 +00:00
|
|
|
|
|
|
|
/**
|
2023-03-21 02:40:46 +00:00
|
|
|
* Delete text forward.
|
|
|
|
*
|
|
|
|
* @param { number } length - length of text which will be deleted forward.
|
|
|
|
* @param { AsyncCallback<boolean> } callback - the callback of deleteForward.
|
|
|
|
* @throws { BusinessError } 401 - parameter error.
|
|
|
|
* @throws { BusinessError } 12800002 - Input method engine error.
|
|
|
|
* @throws { BusinessError } 12800003 - input method client error.
|
2023-01-14 09:58:54 +00:00
|
|
|
* @syscap SystemCapability.MiscServices.InputMethodFramework
|
2023-03-21 02:40:46 +00:00
|
|
|
* @since 9
|
2023-01-14 09:58:54 +00:00
|
|
|
*/
|
2023-03-21 02:40:46 +00:00
|
|
|
deleteForward(length: number, callback: AsyncCallback<boolean>): void;
|
2023-01-14 09:58:54 +00:00
|
|
|
|
|
|
|
/**
|
2023-03-21 02:40:46 +00:00
|
|
|
* Delete text forward.
|
|
|
|
*
|
|
|
|
* @param { number } length - length of text which will be deleted forward.
|
|
|
|
* @returns { Promise<boolean> } the promise returned by the function.
|
|
|
|
* @throws { BusinessError } 401 - parameter error.
|
|
|
|
* @throws { BusinessError } 12800002 - Input method engine error.
|
|
|
|
* @throws { BusinessError } 12800003 - input method client error.
|
2023-01-14 09:58:54 +00:00
|
|
|
* @syscap SystemCapability.MiscServices.InputMethodFramework
|
2023-03-21 02:40:46 +00:00
|
|
|
* @since 9
|
2023-01-14 09:58:54 +00:00
|
|
|
*/
|
2023-03-21 02:40:46 +00:00
|
|
|
deleteForward(length: number): Promise<boolean>;
|
2023-01-14 09:58:54 +00:00
|
|
|
|
|
|
|
/**
|
2023-03-21 02:40:46 +00:00
|
|
|
* Delete text backward.
|
|
|
|
*
|
|
|
|
* @param { number } length - length of text which will be deleted backward.
|
|
|
|
* @param { AsyncCallback<boolean> } callback - the callback of deleteBackward.
|
|
|
|
* @throws { BusinessError } 401 - parameter error.
|
|
|
|
* @throws { BusinessError } 12800002 - Input method engine error.
|
|
|
|
* @throws { BusinessError } 12800003 - input method client error.
|
2023-01-14 09:58:54 +00:00
|
|
|
* @syscap SystemCapability.MiscServices.InputMethodFramework
|
2023-03-21 02:40:46 +00:00
|
|
|
* @since 9
|
2023-01-14 09:58:54 +00:00
|
|
|
*/
|
2023-03-21 02:40:46 +00:00
|
|
|
deleteBackward(length: number, callback: AsyncCallback<boolean>): void;
|
2023-01-14 09:58:54 +00:00
|
|
|
|
|
|
|
/**
|
2023-03-21 02:40:46 +00:00
|
|
|
* Delete text backward.
|
|
|
|
*
|
|
|
|
* @param { number } length - length of text which will be deleted backward.
|
|
|
|
* @returns { Promise<boolean> } the promise returned by the function.
|
|
|
|
* @throws { BusinessError } 401 - parameter error.
|
|
|
|
* @throws { BusinessError } 12800002 - Input method engine error.
|
|
|
|
* @throws { BusinessError } 12800003 - input method client error.
|
|
|
|
* @syscap SystemCapability.MiscServices.InputMethodFramework
|
2023-01-14 09:58:54 +00:00
|
|
|
* @since 9
|
2023-03-21 02:40:46 +00:00
|
|
|
*/
|
|
|
|
deleteBackward(length: number): Promise<boolean>;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Insert text into Editor.
|
|
|
|
*
|
|
|
|
* @param { string } text - text which will be inserted.
|
|
|
|
* @param { AsyncCallback<boolean> } callback - the callback of insertText.
|
|
|
|
* @throws { BusinessError } 401 - parameter error.
|
|
|
|
* @throws { BusinessError } 12800002 - Input method engine error.
|
|
|
|
* @throws { BusinessError } 12800003 - input method client error.
|
2023-01-14 09:58:54 +00:00
|
|
|
* @syscap SystemCapability.MiscServices.InputMethodFramework
|
2023-03-21 02:40:46 +00:00
|
|
|
* @since 9
|
2023-01-14 09:58:54 +00:00
|
|
|
*/
|
2023-03-21 02:40:46 +00:00
|
|
|
insertText(text: string, callback: AsyncCallback<boolean>): void;
|
2023-01-14 09:58:54 +00:00
|
|
|
|
|
|
|
/**
|
2023-03-21 02:40:46 +00:00
|
|
|
* Insert text into Editor.
|
|
|
|
*
|
|
|
|
* @param { string } text - text which will be inserted.
|
|
|
|
* @returns { Promise<boolean> } the promise returned by the function.
|
|
|
|
* @throws { BusinessError } 401 - parameter error.
|
|
|
|
* @throws { BusinessError } 12800002 - Input method engine error.
|
|
|
|
* @throws { BusinessError } 12800003 - input method client error.
|
|
|
|
* @syscap SystemCapability.MiscServices.InputMethodFramework
|
2023-01-14 09:58:54 +00:00
|
|
|
* @since 9
|
2023-03-21 02:40:46 +00:00
|
|
|
*/
|
|
|
|
insertText(text: string): Promise<boolean>;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the text before cursor.
|
|
|
|
*
|
|
|
|
* @param { number } length - the length of text which will be got.
|
|
|
|
* @param { AsyncCallback<string> } callback - the callback of getForward.
|
|
|
|
* @throws { BusinessError } 401 - parameter error.
|
|
|
|
* @throws { BusinessError } 12800003 - input method client error.
|
|
|
|
* @throws { BusinessError } 12800006 - Input method controller error.
|
2023-01-14 09:58:54 +00:00
|
|
|
* @syscap SystemCapability.MiscServices.InputMethodFramework
|
2023-03-21 02:40:46 +00:00
|
|
|
* @since 9
|
2023-01-14 09:58:54 +00:00
|
|
|
*/
|
2023-03-21 02:40:46 +00:00
|
|
|
getForward(length: number, callback: AsyncCallback<string>): void;
|
2023-01-14 09:58:54 +00:00
|
|
|
|
|
|
|
/**
|
2023-03-21 02:40:46 +00:00
|
|
|
* Get the text before cursor.
|
|
|
|
*
|
|
|
|
* @param { number } length - the length of text which will be got.
|
|
|
|
* @returns { Promise<string> } the promise returned by the function.
|
|
|
|
* @throws { BusinessError } 401 - parameter error.
|
|
|
|
* @throws { BusinessError } 12800003 - input method client error.
|
|
|
|
* @throws { BusinessError } 12800006 - Input method controller error.
|
|
|
|
* @syscap SystemCapability.MiscServices.InputMethodFramework
|
2023-01-14 09:58:54 +00:00
|
|
|
* @since 9
|
2023-03-21 02:40:46 +00:00
|
|
|
*/
|
|
|
|
getForward(length: number): Promise<string>;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the text after cursor.
|
|
|
|
*
|
|
|
|
* @param { number } length - the length of text which will be got.
|
|
|
|
* @param { AsyncCallback<string> } callback - the callback of getBackward.
|
|
|
|
* @throws { BusinessError } 401 - parameter error.
|
|
|
|
* @throws { BusinessError } 12800003 - input method client error.
|
|
|
|
* @throws { BusinessError } 12800006 - Input method controller error.
|
2023-01-14 09:58:54 +00:00
|
|
|
* @syscap SystemCapability.MiscServices.InputMethodFramework
|
2023-03-21 02:40:46 +00:00
|
|
|
* @since 9
|
2023-01-14 09:58:54 +00:00
|
|
|
*/
|
2023-03-21 02:40:46 +00:00
|
|
|
getBackward(length: number, callback: AsyncCallback<string>): void;
|
2023-01-14 09:58:54 +00:00
|
|
|
|
|
|
|
/**
|
2023-03-21 02:40:46 +00:00
|
|
|
* Get the text after cursor.
|
|
|
|
*
|
|
|
|
* @param { number } length - the length of text which will be got.
|
|
|
|
* @returns { Promise<string> } the promise returned by the function.
|
|
|
|
* @throws { BusinessError } 401 - parameter error.
|
|
|
|
* @throws { BusinessError } 12800003 - input method client error.
|
|
|
|
* @throws { BusinessError } 12800006 - Input method controller error.
|
|
|
|
* @syscap SystemCapability.MiscServices.InputMethodFramework
|
2023-01-14 09:58:54 +00:00
|
|
|
* @since 9
|
2023-03-21 02:40:46 +00:00
|
|
|
*/
|
|
|
|
getBackward(length: number): Promise<string>;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get attribute about editor.
|
|
|
|
*
|
|
|
|
* @param { AsyncCallback<EditorAttribute> } callback - the callback of getEditorAttribute.
|
|
|
|
* @throws { BusinessError } 12800003 - input method client error.
|
2023-01-14 09:58:54 +00:00
|
|
|
* @syscap SystemCapability.MiscServices.InputMethodFramework
|
2023-03-21 02:40:46 +00:00
|
|
|
* @since 9
|
2023-01-14 09:58:54 +00:00
|
|
|
*/
|
2023-03-21 02:40:46 +00:00
|
|
|
getEditorAttribute(callback: AsyncCallback<EditorAttribute>): void;
|
2023-01-14 09:58:54 +00:00
|
|
|
|
|
|
|
/**
|
2023-03-21 02:40:46 +00:00
|
|
|
* Get attribute about editor.
|
|
|
|
*
|
|
|
|
* @returns { Promise<EditorAttribute> } the promise returned by the function.
|
|
|
|
* @throws { BusinessError } 12800003 - input method client error.
|
|
|
|
* @syscap SystemCapability.MiscServices.InputMethodFramework
|
2023-01-14 09:58:54 +00:00
|
|
|
* @since 9
|
2023-03-21 02:40:46 +00:00
|
|
|
*/
|
|
|
|
getEditorAttribute(): Promise<EditorAttribute>;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Move cursor from input method.
|
|
|
|
*
|
|
|
|
* @param { number } direction - Indicates the distance of cursor to be moved.
|
|
|
|
* @param { AsyncCallback<void> } callback - the callback of moveCursor.
|
|
|
|
* @throws { BusinessError } 401 - parameter error.
|
|
|
|
* @throws { BusinessError } 12800003 - input method client error.
|
2023-01-14 09:58:54 +00:00
|
|
|
* @syscap SystemCapability.MiscServices.InputMethodFramework
|
2023-03-21 02:40:46 +00:00
|
|
|
* @since 9
|
2023-01-14 09:58:54 +00:00
|
|
|
*/
|
2023-03-21 02:40:46 +00:00
|
|
|
moveCursor(direction: number, callback: AsyncCallback<void>): void;
|
2023-01-14 09:58:54 +00:00
|
|
|
|
|
|
|
/**
|
2023-03-21 02:40:46 +00:00
|
|
|
* Move cursor from input method.
|
|
|
|
*
|
|
|
|
* @param { number } direction - Indicates the distance of cursor to be moved.
|
|
|
|
* @returns { Promise<void> } the promise returned by the function.
|
|
|
|
* @throws { BusinessError } 401 - parameter error.
|
|
|
|
* @throws { BusinessError } 12800003 - input method client error.
|
2023-01-14 09:58:54 +00:00
|
|
|
* @syscap SystemCapability.MiscServices.InputMethodFramework
|
2023-02-14 06:56:11 +00:00
|
|
|
* @since 9
|
2023-01-14 09:58:54 +00:00
|
|
|
*/
|
2023-03-21 02:40:46 +00:00
|
|
|
moveCursor(direction: number): Promise<void>;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Select text in editor by range.
|
|
|
|
*
|
|
|
|
* @param { Range } range - indicates the range of selected text in editor.
|
|
|
|
* @param { AsyncCallback<void> } callback - the callback of selectByRange.
|
|
|
|
* @throws { BusinessError } 401 - parameter error.
|
|
|
|
* @throws { BusinessError } 12800003 - input method client error.
|
|
|
|
* @syscap SystemCapability.MiscServices.InputMethodFramework
|
|
|
|
* @since 10
|
|
|
|
*/
|
|
|
|
selectByRange(range: Range, callback: AsyncCallback<void>): void;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Select text in editor by range.
|
|
|
|
*
|
|
|
|
* @param { Range } range - indicates the range of selected text in editor.
|
|
|
|
* @returns { Promise<void> } the promise returned by the function.
|
|
|
|
* @throws { BusinessError } 401 - parameter error.
|
|
|
|
* @throws { BusinessError } 12800003 - input method client error.
|
|
|
|
* @syscap SystemCapability.MiscServices.InputMethodFramework
|
|
|
|
* @since 10
|
|
|
|
*/
|
|
|
|
selectByRange(range: Range): Promise<void>;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Select text in editor by cursor movement.
|
|
|
|
*
|
|
|
|
* @param { Movement } movement - indicates the movement of cursor when selecting.
|
|
|
|
* @param { AsyncCallback<void> } callback - the callback of selectByMovement.
|
|
|
|
* @throws { BusinessError } 401 - parameter error.
|
|
|
|
* @throws { BusinessError } 12800003 - input method client error.
|
|
|
|
* @syscap SystemCapability.MiscServices.InputMethodFramework
|
|
|
|
* @since 10
|
|
|
|
*/
|
|
|
|
selectByMovement(movement: Movement, callback: AsyncCallback<void>): void;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Select text in editor by cursor movement.
|
|
|
|
*
|
|
|
|
* @param { Movement } movement - indicates the movement of cursor when selecting.
|
|
|
|
* @returns { Promise<void> } the promise returned by the function.
|
|
|
|
* @throws { BusinessError } 401 - parameter error.
|
|
|
|
* @throws { BusinessError } 12800003 - input method client error.
|
|
|
|
* @syscap SystemCapability.MiscServices.InputMethodFramework
|
|
|
|
* @since 10
|
|
|
|
*/
|
|
|
|
selectByMovement(movement: Movement): Promise<void>;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the index number of text at cursor.
|
|
|
|
*
|
|
|
|
* @param { AsyncCallback<number> } callback - the callback of getTextIndexAtCursor, number represents the index
|
|
|
|
* number of text at cursor.
|
|
|
|
* @throws { BusinessError } 12800003 - input method client error.
|
|
|
|
* @throws { BusinessError } 12800006 - Input method controller error.
|
|
|
|
* @syscap SystemCapability.MiscServices.InputMethodFramework
|
|
|
|
* @since 10
|
|
|
|
*/
|
|
|
|
getTextIndexAtCursor(callback: AsyncCallback<number>): void;
|
2023-01-14 09:58:54 +00:00
|
|
|
|
|
|
|
/**
|
2023-03-21 02:40:46 +00:00
|
|
|
* Get the index number of text at cursor.
|
|
|
|
*
|
|
|
|
* @returns { Promise<number> } the promise returned by the function, number represents the index number of text
|
|
|
|
* at cursor.
|
|
|
|
* @throws { BusinessError } 12800003 - input method client error.
|
|
|
|
* @throws { BusinessError } 12800006 - Input method controller error.
|
|
|
|
* @syscap SystemCapability.MiscServices.InputMethodFramework
|
|
|
|
* @since 10
|
|
|
|
*/
|
|
|
|
getTextIndexAtCursor(): Promise<number>;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @interface KeyboardDelegate
|
|
|
|
* @syscap SystemCapability.MiscServices.InputMethodFramework
|
|
|
|
* @since 8
|
|
|
|
*/
|
|
|
|
interface KeyboardDelegate {
|
|
|
|
/**
|
|
|
|
* Subscribe key up or down event
|
|
|
|
*
|
|
|
|
* @param { 'keyDown' | 'keyUp' } type - indicates the type of subscribe event.
|
2023-03-24 03:31:29 +00:00
|
|
|
* @param { (event: KeyEvent) => boolean } callback - indicates the callback function of on('keyDown'|'keyUp').
|
2023-03-21 02:40:46 +00:00
|
|
|
* @syscap SystemCapability.MiscServices.InputMethodFramework
|
2023-01-14 09:58:54 +00:00
|
|
|
* @since 8
|
|
|
|
*/
|
2023-03-21 02:40:46 +00:00
|
|
|
on(type: 'keyDown' | 'keyUp', callback: (event: KeyEvent) => boolean): void;
|
2023-01-14 09:58:54 +00:00
|
|
|
|
|
|
|
/**
|
2023-03-21 02:40:46 +00:00
|
|
|
* Unsubscribe key up or down event
|
|
|
|
*
|
|
|
|
* @param { 'keyDown' | 'keyUp' } type - indicates the type of unsubscribe event.
|
|
|
|
* @param { (event: KeyEvent) => boolean } [callback] - optional, indicates the callback function of off('keyDown'|'keyUp').
|
2023-01-14 09:58:54 +00:00
|
|
|
* @syscap SystemCapability.MiscServices.InputMethodFramework
|
2023-03-21 02:40:46 +00:00
|
|
|
* @since 8
|
2023-01-14 09:58:54 +00:00
|
|
|
*/
|
2023-03-21 02:40:46 +00:00
|
|
|
off(type: 'keyDown' | 'keyUp', callback?: (event: KeyEvent) => boolean): void;
|
2023-01-14 09:58:54 +00:00
|
|
|
|
|
|
|
/**
|
2023-03-21 02:40:46 +00:00
|
|
|
* Subscribe cursor context change
|
|
|
|
*
|
|
|
|
* @param { 'cursorContextChange' } type - indicates the type of subscribe event.
|
|
|
|
* @param { (x: number, y: number, height: number) => void } callback - indicates the callback function of on('cursorContextChange').
|
|
|
|
* @syscap SystemCapability.MiscServices.InputMethodFramework
|
2023-01-14 09:58:54 +00:00
|
|
|
* @since 8
|
2023-03-21 02:40:46 +00:00
|
|
|
*/
|
|
|
|
on(type: 'cursorContextChange', callback: (x: number, y: number, height: number) => void): void;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Unsubscribe cursor context change
|
|
|
|
*
|
|
|
|
* @param { 'cursorContextChange' } type - indicates the type of unsubscribe event.
|
|
|
|
* @param { (x: number, y: number, height: number) => void } callback - optional, indicates the callback function of off('cursorContextChange').
|
2023-01-14 09:58:54 +00:00
|
|
|
* @syscap SystemCapability.MiscServices.InputMethodFramework
|
2023-03-21 02:40:46 +00:00
|
|
|
* @since 8
|
2023-01-14 09:58:54 +00:00
|
|
|
*/
|
2023-03-21 02:40:46 +00:00
|
|
|
off(type: 'cursorContextChange', callback?: (x: number, y: number, height: number) => void): void;
|
2023-01-14 09:58:54 +00:00
|
|
|
|
|
|
|
/**
|
2023-03-21 02:40:46 +00:00
|
|
|
* Subscribe selection change
|
|
|
|
*
|
|
|
|
* @param { 'selectionChange' } type - indicates the type of subscribe event.
|
2023-03-24 03:31:29 +00:00
|
|
|
* @param { (oldBegin: number, oldEnd: number, newBegin: number, newEnd: number) => void } callback - indicates the callback function
|
|
|
|
* of on('selectionChange').
|
2023-03-21 02:40:46 +00:00
|
|
|
* @syscap SystemCapability.MiscServices.InputMethodFramework
|
2023-01-14 09:58:54 +00:00
|
|
|
* @since 8
|
2023-03-21 02:40:46 +00:00
|
|
|
*/
|
|
|
|
on(
|
|
|
|
type: 'selectionChange',
|
|
|
|
callback: (oldBegin: number, oldEnd: number, newBegin: number, newEnd: number) => void
|
|
|
|
): void;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Unsubscribe selection change
|
|
|
|
*
|
|
|
|
* @param { 'selectionChange' } type - indicates the type of unsubscribe event.
|
2023-03-24 03:31:29 +00:00
|
|
|
* @param { (oldBegin: number, oldEnd: number, newBegin: number, newEnd: number) => void } callback - optional,
|
|
|
|
* indicates the callback function of off('selectionChange').
|
2023-01-14 09:58:54 +00:00
|
|
|
* @syscap SystemCapability.MiscServices.InputMethodFramework
|
2023-03-21 02:40:46 +00:00
|
|
|
* @since 8
|
|
|
|
*/
|
|
|
|
off(
|
|
|
|
type: 'selectionChange',
|
|
|
|
callback?: (oldBegin: number, oldEnd: number, newBegin: number, newEnd: number) => void
|
|
|
|
): void;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Subscribe text change
|
|
|
|
*
|
|
|
|
* @param { 'textChange' } type - indicates the type of subscribe event.
|
|
|
|
* @param { AsyncCallback<string> } callback - indicates the callback function of on('textChange').
|
|
|
|
* @syscap SystemCapability.MiscServices.InputMethodFramework
|
|
|
|
* @since 8
|
|
|
|
*/
|
|
|
|
on(type: 'textChange', callback: AsyncCallback<string>): void;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Unsubscribe text change
|
|
|
|
*
|
|
|
|
* @param { 'textChange' } type - indicates the type of unsubscribe event.
|
|
|
|
* @param { AsyncCallback<string> } [callback] - optional, indicates the callback function of off('textChange').
|
|
|
|
* @syscap SystemCapability.MiscServices.InputMethodFramework
|
|
|
|
* @since 8
|
|
|
|
*/
|
|
|
|
off(type: 'textChange', callback?: AsyncCallback<string>): void;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @interface EditorAttribute
|
|
|
|
* @syscap SystemCapability.MiscServices.InputMethodFramework
|
|
|
|
* @since 8
|
|
|
|
*/
|
|
|
|
interface EditorAttribute {
|
|
|
|
/**
|
|
|
|
* Editor's pattern
|
|
|
|
*
|
|
|
|
* @syscap SystemCapability.MiscServices.InputMethodFramework
|
|
|
|
* @since 8
|
|
|
|
*/
|
|
|
|
readonly inputPattern: number;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Editor's key type
|
|
|
|
*
|
|
|
|
* @syscap SystemCapability.MiscServices.InputMethodFramework
|
|
|
|
* @since 8
|
|
|
|
*/
|
|
|
|
readonly enterKeyType: number;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @interface KeyEvent
|
|
|
|
* @syscap SystemCapability.MiscServices.InputMethodFramework
|
|
|
|
* @since 8
|
|
|
|
*/
|
|
|
|
interface KeyEvent {
|
|
|
|
/**
|
|
|
|
* Key code
|
|
|
|
*
|
|
|
|
* @syscap SystemCapability.MiscServices.InputMethodFramework
|
|
|
|
* @since 8
|
|
|
|
*/
|
|
|
|
readonly keyCode: number;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Key action
|
|
|
|
*
|
|
|
|
* @syscap SystemCapability.MiscServices.InputMethodFramework
|
|
|
|
* @since 8
|
2023-01-14 09:58:54 +00:00
|
|
|
*/
|
2023-03-21 02:40:46 +00:00
|
|
|
readonly keyAction: number;
|
|
|
|
}
|
2023-01-14 09:58:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
export default inputMethodEngine;
|