mirror of
https://gitee.com/openharmony/interface_sdk-js
synced 2024-11-23 07:10:52 +00:00
3b7183cabb
Signed-off-by: 周澎亮 <zhoupengliang1@huawei.com>
343 lines
7.3 KiB
TypeScript
343 lines
7.3 KiB
TypeScript
/*
|
|
* Copyright (c) 2022 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.
|
|
*/
|
|
|
|
/**
|
|
* @file
|
|
* @kit InputKit
|
|
*/
|
|
|
|
import type { InputEvent } from './@ohos.multimodalInput.inputEvent';
|
|
import type { KeyCode } from './@ohos.multimodalInput.keyCode';
|
|
/**
|
|
* Action
|
|
*
|
|
* @enum { number }
|
|
* @syscap SystemCapability.MultimodalInput.Input.Core
|
|
* @since 9
|
|
*/
|
|
/**
|
|
* Action
|
|
*
|
|
* @enum { number }
|
|
* @syscap SystemCapability.MultimodalInput.Input.Core
|
|
* @atomicservice
|
|
* @since 12
|
|
*/
|
|
export declare enum Action {
|
|
/**
|
|
* Cancel key
|
|
*
|
|
* @syscap SystemCapability.MultimodalInput.Input.Core
|
|
* @since 9
|
|
*/
|
|
/**
|
|
* Cancel key
|
|
*
|
|
* @syscap SystemCapability.MultimodalInput.Input.Core
|
|
* @atomicservice
|
|
* @since 12
|
|
*/
|
|
CANCEL = 0,
|
|
|
|
/**
|
|
* Down key
|
|
*
|
|
* @syscap SystemCapability.MultimodalInput.Input.Core
|
|
* @since 9
|
|
*/
|
|
/**
|
|
* Down key
|
|
*
|
|
* @syscap SystemCapability.MultimodalInput.Input.Core
|
|
* @atomicservice
|
|
* @since 12
|
|
*/
|
|
DOWN = 1,
|
|
|
|
/**
|
|
* Up key
|
|
*
|
|
* @syscap SystemCapability.MultimodalInput.Input.Core
|
|
* @since 9
|
|
*/
|
|
/**
|
|
* Up key
|
|
*
|
|
* @syscap SystemCapability.MultimodalInput.Input.Core
|
|
* @atomicservice
|
|
* @since 12
|
|
*/
|
|
UP = 2
|
|
}
|
|
|
|
/**
|
|
* Key
|
|
*
|
|
* @interface Key
|
|
* @syscap SystemCapability.MultimodalInput.Input.Core
|
|
* @since 9
|
|
*/
|
|
/**
|
|
* Key
|
|
*
|
|
* @typedef Key
|
|
* @syscap SystemCapability.MultimodalInput.Input.Core
|
|
* @atomicservice
|
|
* @since 12
|
|
*/
|
|
export declare interface Key {
|
|
/**
|
|
* Key code
|
|
* @type { KeyCode }
|
|
* @syscap SystemCapability.MultimodalInput.Input.Core
|
|
* @since 9
|
|
*/
|
|
/**
|
|
* Key code
|
|
* @type { KeyCode }
|
|
* @syscap SystemCapability.MultimodalInput.Input.Core
|
|
* @atomicservice
|
|
* @since 12
|
|
*/
|
|
code: KeyCode;
|
|
|
|
/**
|
|
* Time when the key is pressed
|
|
* @type { number }
|
|
* @syscap SystemCapability.MultimodalInput.Input.Core
|
|
* @since 9
|
|
*/
|
|
/**
|
|
* Time when the key is pressed
|
|
* @type { number }
|
|
* @syscap SystemCapability.MultimodalInput.Input.Core
|
|
* @atomicservice
|
|
* @since 12
|
|
*/
|
|
pressedTime: number;
|
|
|
|
/**
|
|
* Device to which the key belongs
|
|
* @type { number }
|
|
* @syscap SystemCapability.MultimodalInput.Input.Core
|
|
* @since 9
|
|
*/
|
|
/**
|
|
* Device to which the key belongs
|
|
* @type { number }
|
|
* @syscap SystemCapability.MultimodalInput.Input.Core
|
|
* @atomicservice
|
|
* @since 12
|
|
*/
|
|
deviceId: number;
|
|
}
|
|
|
|
/**
|
|
* KeyEvent
|
|
*
|
|
* @interface KeyEvent
|
|
* @syscap SystemCapability.MultimodalInput.Input.Core
|
|
* @since 9
|
|
*/
|
|
/**
|
|
* KeyEvent
|
|
*
|
|
* @typedef KeyEvent
|
|
* @extends InputEvent
|
|
* @syscap SystemCapability.MultimodalInput.Input.Core
|
|
* @atomicservice
|
|
* @since 12
|
|
*/
|
|
export declare interface KeyEvent extends InputEvent {
|
|
/**
|
|
* Key action
|
|
* @type { Action }
|
|
* @syscap SystemCapability.MultimodalInput.Input.Core
|
|
* @since 9
|
|
*/
|
|
/**
|
|
* Key action
|
|
* @type { Action }
|
|
* @syscap SystemCapability.MultimodalInput.Input.Core
|
|
* @atomicservice
|
|
* @since 12
|
|
*/
|
|
action: Action;
|
|
|
|
/**
|
|
* Key that has changed
|
|
* @type { Key }
|
|
* @syscap SystemCapability.MultimodalInput.Input.Core
|
|
* @since 9
|
|
*/
|
|
/**
|
|
* Key that has changed
|
|
* @type { Key }
|
|
* @syscap SystemCapability.MultimodalInput.Input.Core
|
|
* @atomicservice
|
|
* @since 12
|
|
*/
|
|
key: Key;
|
|
|
|
/**
|
|
* Unicode character corresponding to the key
|
|
* @type { number }
|
|
* @syscap SystemCapability.MultimodalInput.Input.Core
|
|
* @since 9
|
|
*/
|
|
/**
|
|
* Unicode character corresponding to the key
|
|
* @type { number }
|
|
* @syscap SystemCapability.MultimodalInput.Input.Core
|
|
* @atomicservice
|
|
* @since 12
|
|
*/
|
|
unicodeChar: number;
|
|
|
|
/**
|
|
* List of pressed keys
|
|
* @type { Key[] }
|
|
* @syscap SystemCapability.MultimodalInput.Input.Core
|
|
* @since 9
|
|
*/
|
|
/**
|
|
* List of pressed keys
|
|
* @type { Key[] }
|
|
* @syscap SystemCapability.MultimodalInput.Input.Core
|
|
* @atomicservice
|
|
* @since 12
|
|
*/
|
|
keys: Key[];
|
|
|
|
/**
|
|
* Whether ctrlKey is being pressed
|
|
* @type { boolean }
|
|
* @syscap SystemCapability.MultimodalInput.Input.Core
|
|
* @since 9
|
|
*/
|
|
/**
|
|
* Whether ctrlKey is being pressed
|
|
* @type { boolean }
|
|
* @syscap SystemCapability.MultimodalInput.Input.Core
|
|
* @atomicservice
|
|
* @since 12
|
|
*/
|
|
ctrlKey: boolean;
|
|
|
|
/**
|
|
* Whether altKey is being pressed
|
|
* @type { boolean }
|
|
* @syscap SystemCapability.MultimodalInput.Input.Core
|
|
* @since 9
|
|
*/
|
|
/**
|
|
* Whether altKey is being pressed
|
|
* @type { boolean }
|
|
* @syscap SystemCapability.MultimodalInput.Input.Core
|
|
* @atomicservice
|
|
* @since 12
|
|
*/
|
|
altKey: boolean;
|
|
|
|
/**
|
|
* Whether shiftKey is being pressed
|
|
* @type { boolean }
|
|
* @syscap SystemCapability.MultimodalInput.Input.Core
|
|
* @since 9
|
|
*/
|
|
/**
|
|
* Whether shiftKey is being pressed
|
|
* @type { boolean }
|
|
* @syscap SystemCapability.MultimodalInput.Input.Core
|
|
* @atomicservice
|
|
* @since 12
|
|
*/
|
|
shiftKey: boolean;
|
|
|
|
/**
|
|
* Whether logoKey is being pressed
|
|
* @type { boolean }
|
|
* @syscap SystemCapability.MultimodalInput.Input.Core
|
|
* @since 9
|
|
*/
|
|
/**
|
|
* Whether logoKey is being pressed
|
|
* @type { boolean }
|
|
* @syscap SystemCapability.MultimodalInput.Input.Core
|
|
* @atomicservice
|
|
* @since 12
|
|
*/
|
|
logoKey: boolean;
|
|
|
|
/**
|
|
* Whether fnKey is being pressed
|
|
* @type { boolean }
|
|
* @syscap SystemCapability.MultimodalInput.Input.Core
|
|
* @since 9
|
|
*/
|
|
/**
|
|
* Whether fnKey is being pressed
|
|
* @type { boolean }
|
|
* @syscap SystemCapability.MultimodalInput.Input.Core
|
|
* @atomicservice
|
|
* @since 12
|
|
*/
|
|
fnKey: boolean;
|
|
|
|
/**
|
|
* Whether capsLock is active
|
|
* @type { boolean }
|
|
* @syscap SystemCapability.MultimodalInput.Input.Core
|
|
* @since 9
|
|
*/
|
|
/**
|
|
* Whether capsLock is active
|
|
* @type { boolean }
|
|
* @syscap SystemCapability.MultimodalInput.Input.Core
|
|
* @atomicservice
|
|
* @since 12
|
|
*/
|
|
capsLock: boolean;
|
|
|
|
/**
|
|
* Whether numLock is active
|
|
* @type { boolean }
|
|
* @syscap SystemCapability.MultimodalInput.Input.Core
|
|
* @since 9
|
|
*/
|
|
/**
|
|
* Whether numLock is active
|
|
* @type { boolean }
|
|
* @syscap SystemCapability.MultimodalInput.Input.Core
|
|
* @atomicservice
|
|
* @since 12
|
|
*/
|
|
numLock: boolean;
|
|
|
|
/**
|
|
* Whether scrollLock is active
|
|
* @type { boolean }
|
|
* @syscap SystemCapability.MultimodalInput.Input.Core
|
|
* @since 9
|
|
*/
|
|
/**
|
|
* Whether scrollLock is active
|
|
* @type { boolean }
|
|
* @syscap SystemCapability.MultimodalInput.Input.Core
|
|
* @atomicservice
|
|
* @since 12
|
|
*/
|
|
scrollLock: boolean;
|
|
} |