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:
- heavy C++ usage to deal with networking and low-level optimization
- dynamically generate contents (like what Flipboard app did)
- completely customized GUI
and I found Qt Quick has the following shortcomings:
- integrating with C++ is not very easy now
- it is hard to express complex logic
- 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?