Earlier quoted context omitted.
>QML which is a godsend to make modern UIs What advantages does QML provide over using "just the Qt library from C++"? Faster development? I've used an earlier version of Qt (3 or 4) a bit, but never tried QML.
If you are familiar with modern web development, think of Vue.js or React's reactive bindings but as part of the language syntax. See https://qmlbook.github.io/en/ch04/index.html#qml-syntax e.g. when in "C++ Qt" you'd do : connect(m_button, SIGNAL(clicked()), m_object, SLOT(on_clicked())); or more recently connect(m_button, &QPushButton::clicked, m_object, &MyObj::on_clicked); or even connect(m_button, &QPushButton::…
Yes, the QML code does seem a lot simpler/shorter. Thanks.