Qt:如何在 C++ 端而不是 QML 上监视 Q_PROPERTY 更改
Posted
技术标签:
【中文标题】Qt:如何在 C++ 端而不是 QML 上监视 Q_PROPERTY 更改【英文标题】:Qt : How to monitor a Q_PROPERTY change on C++ side instead of QML 【发布时间】:2018-02-15 17:28:18 【问题描述】:我使用的是 Qt 5.9.3。我在我的应用程序的 main.qml
代码:
//main.qml
MyQuickItem
property color nextColor
onNextColorChanged:
console.log("The next color will be: " + nextColor.toString())
// MyQuickItem.h
class MyQuickItem : public QQuickItem
问题:
如何在 C++ 端定义onNextColorChanged
?
我知道我也可以将 nextColor
作为 C++ 类 MyQuickItem
中的属性。像这样
// MyQuickItem.h
class MyQuickItem : public QQuickItem
Q_PROPERTY(QColor nextColor READ nextColor WRITE setNextColor NOTIFY nextColorChanged)
是否可以在MyQuickItem
内监控OnNextColorChanged
?
【问题讨论】:
这有帮助吗? ***.com/questions/48813037/… 只需将某个插槽连接到nextColorChanged
内的MyQuickItem
信号。
【参考方案1】:
我们可以使用QMetaObject来获取属性和信号,然后我们通过旧的方式连接起来:
#ifndef MYQUICKITEM_H
#define MYQUICKITEM_H
#include <QQuickItem>
#include <QDebug>
class MyQuickItem : public QQuickItem
Q_OBJECT
public:
MyQuickItem(QQuickItem *parent = Q_NULLPTR): QQuickItem(parent)
protected:
void componentComplete()
int index =metaObject()->indexOfProperty("nextColor");
const QMetaProperty property = metaObject()->property(index);
if (property.hasNotifySignal())
const QMetaMethod s = property.notifySignal();
QString sig = QString("2%1").arg(QString(s.methodSignature()));
connect(this, sig.toStdString().c_str() , this, SLOT(onNextColorChanged()));
private slots:
void onNextColorChanged()
int index =metaObject()->indexOfProperty("nextColor");
const QMetaProperty property = metaObject()->property(index);
qDebug()<<"color" << property.read(this);
;
#endif // MYQUICKITEM_H
完整的例子可以在下面的link找到。
【讨论】:
以上是关于Qt:如何在 C++ 端而不是 QML 上监视 Q_PROPERTY 更改的主要内容,如果未能解决你的问题,请参考以下文章
如何在Qt C++中解析JSON数据并使之被QML应用 / 蓝讯
在没有 Q_PROPERTY 定义的情况下从 C++ 访问 QML 对象的属性