2015-12-26 22:46:02 +03:00
|
|
|
import QtQuick 2.0
|
2015-12-27 11:51:42 +03:00
|
|
|
import LJTuner 1.0
|
2015-12-26 22:46:02 +03:00
|
|
|
|
|
|
|
Item {
|
2016-01-01 21:20:29 +03:00
|
|
|
width: 600
|
|
|
|
height: 500
|
2015-12-27 17:59:32 +03:00
|
|
|
|
2015-12-27 11:51:42 +03:00
|
|
|
Tuner {
|
|
|
|
id: tuner
|
|
|
|
running: true
|
|
|
|
}
|
2015-12-27 17:59:32 +03:00
|
|
|
|
|
|
|
DesktopTheme {
|
|
|
|
id: theme
|
|
|
|
}
|
|
|
|
|
2016-01-01 21:20:29 +03:00
|
|
|
TunerScreen {
|
|
|
|
anchors.fill: parent
|
2015-12-27 17:59:32 +03:00
|
|
|
theme: theme
|
|
|
|
tuner: tuner
|
2015-12-27 11:51:42 +03:00
|
|
|
}
|
2015-12-26 22:46:02 +03:00
|
|
|
}
|