161847f8eSopenharmony_ci/* 261847f8eSopenharmony_ci * Copyright (c) 2022-2023 Huawei Device Co., Ltd. 361847f8eSopenharmony_ci * Licensed under the Apache License, Version 2.0 (the "License"); 461847f8eSopenharmony_ci * you may not use this file except in compliance with the License. 561847f8eSopenharmony_ci * You may obtain a copy of the License at 661847f8eSopenharmony_ci * 761847f8eSopenharmony_ci * http://www.apache.org/licenses/LICENSE-2.0 861847f8eSopenharmony_ci * 961847f8eSopenharmony_ci * Unless required by applicable law or agreed to in writing, software 1061847f8eSopenharmony_ci * distributed under the License is distributed on an "AS IS" BASIS, 1161847f8eSopenharmony_ci * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 1261847f8eSopenharmony_ci * See the License for the specific language governing permissions and 1361847f8eSopenharmony_ci * limitations under the License. 1461847f8eSopenharmony_ci */ 1561847f8eSopenharmony_ci 1661847f8eSopenharmony_ci/** 1761847f8eSopenharmony_ci * @file 1861847f8eSopenharmony_ci * @kit InputKit 1961847f8eSopenharmony_ci */ 2061847f8eSopenharmony_ci 2161847f8eSopenharmony_ciimport { 2261847f8eSopenharmony_ci ActionType, FourFingersSwipe, Pinch, Rotate, ThreeFingersSwipe, ThreeFingersTap, SwipeInward 2361847f8eSopenharmony_ci} from '@ohos.multimodalInput.gestureEvent'; 2461847f8eSopenharmony_ciimport infraredEmitter from '@ohos.multimodalInput.infraredEmitter'; 2561847f8eSopenharmony_ciimport inputConsumer from '@ohos.multimodalInput.inputConsumer'; 2661847f8eSopenharmony_ciimport inputDevice from '@ohos.multimodalInput.inputDevice'; 2761847f8eSopenharmony_ciimport inputDeviceCooperate from '@ohos.multimodalInput.inputDeviceCooperate'; 2861847f8eSopenharmony_ciimport { InputEvent } from '@ohos.multimodalInput.inputEvent'; 2961847f8eSopenharmony_ciimport inputEventClient from '@ohos.multimodalInput.inputEventClient'; 3061847f8eSopenharmony_ciimport inputMonitor from '@ohos.multimodalInput.inputMonitor'; 3161847f8eSopenharmony_ciimport { IntentionCode } from '@ohos.multimodalInput.intentionCode'; 3261847f8eSopenharmony_ciimport { KeyCode } from '@ohos.multimodalInput.keyCode'; 3361847f8eSopenharmony_ciimport { Action, Key, KeyEvent } from '@ohos.multimodalInput.keyEvent'; 3461847f8eSopenharmony_ciimport { 3561847f8eSopenharmony_ci Action as MouseAction, Axis, AxisValue, Button, MouseEvent, ToolType as MouseToolType 3661847f8eSopenharmony_ci} from '@ohos.multimodalInput.mouseEvent'; 3761847f8eSopenharmony_ciimport pointer from '@ohos.multimodalInput.pointer'; 3861847f8eSopenharmony_ciimport shortKey from '@ohos.multimodalInput.shortKey'; 3961847f8eSopenharmony_ciimport { 4061847f8eSopenharmony_ci Action as KeyAction, SourceType, ToolType, Touch, TouchEvent 4161847f8eSopenharmony_ci} from '@ohos.multimodalInput.touchEvent'; 4261847f8eSopenharmony_ci 4361847f8eSopenharmony_ciexport { 4461847f8eSopenharmony_ci Action, ActionType, Axis, AxisValue, Button, FourFingersSwipe, InputEvent, IntentionCode, 4561847f8eSopenharmony_ci Key, KeyAction, KeyCode, KeyEvent, MouseAction, MouseEvent, MouseToolType, Pinch, Rotate, 4661847f8eSopenharmony_ci SourceType, ThreeFingersSwipe, ThreeFingersTap, ToolType, Touch, TouchEvent, inputConsumer, 4761847f8eSopenharmony_ci inputDevice, inputDeviceCooperate, inputEventClient, inputMonitor, pointer, shortKey, infraredEmitter, 4861847f8eSopenharmony_ci SwipeInward 4961847f8eSopenharmony_ci}; 50