참고 https://forum.qt.io/topic/4752/how-to-stop-a-qtimer-singleshot/7
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | @ m_myLongTimer = new QTimer(this); m_myLongTimer->setInterval(360000); m_myLongTimer->setSingleShot(true); connect(m_myLongTimer, SIGNAL(timeout()), SLOT(myslot())); m_myLongTimer->start(); @ You can use this to stop again: @ m_myLongTimer->stop(); @ Edit: added connect call to sample code | cs |
'QT' 카테고리의 다른 글
포인터로 이중배열(배열 포인터) 순회하기 (0) | 2019.02.23 |
---|---|
배열 포인터 리턴하기 (0) | 2019.02.23 |
QT 람다활용법 (0) | 2019.02.20 |
QT Oncreate (ui 완성시 자동 실행 이벤트 메서드) (0) | 2019.02.19 |
QT concurrent를 이용한 쓰래드, 멤버 함수 포인터 예제 (0) | 2019.02.16 |