/* * Copyright (c) 2022-2024 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. */ #ifndef I_INPUT_EVENT_HANDLER_H #define I_INPUT_EVENT_HANDLER_H #include #include "axis_event.h" #include "define_multimodal.h" #include "key_event.h" #include "pointer_event.h" #include "switch_event.h" struct libinput_event; namespace OHOS { namespace MMI { class IInputEventHandler { public: struct IInputEventConsumer { public: IInputEventConsumer() = default; virtual ~IInputEventConsumer() = default; virtual void OnInputEvent(InputHandlerType type, std::shared_ptr event) const; virtual void OnInputEvent(InputHandlerType type, std::shared_ptr event) const; virtual void OnInputEvent(InputHandlerType type, std::shared_ptr event) const; }; IInputEventHandler() = default; DISALLOW_COPY_AND_MOVE(IInputEventHandler); virtual ~IInputEventHandler() = default; #ifdef OHOS_BUILD_ENABLE_KEYBOARD virtual void HandleKeyEvent(const std::shared_ptr keyEvent) = 0; #endif // OHOS_BUILD_ENABLE_KEYBOARD #ifdef OHOS_BUILD_ENABLE_POINTER virtual void HandlePointerEvent(const std::shared_ptr pointerEvent) = 0; #endif // OHOS_BUILD_ENABLE_POINTER #ifdef OHOS_BUILD_ENABLE_TOUCH virtual void HandleTouchEvent(const std::shared_ptr pointerEvent) = 0; #endif // OHOS_BUILD_ENABLE_TOUCH #ifdef OHOS_BUILD_ENABLE_SWITCH virtual void HandleSwitchEvent(const std::shared_ptr switchEvent) { if (nextHandler_ != nullptr) { nextHandler_->HandleSwitchEvent(switchEvent); } } #endif // OHOS_BUILD_ENABLE_SWITCH virtual void SetNext(std::shared_ptr nextHandler) { nextHandler_ = nextHandler; }; protected: std::shared_ptr nextHandler_ { nullptr }; }; } // namespace MMI } // namespace OHOS #endif // I_INPUT_EVENT_HANDLER_H