Qt5のドキュメントによると、 qtスロットを含むメソッドの公開 QObjectを継承するC++クラスのすべてのパブリックスロットは、QMLからアクセス可能です。
C++
class MyClass : public QObject
{
Q_OBJECT
public slots:
void doStuffFromQmlSlot()
{
qDebug() << Q_FUNC_INFO;
}
public:
MyClass()
{
qDebug() << Q_FUNC_INFO;
}
};
mymain.cppの内容:
MyClass myClass;
QQmlEngine engine;
engine.rootContext()->setContextProperty( "myclass", &myClass );
QQmlComponent component( &engine, QUrl::fromLocalFile("qml/qtquick-01/main.qml") );
component.create();
QML
import QtQuick 2.0
Rectangle {
width: 360
height: 360
Text {
text: qsTr("Hello World")
anchors.centerIn: parent
}
MouseArea {
anchors.fill: parent
onClicked: {
myclass.doStuffFromQmlSlot();
Qt.quit();
}
}
}
実際、QtCreatorは公開されたmyclassオブジェクトをQMLに認識しているようです。クラス名(myclass)とパブリックスロットdoStuffFromQmlSlot()の両方の自動補完を有効にしているためです。アプリケーションを実行すると、残念ながら次のエラーが発生しました。
ReferenceError:myclassは定義されていません
私が間違っていることの手がかりはありますか?
Qmlファイルを再利用して、QtCreatorで新しいプロジェクトを開始しました。
アプリケーションを正常にコンパイルして使用するために使用したファイルを以下から見つけてください。
プロジェクトファイル:test.pro
# The .cpp file which was generated for your project. Feel free to hack it.
SOURCES += main.cpp
# Please do not modify the following two lines. Required for deployment.
include(qtquick2applicationviewer/qtquick2applicationviewer.pri)
qtcAddDeployment()
HEADERS += myclass.h
myclass.h:
#include <QObject>
#include <qdebug.h>
class MyClass : public QObject
{
Q_OBJECT
public slots:
void doStuffFromQmlSlot()
{
qDebug() << Q_FUNC_INFO;
}
public:
MyClass()
{
qDebug() << Q_FUNC_INFO;
}
};
main.cpp:
#include <QtGui/QGuiApplication>
#include "qtquick2applicationviewer.h"
#include <QQmlContext>
#include "myclass.h"
int main(int argc, char *argv[])
{
QGuiApplication app(argc, argv);
MyClass myClass;
QtQuick2ApplicationViewer viewer;
viewer.rootContext()->setContextProperty("myclass", &myClass);
viewer.setMainQmlFile(QStringLiteral("qml/main.qml"));
viewer.showExpanded();
return app.exec();
}
qml/main.qml質問で提供されたスニペットそのもの
qtCreatorを使用してプロジェクトを開始すると、qtquick2applicationviewer /フォルダーも使用できる状態になります。次に、qmake && make && ./test
がアプリケーションを起動します。テキスト要素をクリックすると、以下が表示されます。
MyClass::MyClass()
void MyClass::doStuffFromQmlSlot()