2014-01-08 112 views
5

我有一個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. 
+0

你必須在創建任何QWidgets之前創建QApplication的實例。 – drescherjm

+0

@drescherjm:我可以在main()中同時使用QApplication和QGuiApplication循環嗎? – Phat

+0

不是。我的意思是在任何QWidgets之前創建您的QGuiApplication實例。 – drescherjm

回答

4

的關鍵概念是QWidget::createWindowContainer()。試試下面的代碼:

#include <QQuickView> 


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

    QQuickView *view = new QQuickView(); 
    QWidget *container = QWidget::createWindowContainer(view, this); 
    container->setMinimumSize(200, 200); 
    container->setMaximumSize(200, 200); 
    container->setFocusPolicy(Qt::TabFocus); 
    view->setSource(QUrl("qml/test/main.qml")); 
    ... 
} 

您可以找到以下職位的詳細信息:

Introducing QWidget::createWindowContainer()

Combining Qt Widgets and QML with QWidget::createWindowContainer()

+0

謝謝,這看起來很有希望。我還沒有測試過,但這正是我所期待的。我還閱讀了您提供的其中一個鏈接,這在Android上無效。我沒有在我的問題中指出這一點,但Android是我正在開發的平臺之一。從我所讀的內容來看,這是不可能的,因爲在Android上,僅限於一個OpenGL表面(至少在Qt 5.1上,不知道它是否固定在Qt 5.2中)。如果您對如何解決問題有任何建議,請隨時對此發表評論。我會試着去看看它是否有效(穿過手指和腳趾) – Phat