1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- import QtQuick 2.0
- // pretty much entirely stolen from:
- // https://github.com/capisce/motionblur/blob/master/main.qml
- Widget {
- property real t
- property int frame: 0
- height: fpsText.height
- width: fpsText.width
- Text {
- id: fpsText
- font.pixelSize: widgetProperties.fontPixelSize
- color: "white"
- text: "FPS:" + fpsTimer.fps
- }
- Timer {
- id: fpsTimer
- property real fps: 0
- repeat: true
- interval: 1000
- running: true
- onTriggered: {
- fps = frame
- frame = 0
- }
- }
- NumberAnimation on t {
- id: tAnim
- from: 0
- to: 100
- loops: Animation.Infinite
- }
- onTChanged: {
- update() // force continuous animation
- ++frame
- }
- }
|