Top "Qtimer" questions

QTimer is a timer class provided by the cross-platform Qt framework.

how to add a 1 second delay using Qtimer

I currently have a method which is as follows void SomeMethod(int a) { //Delay for one sec. timer->start(1000); //…

c++ qt qtimer
Qt timers cannot be stopped from another thread

Hy, I'm writing my first Qt program and getting now in troubles with: QObject::killTimer: timers cannot be stopped from …

c++ multithreading qt qthread qtimer
QObject::startTimer: Timers can only be used with threads started with QThread

I am trying to start a Timer in a worker thread's event loop, but I get this error: QObject::startTimer: …

qt qthread qtimer
Does a QTimer object run in a separate thread? What is its mechanism?

When I create a QTimer object in Qt 5, and start it using the start() member function, is a separate thread …

c++ multithreading qt timer qtimer
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
PyQt5 QTimer count until specific seconds

I am creating a program in python and i am using pyqt. I am currently working with the QTimer and …

python pyqt pyqt5 qtimer
How to pause and restart the Qtimer on QT

I have a Ubuntu , and i'am working with IDE QT on C++ . I will to pause and resume the Qtimer , …

c++ qt signals-slots qtimer
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 …

c++ qt qthread qtimer
Using QT, how to call function once after a certain interval, even if more calls may occur?

I am having a hard time wording this question even though I don't think its that complicated. I want to …

c++ qt qtimer
Why I get "QTimer can only be used with threads started with QThread" messages if I have no QTimer in my code?

When (and only when) I quit my application, these (and only these) repeated message appear on the command prompt: QObject::…

python pyqt4 multiplatform qtimer