shift-shell/containments/homescreen/package/contents/ui/SatelliteStripe.qml
Marco Martin 0108d70fb4 move the applicationslistmodel to containment c++
the application list is only used in that containment for now: don't
create an extra qml import just for that, but put it into the c++
applet for the homescreen instead to make sure nobody else
uses it at least until we are really sure is needed elsewhere
2015-05-14 18:05:01 +02:00

30 lines
821 B
QML

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