What to choose: QML or Widgets?
-
Hello.
It would be a small project, simple CAD editor with settings and interface components.
What is better to use for this: QML or Widgets? Is it real to create CAD component (something like very simple QCad) with QML, or integrate widget into QML window or it is better to use only widgets for this purposes?
I have widgets using expirence and some expirence with QML, but it would be interesting for me to learn QML deeper. -
Hi
Is it a hybrid app for both mobile and Desktop ? -
@mrjj for now it would be a desktop app only
-
@mrjj for now it would be a desktop app only
Well if potentially you would use it on mobile, QML might not be a bad fit.
Also will the APP require OpenGL/accelerated graphics ?
If yes, another reason for QML.That said a very technical non animated cad app would also work great with widgets.
-
Hello.
It would be a small project, simple CAD editor with settings and interface components.
What is better to use for this: QML or Widgets? Is it real to create CAD component (something like very simple QCad) with QML, or integrate widget into QML window or it is better to use only widgets for this purposes?
I have widgets using expirence and some expirence with QML, but it would be interesting for me to learn QML deeper.General speaking, they are equivalent.
That said, there are some differences:
- Do you have a separated designer / design team ?
- Do you use 3D stuff
- Do you have lots of animations
- Do you plan do use it on mobile
if one or more of those points are true, I would suggest using QML. Because its generally easier/less time consuming with QML