Qt 6.11 is out! See what's new in the release
blog
Porting Qt-based UI to QML
QML and Qt Quick
4
Posts
3
Posters
2.8k
Views
1
Watching
-
Actually, I think rewrite it in QML would be much easier and more elegance than wrap your QStackedWidget into QML (with z-index, x, y and some animation element...)
Besides, in Qt5, I think the performance would be better, too. -
This is true. The closest you can get to re-using widget code is to port your QWidget into QQuickPaintedItem. This will at least allow you to re-use your qpainter drawing code. We are working on making it possible to embed qtquick 2 inside QWidget. This would make it possible to at least partially make use of qt quick in your application. This is will happen in 5.1 earliest.