全屏小部件

问题描述 投票:0回答:2

如何使我的小部件全屏显示?我尝试过这样的事情:

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();
}

但是小部件不在系统面板上。还有其他想法吗?

操作系统:Linux

c++ linux qt widget fullscreen
2个回答
57
投票

QWidget::showFullScreen()
就是您所需要的 - 在我的项目中的 Linux+Windows 下工作多年 - 但要小心,不应该两次调用此函数(例如,第一次调用
QMainWindo->showFullScreen()
,然后调用
MyWidget->showFullScreen()
) .


12
投票

此代码将允许您通过双击设置全屏,并通过再次双击返回到正常视图。

void myWidget::mouseDoubleClickEvent(QMouseEvent *e) {
  QWidget::mouseDoubleClickEvent(e);
  if(isFullScreen()) {
     this->setWindowState(Qt::WindowMaximized);
  } else {
     this->setWindowState(Qt::WindowFullScreen);
  }
}
© www.soinside.com 2019 - 2024. All rights reserved.