Lines Matching refs:windowNode
94 for (auto& windowNode : windowNodes) {
101 if (windowNode == nullptr) {
106 AppendWindowNodeInfo(windowNode, zOrder, oss);
114 void WindowDumper::AppendWindowNodeInfo(const sptr<WindowNode>& windowNode, int zOrder, std::ostringstream& oss)
116 Rect rect = windowNode->GetWindowRect();
117 const std::string& windowName = windowNode->GetWindowName().size() <= WINDOW_NAME_MAX_LENGTH ?
118 windowNode->GetWindowName() : windowNode->GetWindowName().substr(0, WINDOW_NAME_MAX_LENGTH);
121 << std::left << std::setw(10) << windowNode->GetDisplayId() // 10 is width
122 << std::left << std::setw(8) << windowNode->GetCallingPid() // 8 is width
123 << std::left << std::setw(6) << windowNode->GetWindowId() // 6 is width
124 << std::left << std::setw(5) << static_cast<uint32_t>(windowNode->GetWindowType()) // 5 is width
125 << std::left << std::setw(5) << static_cast<uint32_t>(windowNode->GetWindowMode()) // 5 is width
126 << std::left << std::setw(5) << windowNode->GetWindowFlags() // 5 is width
128 << std::left << std::setw(12) << static_cast<uint32_t>(windowNode->GetRequestedOrientation()) // 12 is width