Tagged Questions

5
votes
2answers
652 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 ...
4
votes
3answers
474 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
2answers
263 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
301 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
1answer
422 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
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
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
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
4answers
865 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
280 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 ...
1
vote
2answers
150 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
2answers
752 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
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 ...
0
votes
0answers
25 views

QReadWriteLock Recursion mode not working

Under Linux qt 4.7.4 using gcc 4.4.3 the following code compiles fine and gives no runtime error. class TestThread: public QThread { private: QReadWriteLock mutex; public: bool mStop; ...
0
votes
1answer
55 views

QObject made in QThread losing internal signal/slot connections

I have a worker QThread in which a QObject derived object is created. The object is an aggregate of two other QObject derived objects, as such there are internal connections for signal linking and ...
0
votes
2answers
87 views

How can I make my QThread block and wait for a function called from the main thread to return a value?

I am doing some work in a QThread reimplementation. Every now and then, I'd like to ask the user a Yes/No question, so I was planning on using QMessageBox::question(). Problem is, I can't call it from ...
0
votes
1answer
122 views

Qt thread problem with single core CPU on Windows XP

I am developing a cross-platform fractal explorer using Qt. I am experiencing a performance problem specifically when running on a single core CPU under Windows XP (program compiled with MSVC Express ...
0
votes
2answers
436 views

Qt :what is the best way to implement sleep function inside QThread?

i invoking QThread with creating object and using MoveToThread function like it suggest inside the Object i have loop and i need to be able to set sleep for few seconds between iterations ( to update ...
0
votes
3answers
397 views

QT threads :Getting QObject::startTimer: timers cannot be started from another thread warning. what im doing wrong?

follow the examples from the Qt sdk , starting timer in the QThread Subclass but im keep getting the warring and the thread never start the timer here is the code : ...
0
votes
2answers
219 views

Qt - A simple echo server

How in Qt would you keep a thread alive in the QThreadPool; as far as I've seen there is only an option to run a QRunnable and I've been told they can't control the thread they are within. How would ...
0
votes
2answers
560 views

Qt Download Files from QThread Based On Qt Example Doesn't work

Hi i build simple example striped all irrelevant code and only the problematic code remains in general i have application that execute thread and inside this thread worker , i placed download code ...
0
votes
1answer
513 views

understanding a qthread subclass's run method and thread context

i have an encoder class with lots of methods . this is a subclass of Qthread. i am new to multi-threading and trying to understand how this class is threading its methods ... i understand to ...
0
votes
1answer
482 views

c++ qthread starting 2 threads concurrently

I have two threads One and Two. defined by their respective classes in the header file.I want to start the second thread when the first thread is started. creating and starting the second thread in ...
0
votes
3answers
176 views

c++ creating object of second class in the constructor of first class - multitreading

I have two classes one and two . Both run threads. class Two is to thread a function declared in class one . this is done by calling it in the run method of the second class. I am trying to call/start ...
0
votes
2answers
210 views

Moving a function in a running thread to a new thread?

I have a read and write function in a class file. this class subclasses QThread class and overrides run, does not have signals and slots ,It basically runs data processing functions in a thread. in ...
0
votes
2answers
609 views

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 <QtCore>... I get an error... Cannot find include file QtCore. What gives?
0
votes
2answers
330 views

QT: How to open several windows (QWidgets) at once?

I'm doing web interface testing program which should open two urls in two webkit windows simultaneously. I already did the code for the test automation. 1) User pushes 'Go' button and webkit ...
0
votes
3answers
526 views

How to interrupt select/pselect running in QThread

I have a QThread that reads from a socket and sends a signal (QT signal) when there are any data available. This would be easy with blocking read(2), but i need to be able to stop the thread from ...
0
votes
1answer
75 views

qapps runs well but breakpoint sometimes generates segmentation fault

I have a qApp that generates a segmentation fault only when a breakpoint is inserted in the code (I can put it at different places) and only after 4-5 breakpoint stops. Do I have a problem with my ...