2015-02-25 18:26:04 +00:00
|
|
|
import QtQuick 2.0
|
|
|
|
|
import org.kde.plasma.core 2.0 as PlasmaCore
|
|
|
|
|
|
2015-04-10 21:59:52 +00:00
|
|
|
PlasmaCore.ColorScope {
|
|
|
|
|
colorGroup: PlasmaCore.Theme.NormalColorGroup
|
|
|
|
|
|
2015-02-25 18:26:04 +00:00
|
|
|
PlasmaCore.FrameSvgItem {
|
|
|
|
|
z: -1
|
|
|
|
|
imagePath: "widgets/background"
|
|
|
|
|
enabledBorders: PlasmaCore.FrameSvgItem.TopBorder | PlasmaCore.FrameSvgItem.BottomBorder
|
|
|
|
|
anchors {
|
|
|
|
|
fill: parent
|
|
|
|
|
topMargin: -margins.top
|
|
|
|
|
bottomMargin: -margins.bottom
|
|
|
|
|
}
|
2015-04-10 21:59:52 +00:00
|
|
|
Rectangle {
|
|
|
|
|
anchors {
|
|
|
|
|
fill: parent
|
|
|
|
|
topMargin: parent.margins.top
|
|
|
|
|
bottomMargin: parent.margins.bottom
|
|
|
|
|
}
|
|
|
|
|
color: PlasmaCore.ColorScope.backgroundColor
|
|
|
|
|
}
|
2015-02-25 18:26:04 +00:00
|
|
|
}
|
|
|
|
|
|
2015-04-10 21:59:52 +00:00
|
|
|
height: applicationsView.cellWidth
|
2015-02-25 18:26:04 +00:00
|
|
|
width: parent.width
|
|
|
|
|
y: parent.height / 2 - height / 2
|
|
|
|
|
x: 0
|
|
|
|
|
}
|