mirror of
https://github.com/openharmony/windowmanager.git
synced 2026-07-21 04:25:28 -04:00
3d20820bc3
Signed-off-by: qianlf <qianliangfang@huawei.com> Change-Id: Ie8e60de9f294fc171a9ba4fea0b9a5832874641b
86 lines
3.4 KiB
C++
86 lines
3.4 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.
|
|
*/
|
|
|
|
#include "window_manager_agent_controller.h"
|
|
#include "window_manager_hilog.h"
|
|
#include "wm_common.h"
|
|
|
|
namespace OHOS {
|
|
namespace Rosen {
|
|
namespace {
|
|
constexpr HiviewDFX::HiLogLabel LABEL = {LOG_CORE, HILOG_DOMAIN_WINDOW, "WindowManagerAgentController"};
|
|
}
|
|
WM_IMPLEMENT_SINGLE_INSTANCE(WindowManagerAgentController)
|
|
|
|
void WindowManagerAgentController::RegisterWindowManagerAgent(const sptr<IWindowManagerAgent>& windowManagerAgent,
|
|
WindowManagerAgentType type)
|
|
{
|
|
wmAgentContainer_.RegisterAgent(windowManagerAgent, type);
|
|
}
|
|
|
|
void WindowManagerAgentController::UnregisterWindowManagerAgent(const sptr<IWindowManagerAgent>& windowManagerAgent,
|
|
WindowManagerAgentType type)
|
|
{
|
|
wmAgentContainer_.UnregisterAgent(windowManagerAgent, type);
|
|
}
|
|
|
|
void WindowManagerAgentController::UpdateFocusChangeInfo(const sptr<FocusChangeInfo>& focusChangeInfo, bool focused)
|
|
{
|
|
for (auto& agent : wmAgentContainer_.GetAgentsByType(WindowManagerAgentType::WINDOW_MANAGER_AGENT_TYPE_FOCUS)) {
|
|
agent->UpdateFocusChangeInfo(focusChangeInfo, focused);
|
|
}
|
|
}
|
|
|
|
void WindowManagerAgentController::UpdateSystemBarRegionTints(DisplayId displayId, const SystemBarRegionTints& tints)
|
|
{
|
|
WLOGFI("UpdateSystemBarRegionTints, tints size: %{public}u", static_cast<uint32_t>(tints.size()));
|
|
if (tints.empty()) {
|
|
return;
|
|
}
|
|
for (auto& agent : wmAgentContainer_.GetAgentsByType(
|
|
WindowManagerAgentType::WINDOW_MANAGER_AGENT_TYPE_SYSTEM_BAR)) {
|
|
agent->UpdateSystemBarRegionTints(displayId, tints);
|
|
}
|
|
}
|
|
|
|
void WindowManagerAgentController::NotifyAccessibilityWindowInfo(const sptr<AccessibilityWindowInfo>& windowInfo,
|
|
WindowUpdateType type)
|
|
{
|
|
WLOGFI("NotifyAccessibilityWindowInfo");
|
|
for (auto& agent : wmAgentContainer_.GetAgentsByType(
|
|
WindowManagerAgentType::WINDOW_MANAGER_AGENT_TYPE_WINDOW_UPDATE)) {
|
|
agent->NotifyAccessibilityWindowInfo(windowInfo, type);
|
|
}
|
|
}
|
|
|
|
void WindowManagerAgentController::UpdateWindowVisibilityInfo(
|
|
const std::vector<sptr<WindowVisibilityInfo>>& windowVisibilityInfos)
|
|
{
|
|
WLOGFD("UpdateWindowVisibilityInfo size:%{public}zu", windowVisibilityInfos.size());
|
|
for (auto& agent : wmAgentContainer_.GetAgentsByType(
|
|
WindowManagerAgentType::WINDOW_MANAGER_AGENT_TYPE_WINDOW_VISIBILITY)) {
|
|
agent->UpdateWindowVisibilityInfo(windowVisibilityInfos);
|
|
}
|
|
}
|
|
|
|
void WindowManagerAgentController::UpdateCameraFloatWindowStatus(uint32_t accessTokenId, bool isShowing)
|
|
{
|
|
for (auto& agent : wmAgentContainer_.GetAgentsByType(
|
|
WindowManagerAgentType::WINDOW_MANAGER_AGENT_TYPE_CAMERA_FLOAT)) {
|
|
agent->UpdateCameraFloatWindowStatus(accessTokenId, isShowing);
|
|
}
|
|
}
|
|
} // namespace Rosen
|
|
} // namespace OHOS
|