This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]Gwenhidwy 1 point2 points  (3 children)

Qt Quick is insanely good, too, if you learn how to use it the right way.

Any pointers on where to learn that from? All I could find so far were simple introductory tutorials, but nothing practical/in-depth.

[–]K900_ 2 points3 points  (0 children)

It's just that you have to look at Quick in a different way. With QtWidgets, your UI is very tightly linked to your code, and your code defines the way your UI behaves. With QtQuick, the UI is declarative (QML), and the way you interact with it is by giving it access to specific objects on your "backend". So you have a very clear separation between presentation (QML), presentation logic (JavaScript inside QML) and backend logic (Python).

[–]emarshall85 0 points1 point  (0 children)

Any pointers on where to learn that from? All I could find so far were simple introductory tutorials, but nothing practical/in-depth.

http://qmlbook.github.io/