I'm planning to write a program that is especially designed for tablets, the main platform is MeeGo (because I'm taking a contest).

Edited:

My program has following needs:

  1. heavy C++ usage to deal with networking and low-level optimization
  2. dynamically generate contents (like what Flipboard app did)
  3. completely customized GUI

and I found Qt Quick has the following shortcomings:

  1. integrating with C++ is not very easy now
  2. it is hard to express complex logic
  3. sometimes very slow. For example, when showing a list of resized images, it will be rather slow because of resizing same images again and agian. It's not Qt Quick's fault, but it's very difficult to be fixed.

So can Qt Quick meet my needs?

link|improve this question

Which were the important components that Qt lacks again? – Armen Tsirunyan Jun 26 '11 at 13:16
I have edited my question, hoping it's better now. – fool Jun 26 '11 at 13:54
feedback

closed as not constructive by Armen Tsirunyan, Mat, sixlettervariables, jonsca, Bo Persson Jun 26 '11 at 19:00

This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ for guidance on how to improve it.

2 Answers

up vote 0 down vote accepted

I don't have specific expertise in QtQuick, though I was evaluating it for our app last year. It's come on a long way since then and in particular it's much easier to embed QtQuick widgets within a native app or native widgets within a QtQuick app. Whether it's worth adopting will depend on the requirements of your app -- if it's a very GUI-rich app with clean encapsulations to the underlying logic then it may be worthwhile. If the UI is closely coupled to the program logic then maybe a native app is better, perhaps using QtQuick components for the more dynamic parts of the interface.

I would suggest building a simple prototype to see if it does meet your requirements before making the final decision either way.

link|improve this answer
feedback

You have a prefect question to ask. QtQuick was originally developed for Qt on mobile devices, and now Qt devs are bringing it to the desktop also. The process is not yet complete however with Qt5 (lets hope), QtQuick will be, de jure, used to write Qt GUI.

link|improve this answer
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.