Top "Qthread" questions

QThread is a threading class provided by the cross-platform Qt framework.

Background thread with QThread in PyQt

I have a program which interfaces with a radio I am using via a gui I wrote in PyQt. Obviously …

python multithreading pyqt pyqt4 qthread
what is the correct way to implement a QThread... (example please...)

The Qt documentation for QThread says to create a class from QThread, and to implement the run method. Below is …

multithreading qt qt4 qthread
Qt signals (QueuedConnection and DirectConnection)

I'm having trouble with Qt signals. I don't understand how DirectConnection and QueuedConnection works? I'd be thankful if someone will …

c++ qt qthread qt-signals
Example of the right way to use QThread in PyQt?

I'm trying to learn how to use QThreads in a PyQt Gui application. I have stuff that runs for a …

python pyqt pyqt4 qthread
Qt signaling across threads, one is GUI thread?

What does it mean to move a object from one thread to another in Qt using moveToThread? Everything seems to …

user-interface qt signals-slots qthread
Starting QTimer In A QThread

I am trying to start a QTimer in a specific thread. However, the timer does not seem to execute and …

c++ multithreading qt timer qthread
QThread: Destroyed while thread is still running?

I would like to start my QThread when I push on button Run. But the compiler outputs following error: QThread: …

c++ qt signals-slots qthread qwt
Sending custom PyQt signals?

I'm practicing PyQt and (Q)threads by making a simple Twitter client. I have two Qthreads. Main/GUI thread. Twitter …

python pyqt pyqt4 qthread
QT threads :Getting QObject::startTimer: timers cannot be started from another thread warning

I follow the examples from the Qt SDK, starting timer in the QThread Subclass but I keep getting the warning …

c++ qthread
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 a …

python matplotlib pyqt pyside qthread