Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
2answers
435 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
624 views

QDialog popping up another QDialog

I have a subclassed QDialog containing a bunch of subclassed QSpinBox's. When clicking a spinbox, a keypad (another QDialog) where you can use pushbuttons to enter digits. Both QDialog's are activated ...
1
vote
1answer
2k views

Qt library event loop problems

I'm writing a DLL that is used as a plugin by another application and would like to leverage Qt's abilities. I have all of the classes set up, compiling and running, but no signals are being emitted. ...
0
votes
0answers
23 views

Qt: Button in parent widget receives clicks during execution of child dialog

I have some Qt code that looks like this: MyWidget::slotButtonClicked() { MyDialog dialog; dialog.exec(); } The catch here is that MyDialog spawns a thread that does some I/O in the ...
0
votes
2answers
144 views

PYQT - How to cancel loop in my GUI using cancel button?

I have been strugling with this for some time. I will try to explain what i want to do , maybe you guys could help me. So lets say I have GUI with status label on it and Two loops that look like ...
0
votes
2answers
175 views

Executing slot on every application's event loop iteration

How can I call my slot on every iteration of application's event loop? Only way I know is to use QTimer and on every timeout (every millisecond) signal I can call my slot. But I don't like this ...
0
votes
1answer
697 views

QTimer timeout problems with QEventLoop and QNAM

I have created my own HTTP class that utilizes QNAM and provides means for sending HTTP requests. It uses QEventLoop for synchronization and QTimer for timeouts. I'm facing few problems with my ...