/foundation/window/window_manager/wmserver/src/ |
H A D | window_manager_agent_controller.cpp | 54 void WindowManagerAgentController::UpdateSystemBarRegionTints(DisplayId displayId, const SystemBarRegionTints& tints)
in UpdateSystemBarRegionTints() argument 56 WLOGFD("tints size: %{public}u", static_cast<uint32_t>(tints.size()));
in UpdateSystemBarRegionTints() 57 if (tints.empty()) {
in UpdateSystemBarRegionTints() 62 agent->UpdateSystemBarRegionTints(displayId, tints);
in UpdateSystemBarRegionTints()
|
H A D | window_node_container.cpp | 1337 SystemBarRegionTints tints; in NotifyIfSystemBarTintChanged() local 1348 tints.emplace_back(sysBarTintMap[it.first]); in NotifyIfSystemBarTintChanged() 1350 WindowManagerAgentController::GetInstance().UpdateSystemBarRegionTints(displayId, tints); in NotifyIfSystemBarTintChanged() 1378 SystemBarRegionTints tints; in NotifyIfSystemBarRegionChanged() local 1389 tints.emplace_back(sysBarTintMap[it.first]); in NotifyIfSystemBarRegionChanged() 1394 WindowManagerAgentController::GetInstance().UpdateSystemBarRegionTints(displayId, tints); in NotifyIfSystemBarRegionChanged() 1466 SystemBarRegionTints tints; in NotifySystemBarTints() local 1469 WLOGI("[Immersive] systembar tints, T: %{public}d, " \ in NotifySystemBarTints() 1477 tints.push_back(sysBarTintMap[it.first]); in NotifySystemBarTints() 1479 WindowManagerAgentController::GetInstance().UpdateSystemBarRegionTints(displayId, tints); in NotifySystemBarTints() 1502 SystemBarRegionTints tints; NotifyDockWindowStateChanged() local 1524 SystemBarRegionTints tints; NotifyDockWindowStateChanged() local [all...] |
/foundation/window/window_manager/test/fuzztest/wms/windowmanager_fuzzer/ |
H A D | windowmanager_fuzzer.cpp | 53 virtual void OnSystemBarPropertyChange(DisplayId displayId, const SystemBarRegionTints& tints) override 109 SystemBarRegionTints tints; in DoSomethingForWindowManagerImpl() local 111 GetObject<SystemBarRegionTints>(tints, data + startPos, size - startPos); in DoSomethingForWindowManagerImpl() 112 windowManager.UpdateSystemBarRegionTints(displayId, tints); in DoSomethingForWindowManagerImpl()
|
/foundation/window/window_manager/wm/src/ |
H A D | window_manager_agent.cpp | 33 void WindowManagerAgent::UpdateSystemBarRegionTints(DisplayId displayId, const SystemBarRegionTints& tints) in UpdateSystemBarRegionTints() argument 35 SingletonContainer::Get<WindowManager>().UpdateSystemBarRegionTints(displayId, tints); in UpdateSystemBarRegionTints()
|
H A D | window_manager.cpp | 56 void NotifySystemBarChanged(DisplayId displayId, const SystemBarRegionTints& tints);
172 void WindowManager::Impl::NotifySystemBarChanged(DisplayId displayId, const SystemBarRegionTints& tints)
in NotifySystemBarChanged() argument 174 for (auto tint : tints) {
in NotifySystemBarChanged() 187 listener->OnSystemBarPropertyChange(displayId, tints);
in NotifySystemBarChanged() 1080 const SystemBarRegionTints& tints) const
in UpdateSystemBarRegionTints() 1082 pImpl_->NotifySystemBarChanged(displayId, tints);
in UpdateSystemBarRegionTints()
|
/foundation/window/window_manager/wm/src/zidl/ |
H A D | window_manager_agent_stub.cpp | 62 SystemBarRegionTints tints; in OnRemoteRequest() local 63 bool res = MarshallingHelper::UnmarshallingVectorObj<SystemBarRegionTint>(data, tints, in OnRemoteRequest() 82 UpdateSystemBarRegionTints(displayId, tints); in OnRemoteRequest()
|
H A D | window_manager_agent_proxy.cpp | 90 void WindowManagerAgentProxy::UpdateSystemBarRegionTints(DisplayId displayId, const SystemBarRegionTints& tints) in UpdateSystemBarRegionTints() argument 102 bool res = MarshallingHelper::MarshallingVectorObj<SystemBarRegionTint>(data, tints, in UpdateSystemBarRegionTints()
|
/foundation/window/window_manager/test/systemtest/wms/ |
H A D | window_immersive_test.cpp | 58 void OnSystemBarPropertyChange(DisplayId displayId, const SystemBarRegionTints& tints) override;
98 void WindowImmersiveTest::SetWindowSystemProps(const sptr<Window>& window, const SystemBarRegionTints& tints)
in SetWindowSystemProps() argument 100 for (auto tint : tints) {
in SetWindowSystemProps() 179 void TestSystemBarChangedListener::OnSystemBarPropertyChange(DisplayId displayId, const SystemBarRegionTints& tints)
in OnSystemBarPropertyChange() argument 182 WLOGI("TestSystemBarChangedListener tints size: %{public}zu", tints.size());
in OnSystemBarPropertyChange() 183 for (auto tint : tints) {
in OnSystemBarPropertyChange()
|
H A D | window_immersive_test2.cpp | 64 void OnSystemBarPropertyChange(DisplayId displayId, const SystemBarRegionTints& tints) override;
103 void WindowImmersiveTest1::SetWindowSystemProps(const sptr<Window>& window, const SystemBarRegionTints& tints)
in SetWindowSystemProps() argument 105 for (auto tint : tints) {
in SetWindowSystemProps() 184 void TestSystemBarChangedListener::OnSystemBarPropertyChange(DisplayId displayId, const SystemBarRegionTints& tints)
in OnSystemBarPropertyChange() argument 187 WLOGI("TestSystemBarChangedListener tints size: %{public}zu", tints.size());
in OnSystemBarPropertyChange() 188 for (auto tint : tints) {
in OnSystemBarPropertyChange()
|
/foundation/window/window_manager/wmserver/include/ |
H A D | window_manager_agent_controller.h | 36 void UpdateSystemBarRegionTints(DisplayId displayId, const SystemBarRegionTints& tints);
|
/foundation/window/window_manager/wm/include/zidl/ |
H A D | window_manager_agent_proxy.h | 31 void UpdateSystemBarRegionTints(DisplayId displayId, const SystemBarRegionTints& tints) override;
|
H A D | window_manager_agent_interface.h | 66 virtual void UpdateSystemBarRegionTints(DisplayId displayId, const SystemBarRegionTints& tints) = 0;
|
/foundation/window/window_manager/interfaces/kits/cj/window_runtime/ |
H A D | window_listener.h | 67 const SystemBarRegionTints& tints) override;
|
H A D | window_listener.cpp | 56 const SystemBarRegionTints& tints) in OnSystemBarPropertyChange() 55 OnSystemBarPropertyChange(DisplayId displayId, const SystemBarRegionTints& tints) OnSystemBarPropertyChange() argument
|
/foundation/window/window_manager/interfaces/kits/napi/window_runtime/window_napi/ |
H A D | js_window_listener.h | 77 void OnSystemBarPropertyChange(DisplayId displayId, const SystemBarRegionTints& tints) override;
|
H A D | js_window_listener.cpp | 116 void JsWindowListener::OnSystemBarPropertyChange(DisplayId displayId, const SystemBarRegionTints& tints)
in OnSystemBarPropertyChange() argument 121 [self = weakRef_, displayId, tints, eng = env_] (napi_env env,
in OnSystemBarPropertyChange() 138 CreateJsSystemBarRegionTintArrayObject(eng, tints));
in OnSystemBarPropertyChange()
|
H A D | js_window_utils.cpp | 571 napi_value CreateJsSystemBarRegionTintArrayObject(napi_env env, const SystemBarRegionTints& tints)
in CreateJsSystemBarRegionTintArrayObject() argument 573 if (tints.empty()) {
in CreateJsSystemBarRegionTintArrayObject() 574 WLOGFE("Empty tints");
in CreateJsSystemBarRegionTintArrayObject() 578 napi_create_array_with_length(env, tints.size(), &objValue);
in CreateJsSystemBarRegionTintArrayObject() 585 for (size_t i = 0; i < tints.size(); i++) {
in CreateJsSystemBarRegionTintArrayObject() 586 napi_set_element(env, array, index++, CreateJsSystemBarRegionTintObject(env, tints[i]));
in CreateJsSystemBarRegionTintArrayObject()
|
H A D | js_window_utils.h | 316 const SystemBarRegionTints& tints);
|
/foundation/window/window_manager/interfaces/innerkits/wm/ |
H A D | window_manager.h | 129 * @param tints Tint of system bar region. 131 virtual void OnSystemBarPropertyChange(DisplayId displayId, const SystemBarRegionTints& tints) = 0; 838 void UpdateSystemBarRegionTints(DisplayId displayId, const SystemBarRegionTints& tints) const;
|
/foundation/window/window_manager/wm/test/unittest/ |
H A D | window_manager_agent_stub_test.cpp | 182 SystemBarRegionTints tints; in HWTEST_F() local 183 MarshallingHelper::MarshallingVectorObj<SystemBarRegionTint>(data, tints, in HWTEST_F()
|
H A D | window_manager_agent_proxy_test.cpp | 138 SystemBarRegionTints tints = {}; in HWTEST_F() local 146 windowManagerAgentProxy->UpdateSystemBarRegionTints(displayId, tints); in HWTEST_F()
|
H A D | window_manager_test.cpp | 50 void OnSystemBarPropertyChange(DisplayId displayId, const SystemBarRegionTints& tints) override
|
/foundation/window/window_manager/test/fuzztest/wms/window_fuzzer/ |
H A D | window_fuzzer.cpp | 55 virtual void OnSystemBarPropertyChange(DisplayId displayId, const SystemBarRegionTints& tints) override
|