Qt - QWidget:未使用 GUI 时无法创建 QWidget

发布于 2024-10-28 11:31:10 字数 549 浏览 1 评论 0原文

我正在尝试运行一个简单的 Qt 程序,当这样做时,我得到一个控制台窗口,其中提到:QWidget:在没有使用 GUI 时无法创建 QWidget,第二行此应用程序已请求运行时终止.......exe 文件因此停止工作。

我的 .pro 文件如下所示:

#-------------------------------------------------
#
# Project created by QtCreator 2011-04-02T07:38:50
#
#-------------------------------------------------

QT       += core

QT       += gui

TARGET = Hello
CONFIG += console
CONFIG += qt
CONFIG   -= app_bundle

TEMPLATE = app


SOURCES += main.cpp

对此有什么想法吗?

谢谢。

I'm trying to run a simple Qt program, and when doing so, I get a console window mentioning: QWidget: Cannot create a QWidget when no GUI is being used, and the second line This application has requested the Runtime to terminate....., and the .exe file thus stops working.

My .pro file looks as follows:

#-------------------------------------------------
#
# Project created by QtCreator 2011-04-02T07:38:50
#
#-------------------------------------------------

QT       += core

QT       += gui

TARGET = Hello
CONFIG += console
CONFIG += qt
CONFIG   -= app_bundle

TEMPLATE = app


SOURCES += main.cpp

Any ideas on that?

Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(5

余罪 2024-11-04 11:31:10

问题不在于这个.pro;它很可能位于 main.cpp 中。 Qt 要求您在创建任何 QWidget 子类(以及某些其他类,例如 QPixmap)之前创建 QApplication。您的 main 函数应以以下行开始:

QApplication app(argc, argv);

并可能以以下行结束:

return app.exec();

在这些调用之间,您应该创建并显示主窗口。

The problem is not with this .pro; it is most likely in main.cpp. Qt requires you to create a QApplication before creating any QWidget subclasses (as well as certain other classes, such as QPixmap). Your main function should begin with the line:

QApplication app(argc, argv);

and will probably end with a line like:

return app.exec();

In between these calls, you should create and show your main window.

尐籹人 2024-11-04 11:31:10

我发现您可以使用 Qt Console 项目来完成此操作,但是当您完成我的编辑后,它当然不会具有控制台程序的功能。

首先,您需要在 main.cpp(您开始的位置)中将 #include#include 交换您的应用程序)

main(int,char**){

中将 QCoreApplication a(argc, argv);QApplication a(argc, argv);< /code>

在 QApplication 和 return a.exec 之间,你有你的小部件和其他 gui 相关的东西

,最后你使用 return a.exec();}

I found that you can do it with a Qt Console project, but ofcourse it will not have the functionality of a console program when you are done with my edits.

First of all you need to exchange #include <QtCoreApplication> with #include <QApplication> in your main.cpp (where you start your application)

In the main(int,char**){

exchange QCoreApplication a(argc, argv); with QApplication a(argc, argv);

and in between QApplication and return a.exec you have your widget and other gui related stuff

and in the end you use return a.exec();}

栖迟 2024-11-04 11:31:10

我想我找到了问题所在。

由于我使用的是 Qt Creator,并且在创建新项目时,我选择了 Qt Console Application 而不是 Qt Gui Application

I think I found where the issue is.

Since I'm using Qt Creator, and when creating a new project, I was choosing Qt Console Application instead of Qt Gui Application.

谈场末日恋爱 2024-11-04 11:31:10

当您的应用程序不是 QApplication 实例时,会发生“QWidget:未使用 GUI 时无法创建 QWidget”。
来自 Qt 文档

QApplication 专门提供了一些功能的 QGuiApplication
基于 QWidget 的应用程序需要。它处理特定于小部件的
初始化、终结并提供会话管理。

对于任何使用 Qt 的 GUI 应用程序,都只有一个 QApplication
对象,无论应用程序是否有 0、1、2 个或更多窗口
在任何给定时间。对于非基于 QWidget 的 Qt 应用程序,请使用
相反,QGuiApplication,因为它不依赖于 QtWidgets
图书馆。

"QWidget: Cannot create a QWidget when no GUI is being used" happens when you application isn't QApplication instance.
From Qt docs:

QApplication specializes QGuiApplication with some functionality
needed for QWidget-based applications. It handles widget specific
initialization, finalization, and provides session management.

For any GUI application using Qt, there is precisely one QApplication
object, no matter whether the application has 0, 1, 2 or more windows
at any given time. For non-QWidget based Qt applications, use
QGuiApplication instead, as it does not depend on the QtWidgets
library.

甜味超标? 2024-11-04 11:31:10

从文档中,
QApplication 类管理 GUI 应用程序的控制流和主要设置,同时
QCoreApplication 类为控制台 Qt 应用程序提供事件循环

我遇到了同样的问题,默认的 QT 控制台应用程序使用 QCoreApplication 而不是 QApplication 来运行应用程序。

这是我为使其工作所做的事情

#include <QApplication>

int main(int argc, char *argv[])
{
    QApplication a(argc, argv);

    QWidget widget;

    widget.show();

    return a.exec();
}

并且我没有更改项目文件中的任何内容

QT       += core

QT       += gui

TARGET = Layouts
CONFIG   += gui
CONFIG   -= app_bundle

TEMPLATE = app


SOURCES += main.cpp

From the docs,
the QApplication class manages the GUI application's control flow and main settings whilst
the QCoreApplication class provides an event loop for console Qt applications

I had the same problem, the default QT Console App uses the QCoreApplication instead of the QApplication to run the application.

Here is what i did to make it work

#include <QApplication>

int main(int argc, char *argv[])
{
    QApplication a(argc, argv);

    QWidget widget;

    widget.show();

    return a.exec();
}

And i did not change anything in my project file

QT       += core

QT       += gui

TARGET = Layouts
CONFIG   += gui
CONFIG   -= app_bundle

TEMPLATE = app


SOURCES += main.cpp
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文