1 /* 2 * Copyright (C) 2022 The Android Open Source Project 3 * 4 * Licensed under the Apache License, Version 2.0 (the "License"); 5 * you may not use this file except in compliance with the License. 6 * You may obtain a copy of the License at 7 * 8 * http://www.apache.org/licenses/LICENSE-2.0 9 * 10 * Unless required by applicable law or agreed to in writing, software 11 * distributed under the License is distributed on an "AS IS" BASIS, 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 * See the License for the specific language governing permissions and 14 * limitations under the License. 15 */ 16 17 #pragma once 18 19 #include "InputListener.h" 20 21 #include <aidl/android/hardware/input/common/Axis.h> 22 #include <aidl/android/hardware/input/common/MotionEvent.h> 23 #include <input/Input.h> 24 25 namespace android { 26 27 /** Convert from framework's NotifyMotionArgs to hidl's common::MotionEvent. */ 28 ::aidl::android::hardware::input::common::MotionEvent notifyMotionArgsToHalMotionEvent( 29 const NotifyMotionArgs& args); 30 31 /** Convert from NotifyMotionArgs to MotionEvent. */ 32 MotionEvent toMotionEvent(const NotifyMotionArgs&, const ui::Transform* transform = nullptr, 33 const ui::Transform* rawTransform = nullptr, 34 const std::array<uint8_t, 32>* hmac = nullptr); 35 36 /** Convert from NotifyKeyArgs to KeyEvent. */ 37 KeyEvent toKeyEvent(const NotifyKeyArgs&, int32_t repeatCount = 0, 38 const std::array<uint8_t, 32>* hmac = nullptr); 39 40 } // namespace android 41