- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我目前正在尝试将 QML 信号连接到 C++ 插槽,但未成功。
我刚刚看了几个其他的例子,但我想我不明白如何获取 qml 文档的根对象...
我的问题是,信号似乎是从 qml 文件发送的,但没有在 cpp 文件中接收到。执行此代码时没有错误。
//Counter.h
#ifndef COUNTER_H
#define COUNTER_H
#include <QObject>
class Counter : public QObject
{
Q_OBJECT
private:
int counter;
public:
explicit Counter(QObject *parent = 0);
signals:
void counterHasChanged(int);
public slots:
void click();
};
#endif // COUNTER_H
//counter.cpp
#include "counter.h"
#include <QDebug>
Counter::Counter(QObject *parent) :
QObject(parent)
{
this->counter = 0;
qDebug() << "Class Counter created";
}
void Counter::click() {
this->counter++;
qDebug() << "clickRegistered() - emit counterHasChanged()";
emit counterHasChanged(counter);
}
//main.cpp
#include <QtGui/QGuiApplication>
#include "qtquick2applicationviewer.h"
#include "counter.h"
#include <QObject>
#include <QtQuick>
#include <QDebug>
#include <QQuickItem>
#include <QQmlContext>
#include <QtCore>
int main(int argc, char *argv[])
{
QGuiApplication app(argc, argv);
QtQuick2ApplicationViewer viewer;
viewer.setMainQmlFile(QStringLiteral("qml/StatesTest2/main.qml"));
viewer.showExpanded();
QQuickView view;
view.setSource(QUrl::fromLocalFile("qml/StatesTest2/main.qml"));
QObject *item = view.rootObject();
Counter counter;
QObject::connect(item, SIGNAL(click()), &counter, SLOT(click()));
return app.exec();
}
//main.qml
import QtQuick 2.0
Rectangle {
id: root
width: 360
height: 360
signal click
Text {
text: qsTr("Hello World")
anchors.centerIn: parent
}
MouseArea {
anchors.fill: parent
onClicked: {
root.click
console.log("click() qml")
}
}
Text {
text: "clicks: "
x: 30
y: 250
}
Text {
id: counter
text: "0"
x: 75
y: 250
}
}
我知道有很多这样的话题..出于某种原因,没有其他解决方案对我有用..也许我应该改变我的 IDE :D
最佳答案
我建议您将计数器添加为上下文属性。这需要进行以下更改。
//Counter.h
#ifndef COUNTER_H
#define COUNTER_H
#include <QObject>
class Counter : public QObject
{
Q_OBJECT
private:
int counter;
public:
explicit Counter(QObject *parent = 0);
signals:
void counterHasChanged(int Value);
public slots:
void click();
};
#endif // COUNTER_H
Counter.cpp 文件
//counter.cpp
#include "counter.h"
#include <QDebug>
Counter::Counter(QObject *parent) :
QObject(parent)
{
this->counter = 0;
qDebug() << "Class Counter created";
}
void Counter::click() {
this->counter++;
qDebug() << "clickRegistered() - emit counterHasChanged()";
emit counterHasChanged(counter);
}
main.cpp文件
//main.cpp
#include <QtGui/QGuiApplication>
#include "qtquick2applicationviewer.h"
#include "counter.h"
#include <QObject>
#include <QtQuick>
#include <QDebug>
#include <QQuickItem>
#include <QQmlContext>
#include <QtCore>
int main(int argc, char *argv[])
{
QGuiApplication app(argc, argv);
Counter counter;
QtQuick2ApplicationViewer viewer;
viewer.rootContext()->setContextProperty("counterObj",&counter);
viewer.setMainQmlFile(QStringLiteral("qml/SO_QMLCPPCommunication/main.qml"));
viewer.showExpanded();
return app.exec();
}
并且在qml文件中,可以通过引用counterObj来访问Counter对象的slot。
//main.qml
import QtQuick 2.0
Rectangle {
id: root
width: 360
height: 360
signal click
Text {
text: qsTr("Hello World")
anchors.centerIn: parent
}
MouseArea {
anchors.fill: parent
onClicked: {
counterObj.click()
console.log("click() qml")
}
}
Text {
text: "clicks: "
x: 30
y: 250
}
Text {
id: counter
text: "0"
x: 75
y: 250
}
Connections
{
id:cppConnection
target:counterObj
ignoreUnknownSignals : true
onCounterHasChanged:{
//To access signal parameter,please name the parameter.
console.debug("Counter value changed")
counter.text = Value
}
}
}
关于c++ - Qt 信号和插槽 - 没有任何反应,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22605257/
我正在尝试将高斯模糊添加到场景中。我正在使用此GLSL着色器:。当您提供图像作为tDiffuse纹理时,它对图像起作用,但我正在尝试将其添加为后处理效果。我试图获取摄影机的renderTarget并将
我正在做一款天气应用程序,到目前为止还不错。现在,我想通过单击按钮来呈现一些额外的信息。我有一个5天的预报,然后想显示每一天的信息。我已经成功地过滤了数据,但无法获得要渲染的数据地图。以下是我的一些代
我正在做一款天气应用程序,到目前为止还不错。现在,我想通过单击按钮来呈现一些额外的信息。我有一个5天的预报,然后想显示每一天的信息。我已经成功地过滤了数据,但无法获得要渲染的数据地图。以下是我的一些代
我在全球安装了Create Reaction应用程序。然后我就跑了。NPX创建-反应-应用JSX。它安装了大约1460个包的所有包,但没有设置Public和src文件夹。在我的JSX文件夹中,只有1:
我是一名优秀的程序员,十分优秀!