Tagged Questions
QThread is a threading class provided by the cross-platform Qt framework.
9
votes
1answer
4k views
what is the correct way to implement a QThread… (example please…)
The qt documentation for QThread, it says to create a class from QThread, and to implement the run method. Below is taken from the 4.7 Qthread documentation...
To create your own threads, subclass ...
8
votes
5answers
7k views
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 work even before using moveToThread, which moves the object from one thread (GUI thread) to ...
7
votes
5answers
5k views
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 fetch thread - fetches data from Twitter every X minutes.
So, every X minutes my ...
5
votes
2answers
659 views
Qt: Correct way to post events to a QThread?
In my Qt application, I have a main thread and a worker thread. The worker thread subclasses QThread and processes events via customEvent. Is this the correct way for the main thread to send events to ...
5
votes
5answers
3k views
How can I terminate a QThread
Recently ,I come across this problem as I memtioned in this Title.
I have tried by using QThread::terminate(),but I just can NOT stop
the thread ,which is in a dead loop (let's say,while(1)).
thanks ...
4
votes
3answers
478 views
How to implement a QThread that runs forever{} with a QWaitCondition but still needs to catch another Slot while doing that
I implemented a class that can write data to a serial port via a QQueue and read from it by a slot. I use QAsyncSerial for this which in turn uses boost::asio with a callback.
The class is moved to a ...
4
votes
3answers
1k views
QThread blocking main application
I have a simple form UI that has a slot for a button, starting a thread:
void MainWindow::LoadImage()
{
aThread->run();
}
And the run() method looks like this:
void CameraThread::run()
{
...
3
votes
1answer
25 views
Qt Interrupt program every 500ms
I'm fairly new to Qt. This is my second 'real' program that I'm writing. I've attempted to use Qt to create a frontend a class which is a wrapper around a .net class that talks to the serial port.
...
3
votes
2answers
265 views
Wake up a QThread that is in sleep?
How can I wake up a QThread when it is sleeping?
I have a thread that is running in the background and now and then wakes up and does some small stuff, however if I would like to stop that thread in ...
3
votes
3answers
308 views
Is it possible to implement polling with QThread without subclassing it?
I have a class, which is an abstraction of some device.
class Device
{
public:
...
void Start();
void Stop();
void MsgLoop();
signals:
void sMsgArrived();
}
Start() and ...
3
votes
3answers
223 views
Questions about QThread
If I make a QThread and call one of its slots from another thread, will it be called in the context of the thread of the QThread object, or from the context of the thread which made the call?
3
votes
1answer
423 views
Concurrency issues with QThreads. Threads receiving the same signal are blocking each other
So I'm working on a program that processes video in real-time and I'm having some trouble with threads "blocking" each other.
My system is pretty much set up like this:
DataSourceThread
...
3
votes
3answers
4k views
Do I need to call QThread.exec() in my thread?
I am not calling exec() yet my timer and QUdpSocket work just fine. Is exec used to wait for an event to continue?
UPDATE: the timer was working because I had not called moveToThread(this) on the ...
3
votes
3answers
2k views
Calling a function in child thread in Qt?
I have a main thread that invokes a child thread function at different times but I am not sure whether that is right way of doing it in Qt.What is wrong with the below code and looking for better ...
2
votes
1answer
36 views
Unable to match current Date and time in Qt
I am writing a simple task planner and reminder using Qt which will play a sound file when the date and time of any given task matches with the the current date and time.
To implement this, I am ...
2
votes
2answers
46 views
why signal/slot not working with multiple threads?
class A : public QObject{
Q_OBJECT
signals:
void a_sig();
public:
A(){ }
public slots:
void begin(){
QObject::connect(&_timer, SIGNAL(timeout()), this, SIGNAL(a_sig()));
...
2
votes
1answer
90 views
Howto change progress by worker thread
I'm new to PyQt4 so maybe it is a bagatelle. I try to show a progress in my GUI, which will be updated by an worker thread.The QProgressBar is with other memory's in a QTableWidget.
The worker thread ...
2
votes
1answer
85 views
QT: run independent thread from other thread
Let me just give you an example.
class B : public QThread {
public:
void run() {
}
};
class A : public QThread {
public:
void run() {
b1.start(); b2.start();
}
protected:
B b1, b2;
...
2
votes
1answer
100 views
How to access widgets using qt thread?
In my program I have a widget class with text box and qthread pointer. Using qthread pointer i want to update the textbox continously by text selection without affect the application. But i cant ...
2
votes
2answers
104 views
How can I protect a QThread function so it will not be called again until finished its previous work?
I'm using a QThread and inside its run method I have a timer invoking a function that performs some heavy actions that take some time. Usually more than the interval that triggers the timer (but not ...
2
votes
2answers
170 views
Qt - Mysterious segfaults on worker thread
I'm instantiating QSystemDeviceInfo on a worker thread, but it causes a segfault.
int BatteryInfo::getLevel() {
QSystemDeviceInfo sysDevInfo; //segfault happens when I step on to this line
...
2
votes
2answers
135 views
Running Threads Simultanously using Qt
I have a problem. I have a Qiwidget which has 2 pushbuttons. On pressing one button i need to play back 1 file using some playback technique. On clicking the other button I want to playback another ...
2
votes
1answer
165 views
Monitor Qt GUI from QThread class
I am trying to run a background thread (qthread) that needs to monitor a checkbox in the gui and it will not run! It builds but during runtime i get this error:
"Unhandled exception at 0x0120f494 in ...
2
votes
3answers
313 views
qt signal/slot and pthreads dont play well together
Can someone tell me why this qt code will not call the Callback when ASYNC_TIMERS is defined (ie m_timer.start is called from the pthread but the slot never runs). Obviously it is to do with being ...
2
votes
4answers
874 views
Knowing when a QThread's event loop has started from another thread
in my program, I am subclassing QThread, and I implemented the virtual method run() like so:
void ManagerThread::run() {
// do a bunch of stuff,
// create some objects that should be handled ...
2
votes
2answers
436 views
Race condition with QThread/QDialog
I'm trying to avoid a race condition in the following scenario:
QDialog* dialog = [...];
QThread* thread = [...];
connect(thread, SIGNAL(finished()), dialog, SLOT(accept()));
thread->start();
...
2
votes
2answers
281 views
Why can't I call a class's start function from within itself?
I'm totally new to programming with threads, and since the class is using QThreads, I'm wondering why I cannot call a QThread's start function from within itself and have its run function start ...
2
votes
1answer
678 views
Can I use waitForReadyRead in a QThread that belongs to the mainthread?
I have a QThread that contains a QUDPsocket (socket is member not local to QThread::run(), maybe I should change that from what I am reading). This QThread is instantiated in my QMainWindow class ie ...
2
votes
1answer
146 views
Emitting signals from other threads
I have a class which has a method that is called by the main thread and 3 other threads (2 QThreads and 1 made with QtConcurrent::run()). Inside this method I sometimes emit a signal. Is this okay ...
1
vote
1answer
30 views
Blocking QThread blocks GUI
For a simple chat program i use a c lib that is wrapped via boost::python.
A simple GUI is written using PyQT. Receiving messages is done via a blocking call to
said lib. For the GUI to refresh ...
1
vote
1answer
50 views
QThread doesn't work well
this's the QTread's subObject...
and concrete it in main Thread....
the Runtime error as follow:
ASSERT failure in QCoreApplication::sendEvent: "Cannot send events to
objects owned by a ...
1
vote
0answers
53 views
QWebPage loadFinished signal not called when using thread?
I am trying to execute a network request with webkit in a secondary thread and also do all the processing like scrapping data in the same thread. However, I am puzzled why the QWebPage's signal ...
1
vote
2answers
154 views
Qt QThread trouble using signal/slot going from worker to gui
I have a QT application that was developed using QT Creator and the GUI tool that accompanies it. I have a main thread, TheGui and a worker thread that is created by the main thread, WorkerThread ...
1
vote
1answer
153 views
QThread won't stop / does not process a signal
I am trying to perform some work in a separate thread and stop that thread when the work is done.
I have set up a connection like this
thread.connect( workerClass, SIGNAL( finished() ), SLOT( ...
1
vote
1answer
148 views
QPluginLoader moved to thread
I'm building an application that will rely heavily on plugins: the core gets data from a serial interface and delivers it to each plugin so each one can decide what to do with it.
My design allows ...
1
vote
0answers
203 views
PyQt: timers cannot be started from another thread
I am making a Qt GUI with python and i am getting the error: QObject::startTimer: timers cannot be started from another thread. It occurs when I run the readModemSnap method. I've been working on this ...
1
vote
1answer
147 views
how to know the progress of each thread?
im new in python and i have created an uploading program with multi threading, my problem is i have only one progress bar that displays the progress of each thread.
im using python pyqt4 QThread.
Is ...
1
vote
2answers
166 views
QThread never runs/finishes before it can be used?
I have created a custom QObject class called EncodeThread, which looks as follows:
class EncodeThread : public QObject {
Q_OBJECT
public:
void set(SWSL::Video* v, QStringList f, QDir vDir);
...
1
vote
1answer
104 views
Moving a predifined class into a thread using Qthread
I am not too great a programmer and quite new to QT sorry for my wording.
I have an already created a sensor class in Qt in a different .cpp file from main, whenever i ran my program it ran slow and ...
1
vote
2answers
762 views
How to tell QThread to wait until work is done ,and then finish?
I have a simple application that uses one worker thread.
This worker thread is started and initializes DownloadManager, which is responsible for downloading files from the net.
In my main application ...
1
vote
2answers
217 views
Declaring inside the run() method in QThread vs declaring as a local variable in QThread
Consider the following code snippets:
class ThreadA::QThread
{
public:
ThreadA()
{
}
void run()
{
myVariable = new int();
*myVariable = 10;
}
void Set(int var)
{
...
1
vote
4answers
1k views
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 in the same class dealing with read/write of data into buffers(queue operation). to ...
1
vote
1answer
162 views
Modifying QStandardItemModel from non-UI QThread?
I have Qt4 app which binds QStandardItemModel to the QListView and have the model updated from background/non-UI thread.
Sometimes, when the QStandardItem's setText(..) method is called very ...
1
vote
2answers
122 views
Why are slots being called from the main thread?
I have a Qt application that has two threads: the main thread that handles the GUI and a second thread that manages network connections. Here is the thread code:
void thread::run()
{
QTcpServer ...
1
vote
1answer
362 views
python QThread.run parameters - changed between versions?
In my code (python2.6, PyQt4) I do something like this:
def myRun():
doStuff
thread = QtCore.QThread()
thread.run = myRun
thread.start()
On my gentoo machine, this works perfectly. On a ubunut ...
1
vote
1answer
176 views
keep alive thread in PyQt4
I have a PyQt4 application, which at some point packs a big file using the tarfile module. Since the tarfile module does not implement any callback strategy, it blocks and the Qt GUI gets ...
1
vote
1answer
391 views
one timer per thread using Qt
I modified Qt's broadcast sender example so that it has ten threads and in each thread it starts a timer, but only timer of the first thread is triggered. How can I have one timer running for each ...
1
vote
3answers
1k views
how can i inherit from both QWidget and QThread?
I have a class like this
class GUI : public QWidget, public QThread
When I do the above i get errors about connect signals. The error says "Reference to "connect" is ambiguous". Is ...
1
vote
1answer
514 views
Question about QThread implementation
A QThread object represents a single thread of execution. But is the OS thread created when the QThread object is created, or when the start() method is called?
I'm interested in whether I can have ...
1
vote
3answers
7k views
*** glibc detected *** double free or corruption (fasttop):
A call to clear on a QByteArray generates the following exception:
* glibc detected * /home/yan/FPS2/FPS2: double free or corruption (fasttop):
0 ??
1 ??
2 free
3 QByteArray::clear()
4 ...