最近做一个clips 做业务处理,C++ 做显示的项目,一些积累的东西和大家分享
C++ 数据传递到QML
1.C ++ 部分
qmlRegisterUncreatableType() //函数定义qml的import
QQmlApplicationEngine rootContext()->setContextProperty() //传递数据类
emit setdata () //自定义 数据传递的 槽函数 (后面给出例子)
2.QML 部分
import xx 1.0 //improt 类
Connections {
target: da; //数据类
onAnaly_test:m_Score = score.toFixed(2); // c++ 槽函数 (后面会给出具体的例子)
}
C++ 与Clips 数据交互