File: timer.qml

package info (click to toggle)
qtquickcontrols-opensource-src 5.11.3-2
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 14,412 kB
  • sloc: cpp: 15,252; makefile: 27
file content (7 lines) | stat: -rw-r--r-- 92 bytes parent folder | download
1
2
3
4
5
6
7
import QtQuick 2.2

Timer {
    running: true
    interval: 0
    onTriggered: Qt.quit();
}