Siarhei Vishniakou | a47a4d4 | 2019-05-06 17:14:11 -0700 | [diff] [blame] | 1 | /* |
Siarhei Vishniakou | 34d6fef | 2022-02-01 19:03:45 -0800 | [diff] [blame] | 2 | * Copyright (C) 2022 The Android Open Source Project |
Siarhei Vishniakou | a47a4d4 | 2019-05-06 17:14:11 -0700 | [diff] [blame] | 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 | |
Siarhei Vishniakou | 34d6fef | 2022-02-01 19:03:45 -0800 | [diff] [blame] | 17 | #pragma once |
Siarhei Vishniakou | a47a4d4 | 2019-05-06 17:14:11 -0700 | [diff] [blame] | 18 | |
Prabir Pradhan | 9a9897d | 2024-03-21 21:52:57 +0000 | [diff] [blame] | 19 | #include "InputListener.h" |
| 20 | |
Siarhei Vishniakou | 34d6fef | 2022-02-01 19:03:45 -0800 | [diff] [blame] | 21 | #include <aidl/android/hardware/input/common/Axis.h> |
| 22 | #include <aidl/android/hardware/input/common/MotionEvent.h> |
Prabir Pradhan | 9a9897d | 2024-03-21 21:52:57 +0000 | [diff] [blame] | 23 | #include <input/Input.h> |
Siarhei Vishniakou | a47a4d4 | 2019-05-06 17:14:11 -0700 | [diff] [blame] | 24 | |
| 25 | namespace android { |
| 26 | |
Prabir Pradhan | 9a9897d | 2024-03-21 21:52:57 +0000 | [diff] [blame] | 27 | /** Convert from framework's NotifyMotionArgs to hidl's common::MotionEvent. */ |
Siarhei Vishniakou | 34d6fef | 2022-02-01 19:03:45 -0800 | [diff] [blame] | 28 | ::aidl::android::hardware::input::common::MotionEvent notifyMotionArgsToHalMotionEvent( |
Siarhei Vishniakou | a47a4d4 | 2019-05-06 17:14:11 -0700 | [diff] [blame] | 29 | const NotifyMotionArgs& args); |
| 30 | |
Prabir Pradhan | 9a9897d | 2024-03-21 21:52:57 +0000 | [diff] [blame] | 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 | |
Siarhei Vishniakou | a47a4d4 | 2019-05-06 17:14:11 -0700 | [diff] [blame] | 40 | } // namespace android |