A VUMeter that has a rotating needle. More...
The VUMeter type provides a visual meter that is styled using images.
Here is a simple VUMeter:
import QtQuick 1.1 import "components" VUMeter { id: vu_meter1 width: 377 height: 242 needleImage: "images/vu_needle.png" overlayImageHeight: 26 needleImageHeight: 139 overlayImage: "images/vu_overlay.png" value: -20 needleImageWidth: 8 needleRotationY: 139 needleRotationX: 4 overlayY: 191 overlayImageWidth: 39 overlayX: 168 needleY: 57 needleX: 181 backgroundImage: "images/vu_background.png" onValueChanged: console.debug(value); }
The source image for the VUMeter's background.
The height of the VUMeter, usually the height of the background image.
The source image for the VUMeter's needle image.
The source image for the VUMeter's overlay image.
The width of the VUMeter, usually the width of the background image.