我有一個Qt Quick項目,我只是添加了一些源文件。當試圖建立我得到的錯誤信息:庫需要QApplication。如何在Qt Quick項目中使用QApplication?
QWidget: Cannot create a QWidget without QApplication
因爲我有一個Qt Quick的項目中,我使用QGuiApplication。 QApplication是QGuiApplication的一個子類。我如何使QApplication可用於新添加的源代碼?或者當一個人擁有Qt Quick和QWidget時,如何解決這個問題?
源文件是顯示圖形的QCustomPlot庫。
編輯:
main.cpp中:
int main(int argc, char *argv[])
{
QGuiApplication app(argc, argv);
QtQuick2ApplicationViewer viewer;
//Register C++ classes with QML
qmlRegisterType<Bluetooth>("Bluetooth", 1, 0, "Bluetooth");
//Set start QML file
viewer.setMainQmlFile(QStringLiteral("qml/test/main.qml"));
//New Code:
// generate some data:
QWidget widget;
QCustomPlot * customPlot = new QCustomPlot(&widget);
QVector<double> x(101), y(101); // initialize with entries 0..100
for (int i=0; i<101; ++i)
{
x[i] = i/50.0 - 1; // x goes from -1 to 1
y[i] = x[i]*x[i]; // let's plot a quadratic function
}
// create graph and assign data to it:
customPlot->addGraph();
customPlot->graph(0)->setData(x, y);
// give the axes some labels:
customPlot->xAxis->setLabel("x");
customPlot->yAxis->setLabel("y");
// set axes ranges, so we see all data:
customPlot->xAxis->setRange(-1, 1);
customPlot->yAxis->setRange(0, 1);
customPlot->replot();
//New Code End
//Show GUI
viewer.showExpanded();
return app.exec();
}
錯誤:
QML debugging is enabled. Only use this in a safe environment.
QWidget: Cannot create a QWidget without QApplication
Invalid parameter passed to C runtime function.
Invalid parameter passed to C runtime function.
你必須在創建任何QWidgets之前創建QApplication的實例。 – drescherjm
@drescherjm:我可以在main()中同時使用QApplication和QGuiApplication循環嗎? – Phat
不是。我的意思是在任何QWidgets之前創建您的QGuiApplication實例。 – drescherjm