J'ai une question. Comment puis-je rendre mon widget en plein écran? J'ai essayé quelque chose comme ça:
void MainWindow::SetFullScreen()
{
// Make our window without panels
this->setWindowFlags( Qt::FramelessWindowHint | Qt::Tool | Qt::WindowStaysOnTopHint );
// Resize refer to desktop
this->resize( QApplication::desktop()->size() );
this->setFocusPolicy( Qt::StrongFocus );
this->setAttribute(Qt::WA_QuitOnClose, true);
qApp->processEvents();
show();
this->setFocus();
}
Mais le widget n'est pas au-dessus des panneaux système. Une autre idée?
OS: Linux