When I should use QGraphicsView and When QtQuick is a better choice?
Which is better choice if I want high performance application with highly customized widgets (visual of widgets and its behaviors)?
😕
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
For high performances, you should use Qt and C++ instead of QML and JavaScript. So let’s use a
QGraphicsViewin this case.However, creating a widget is much more easier and faster with QML than QtWidget. It may be great for making prototypes or for interfaces which are made by designers. QML is a convinient solution if you do not need high performances. You can also have a look at this article to improve the QML performances in your program