Qt 6.11 is out! See what's new in the release
blog
How to connect to MouseArea clicked() signal from C++
-
I can connect to the clicked signal of the QML Button type like this:
QObject::connect(button, SIGNAL(clicked()), this, SLOT(on_clicked()));How do I connect to the clicked(mouse) signal of the QML MouseArea type?
-
Sorry that I did not repeat the entire title in the question.
Hereby I do that: How do I connect to the clicked(mouse) signal of the QML MouseArea type in C++?