Connecting Qt signal to QML function
This snippet shows how to connect signals and slots between Qt and QML code. Signals and slots are one way to provide data for the Qt Quick UI and make the UI react to changes in the model.
Article Metadata
Tested with
Devices(s): Nokia N900
Compatibility
Platform(s): S60 5th Edition
Maemo
Maemo
Dependencies: Qt 4.7 and later
Article
Keywords: QDeclarativeView, SIGNAL, SLOT
Created: kratsan
(16 Jun 2010)
Last edited: hamishwillee
(18 Oct 2012)
Contents |
Preconditions
- Qt 4.7 or higher is installed on your platform.
Qt Project File
#To make sure we use declarative
QT += declarative
#To get files deployed on device / emulator
files.sources += ui.qml
DEPLOYMENT += files
Source
NOTE: The parameter type in signal and slot is QVariant on the C++ side, as the functions in QML are JavaScript and they have no type.
myclass.h
main.cpp
#include <QApplication>
#include <QGraphicsObject>
#include <QDeclarativeView>
#include <myclass.h>
int main(int argc, char *argv[])
{
QApplication app(argc, argv);
MyClass myClass;
QDeclarativeView view;
view.setSource(QUrl("./ui.qml"));
view.setResizeMode(QDeclarativeView::SizeRootObjectToView);
QObject *rootObject = dynamic_cast<QObject*>(view.rootObject());
QObject::connect(rootObject, SIGNAL(dataRequired()), &myClass, SLOT(getData()));
QObject::connect(&myClass, SIGNAL(data(QVariant)), rootObject, SLOT(updateData(QVariant)));
#if defined(Q_WS_MAEMO_5)
view.setGeometry(QRect(0,0,800,480));
view.showFullScreen();
#elif defined(Q_WS_S60)
view.setGeometry(QRect(0,0,640,360));
view.showFullScreen();
#else
view.setGeometry(QRect(100,100,800, 480));
view.show();
#endif
return app.exec();
}
ui.qml
// ui.qml
import Qt 4.7
Rectangle {
signal dataRequired;
function updateData(text) { dataText.text = text } // slot
anchors.fill: parent; color: "black"
Text {
id: dataText
anchors.centerIn: parent; color: "white"
}
MouseArea {
anchors.fill: parent
onClicked: dataRequired()
}
}
Postconditions
The signals and slots in both Qt and QML are connected to each other: when rootObject's dataRequired is signalled, myClass's getData gets called. Also, when myClass data is signalled, rootObject's updateData is called.


qobject_cast vs dynamic_cast
Isn't it better to use qobject_cast instead?
Useryy2 - What if I also want to set "MyClass " as a QML extension?
What if I also want to set "MyClass " as a QML extension?
In that way, I will also declare view.rootContext()->setContextProperty("myclass", new MyClass );
Then there is 2 MyClass instances. Are they the same?useryy2 10:50, 24 June 2011 (EEST)
Iandamecsican - "MyClass" as a QML Extension
I've tested "MyClass" as a QML extension and it seems that the declarative engine does not recognize the qml slot coneccted to qt emitted signalIandamecsican 19:11, 22 July 2011 (EEST)
Rferrazz - Thanks
Very useful!rferrazz 00:16, 14 January 2012 (EET)