I have a small issue when working with PyQt4 and threading package:
My code looks like this:
def goForwardToSamples(self):
self.main.dataSet = DataSetProvider(self.main.sourceFile)
self.ui = Ui_NeuralPredictor2()
self.ui.setupUi(self)
ParalelGui(self.ui).start()
self.connectSignalsWindow2()
def connectSignalsWindw2(self):
# DOING SOME REAL SERIOUS COMPUTATION ...
=> now def run(self): in ParalelGui class looks like this:
def run(self):
self.gui.show()
=> I just want to test if my GUI will run paralel with the computation.
I feel I know what the problem is. I have a QtableView that is being filled with data where I wrote (DOING SOME REAL SERIOUS COMPUTATION..). That QtableView is of course part of ui that I am sending to ParalelGui thread to be shown. I am not really sure how to make it work... Basically I would like to have a part of GUI threaded and already shown while the other part is being filled up dynamically in different thread.
What happens now is the typical 'you didnt thread your gui freeze' ... help much appreciated
ParalelGui? Are you trying to show your gui in a different thread than it was created? Also are you using theQThreadclass? We need a little more context here of your code structure. – jdi Feb 23 at 2:29