Skip to content Skip to sidebar Skip to footer
Showing posts with the label Qthread

Interrupting Qthread Sleep

I would like to know how to pause a QThread and then resume when I get a signal. I have read and kn… Read more Interrupting Qthread Sleep

Running A Long Python Calculation In A Thread, With Logging To A Qt Window, Crashes After A Short While

I have a large module from a separate project, which I wanted to integrate into a GUI. The module d… Read more Running A Long Python Calculation In A Thread, With Logging To A Qt Window, Crashes After A Short While

Python Qt - How To Insert Items In Table Widget From Another Thread?

I want to insert text items from a Worker Qthread to a QTableWidget UI in Main thread ?. I want to … Read more Python Qt - How To Insert Items In Table Widget From Another Thread?

Migrating From Inherited Qthread To Worker Model

So through a lot of help in my previous questions (Interrupting QThread sleep and PySide passing si… Read more Migrating From Inherited Qthread To Worker Model

Run Multiple Qthreads Concurrently In Python

In the attached code when you click start it creates a QSpinBox and starts counting to 20 in QThrea… Read more Run Multiple Qthreads Concurrently In Python

How To Plot On My Gui

I'm designing a GUI with PyQt where I need to display a matplotlib/pylab window when I click on… Read more How To Plot On My Gui

Passing Parameter To A Pyqt Thread When Started

Is there any way we can pass a parameter to QThread when the thread is started (.start) ? I found a… Read more Passing Parameter To A Pyqt Thread When Started

How Can I Pass Arguments To Qthread Worker Class?

I have a working example of code that creates a QThread that must be called from my on class (MyCla… Read more How Can I Pass Arguments To Qthread Worker Class?