Hello, i have a question. How can i make my widget fullscreen? I've tried something like this:
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();
}
But widget isn't over system panels. Any another ideas?
Os: Linux
Lang: c++