i am writing a program, that should show an image in QLabel in a QWidget. The images are sent from the server. First, I have a thread that is responsible for the connection and receiving data from the server. When the data is received, the socket thread sends a signal gotNewData(Imagedata), that is connected to the QWidget updateImage(Imagedata) slot. In the updateImage(Imagedata) slot I convert the image data, which I get from the server into QImage, scale image and create QPixmap, that I set to the QLabel. My problem is, during the processing updateImage(Imagedata) function the socket gets other packages with new images and sends the signal to the QWidget again and again. It's logical, because the socket thread doesn't care if the function updateImage(Imagedata), that was invoked by the previous signal call, has finished already or not. My question is: is there some techniques, how I can synchronize my socket thread with QWidget updateImage(Imagedata) function?
| |||
|
feedback
|
|
There definitely are. Question is what exactly do you want to achieve in case that new image is recieved while old one is still processed. If you want to skip new one and process old till the end, I would reccomend calling blockSignals on sending object - that destroys the caller and calle spearation, but qt doesn't seem to allow to block recieving signals, just sending. Modification that wouldn't affect perfomance much, and would not confuse other comunication networking thred might get done, would be to create proxy QObject in widget containing the label, then using moveToThread() to move it to networking thread, and use blockSignals on this object. Naturally this object needs a signal of equal signature as actual signal being sent. Created object, while with different thread affinity, would logically remain owned by GUI widget, and should be deleted by it. Another approach is to create bool variable You might be tempted to use | |||||
feedback
|