QQuickWidget和C ++交互

时间:2014-05-28 13:13:27

标签: c++ qt qquickwidget

我正在体验新的QQuickWidget。如何在QQuickWidget和C ++之间进行交互?

C ++

QQuickWidget *view = new QQuickWidget();
view->setSource(QUrl::fromLocalFile("myqml.qml"));
view->setProperty("test", 0);

myLayout->addWidget(view);

QML

import QtQuick 2.1

Rectangle {
    id: mainWindow
    width: parent.width
    height: parent.height

    Text {
        id: text
        width: mainWindow.width
        font.pixelSize: 20
        horizontalAlignment: Text.AlignHCenter
        verticalAlignment: Text.AlignVCenter
        text: test
    }
}

text: test不起作用:ReferenceError: test is not defined

如何通过C ++为我的QML文件提供一些属性?

是否也可以在C ++中获取Text对象并更新其文本?

1 个答案:

答案 0 :(得分:3)

试一试:

view->rootContext()->setContextProperty("test", "some random text");

而不是

view->setProperty("test", 0);
如果对象的属性name定义为Q_PROPERTY,则

setProperty(name, val)有效。

可以将QObject派生的对象作为视图的上下文属性传递:

class Controller : public QObject
{
    Q_OBJECT
    QString m_test;

public:
    explicit Controller(QObject *parent = 0);

    Q_PROPERTY(QString test READ test WRITE setTest NOTIFY testChanged)

    QDate test() const
    {
        return m_test;
    }

signals:

    void testChanged(QString arg);

public slots:

    void setTest(QDate arg)
    {
        if (m_test != arg) {
            m_test = arg;
            emit testChanged(arg);
        }
    }
};

Controller c;
view->rootContext()->setContextProperty("controller", &c);

Text {
        id: text
        width: mainWindow.width
        font.pixelSize: 20
        horizontalAlignment: Text.AlignHCenter
        verticalAlignment: Text.AlignVCenter
        text: controller.test
    }
  

是否也可以在C ++中获取Text对象并更新其文本?

一般情况下,best approach - c++代码如果遵循模型视图模式,则不应该知道演示文稿。

然而,如here所描述的那样。