QEventLoop: Cannot be used without QApplication

我与影子孤独终老i 提交于 2019-12-01 04:56:48

问题


I'm trying to validate an xml file against a specific schema.
So I'm loading the schema into the QXmlSchema object. But I get some strange errors.
My code looks like:

int main() {

QUrl url("http://www.schema-example.org/myschema.xsd");

QXmlSchema schema;
if (schema.load(url) == true)
    qDebug() << "schema is valid";
else
    qDebug() << "schema is invalid";

return 1;
}

When I try to run the above piece of code, Qt errors out saying:

QEventLoop: Cannot be used without QApplication
QDBusConnection: system D_Bus connection created before QCoreApplication.
Application may misbehave.
QEventLoop: Cannot be used without QApplication

My Qt Designer version: qt4-designer 4:4.8.1-0ubuntu4.1
My Qt Creator version : qtcreator 2.4.1-0ubuntu2

Could someone please help me to solve this problem.
Thanks


回答1:


QXmlSchema creates, among other things, a message handler which inherits from QObject. Since this message handler will be using Qt's event system, an event loop (the structure which handles queueing and routing of events) is required. As the error messages tell you, the main event loop is created along with your QApplication.

If you're creating a GUI application generally you should have a small amount of code in your main() function, something like:

int main(int argc, char *argv[])
{
  QApplication a(argc, argv);
  MainWindow w;
  w.show();

  return a.exec();
}

Start your code off in, say, the constructor of MainWindow:

MainWindow::MainWindow(QWidget *parent) :
  QMainWindow(parent),
  ui(new Ui::MainWindow)
{
  ui->setupUi(this);

  QUrl url("http://www.schema-example.org/myschema.xsd");

  QXmlSchema schema;
  if (schema.load(url) == true)
    qDebug() << "schema is valid";
  else
    qDebug() << "schema is invalid";
}


来源:https://stackoverflow.com/questions/10697107/qeventloop-cannot-be-used-without-qapplication

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!