2.如何在QML中调用C++的方法并接收C++的信号
1个回答
展开全部
在QML中调用c++方法并接收信号
继续上一篇的内容使用C++创建新的QML类型,接下来我们在PieChart 这个类中添加一个函数"clearChart()" 和一个信号"chartCleared",这样在app.qml中就可以像下面一样调用这个函数,并接收这个信号了:
import Charts 1.0
import QtQuick 1.0
Item {
width: 300; height: 200
PieChart {
id: aPieChart
anchors.centerIn: parent
width: 100; height: 100
color: "red"
onChartCleared: console.log("The chart has been cleared")
}
MouseArea {
anchors.fill: parent
onClicked: aPieChart.clearChart()
}
Text {
anchors { bottom: parent.bottom; horizontalCenter: parent.horizontalCenter; bottomMargin: 20 }
text: "Click anywhere to clear the chart"
}
}
File:SimpleChart2.png
为c++类添加被调用的方法和信号
下面我们就来看一下在C++的类中我们具体应该怎么做:
class PieChart : public QDeclarativeItem
{
...
public:
...
Q_INVOKABLE void clearChart();
signals:
void chartCleared();
...
};
继续上一篇的内容使用C++创建新的QML类型,接下来我们在PieChart 这个类中添加一个函数"clearChart()" 和一个信号"chartCleared",这样在app.qml中就可以像下面一样调用这个函数,并接收这个信号了:
import Charts 1.0
import QtQuick 1.0
Item {
width: 300; height: 200
PieChart {
id: aPieChart
anchors.centerIn: parent
width: 100; height: 100
color: "red"
onChartCleared: console.log("The chart has been cleared")
}
MouseArea {
anchors.fill: parent
onClicked: aPieChart.clearChart()
}
Text {
anchors { bottom: parent.bottom; horizontalCenter: parent.horizontalCenter; bottomMargin: 20 }
text: "Click anywhere to clear the chart"
}
}
File:SimpleChart2.png
为c++类添加被调用的方法和信号
下面我们就来看一下在C++的类中我们具体应该怎么做:
class PieChart : public QDeclarativeItem
{
...
public:
...
Q_INVOKABLE void clearChart();
signals:
void chartCleared();
...
};
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询