Home
last modified time | relevance | path

Searched refs:tints (Results 1 – 22 of 22) sorted by relevance

/ohos5.0/foundation/window/window_manager/wmserver/src/
H A Dwindow_manager_agent_controller.cpp54 …AgentController::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 Dwindow_node_container.cpp1338 SystemBarRegionTints tints; in NotifyIfSystemBarTintChanged() local
1349 tints.emplace_back(sysBarTintMap[it.first]); in NotifyIfSystemBarTintChanged()
1351 WindowManagerAgentController::GetInstance().UpdateSystemBarRegionTints(displayId, tints); in NotifyIfSystemBarTintChanged()
1379 SystemBarRegionTints tints; in NotifyIfSystemBarRegionChanged() local
1390 tints.emplace_back(sysBarTintMap[it.first]); in NotifyIfSystemBarRegionChanged()
1467 SystemBarRegionTints tints; in NotifySystemBarTints() local
1478 tints.push_back(sysBarTintMap[it.first]); in NotifySystemBarTints()
1503 SystemBarRegionTints tints; in NotifyDockWindowStateChanged() local
1504 tints.push_back(tint); in NotifyDockWindowStateChanged()
1525 SystemBarRegionTints tints; in NotifyDockWindowStateChanged() local
[all …]
/ohos5.0/foundation/window/window_manager/test/fuzztest/wms/windowmanager_fuzzer/
H A Dwindowmanager_fuzzer.cpp53 …virtual void OnSystemBarPropertyChange(DisplayId displayId, const SystemBarRegionTints& tints) ove… in OnSystemBarPropertyChange() argument
109 SystemBarRegionTints tints; in DoSomethingForWindowManagerImpl() local
111 GetObject<SystemBarRegionTints>(tints, data + startPos, size - startPos); in DoSomethingForWindowManagerImpl()
112 windowManager.UpdateSystemBarRegionTints(displayId, tints); in DoSomethingForWindowManagerImpl()
/ohos5.0/foundation/window/window_manager/wm/src/zidl/
H A Dwindow_manager_agent_stub.cpp55 SystemBarRegionTints tints; in OnRemoteRequest() local
56 bool res = MarshallingHelper::UnmarshallingVectorObj<SystemBarRegionTint>(data, tints, in OnRemoteRequest()
75 UpdateSystemBarRegionTints(displayId, tints); in OnRemoteRequest()
H A Dwindow_manager_agent_proxy.cpp90 …nagerAgentProxy::UpdateSystemBarRegionTints(DisplayId displayId, const SystemBarRegionTints& tints) in UpdateSystemBarRegionTints() argument
102 bool res = MarshallingHelper::MarshallingVectorObj<SystemBarRegionTint>(data, tints, in UpdateSystemBarRegionTints()
/ohos5.0/foundation/window/window_manager/test/systemtest/wms/
H A Dwindow_immersive_test.cpp58 void OnSystemBarPropertyChange(DisplayId displayId, const SystemBarRegionTints& tints) override;
98 …wImmersiveTest::SetWindowSystemProps(const sptr<Window>& window, const SystemBarRegionTints& tints) in SetWindowSystemProps() argument
100 for (auto tint : tints) { in SetWindowSystemProps()
179 …rChangedListener::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()
/ohos5.0/foundation/window/window_manager/wm/src/
H A Dwindow_manager_agent.cpp33 …dowManagerAgent::UpdateSystemBarRegionTints(DisplayId displayId, const SystemBarRegionTints& tints) in UpdateSystemBarRegionTints() argument
35 SingletonContainer::Get<WindowManager>().UpdateSystemBarRegionTints(displayId, tints); in UpdateSystemBarRegionTints()
H A Dwindow_manager.cpp56 void NotifySystemBarChanged(DisplayId displayId, const SystemBarRegionTints& tints);
171 …WindowManager::Impl::NotifySystemBarChanged(DisplayId displayId, const SystemBarRegionTints& tints) in NotifySystemBarChanged() argument
173 for (auto tint : tints) { in NotifySystemBarChanged()
186 listener->OnSystemBarPropertyChange(displayId, tints); in NotifySystemBarChanged()
1006 const SystemBarRegionTints& tints) const in UpdateSystemBarRegionTints()
1008 pImpl_->NotifySystemBarChanged(displayId, tints); in UpdateSystemBarRegionTints()
/ohos5.0/foundation/window/window_manager/wmserver/include/
H A Dwindow_manager_agent_controller.h36 void UpdateSystemBarRegionTints(DisplayId displayId, const SystemBarRegionTints& tints);
/ohos5.0/foundation/window/window_manager/wm/include/zidl/
H A Dwindow_manager_agent_proxy.h31 … void UpdateSystemBarRegionTints(DisplayId displayId, const SystemBarRegionTints& tints) override;
H A Dwindow_manager_agent_interface.h63 …virtual void UpdateSystemBarRegionTints(DisplayId displayId, const SystemBarRegionTints& tints) = …
/ohos5.0/foundation/window/window_manager/interfaces/kits/cj/window_runtime/
H A Dwindow_listener.cpp56 const SystemBarRegionTints& tints) in OnSystemBarPropertyChange() argument
H A Dwindow_listener.h69 const SystemBarRegionTints& tints) override;
/ohos5.0/foundation/window/window_manager/wm/test/unittest/
H A Dwindow_manager_agent_proxy_test.cpp139 SystemBarRegionTints tints = {}; variable
147 windowManagerAgentProxy->UpdateSystemBarRegionTints(displayId, tints); in __anon6a4628910502()
H A Dwindow_manager_agent_stub_test.cpp182 SystemBarRegionTints tints; variable
183 MarshallingHelper::MarshallingVectorObj<SystemBarRegionTint>(data, tints,
H A Dwindow_manager_test.cpp50 void OnSystemBarPropertyChange(DisplayId displayId, const SystemBarRegionTints& tints) override in OnSystemBarPropertyChange() argument
/ohos5.0/foundation/window/window_manager/interfaces/innerkits/wm/
H A Dwindow_manager.h130 …virtual void OnSystemBarPropertyChange(DisplayId displayId, const SystemBarRegionTints& tints) = 0;
878 void UpdateSystemBarRegionTints(DisplayId displayId, const SystemBarRegionTints& tints) const;
/ohos5.0/foundation/window/window_manager/interfaces/kits/napi/window_runtime/window_napi/
H A Djs_window_listener.cpp110 …JsWindowListener::OnSystemBarPropertyChange(DisplayId displayId, const SystemBarRegionTints& tints) in OnSystemBarPropertyChange() argument
115 [self = weakRef_, displayId, tints, eng = env_] (napi_env env, in OnSystemBarPropertyChange()
131 CreateJsSystemBarRegionTintArrayObject(eng, tints)); in OnSystemBarPropertyChange()
H A Djs_window_listener.h79 void OnSystemBarPropertyChange(DisplayId displayId, const SystemBarRegionTints& tints) override;
H A Djs_window_utils.cpp579 napi_value CreateJsSystemBarRegionTintArrayObject(napi_env env, const SystemBarRegionTints& tints) in CreateJsSystemBarRegionTintArrayObject() argument
581 if (tints.empty()) { in CreateJsSystemBarRegionTintArrayObject()
586 napi_create_array_with_length(env, tints.size(), &objValue); in CreateJsSystemBarRegionTintArrayObject()
593 for (size_t i = 0; i < tints.size(); i++) { in CreateJsSystemBarRegionTintArrayObject()
594 napi_set_element(env, array, index++, CreateJsSystemBarRegionTintObject(env, tints[i])); in CreateJsSystemBarRegionTintArrayObject()
H A Djs_window_utils.h309 const SystemBarRegionTints& tints);
/ohos5.0/foundation/window/window_manager/test/fuzztest/wms/window_fuzzer/
H A Dwindow_fuzzer.cpp55 …virtual void OnSystemBarPropertyChange(DisplayId displayId, const SystemBarRegionTints& tints) ove… in OnSystemBarPropertyChange() argument