SailTuner/qml/TunerScreen.qml

24 lines
343 B
QML
Raw Normal View History

2015-12-27 14:01:07 +03:00
import QtQuick 2.0
/**
* Main tuner screen
*
*/
Item {
/// tuner object
property QtObject tuner
/// theme corresponding to Silica Theme object
property QtObject theme
anchors.fill: parent
CircleMeter {
theme: parent.theme
anchors.fill: parent
/*
width: Math.min(parent.width, parent.height * 2)
height: width / 2*/
2015-12-27 14:01:07 +03:00
}
}