I want to get all opened non qt window from qt application and display them , i get all opened window but i can't display their names or positions.
this->_WindowsList = QGuiApplication::allWindows(); // i get all windows
for (uint i = 0 ; i< _WindowsList.size() ; i++)
{
this->ui->listWidget->addItem(_WindowsList.at(i)->title()); // no name are displayed just rows
}