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
|
2016-01-01 17:50:20 +03:00
|
|
|
/*
|
|
|
|
width: Math.min(parent.width, parent.height * 2)
|
|
|
|
height: width / 2*/
|
2015-12-27 14:01:07 +03:00
|
|
|
}
|
|
|
|
}
|