qt and memory usage
-
wrote on 1 Dec 2015, 21:52 last edited by
Hi and hello,
i program an application showing different diagrams coming from one set of data. I put the diagrams on QLabel pixmap and put the labels on different tabs on a QTabWidget. All arranged with QT's layout system.
After opening the data file, the first tab with text information is shown. If i switch to the first diagram tab, the program uses 3MB more memory, if i go to the next diagram tab, the memory usage increases. But all diagrams created at read time of the data file. Why does the program consumes more memory by showing the diagrams?
If I load a different file, all tabs are destroyed but finally after showing all diagrams the application consumes more memory than ever before. Means, after open 100 files, the memory is completely used by my application.
Where can i look for the reason?Thanks
Erni24 -
Hi,
You should first check how you are creating the pixmaps, then if you are properly releasing the memory you might have allocated.
Depending on the OS you are running, you can use Valgrind to help you check your memory usage.
1/2