2022-08-08 13:47:53 +00:00
|
|
|
/*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
2022-08-16 00:52:29 +00:00
|
|
|
#ifndef INPUT_MANAGER_H
|
|
|
|
#define INPUT_MANAGER_H
|
|
|
|
|
|
|
|
#include "i_input_event_consumer.h"
|
|
|
|
#include "event_handler.h"
|
2022-08-08 13:47:53 +00:00
|
|
|
|
|
|
|
namespace OHOS {
|
2022-08-16 00:52:29 +00:00
|
|
|
namespace MMI {
|
|
|
|
class InputManager : public AppExecFwk::EventHandler {
|
2022-08-08 13:47:53 +00:00
|
|
|
public:
|
2022-08-16 00:52:29 +00:00
|
|
|
void SetWindowInputEventConsumer(std::shared_ptr<IInputEventConsumer> inputEventConsumer)
|
2022-08-08 13:47:53 +00:00
|
|
|
{
|
2022-08-16 00:52:29 +00:00
|
|
|
return;
|
2022-08-08 13:47:53 +00:00
|
|
|
}
|
2022-08-16 00:52:29 +00:00
|
|
|
void SetWindowInputEventConsumer(std::shared_ptr<IInputEventConsumer> inputEventConsumer,
|
|
|
|
std::shared_ptr<AppExecFwk::EventHandler> eventHandler)
|
2022-08-08 13:47:53 +00:00
|
|
|
{
|
2022-08-16 00:52:29 +00:00
|
|
|
return;
|
2022-08-08 13:47:53 +00:00
|
|
|
}
|
2022-08-16 00:52:29 +00:00
|
|
|
|
|
|
|
static InputManager *GetInstance()
|
2022-08-08 13:47:53 +00:00
|
|
|
{
|
2022-08-16 00:52:29 +00:00
|
|
|
return nullptr;
|
2022-08-08 13:47:53 +00:00
|
|
|
}
|
|
|
|
};
|
2022-08-16 00:52:29 +00:00
|
|
|
} // namespace MMI
|
2022-08-08 13:47:53 +00:00
|
|
|
} // namespace OHOS
|
2022-08-16 00:52:29 +00:00
|
|
|
#endif // INPUT_MANAGER_H
|