Re: Qt GUI Performance Help!
I also have the similar kind of issue on an arm processor. The problem seems to be more prominent with some specific widgets like tab widget. Were you able to resolve it? Please help.
Re: Qt GUI Performance Help!
one way to speed up the application is to make two applications, one server and other client. As we know that at least one Qt application in emd. linux needs to be the QWS server. If you have only single application that also acts as a server which sometimes does not help if your own app is doing too much computation.
so just make a dummy server and lauch your application as normal client. But this does not guaranty the optimal speed but it will do some speed up.
as for your second question, yes you can shrink the size of the qt libraries but commenting out the unnecessary classes that you do not need. use the qconfig tool
Re: Qt GUI Performance Help!
Splitting up the application in two parts is not going to help much, I believe. Even a simple gui application without any computations, is responding very slow on clicks and the painting is slow as well. This becomes more prominent if number of widgets are more.
Re: Qt GUI Performance Help!
Have anybody here solved the problem? I have the same issue too and don't know how to improve it.