如何全屏显示 QGLWidget?
我是 OpenGL 和 Qt 的新手,我正在同时学习两者(已经 3 天了:)。几年前,我对 DirectX 进行了一些实验,我清楚地记得在那里可以制作全屏窗口。我所说的全屏是指真正的全屏,即使顶部没有关闭全屏和最小化按钮。
到目前为止我有这个程序:
#include <QApplication>
int main(int argc, char** argv)
{
QApplication app(argc, argv);
QGLWidget w;
w.show();
return app.exec();
}
我应该添加什么来使 w 全屏显示?
I am new to OpenGL and Qt, and I am learning both simultaneously(3 days already:). I couple of years ago I did some exmerimenting with DirectX and I clearly remember that it was possible to make a full-screen window there. By full-screen I mean really full-screen, even without the top part where you have the close fullscreen and minimize buttons.
I have this program so far:
#include <QApplication>
int main(int argc, char** argv)
{
QApplication app(argc, argv);
QGLWidget w;
w.show();
return app.exec();
}
What should I add to it to make w full-screen?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
showFullScreen()
虽然我不想只说 RTM - Qt 在线文档确实非常出色。
showFullScreen()
Although I don't want to just say RTM - the Qt online documentation really is excellent.
尝试:
但是,我不记得 Qt::SplashScreen 是否是好标志。
Try:
However, I don't remember if Qt::SplashScreen is the good flag.