SailTuner/qml/Scene.qml
2016-01-02 16:36:55 +01:00

29 lines
370 B
QML

import QtQuick 2.0
/**
* display tuner screen with qmlscene
* to work on qml files
*/
Item {
width: 600
height: 450
DesktopTheme {
id: theme
}
Item {
id: tuner
property int note: 2
property int octave: 4
property double freq: 440
property double deviation: 0.12
property bool found: true
}
TunerScreen {
tuner: tuner
theme: theme
}
}