How do you get the size of the QML ApplicationWindow in C++?
QQmlApplicationEngine engine;
engine.load(QUrl(QStringLiteral("qrc:/main.qml")));
if (engine.rootObjects().isEmpty())
return -1;
QObject *application_object = engine.rootObjects().first();
// Throws ApplicationWindow_QMLTYPE_11::height(int), no such signal
QObject::connect(application_object, SIGNAL(height(int)), &my_obj_here, SLOT(set_game_height(int)));
QObject::connect(application_object, SIGNAL(width(int)), &my_obj_here, SLOT(set_game_width(int)));
return app.exec();
I realize that I'm also not getting the size of the contents of the ApplicationWindow (minus the toolbar, menubar etc), but how do I get access to that?
Trying to access the window
property on the window_object
using the property
method returns a null pointer.
One possible solution is to use
QQmlProperty
to obtain theQQuickItem
, then connect with the signalsheightChanged
andwidthChanged
, these signals only notify that the property has changed but it does not indicate the value, so you must use the methodheight()
andwidth()
.Another solution is to make the connection on the
QML
side, for this you must create theq-property
:main.cpp
main.qml