mirror of
https://github.com/openharmony/windowmanager.git
synced 2026-07-25 16:15:26 -04:00
f8ee70beac
Signed-off-by: xiahaiqin <xiahaiqin1@huawei.com> Change-Id: I49965a753022b13df7f5dc5998723086073d0f4d
57 lines
1.9 KiB
C++
57 lines
1.9 KiB
C++
/*
|
|
* Copyright (c) 2021 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 OHOS_INPUT_TRANSFER_STATION
|
|
#define OHOS_INPUT_TRANSFER_STATION
|
|
|
|
#include "input_manager.h"
|
|
#include "pointer_event.h"
|
|
#include "window.h"
|
|
#include "window_input_channel.h"
|
|
#include "wm_single_instance.h"
|
|
#include "vsync_station.h"
|
|
|
|
namespace OHOS {
|
|
namespace Rosen {
|
|
class InputEventListener;
|
|
|
|
class InputTransferStation {
|
|
WM_DECLARE_SINGLE_INSTANCE(InputTransferStation);
|
|
friend class InputEventListener;
|
|
public:
|
|
void AddInputWindow(const sptr<Window>& window);
|
|
void RemoveInputWindow(const sptr<Window>& window);
|
|
void SetInputListener(uint32_t windowId, std::shared_ptr<MMI::IInputEventConsumer>& listener);
|
|
|
|
private:
|
|
sptr<WindowInputChannel> GetInputChannel(uint32_t windowId);
|
|
bool initInputListener_ = false;
|
|
std::unordered_map<uint32_t, sptr<WindowInputChannel>> windowInputChannels_;
|
|
std::shared_ptr<MMI::IInputEventConsumer> inputListener_ = nullptr;
|
|
};
|
|
|
|
class InputEventListener : public RefBase, public MMI::IInputEventConsumer {
|
|
public:
|
|
InputEventListener() = default;
|
|
void OnInputEvent(std::shared_ptr<MMI::PointerEvent> pointerEvent) const override;
|
|
void OnInputEvent(std::shared_ptr<MMI::KeyEvent> keyEvent) const override;
|
|
void OnInputEvent(std::shared_ptr<MMI::AxisEvent> axisEvent) const override;
|
|
};
|
|
}
|
|
}
|
|
|
|
|
|
#endif // OHOS_INPUT_TRANSFER_STATION
|