Top "Qthread" questions

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

creating new thread using Qthread-Qt5

I am trying to create a new thread gpsthread which should run in the back ground, and store the value. …

c++ multithreading qt5 qthread
QThreads , QObject and sleep function

The problem I encountered is that I decided to implement QThreads the way they are supposed to, based on numerous …

c++ qt qthread
calling QThread.exec() method is necessary in QThread?

I am not calling exec() in my code, but the timer and QUdpSocket is working fine. Is exec() used to …

multithreading qt qthread
PyQt - running a loop inside GUI

I've got a Python code with some while loop inside, but I don't know how to make it work with …

python pyqt qthread
Qt moveToThread() vs calling new thread when do we use each

When do we use each of this function calls in a threaded application. given two functions fun1() and fun2() defined …

c++ multithreading qt qthread
How to run a timer inside a QThread?

I would like to run a timer inside a QThread. I have written some code in which i am getting …

c++ qt qt-creator qthread qtimer
Running a function in different thread in QT

In Qt Application code Class A has one member method like method1(). I want to call this method in another …

qt inheritance qthread
Cannot find include file QtCore?

I'm writing a multithreaded program in C++, and plan to use QThread. Problem is when I try to #include <…

c++ qt4 qthread
How to properly delete and terminate QThread

I have got a subclass MyClass which inherits from QThread. I create it like this with a parent to the …

c++ qt qthread qobject
Speeding up writing images into hard disk in OpenCV

I am working with a 50 fps camera (in Ubuntu environment and Qt framework) and every 20 ms I get a frame …

c++ qt opencv qthread qtcore