How to pass changing/updating data to another pop-up window?
问题 I got the following code for Python GUI. I found I cannot update the data running in the main window to the pop-up window. In this example I use some random data to mimic the video frames and use a timer to update the data (the updateData() funciton). I want to see the green curve in the pop-up window changes... But I cannot find an effective way to pass the changing data to the pop-up window. Should I use the pyqtSignal() to define a custom signal? I read this page. Should I define the