It's a Very Bad Idea(tm). All widgets belong to the GUI thread and it's very jealous about it.
You can use QTimer to poll the threads or you can make threads send signals/event when data changes. Everything depends on the number of updates per second. If thread will send more than 25 signals per second the polling aproach might be more efficient. On other hand threads can send only changed data, while with polling approach you will have to check all the data.





Reply With Quote
Bookmarks