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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
import {AsyncCallback} from './basic';
|
2023-01-18 01:43:43 +00:00
|
|
|
import InputMethodSubtype from './@ohos.InputMethodSubtype';
|
2023-01-18 12:23:36 +00:00
|
|
|
import {Movement} from './imf/InputMethodCommon';
|
|
|
|
import {Range} from './imf/inputMethodCommon';
|
2023-01-14 09:58:54 +00:00
|
|
|
/**
|
|
|
|
* Input method engine
|
|
|
|
*
|
|
|
|
* @since 8
|
|
|
|
* @syscap SystemCapability.MiscServices.InputMethodFramework
|
|
|
|
*/
|
|
|
|
declare namespace inputMethodEngine {
|
|
|
|
/**
|
2023-01-18 01:43:43 +00:00
|
|
|
* When "enter" key is pressed, there is no action
|
2023-01-14 09:58:54 +00:00
|
|
|
* @since 8
|
|
|
|
* @syscap SystemCapability.MiscServices.InputMethodFramework
|
|
|
|
*/
|
|
|
|
const ENTER_KEY_TYPE_UNSPECIFIED: number;
|
|
|
|
|
|
|
|
/**
|
2023-01-18 01:43:43 +00:00
|
|
|
* When "enter" key is pressed, it means GO
|
2023-01-14 09:58:54 +00:00
|
|
|
* @since 8
|
|
|
|
* @syscap SystemCapability.MiscServices.InputMethodFramework
|
|
|
|
*/
|
|
|
|
const ENTER_KEY_TYPE_GO: number;
|
|
|
|
|
|
|
|
/**
|
2023-01-18 01:43:43 +00:00
|
|
|
* When "enter" key is pressed, it means SEARCH
|
2023-01-14 09:58:54 +00:00
|
|
|
* @since 8
|
|
|
|
* @syscap SystemCapability.MiscServices.InputMethodFramework
|
|
|
|
*/
|
|
|
|
const ENTER_KEY_TYPE_SEARCH: number;
|
|
|
|
|
|
|
|
/**
|
2023-01-18 01:43:43 +00:00
|
|
|
* When "enter" key is pressed, it means SEND
|
2023-01-14 09:58:54 +00:00
|
|
|
* @since 8
|
|
|
|
* @syscap SystemCapability.MiscServices.InputMethodFramework
|
|
|
|
*/
|
|
|
|
const ENTER_KEY_TYPE_SEND: number;
|
|
|
|
|
|
|
|
/**
|
2023-01-18 01:43:43 +00:00
|
|
|
* When "enter" key is pressed, it means NEXT
|
2023-01-14 09:58:54 +00:00
|
|
|
* @since 8
|
|
|
|
* @syscap SystemCapability.MiscServices.InputMethodFramework
|
|
|
|
*/
|
|
|
|
const ENTER_KEY_TYPE_NEXT: number;
|
|
|
|
|
|
|
|
/**
|
2023-01-18 01:43:43 +00:00
|
|
|
* When "enter" key is pressed, it means DONE
|
2023-01-14 09:58:54 +00:00
|
|
|
* @since 8
|
|
|
|
* @syscap SystemCapability.MiscServices.InputMethodFramework
|
|
|
|
*/
|
|
|
|
const ENTER_KEY_TYPE_DONE: number;
|
|
|
|
|
|
|
|
/**
|
2023-01-18 01:43:43 +00:00
|
|
|
* When "enter" key is pressed, it means PREVIOUS
|
2023-01-14 09:58:54 +00:00
|
|
|
* @since 8
|
|
|
|
* @syscap SystemCapability.MiscServices.InputMethodFramework
|
|
|
|
*/
|
|
|
|
const ENTER_KEY_TYPE_PREVIOUS: number;
|
|
|
|
|
|
|
|
/**
|
2023-01-18 01:43:43 +00:00
|
|
|
* Editor with no special function
|
2023-01-14 09:58:54 +00:00
|
|
|
* @since 8
|
|
|
|
* @syscap SystemCapability.MiscServices.InputMethodFramework
|
|
|
|
*/
|
|
|
|
const PATTERN_NULL: number;
|
|
|
|
|
|
|
|
/**
|
2023-01-18 01:43:43 +00:00
|
|
|
* Editor of type TEXT
|
2023-01-14 09:58:54 +00:00
|
|
|
* @since 8
|
|
|
|
* @syscap SystemCapability.MiscServices.InputMethodFramework
|
|
|
|
*/
|
|
|
|
const PATTERN_TEXT: number;
|
|
|
|
|
|
|
|
/**
|
2023-01-18 01:43:43 +00:00
|
|
|
* Editor of type NUMBER
|
2023-01-14 09:58:54 +00:00
|
|
|
* @since 8
|
|
|
|
* @syscap SystemCapability.MiscServices.InputMethodFramework
|
|
|
|
*/
|
|
|
|
const PATTERN_NUMBER: number;
|
|
|
|
|
|
|
|
/**
|
2023-01-18 01:43:43 +00:00
|
|
|
* Editor of type PHONE NUMBER
|
2023-01-14 09:58:54 +00:00
|
|
|
* @since 8
|
|
|
|
* @syscap SystemCapability.MiscServices.InputMethodFramework
|
|
|
|
*/
|
|
|
|
const PATTERN_PHONE: number;
|
|
|
|
|
|
|
|
/**
|
2023-01-18 01:43:43 +00:00
|
|
|
* Editor of type DATETIME
|
2023-01-14 09:58:54 +00:00
|
|
|
* @since 8
|
|
|
|
* @syscap SystemCapability.MiscServices.InputMethodFramework
|
|
|
|
*/
|
|
|
|
const PATTERN_DATETIME: number;
|
|
|
|
|
|
|
|
/**
|
2023-01-18 01:43:43 +00:00
|
|
|
* Editor of type EMAIL
|
2023-01-14 09:58:54 +00:00
|
|
|
* @since 8
|
|
|
|
* @syscap SystemCapability.MiscServices.InputMethodFramework
|
|
|
|
*/
|
|
|
|
const PATTERN_EMAIL: number;
|
|
|
|
|
|
|
|
/**
|
2023-01-18 01:43:43 +00:00
|
|
|
* Editor of type URI
|
2023-01-14 09:58:54 +00:00
|
|
|
* @since 8
|
|
|
|
* @syscap SystemCapability.MiscServices.InputMethodFramework
|
|
|
|
*/
|
|
|
|
const PATTERN_URI: number;
|
|
|
|
|
|
|
|
/**
|
2023-01-18 01:43:43 +00:00
|
|
|
* Editor of type PASSWORD
|
2023-01-14 09:58:54 +00:00
|
|
|
* @since 8
|
|
|
|
* @syscap SystemCapability.MiscServices.InputMethodFramework
|
|
|
|
*/
|
|
|
|
const PATTERN_PASSWORD: number;
|
|
|
|
|
|
|
|
/**
|
2023-01-18 01:43:43 +00:00
|
|
|
* Editor in SELECTING state
|
2023-01-14 09:58:54 +00:00
|
|
|
* @since 8
|
|
|
|
* @syscap SystemCapability.MiscServices.InputMethodFramework
|
|
|
|
*/
|
|
|
|
const FLAG_SELECTING: number;
|
|
|
|
|
|
|
|
/**
|
2023-01-18 01:43:43 +00:00
|
|
|
* Editor in SINGLE_LINE state
|
2023-01-14 09:58:54 +00:00
|
|
|
* @since 8
|
|
|
|
* @syscap SystemCapability.MiscServices.InputMethodFramework
|
|
|
|
*/
|
|
|
|
const FLAG_SINGLE_LINE: number;
|
|
|
|
|
|
|
|
/**
|
2023-01-18 01:43:43 +00:00
|
|
|
* The Editor displays in PART mode
|
2023-01-14 09:58:54 +00:00
|
|
|
* @since 8
|
|
|
|
* @syscap SystemCapability.MiscServices.InputMethodFramework
|
|
|
|
*/
|
|
|
|
const DISPLAY_MODE_PART: number;
|
|
|
|
|
|
|
|
/**
|
2023-01-18 01:43:43 +00:00
|
|
|
* The Editor displays in FULL mode
|
2023-01-14 09:58:54 +00:00
|
|
|
* @since 8
|
|
|
|
* @syscap SystemCapability.MiscServices.InputMethodFramework
|
|
|
|
*/
|
|
|
|
const DISPLAY_MODE_FULL: number;
|
|
|
|
|
|
|
|
/**
|
2023-01-18 01:43:43 +00:00
|
|
|
* Allows ASCII to be inputted
|
2023-01-14 09:58:54 +00:00
|
|
|
* @since 8
|
|
|
|
* @syscap SystemCapability.MiscServices.InputMethodFramework
|
|
|
|
*/
|
|
|
|
const OPTION_ASCII: number;
|
|
|
|
|
|
|
|
/**
|
2023-01-18 01:43:43 +00:00
|
|
|
* Do not specify Editor's input type
|
2023-01-14 09:58:54 +00:00
|
|
|
* @since 8
|
|
|
|
* @syscap SystemCapability.MiscServices.InputMethodFramework
|
|
|
|
*/
|
|
|
|
const OPTION_NONE: number;
|
|
|
|
|
|
|
|
/**
|
2023-01-18 01:43:43 +00:00
|
|
|
* Allows CHARACTERS to be inputted
|
2023-01-14 09:58:54 +00:00
|
|
|
* @since 8
|
|
|
|
* @syscap SystemCapability.MiscServices.InputMethodFramework
|
|
|
|
*/
|
|
|
|
const OPTION_AUTO_CAP_CHARACTERS: number;
|
|
|
|
|
|
|
|
/**
|
2023-01-18 01:43:43 +00:00
|
|
|
* Allows SENTENCES to be inputted
|
2023-01-14 09:58:54 +00:00
|
|
|
* @since 8
|
|
|
|
* @syscap SystemCapability.MiscServices.InputMethodFramework
|
|
|
|
*/
|
|
|
|
const OPTION_AUTO_CAP_SENTENCES: number;
|
|
|
|
|
|
|
|
/**
|
2023-01-18 01:43:43 +00:00
|
|
|
* Allows WORDS to be inputted
|
2023-01-14 09:58:54 +00:00
|
|
|
* @since 8
|
|
|
|
* @syscap SystemCapability.MiscServices.InputMethodFramework
|
|
|
|
*/
|
|
|
|
const OPTION_AUTO_WORDS: number;
|
|
|
|
|
|
|
|
/**
|
2023-01-18 01:43:43 +00:00
|
|
|
* Allows MULTI_LINE to be inputted
|
2023-01-14 09:58:54 +00:00
|
|
|
* @since 8
|
|
|
|
* @syscap SystemCapability.MiscServices.InputMethodFramework
|
|
|
|
*/
|
|
|
|
const OPTION_MULTI_LINE: number;
|
|
|
|
|
|
|
|
/**
|
2023-01-18 01:43:43 +00:00
|
|
|
* Half-screen mode
|
2023-01-14 09:58:54 +00:00
|
|
|
* @since 8
|
|
|
|
* @syscap SystemCapability.MiscServices.InputMethodFramework
|
|
|
|
*/
|
|
|
|
const OPTION_NO_FULLSCREEN: number;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The move direction of cursor: UP
|
|
|
|
* @since 9
|
|
|
|
* @syscap SystemCapability.MiscServices.InputMethodFramework
|
|
|
|
*/
|
|
|
|
const CURSOR_UP: number;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The move direction of cursor: DOWN
|
|
|
|
* @since 9
|
|
|
|
* @syscap SystemCapability.MiscServices.InputMethodFramework
|
|
|
|
*/
|
|
|
|
const CURSOR_DOWN: number;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The move direction of cursor: LEFT
|
|
|
|
* @since 9
|
|
|
|
* @syscap SystemCapability.MiscServices.InputMethodFramework
|
|
|
|
*/
|
|
|
|
const CURSOR_LEFT: number;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The move direction of cursor: RIGHT
|
|
|
|
* @since 9
|
|
|
|
* @syscap SystemCapability.MiscServices.InputMethodFramework
|
|
|
|
*/
|
|
|
|
const CURSOR_RIGHT: number;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The window styles for input method ability.
|
|
|
|
* @since 9
|
|
|
|
* @syscap SystemCapability.MiscServices.InputMethodFramework
|
|
|
|
*/
|
|
|
|
const WINDOW_TYPE_INPUT_METHOD_FLOAT: number;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @since 9
|
|
|
|
* @returns { InputMethodAbility } the object of the InputMethodAbility.
|
|
|
|
* @syscap SystemCapability.MiscServices.InputMethodFramework
|
|
|
|
*/
|
|
|
|
function getInputMethodAbility(): InputMethodAbility;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @since 8
|
|
|
|
* @deprecated since 9
|
|
|
|
* @useinstead ohos.inputMethodEngine.getInputMethodAbility
|
|
|
|
*/
|
|
|
|
function getInputMethodEngine(): InputMethodEngine;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @since 9
|
|
|
|
* @returns { KeyboardDelegate } the object of KeyboardDelegate.
|
|
|
|
* @syscap SystemCapability.MiscServices.InputMethodFramework
|
|
|
|
*/
|
|
|
|
function getKeyboardDelegate(): KeyboardDelegate;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @since 8
|
|
|
|
* @deprecated since 9
|
|
|
|
* @useinstead ohos.inputMethodEngine.getKeyboardDelegate
|
|
|
|
*/
|
|
|
|
function createKeyboardDelegate(): KeyboardDelegate;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @since 8
|
|
|
|
*/
|
|
|
|
interface KeyboardController {
|
|
|
|
/**
|
|
|
|
* @since 9
|
|
|
|
* @throws {BusinessError} 12800003 - input method client error.
|
|
|
|
* @syscap SystemCapability.MiscServices.InputMethodFramework
|
|
|
|
*/
|
|
|
|
hide(callback: AsyncCallback<void>): void;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @since 9
|
|
|
|
* @throws {BusinessError} 12800003 - input method client error.
|
|
|
|
* @syscap SystemCapability.MiscServices.InputMethodFramework
|
|
|
|
*/
|
|
|
|
hide(): Promise<void>;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @since 8
|
|
|
|
* @deprecated since 9
|
|
|
|
* @useinstead ohos.inputMethodEngine.KeyboardController.hide
|
|
|
|
*/
|
|
|
|
hideKeyboard(callback: AsyncCallback<void>): void;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @since 8
|
|
|
|
* @deprecated since 9
|
|
|
|
* @useinstead ohos.inputMethodEngine.KeyboardController.hide
|
|
|
|
*/
|
|
|
|
hideKeyboard(): Promise<void>;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @since 8
|
|
|
|
*/
|
|
|
|
interface InputMethodEngine {
|
|
|
|
/**
|
|
|
|
* Subscribe 'inputStart'
|
|
|
|
* @since 8
|
|
|
|
* @param type inputStart
|
|
|
|
* @param callback give keyboard controller and text input client
|
|
|
|
*/
|
|
|
|
on(type: 'inputStart', callback: (kbController: KeyboardController, textInputClient: TextInputClient) => void): void;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Unsubscribe 'inputStart'
|
|
|
|
* @since 8
|
|
|
|
* @param type inputStart
|
|
|
|
* @param callback optional, give keyboard controller and text input client
|
|
|
|
*/
|
|
|
|
off(type: 'inputStart', callback?: (kbController: KeyboardController, textInputClient: TextInputClient) => void): void;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Subscribe 'keyboardShow'|'keyboardHide'
|
|
|
|
* @since 8
|
|
|
|
* @param type keyboardShow|keyboardHide
|
|
|
|
*/
|
|
|
|
on(type: 'keyboardShow'|'keyboardHide', callback: () => void): void;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Unsubscribe 'keyboardShow'|'keyboardHide'
|
|
|
|
* @since 8
|
|
|
|
* @param type keyboardShow|keyboardHide
|
|
|
|
*/
|
|
|
|
off(type: 'keyboardShow'|'keyboardHide', callback?: () => void): void;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @since 9
|
|
|
|
* @syscap SystemCapability.MiscServices.InputMethodFramework
|
|
|
|
*/
|
|
|
|
interface InputMethodAbility {
|
|
|
|
/**
|
2023-01-18 01:43:43 +00:00
|
|
|
* Subscribe 'inputStart' event.
|
2023-01-14 09:58:54 +00:00
|
|
|
* @since 9
|
2023-01-18 01:43:43 +00:00
|
|
|
* @param { 'inputStart' } type - the type of subscribe event.
|
|
|
|
* @param { (kbController: KeyboardController, inputClient: InputClient) => void) } callback - the callback of on('inputStart').
|
|
|
|
* @syscap SystemCapability.MiscServices.InputMethodFramework
|
2023-01-14 09:58:54 +00:00
|
|
|
*/
|
|
|
|
on(type: 'inputStart', callback: (kbController: KeyboardController, inputClient: InputClient) => void): void;
|
|
|
|
|
|
|
|
/**
|
2023-01-18 01:43:43 +00:00
|
|
|
* Unsubscribe 'inputStart' event.
|
2023-01-14 09:58:54 +00:00
|
|
|
* @since 9
|
2023-01-18 01:43:43 +00:00
|
|
|
* @param { 'inputStart' } type - the type of unsubscribe event.
|
|
|
|
* @param { (kbController: KeyboardController, inputClient: InputClient) => void) } [callback] - the callback of off('inputStart').
|
|
|
|
* @syscap SystemCapability.MiscServices.InputMethodFramework
|
2023-01-14 09:58:54 +00:00
|
|
|
*/
|
|
|
|
off(type: 'inputStart', callback?: (kbController: KeyboardController, inputClient: InputClient) => void): void;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Subscribe 'inputStop'.
|
|
|
|
* @since 9
|
2023-01-18 01:43:43 +00:00
|
|
|
* @param { 'inputStop' } type - the type of subscribe event.
|
|
|
|
* @param { () => void } callback - the callback of on('inputStop').
|
2023-01-14 09:58:54 +00:00
|
|
|
* @syscap SystemCapability.MiscServices.InputMethodFramework
|
|
|
|
*/
|
|
|
|
on(type: 'inputStop', callback: () => void): void;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Unsubscribe 'inputStop'.
|
|
|
|
* @since 9
|
2023-01-18 01:43:43 +00:00
|
|
|
* @param { 'inputStop' } type - the type of unsubscribe event.
|
|
|
|
* @param { () => void } callback - the callback of off('inputStop').
|
2023-01-14 09:58:54 +00:00
|
|
|
* @syscap SystemCapability.MiscServices.InputMethodFramework
|
|
|
|
*/
|
|
|
|
off(type: 'inputStop', callback: () => void): void;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Subscribe 'setCallingWindow'.
|
|
|
|
* @since 9
|
2023-01-18 01:43:43 +00:00
|
|
|
* @param { 'setCallingWindow' } type - the type of subscribe event.
|
|
|
|
* @param { (wid:number) => void } callback - the callback of on('setCallingWindow').
|
2023-01-14 09:58:54 +00:00
|
|
|
* @syscap SystemCapability.MiscServices.InputMethodFramework
|
|
|
|
*/
|
|
|
|
on(type: 'setCallingWindow', callback: (wid:number) => void): void;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Unsubscribe 'setCallingWindow'.
|
|
|
|
* @since 9
|
2023-01-18 01:43:43 +00:00
|
|
|
* @param { 'setCallingWindow' } type - the type of unsubscribe event.
|
|
|
|
* @param { (wid:number) => void } callback - the callback of off('setCallingWindow').
|
2023-01-14 09:58:54 +00:00
|
|
|
* @syscap SystemCapability.MiscServices.InputMethodFramework
|
|
|
|
*/
|
|
|
|
off(type: 'setCallingWindow', callback: (wid:number) => void): void;
|
|
|
|
|
|
|
|
/**
|
2023-01-18 01:43:43 +00:00
|
|
|
* Subscribe 'keyboardShow'|'keyboardHide'.
|
2023-01-14 09:58:54 +00:00
|
|
|
* @since 9
|
2023-01-18 01:43:43 +00:00
|
|
|
* @param { 'keyboardShow'|'keyboardHide' } type - the type of subscribe event.
|
|
|
|
* @param { () => void } callback - the callback of on('keyboardShow'|'keyboardHide').
|
|
|
|
* @syscap SystemCapability.MiscServices.InputMethodFramework
|
2023-01-14 09:58:54 +00:00
|
|
|
*/
|
|
|
|
on(type: 'keyboardShow'|'keyboardHide', callback: () => void): void;
|
|
|
|
|
|
|
|
/**
|
2023-01-18 01:43:43 +00:00
|
|
|
* Unsubscribe 'keyboardShow'|'keyboardHide'.
|
2023-01-14 09:58:54 +00:00
|
|
|
* @since 9
|
2023-01-18 01:43:43 +00:00
|
|
|
* @param { 'keyboardShow'|'keyboardHide' } type - the type of unsubscribe event.
|
|
|
|
* @param { () => void } [callback] - the callback of off('keyboardShow'|'keyboardHide').
|
|
|
|
* @syscap SystemCapability.MiscServices.InputMethodFramework
|
2023-01-14 09:58:54 +00:00
|
|
|
*/
|
|
|
|
off(type: 'keyboardShow'|'keyboardHide', callback?: () => void): void;
|
|
|
|
|
|
|
|
/**
|
2023-01-18 01:43:43 +00:00
|
|
|
* Subscribe 'setSubtype'.
|
2023-01-14 09:58:54 +00:00
|
|
|
* @since 9
|
2023-01-18 01:43:43 +00:00
|
|
|
* @param { 'setSubtype' } type - the type of subscribe event.
|
|
|
|
* @param { (inputMethodSubtype: InputMethodSubtype) => void } callback - the callback of on('setSubtype').
|
2023-01-14 09:58:54 +00:00
|
|
|
* @syscap SystemCapability.MiscServices.InputMethodFramework
|
|
|
|
*/
|
|
|
|
on(type: 'setSubtype', callback: (inputMethodSubtype: InputMethodSubtype) => void): void;
|
|
|
|
|
|
|
|
/**
|
2023-01-18 01:43:43 +00:00
|
|
|
* Unsubscribe 'setSubtype'.
|
2023-01-14 09:58:54 +00:00
|
|
|
* @since 9
|
2023-01-18 01:43:43 +00:00
|
|
|
* @param { 'setSubtype' } type - the type of subscribe event.
|
|
|
|
* @param { (inputMethodSubtype: InputMethodSubtype) => void } [callback] - the callback of off('setSubtype').
|
2023-01-14 09:58:54 +00:00
|
|
|
* @syscap SystemCapability.MiscServices.InputMethodFramework
|
|
|
|
*/
|
|
|
|
off(type: 'setSubtype', callback?: (inputMethodSubtype: InputMethodSubtype) => void): void;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @since 8
|
|
|
|
* @deprecated since 9
|
|
|
|
* @useinstead ohos.inputMethodEngine.InputClient
|
|
|
|
*/
|
|
|
|
interface TextInputClient {
|
|
|
|
/**
|
|
|
|
* @since 8
|
|
|
|
* @deprecated since 9
|
|
|
|
* @useinstead ohos.inputMethodEngine.InputClient.sendKeyFunction
|
|
|
|
*/
|
|
|
|
sendKeyFunction(action: number, callback: AsyncCallback<boolean>): void;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @since 8
|
|
|
|
* @deprecated since 9
|
|
|
|
* @useinstead ohos.inputMethodEngine.InputClient.sendKeyFunction
|
|
|
|
*/
|
|
|
|
sendKeyFunction(action: number): Promise<boolean>;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @since 8
|
|
|
|
* @deprecated since 9
|
|
|
|
* @useinstead ohos.inputMethodEngine.InputClient.deleteForward
|
|
|
|
*/
|
|
|
|
deleteForward(length: number, callback: AsyncCallback<boolean>): void;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @since 8
|
|
|
|
* @deprecated since 9
|
|
|
|
* @useinstead ohos.inputMethodEngine.InputClient.deleteForward
|
|
|
|
*/
|
|
|
|
deleteForward(length: number): Promise<boolean>;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @since 8
|
|
|
|
* @deprecated since 9
|
|
|
|
* @useinstead ohos.inputMethodEngine.InputClient.deleteBackward
|
|
|
|
*/
|
|
|
|
deleteBackward(length: number, callback: AsyncCallback<boolean>): void;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @since 8
|
|
|
|
* @deprecated since 9
|
|
|
|
* @useinstead ohos.inputMethodEngine.InputClient.deleteBackward
|
|
|
|
*/
|
|
|
|
deleteBackward(length: number): Promise<boolean>;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @since 8
|
|
|
|
* @deprecated since 9
|
|
|
|
* @useinstead ohos.inputMethodEngine.InputClient.insertText
|
|
|
|
*/
|
|
|
|
insertText(text: string, callback: AsyncCallback<boolean>): void;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @since 8
|
|
|
|
* @deprecated since 9
|
|
|
|
* @useinstead ohos.inputMethodEngine.InputClient.insertText
|
|
|
|
*/
|
|
|
|
insertText(text: string): Promise<boolean>;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @since 8
|
|
|
|
* @deprecated since 9
|
|
|
|
* @useinstead ohos.inputMethodEngine.InputClient.getForward
|
|
|
|
*/
|
|
|
|
getForward(length: number, callback: AsyncCallback<string>): void;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @since 8
|
|
|
|
* @deprecated since 9
|
|
|
|
* @useinstead ohos.inputMethodEngine.InputClient.getForward
|
|
|
|
*/
|
|
|
|
getForward(length: number): Promise<string>;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @since 8
|
|
|
|
* @deprecated since 9
|
|
|
|
* @useinstead ohos.inputMethodEngine.InputClient.getBackward
|
|
|
|
*/
|
|
|
|
getBackward(length: number, callback: AsyncCallback<string>): void;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @since 8
|
|
|
|
* @deprecated since 9
|
|
|
|
* @useinstead ohos.inputMethodEngine.InputClient.getBackward
|
|
|
|
*/
|
|
|
|
getBackward(length: number): Promise<string>;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @since 8
|
|
|
|
* @deprecated since 9
|
|
|
|
* @useinstead ohos.inputMethodEngine.InputClient.getEditorAttribute
|
|
|
|
*/
|
|
|
|
getEditorAttribute(callback: AsyncCallback<EditorAttribute>): void;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @since 8
|
|
|
|
* @deprecated since 9
|
|
|
|
* @useinstead ohos.inputMethodEngine.InputClient.getEditorAttribute
|
|
|
|
*/
|
|
|
|
getEditorAttribute(): Promise<EditorAttribute>;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2023-01-18 01:43:43 +00:00
|
|
|
* <p>Controls events about Editor.</p>
|
|
|
|
* @interface InputClient
|
2023-01-14 09:58:54 +00:00
|
|
|
* @syscap SystemCapability.MiscServices.InputMethodFramework
|
2023-01-18 01:43:43 +00:00
|
|
|
* @since 9
|
2023-01-14 09:58:54 +00:00
|
|
|
*/
|
|
|
|
interface InputClient {
|
|
|
|
/**
|
2023-01-18 01:43:43 +00:00
|
|
|
* Send the function of the key.
|
2023-01-14 09:58:54 +00:00
|
|
|
* @since 9
|
2023-01-18 01:43:43 +00:00
|
|
|
* @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
|
|
|
|
*/
|
|
|
|
sendKeyFunction(action: number, callback: AsyncCallback<boolean>): void;
|
|
|
|
|
|
|
|
/**
|
2023-01-18 01:43:43 +00:00
|
|
|
* Send the function of the key.
|
2023-01-14 09:58:54 +00:00
|
|
|
* @since 9
|
2023-01-18 01:43:43 +00:00
|
|
|
* @param { number } action - action indicates the function of "enter" key.
|
2023-01-14 09:58:54 +00:00
|
|
|
* @returns { Promise<boolean> } the promise returned by the function.
|
2023-01-18 01:43:43 +00:00
|
|
|
* @throws { BusinessError } 401 - parameter error.
|
|
|
|
* @throws { BusinessError } 12800003 - input method client error.
|
2023-01-14 09:58:54 +00:00
|
|
|
* @syscap SystemCapability.MiscServices.InputMethodFramework
|
|
|
|
*/
|
|
|
|
sendKeyFunction(action: number): Promise<boolean>;
|
|
|
|
|
|
|
|
/**
|
2023-01-18 01:43:43 +00:00
|
|
|
* Delete text forward.
|
2023-01-14 09:58:54 +00:00
|
|
|
* @since 9
|
2023-01-18 01:43:43 +00:00
|
|
|
* @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
|
|
|
|
*/
|
|
|
|
deleteForward(length: number, callback: AsyncCallback<boolean>): void;
|
|
|
|
|
|
|
|
/**
|
2023-01-18 01:43:43 +00:00
|
|
|
* Delete text forward.
|
|
|
|
* @param { number } length - length of text which will be deleted forward.
|
2023-01-14 09:58:54 +00:00
|
|
|
* @returns { Promise<boolean> } the promise returned by the function.
|
2023-01-18 01:43:43 +00:00
|
|
|
* @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-01-18 01:43:43 +00:00
|
|
|
* @since 9
|
2023-01-14 09:58:54 +00:00
|
|
|
*/
|
|
|
|
deleteForward(length: number): Promise<boolean>;
|
|
|
|
|
|
|
|
/**
|
2023-01-18 01:43:43 +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-01-18 01:43:43 +00:00
|
|
|
* @since 9
|
2023-01-14 09:58:54 +00:00
|
|
|
*/
|
|
|
|
deleteBackward(length: number, callback: AsyncCallback<boolean>): void;
|
|
|
|
|
|
|
|
/**
|
2023-01-18 01:43:43 +00:00
|
|
|
* Delete text backward.
|
|
|
|
* @param { number } length - length of text which will be deleted backward.
|
2023-01-14 09:58:54 +00:00
|
|
|
* @returns { Promise<boolean> } the promise returned by the function.
|
2023-01-18 01:43:43 +00:00
|
|
|
* @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-01-18 01:43:43 +00:00
|
|
|
* @since 9
|
2023-01-14 09:58:54 +00:00
|
|
|
*/
|
|
|
|
deleteBackward(length: number): Promise<boolean>;
|
|
|
|
|
|
|
|
/**
|
2023-01-18 01:43:43 +00:00
|
|
|
* 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-01-18 01:43:43 +00:00
|
|
|
* @since 9
|
2023-01-14 09:58:54 +00:00
|
|
|
*/
|
|
|
|
insertText(text: string, callback: AsyncCallback<boolean>): void;
|
|
|
|
|
|
|
|
/**
|
2023-01-18 01:43:43 +00:00
|
|
|
* Insert text into Editor.
|
|
|
|
* @param { string } text - text which will be inserted.
|
2023-01-14 09:58:54 +00:00
|
|
|
* @returns { Promise<boolean> } the promise returned by the function.
|
2023-01-18 01:43:43 +00:00
|
|
|
* @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-01-18 01:43:43 +00:00
|
|
|
* @since 9
|
2023-01-14 09:58:54 +00:00
|
|
|
*/
|
|
|
|
insertText(text: string): Promise<boolean>;
|
|
|
|
|
|
|
|
/**
|
2023-01-18 01:43:43 +00:00
|
|
|
* 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-01-18 01:43:43 +00:00
|
|
|
* @since 9
|
2023-01-14 09:58:54 +00:00
|
|
|
*/
|
|
|
|
getForward(length: number, callback: AsyncCallback<string>): void;
|
|
|
|
|
|
|
|
/**
|
2023-01-18 01:43:43 +00:00
|
|
|
* Get the text before cursor.
|
|
|
|
* @param { number } length - the length of text which will be got.
|
2023-01-14 09:58:54 +00:00
|
|
|
* @returns { Promise<string> } the promise returned by the function.
|
2023-01-18 01:43:43 +00:00
|
|
|
* @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-01-18 01:43:43 +00:00
|
|
|
* @since 9
|
2023-01-14 09:58:54 +00:00
|
|
|
*/
|
|
|
|
getForward(length: number): Promise<string>;
|
|
|
|
|
|
|
|
/**
|
2023-01-18 01:43:43 +00:00
|
|
|
* 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-01-18 01:43:43 +00:00
|
|
|
* @since 9
|
2023-01-14 09:58:54 +00:00
|
|
|
*/
|
|
|
|
getBackward(length: number, callback: AsyncCallback<string>): void;
|
|
|
|
|
|
|
|
/**
|
2023-01-18 01:43:43 +00:00
|
|
|
* Get the text after cursor.
|
|
|
|
* @param { number } length - the length of text which will be got.
|
2023-01-14 09:58:54 +00:00
|
|
|
* @returns { Promise<string> } the promise returned by the function.
|
2023-01-18 01:43:43 +00:00
|
|
|
* @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-01-18 01:43:43 +00:00
|
|
|
* @since 9
|
2023-01-14 09:58:54 +00:00
|
|
|
*/
|
|
|
|
getBackward(length: number): Promise<string>;
|
|
|
|
|
|
|
|
/**
|
2023-01-18 01:43:43 +00:00
|
|
|
* 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-01-18 01:43:43 +00:00
|
|
|
* @since 9
|
2023-01-14 09:58:54 +00:00
|
|
|
*/
|
|
|
|
getEditorAttribute(callback: AsyncCallback<EditorAttribute>): void;
|
|
|
|
|
|
|
|
/**
|
2023-01-18 01:43:43 +00:00
|
|
|
* Get attribute about editor.
|
2023-01-14 09:58:54 +00:00
|
|
|
* @since 9
|
|
|
|
* @returns { Promise<EditorAttribute> } the promise returned by the function.
|
2023-01-18 01:43:43 +00:00
|
|
|
* @throws { BusinessError } 12800003 - input method client error.
|
2023-01-14 09:58:54 +00:00
|
|
|
* @syscap SystemCapability.MiscServices.InputMethodFramework
|
|
|
|
*/
|
|
|
|
getEditorAttribute(): Promise<EditorAttribute>;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Move cursor from input method.
|
|
|
|
*
|
|
|
|
* @since 9
|
|
|
|
* @syscap SystemCapability.MiscServices.InputMethodFramework
|
2023-01-18 01:43:43 +00:00
|
|
|
* @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
|
|
|
*/
|
|
|
|
moveCursor(direction: number, callback: AsyncCallback<void>): void;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Move cursor from input method.
|
|
|
|
*
|
|
|
|
* @since 9
|
|
|
|
* @syscap SystemCapability.MiscServices.InputMethodFramework
|
2023-01-18 01:43:43 +00:00
|
|
|
* @param { number } direction - Indicates the distance of cursor to be moved.
|
2023-01-14 09:58:54 +00:00
|
|
|
* @returns { Promise<void> } the promise returned by the function.
|
2023-01-18 01:43:43 +00:00
|
|
|
* @throws { BusinessError } 401 - parameter error.
|
|
|
|
* @throws { BusinessError } 12800003 - input method client error.
|
2023-01-14 09:58:54 +00:00
|
|
|
*/
|
|
|
|
moveCursor(direction: number): Promise<void>;
|
2023-01-18 03:15:06 +00:00
|
|
|
|
|
|
|
/**
|
2023-01-18 12:23:36 +00:00
|
|
|
* Select text in editor by range.
|
|
|
|
* @param 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.
|
2023-01-18 03:15:06 +00:00
|
|
|
* @syscap SystemCapability.MiscServices.InputMethodFramework
|
2023-01-18 12:23:36 +00:00
|
|
|
* @since 9
|
2023-01-18 03:15:06 +00:00
|
|
|
*/
|
2023-01-18 12:23:36 +00:00
|
|
|
selectByRange(range: Range, callback: AsyncCallback<void>): void;
|
2023-01-18 03:15:06 +00:00
|
|
|
|
|
|
|
/**
|
2023-01-18 12:23:36 +00:00
|
|
|
* Select text in editor by range.
|
|
|
|
* @param 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.
|
2023-01-18 03:15:06 +00:00
|
|
|
* @syscap SystemCapability.MiscServices.InputMethodFramework
|
2023-01-18 12:23:36 +00:00
|
|
|
* @since 9
|
2023-01-18 03:15:06 +00:00
|
|
|
*/
|
2023-01-18 12:23:36 +00:00
|
|
|
selectByRange(range: Range): Promise<void>;
|
2023-01-18 03:15:06 +00:00
|
|
|
|
|
|
|
/**
|
2023-01-18 12:23:36 +00:00
|
|
|
* Select text in editor by cursor movement.
|
|
|
|
* @param movement - idicates 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.
|
2023-01-18 03:15:06 +00:00
|
|
|
* @syscap SystemCapability.MiscServices.InputMethodFramework
|
2023-01-18 12:23:36 +00:00
|
|
|
* @since 9
|
2023-01-18 03:15:06 +00:00
|
|
|
*/
|
2023-01-18 12:23:36 +00:00
|
|
|
selectByMovement(movement: Movement, callback: AsyncCallback<void>): void;
|
2023-01-18 03:15:06 +00:00
|
|
|
|
|
|
|
/**
|
2023-01-18 12:23:36 +00:00
|
|
|
* Select text in editor by cursor movement.
|
|
|
|
* @param movement - idicates 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.
|
2023-01-18 03:15:06 +00:00
|
|
|
* @syscap SystemCapability.MiscServices.InputMethodFramework
|
2023-01-18 12:23:36 +00:00
|
|
|
* @since 9
|
2023-01-18 03:15:06 +00:00
|
|
|
*/
|
2023-01-18 12:23:36 +00:00
|
|
|
selectByMovement(movement: Movement): Promise<void>;
|
2023-01-14 09:58:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @since 8
|
|
|
|
*/
|
|
|
|
interface KeyboardDelegate {
|
|
|
|
/**
|
|
|
|
* Subscribe key up or down event
|
|
|
|
*
|
|
|
|
* @since 8
|
|
|
|
*/
|
|
|
|
on(type: 'keyDown'|'keyUp', callback: (event: KeyEvent) => boolean): void;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Unsubscribe key up or down event
|
|
|
|
*
|
|
|
|
* @since 8
|
|
|
|
*/
|
|
|
|
off(type: 'keyDown'|'keyUp', callback?: (event: KeyEvent) => boolean): void;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Subscribe cursor context change
|
|
|
|
*
|
|
|
|
* @since 8
|
|
|
|
*/
|
|
|
|
on(type: 'cursorContextChange', callback: (x: number, y: number, height: number) => void): void;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Unsubscribe cursor context change
|
|
|
|
*
|
|
|
|
* @since 8
|
|
|
|
*/
|
|
|
|
off(type: 'cursorContextChange', callback?: (x: number, y: number, height: number) => void): void;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Subscribe selection change
|
|
|
|
*
|
|
|
|
* @since 8
|
|
|
|
*/
|
|
|
|
on(type: 'selectionChange', callback: (oldBegin: number, oldEnd: number, newBegin: number, newEnd: number) => void): void;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Unsubscribe selection change
|
|
|
|
*
|
|
|
|
* @since 8
|
|
|
|
*/
|
|
|
|
off(type: 'selectionChange', callback?: (oldBegin: number, oldEnd: number, newBegin: number, newEnd: number) => void): void;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Subscribe text change
|
|
|
|
*
|
|
|
|
* @since 8
|
|
|
|
*/
|
|
|
|
on(type: 'textChange', callback: (text: string) => void): void;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Unsubscribe text change
|
|
|
|
*
|
|
|
|
* @since 8
|
|
|
|
*/
|
|
|
|
off(type: 'textChange', callback?: (text: string) => void): void;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @since 8
|
|
|
|
*/
|
|
|
|
interface EditorAttribute {
|
|
|
|
/**
|
|
|
|
* Editor's pattern
|
|
|
|
*
|
|
|
|
* @since 8
|
|
|
|
* @syscap SystemCapability.MiscServices.InputMethodFramework
|
|
|
|
*/
|
|
|
|
readonly inputPattern: number;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Editor's key type
|
|
|
|
*
|
|
|
|
* @since 8
|
|
|
|
* @syscap SystemCapability.MiscServices.InputMethodFramework
|
|
|
|
*/
|
|
|
|
readonly enterKeyType: number;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @since 8
|
|
|
|
*/
|
|
|
|
interface KeyEvent {
|
|
|
|
/**
|
|
|
|
* Key code
|
|
|
|
*
|
|
|
|
* @since 8
|
|
|
|
*/
|
|
|
|
readonly keyCode: number;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Key action
|
|
|
|
*
|
|
|
|
* @since 8
|
|
|
|
*/
|
|
|
|
readonly keyAction: number;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export default inputMethodEngine;
|