Searched refs:displayRectMap (Results 1 – 7 of 7) sorted by relevance
/foundation/window/window_manager/wmserver/include/ |
D | display_group_controller.h | 48 const std::map<DisplayId, Rect>& displayRectMap); 50 const std::map<DisplayId, Rect>& displayRectMap, 53 const std::map<DisplayId, Rect>& displayRectMap, 67 const std::map<DisplayId, Rect>& displayRectMap, DisplayStateChangeType type); 76 …SizeChangeReasonWithRotation(DisplayId displayId, const std::map<DisplayId, Rect>& displayRectMap); 79 …ssSystemBarRotation(const sptr<WindowNode>& node, const std::map<DisplayId, Rect>& displayRectMap);
|
D | window_layout_policy.h | 48 void ProcessDisplayCreate(DisplayId displayId, const std::map<DisplayId, Rect>& displayRectMap); 49 … void ProcessDisplayDestroy(DisplayId displayId, const std::map<DisplayId, Rect>& displayRectMap); 50 …sDisplaySizeChangeOrRotation(DisplayId displayId, const std::map<DisplayId, Rect>& displayRectMap); 98 void UpdateDisplayRectAndDisplayGroupInfo(const std::map<DisplayId, Rect>& displayRectMap);
|
D | window_root.h | 132 std::map<DisplayId, Rect>& displayRectMap);
|
/foundation/window/window_manager/wmserver/src/ |
D | display_group_info.cpp | 55 auto displayRectMap = GetAllDisplayRects(); in UpdateLeftAndRightDisplayId() local 56 leftDisplayId_ = displayRectMap.begin()->first; in UpdateLeftAndRightDisplayId() 57 rightDisplayId_ = displayRectMap.begin()->first; in UpdateLeftAndRightDisplayId() 58 for (auto& elem : displayRectMap) { in UpdateLeftAndRightDisplayId() 60 if (curDisplayRect.posX_ < displayRectMap[leftDisplayId_].posX_) { in UpdateLeftAndRightDisplayId() 64 …(displayRectMap[rightDisplayId_].posX_ + static_cast<int32_t>(displayRectMap[rightDisplayId_].widt… in UpdateLeftAndRightDisplayId() 158 std::map<DisplayId, Rect> displayRectMap; in GetAllDisplayRects() local 163 displayRectMap.insert(std::make_pair(elem.first, displayRect)); in GetAllDisplayRects() 165 return displayRectMap; in GetAllDisplayRects()
|
D | display_group_controller.cpp | 150 auto displayRectMap = displayGroupInfo.GetAllDisplayRects(); in UpdateWindowShowingDisplays() local 153 for (auto& elem : displayRectMap) { in UpdateWindowShowingDisplays() 166 displayRectMap[leftDisplayId].posX_)) { in UpdateWindowShowingDisplays() 170 …(displayRectMap[rightDisplayId].posX_ + static_cast<int32_t>(displayRectMap[rightDisplayId].width_… in UpdateWindowShowingDisplays() 199 const auto& displayRectMap = DisplayGroupInfo::GetInstance().GetAllDisplayRects(); in UpdateWindowDisplayIdIfNeeded() local 200 for (auto& elem : displayRectMap) { in UpdateWindowDisplayIdIfNeeded() 395 const std::map<DisplayId, Rect>& displayRectMap) in ProcessDisplayCreate() argument 414 layoutPolicy->ProcessDisplayCreate(displayId, displayRectMap); in ProcessDisplayCreate() 419 const std::map<DisplayId, Rect>& displayRectMap, in ProcessDisplayDestroy() argument 431 windowNodeContainer_->GetLayoutPolicy()->ProcessDisplayDestroy(displayId, displayRectMap); in ProcessDisplayDestroy() [all …]
|
D | window_layout_policy.cpp | 184 …LayoutPolicy::UpdateDisplayRectAndDisplayGroupInfo(const std::map<DisplayId, Rect>& displayRectMap) in UpdateDisplayRectAndDisplayGroupInfo() argument 186 for (auto& elem : displayRectMap) { in UpdateDisplayRectAndDisplayGroupInfo() 200 …tPolicy::ProcessDisplayCreate(DisplayId displayId, const std::map<DisplayId, Rect>& displayRectMap) in ProcessDisplayCreate() argument 205 displayRectMap.size() != oriDisplayRectMap.size()) { in ProcessDisplayCreate() 209 for (auto& elem : displayRectMap) { in ProcessDisplayCreate() 222 UpdateDisplayRectAndDisplayGroupInfo(displayRectMap); in ProcessDisplayCreate() 227 …Policy::ProcessDisplayDestroy(DisplayId displayId, const std::map<DisplayId, Rect>& displayRectMap) in ProcessDisplayDestroy() argument 232 displayRectMap.size() != oriDisplayRectMap.size()) { in ProcessDisplayDestroy() 238 auto newIter = displayRectMap.find(oriIter->first); in ProcessDisplayDestroy() 239 if (newIter != displayRectMap.end()) { in ProcessDisplayDestroy() [all …]
|
D | window_root.cpp | 100 auto displayRectMap = GetAllDisplayRectsByDMS(displayInfo); in GetWindowNodeContainer() local 102 ProcessExpandDisplayCreate(defaultDisplayId, displayInfo, displayRectMap); in GetWindowNodeContainer() 1441 std::map<DisplayId, Rect>& displayRectMap) in ProcessExpandDisplayCreate() argument 1456 …->GetDisplayGroupController()->ProcessDisplayCreate(defaultDisplayId, displayInfo, displayRectMap); in ProcessExpandDisplayCreate() 1463 std::map<DisplayId, Rect> displayRectMap; in GetAllDisplayRectsByDMS() local 1466 return displayRectMap; in GetAllDisplayRectsByDMS() 1472 displayRectMap.insert(std::make_pair(displayId, displayRect)); in GetAllDisplayRectsByDMS() 1477 return displayRectMap; in GetAllDisplayRectsByDMS() 1483 std::map<DisplayId, Rect> displayRectMap; in GetAllDisplayRectsByDisplayInfo() local 1489 displayRectMap.insert(std::make_pair(id, displayRect)); in GetAllDisplayRectsByDisplayInfo() [all …]
|