QThread is a threading class provided by the cross-platform Qt framework.
0
votes
1answer
56 views
QObject::connect: Cannot queue arguments of type 'int&'
I tried to do this :
connect(this, SIGNAL(signalClicked(int&)), classA, SLOT(doWork(int&)));
But I get the message in the title.
So I've explored the internet and I came up with this ...
0
votes
2answers
115 views
QThread emits finished() signal but isRunning() returns true and isFinished() returns false
Below is the code for my qthread implementation. I am trying to get gps data from satellite. QThread doesn't produce the finished() signal even when the programs exits gpsSearch() slot function. The ...
0
votes
1answer
22 views
Qt connect function between slot and signal does not work into thread run function
I wroute a server program and a client program by qt.
client program create connection to local host port 60600 by tcp protocol and server program listen to that port.
after creating new connection by ...
1
vote
1answer
83 views
thread safe implementation gives segmentation fault
I am using a thread safe Q to generate some random number inside the buffer. On the main glWidget program I should DeQ the buffer contents and update the screen.
#ifndef CONCURRENTQUEUE_H
#define ...
0
votes
0answers
35 views
Unable to terminate QTCreator Thread
As part of my QT Application, I am using QThread to ping various machines on my network. In the run method, I have a while loop continuously reading the results of the ping. In the while loop ...
0
votes
2answers
50 views
Stop QThread to execute
I am trying to implement timeout in my QT Application. I have used QThread to perform the operation (task on which timeout is required) and have used QElapsedTimer to count elapsed time waiting to ...
2
votes
1answer
116 views
Mixing C++11 threading operations with QThread operations
Is it possible to mix a c++11 mutex with a Qthread?
For example if you have a Dll that you want to use with a qt gui that will load a function from your Dll and also a function to update the gui on ...
0
votes
1answer
56 views
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 while, with (usually) points where I could update a Gui, but I would like to split the main work out to ...
0
votes
0answers
27 views
QThread implemented as Singleton
I have a Qt class extending QThread, of which I only want one instance (at most) available during program execution. I thought about exploiting information appearing on this post as follows
class ...
0
votes
1answer
32 views
Trouble with using PyQt threads - receiving GTK errors
I've almost managed to write my simple torrent client, but again some awful problems occured.
Here is a link to the code:
http://pastebin.com/Jyzrm0Vc
When I turn on this app, sometimes it runs quite ...
0
votes
1answer
39 views
PyQt segmentation fault with QThread
I would like to use QThreads in my project written in Python with PyQt, but when I run this code, I recieve an error, which says me nothing:
segmentation fault (core dumped) python file.py
I don't ...
0
votes
1answer
30 views
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 my PyQt GUI - I can only run the Qt window or that loop (but then windows doesn't show).
Is there any ...
0
votes
1answer
31 views
How to use QThreads with libtorrent in PyQt?
I want to write some simple PyQt torrent client, but I've got some snag with that.
I would like to run some loop which takes care of downloading files (simple code using libtorrent) in a PyQt code.
...
0
votes
1answer
39 views
is there any limitation of how fast or how many times signals can be emitted in Qt?
i was experimenting with QThread the other day and i wanted to create an infinite loop by using signals only and not for, foreach or while but then my code would crash after emitting the signal and ...
0
votes
1answer
58 views
QMutex with QThread - Segmentation fault
I have a C++ Qt program that uses QThread with pause/resume mechanism implemented using QMutex and QWaitCondition. That's how it looks:
MyThread.h:
class MyThread : public QThread
{
Q_OBJECT
...
0
votes
1answer
52 views
How to move an object back and forth between QThreads in Pyqt
In my program (using Python 2.7), I create an object containing some important data and methods. Some of the methods are CPU hungry, so in certain cases I move the object to a new QThread for the ...
0
votes
0answers
42 views
Ways to use MPI executable in Qt?
I have developed an application which comprises of a frontend Qt-GUI and a solver EXE. As these two are independent module, I could successfully launch EXE in Qt-GUI by using a QProcess like below:
...
0
votes
0answers
75 views
PySide Qt threading: Why won't my QThreads quit?
I have a task that periodically gets data from a blocking event and wants to send it to the rest of an application.
This blocking event cannot be made nonblocking, so I want to use threads to wait on ...
0
votes
0answers
26 views
How can I implement QThread into my python code
I have looked up the references and can not seem to get it to work correctly. Have been stuck in the same spot for 2 weeks. I would like to add threading to my code so I can dynamically update a ...
0
votes
2answers
67 views
How to run one function in another thread
I'm standing in front of a small (maybe not) problem. I have one function which parses XML file (very big xml ~1Gb) so it takes many time (5-6 mins to finish the func). I don't want to use it in ...
0
votes
2answers
63 views
QProcess not exiting when invoked from a Qthread
I am trying to install a RPM using QProcess(/bin/rpm). This QProcess is running in a concurrent thread which was started by another QThread.
QThread retThread = new CMyThread(this);
...
1
vote
1answer
57 views
How do I share data between a GUI thread and a worker thread?
My application is a simple message sender/receiver via TCP/IP with a GUI. Until now everything was one single thread, but I'd like to split the TCP/IP communication block and the GUI in separate ...
0
votes
1answer
71 views
How to stop a QThread from the GUI
This is a follow up question to a previous one I posted earlier.
The problem is how to stop (terminate|quit|exit) a QThread from the GUI when using the recommended method of NOT subclassing Qthread, ...
0
votes
1answer
85 views
How to signal from a running QThread back to the PyQt Gui that started it?
I am trying to understand how to use signaling from a Qthread back to the Gui interface that started.
Setup: I have a process (a simulation) that needs to run almost indefinitely (or at least for ...
0
votes
0answers
17 views
QImage::fromData not thread safe
The following code crashes if run inside multiple QThreads:
//mutex.lock();
qImage = QImage::fromData((const uchar*)bin,size);
//mutex.unlock();
I can fix that with mutexes, but it defeats the ...
0
votes
0answers
26 views
Separate rendering thread with QGLVIewer
I am using QGLViewer for a 3d scene in c++ code. Since the OpenGL rendering is running in the main thread, I was hoping to move it to a different thread to make the rest of the program more ...
0
votes
1answer
61 views
How to terminate a thread in Qt C++
I have used QFuture to start a thread for a function that I already had in my code that was taking a long time and freezing my GUI.
The thread seems to be working ok:
QFuture<int> result = ...
0
votes
2answers
31 views
QThread: Call a signal in the right thread
I have some very time consuming tasks to execute in a GUI application, and I want them to be threaded so it won't freeze my GUI..
To do so, I created a thread, and started a timer. I connected the ...
0
votes
1answer
64 views
I'm not sure why my QThread pattern is blocking
I've seen many posts and articles on QThread and moving QObjects between QThreads but alas, its still causing me headaches. This is the pattern I'm trying to adopt:
#include "connectionthread.h"
...
0
votes
0answers
41 views
QThread, shaders and ActiveTexture Unit
I have a couple of questions about interaction of QThread, QGLContext, and Active Texture Unit
I do not understand how the opengl render process works when several Qthreads are involved.
My ...
1
vote
1answer
69 views
Detach object from thread
Simple question: is it possible to detach a QObject from a QThread in order to move it to the main thread?
I use the following code:
QThread *thread = new QThread();
MyObject *object = new ...
0
votes
2answers
63 views
Using a QThread without new
So I have some sample code below.
workerThread = new QThread();
m_worker->moveToThread( workerThread );
connect( workerThread , SIGNAL( started() ), m_worker, SLOT( createObject() ) );
connect( ...
0
votes
1answer
62 views
Share QAxObject between two threads?
Let's say an object A running in a thread. It has a pointer to a QAxObject instance and to an object B. The object B has the pointer to the QAxObject.
Object A creates a thread and moves the object ...
1
vote
1answer
93 views
QThread doesn't start
Sorry for the length of this post. But I am stuck for two days now....
I am working on a Qt 4.6 Windows application that communicates with a hardware device through ActiveX.
When I send a command, ...
0
votes
1answer
88 views
Qt slot simultaneous disconnect and call from different theads
I'm newbie to Qt. I haven't found an answer in a reasonable time and decided to ask here.
I have a thread, let's call it Thread1 with Qt object which have a connected slot. Signal is emitted from the ...
0
votes
3answers
144 views
connect(Mythread, SIGNAL(finished()), QTimer, SLOT(start())) not working [closed]
there is one timer I need to start, after my thread finished,
I use connect(QThread, SIGNAL(finished()), QTimer, SLOT(start())) but not working
Here is the code
QTimer *timer = new QTimer(this);
...
0
votes
1answer
47 views
How to get the working time of a thread in c++/qt?
I'm new in the C++ and QT-Programming and want to get the time in milliseconds that a QThread needed to execute one task. Is there any option for this?
Greetings
0
votes
3answers
285 views
QThread and QTimer
I'm working on an application developed with Qt 4.6.
I want to create a custom timer that counts in a separate thread. However, I want this timer to be able to send signals to the main thread.
I ...
0
votes
1answer
122 views
Qt QProcess Complains about QThread::Start , Thread Creation Error
I have an extremely simple app that is supposed to use QProcess to do some systemd control. Then entire program is below. Every time I run the app, it complains with the following:
QThread::start: ...
0
votes
1answer
57 views
Xlib: unexpected async reply when testing Qt application from a separate QThread within same Qt application
I am trying to create a test for my Qt appication. The aim is to test the GUI of the application by moving the mouse around and clicking on QGraphicsItems or QWidgets using the X11 library.
The test ...
2
votes
0answers
37 views
Are QMenus typically in a thread of their own? What's the right way to wait for them to finish handling events?
In the debugger, I can see that my QMenu objects do not reside in the same thread as the main gui thread. E.g., QApplication.instance().thread() == 0xdeadbeef, but mymenu.thread() == 0xdeadbabe
1) ...
0
votes
1answer
140 views
Signal-slot doesn't work using QThread
I am using QT framework. I have been using SIGNAL-SLOT for a while. I like it. :-)
But I cannot make it work when I use QThread. I always create new thread using “moveToThread(QThread …)” function.
...
0
votes
1answer
209 views
“this” pointer becomes null c++
I have a C++ Qt static library with two classes - dataprocthread and calcvalue. In the first one, when I call a method from an instance of calcvalue, pointer this (which references to dataprocthread ...
0
votes
1answer
546 views
QThread: Destroyed while thread is still running
I'm having problem with QThreads in python. I want to change background color of label.
But My application crash while starting.
"QThread: Destroyed while thread is still running"
class ...
0
votes
1answer
52 views
multiple threads invoking using qthread
Its my basic question i want to ask the experts regarding my design before i start coding
I have to invoke five different threads
3 of UDP send/recv with individual structure
2 of Multicast ...
0
votes
0answers
83 views
What is the proper way to separate the view layer from the logic layer in QT?
My mainwindow have a side GUI with a QGraphicsView in the center, there is a logic class which make different calculations which triggered by the GUI and effects the QGraphicsView.
Some of the ...
2
votes
1answer
72 views
Multithreaded Face Detection stops working
I am trying to implement a multithreaded face detector. The problem is after capturing and processing some frames from camera, the program unexpectedly stops working. Here is the code:
...
0
votes
3answers
105 views
Modify Widgets in non-GUI thread in Qt?
Suppose I have multi-threaded my Application. Then as per Qt philosophy you cannot even modify the properties of Widgets added in GUI. Say an object of class Not_GUI has been moved to another QThread, ...
2
votes
1answer
122 views
Qt terminate thread spawn by QConcurrent::run
Platform: Win7 x64, MinGW-rubenvb (4.7.2-x64), Qt 4.8
Say I have few lengthy tasks (read population file, write population file, and run simulation) spawned using QConcurrent::run, as follow:
void ...
2
votes
2answers
273 views
Making the main thread wait till all other Qthread finished
is there a way to force the main thread to wait untill all threads creadted from it, will finish their jub, before finishing the program. I mean:
int main(){
QthreadClass a; // in cons' a thread is ...




