mirror of
https://github.com/openharmony/windowmanager.git
synced 2026-07-18 16:24:27 -04:00
291ac40c62
Signed-off-by: chyyy0213 <chenhaiying3@huawei.com> Change-Id: I04b009087a09575eacbbb560bf690021e221efce Signed-off-by: chyyy0213 <chenhaiying3@huawei.com>
81 lines
3.7 KiB
C++
81 lines
3.7 KiB
C++
/*
|
|
* Copyright (c) 2021-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.
|
|
*/
|
|
|
|
#ifndef OHOS_WINDOW_ADAPTER_H
|
|
#define OHOS_WINDOW_ADAPTER_H
|
|
|
|
#include <refbase.h>
|
|
#include <zidl/window_manager_agent_interface.h>
|
|
|
|
#include "window.h"
|
|
#include "zidl/window_interface.h"
|
|
#include "singleton_delegator.h"
|
|
#include "window_property.h"
|
|
#include "wm_single_instance.h"
|
|
#include "zidl/window_manager_interface.h"
|
|
namespace OHOS {
|
|
namespace Rosen {
|
|
class WMSDeathRecipient : public IRemoteObject::DeathRecipient {
|
|
public:
|
|
virtual void OnRemoteDied(const wptr<IRemoteObject>& wptrDeath) override;
|
|
};
|
|
|
|
class WindowAdapter {
|
|
WM_DECLARE_SINGLE_INSTANCE(WindowAdapter);
|
|
public:
|
|
virtual WMError CreateWindow(sptr<IWindow>& window, sptr<WindowProperty>& windowProperty,
|
|
std::shared_ptr<RSSurfaceNode> surfaceNode, uint32_t& windowId, const sptr<IRemoteObject>& token);
|
|
virtual WMError AddWindow(sptr<WindowProperty>& windowProperty);
|
|
virtual WMError RemoveWindow(uint32_t windowId);
|
|
virtual WMError DestroyWindow(uint32_t windowId);
|
|
virtual WMError RequestFocus(uint32_t windowId);
|
|
virtual WMError GetAvoidAreaByType(uint32_t windowId, AvoidAreaType type, AvoidArea& avoidRect);
|
|
virtual WMError SetWindowBackgroundBlur(uint32_t windowId, WindowBlurLevel level);
|
|
virtual WMError GetTopWindowId(uint32_t mainWinId, uint32_t& topWinId);
|
|
virtual void ProcessPointDown(uint32_t windowId, bool isStartDrag = false);
|
|
virtual void ProcessPointUp(uint32_t windowId);
|
|
virtual void MinimizeAllAppWindows(DisplayId displayId);
|
|
virtual WMError ToggleShownStateForAllAppWindows();
|
|
virtual WMError SetWindowLayoutMode(WindowLayoutMode mode);
|
|
virtual WMError UpdateProperty(sptr<WindowProperty>& windowProperty, PropertyChangeAction action);
|
|
virtual WMError GetSystemConfig(SystemConfig& systemConfig);
|
|
virtual WMError GetModeChangeHotZones(DisplayId displayId, ModeChangeHotZones& hotZones);
|
|
virtual WMError UpdateRsTree(uint32_t windowId, bool isAdd);
|
|
virtual void RegisterWindowManagerAgent(WindowManagerAgentType type,
|
|
const sptr<IWindowManagerAgent>& windowManagerAgent);
|
|
virtual void UnregisterWindowManagerAgent(WindowManagerAgentType type,
|
|
const sptr<IWindowManagerAgent>& windowManagerAgent);
|
|
|
|
virtual WMError SetWindowAnimationController(const sptr<RSIWindowAnimationController>& controller);
|
|
virtual WMError NotifyWindowTransition(sptr<WindowTransitionInfo> from, sptr<WindowTransitionInfo> to);
|
|
virtual WMError UpdateAvoidAreaListener(uint32_t windowId, bool haveListener);
|
|
virtual void ClearWindowAdapter();
|
|
|
|
virtual WMError GetAccessibilityWindowInfo(sptr<AccessibilityWindowInfo>& windowInfo);
|
|
virtual void MinimizeWindowsByLauncher(std::vector<uint32_t> windowIds, bool isAnimated,
|
|
sptr<RSIWindowAnimationFinishedCallback>& finishCallback);
|
|
private:
|
|
static inline SingletonDelegator<WindowAdapter> delegator;
|
|
bool InitWMSProxy();
|
|
|
|
std::recursive_mutex mutex_;
|
|
sptr<IWindowManager> windowManagerServiceProxy_ = nullptr;
|
|
sptr<WMSDeathRecipient> wmsDeath_ = nullptr;
|
|
bool isProxyValid_ { false };
|
|
};
|
|
} // namespace Rosen
|
|
} // namespace OHOS
|
|
#endif // OHOS_WINDOW_ADAPTER_H
|