2014-08-19 16:02:23 +00:00
|
|
|
import QtQuick 2.0
|
|
|
|
|
import org.kde.plasma.core 2.0 as PlasmaCore
|
|
|
|
|
|
2014-08-22 09:41:46 +00:00
|
|
|
Rectangle {
|
2014-08-19 16:03:47 +00:00
|
|
|
anchors.top: parent.top
|
2014-08-22 09:41:46 +00:00
|
|
|
color: "#00000000"
|
|
|
|
|
property int value: 0
|
|
|
|
|
property alias elementId: glyph.elementId
|
|
|
|
|
width: parent.width / 4
|
2014-08-19 16:02:23 +00:00
|
|
|
height: parent.height
|
|
|
|
|
|
2014-08-22 09:41:46 +00:00
|
|
|
PlasmaCore.SvgItem {
|
|
|
|
|
id: glyph
|
|
|
|
|
anchors.top: parent.top
|
|
|
|
|
anchors.horizontalCenter: parent.horizontalCenter
|
|
|
|
|
width: Math.min(parent.height, parent.width)
|
|
|
|
|
height: parent.height
|
|
|
|
|
|
|
|
|
|
svg: symbolsSvg
|
|
|
|
|
}
|
|
|
|
|
}
|