2018-03-19 08:22:11 +00:00
|
|
|
import QtQuick 2.4
|
2017-12-05 20:53:47 +00:00
|
|
|
import "."
|
2017-10-13 15:48:24 +00:00
|
|
|
|
|
|
|
Slider {
|
|
|
|
property var ratings: []
|
|
|
|
property int ratingIndex: 0
|
|
|
|
|
|
|
|
min: 0
|
|
|
|
max: 5
|
|
|
|
|
|
|
|
value: ratings[ratingIndex]
|
2017-12-05 20:53:47 +00:00
|
|
|
width: editRatingsPanel.width - Style.strutSize
|
2017-10-13 15:48:24 +00:00
|
|
|
anchors.horizontalCenter: parent.horizontalCenter
|
|
|
|
sliderWidth: width / 2
|
|
|
|
|
|
|
|
onValueChanged: {
|
|
|
|
ratings[ratingIndex] = value
|
|
|
|
}
|
|
|
|
}
|