shift-shell/containments/panel/package/contents/ui/DrawerBackground.qml

31 lines
683 B
QML
Raw Normal View History

2019-10-04 14:02:26 +00:00
/*
2021-03-01 20:03:25 +00:00
* SPDX-FileCopyrightText: 2019 Marco Martin <mart@kde.org>
2019-10-04 14:02:26 +00:00
*
2021-03-01 20:03:25 +00:00
* SPDX-License-Identifier: GPL-2.0-or-later
2019-10-04 14:02:26 +00:00
*/
import QtQuick 2.6
import QtQuick.Layouts 1.4
import QtQuick.Controls 2.4 as QQC2
import QtGraphicalEffects 1.12
2019-10-04 14:02:26 +00:00
import org.kde.plasma.core 2.0 as PlasmaCore
2020-09-12 01:57:56 +00:00
import org.kde.kirigami 2.12 as Kirigami
2019-10-04 14:02:26 +00:00
QQC2.Control {
id: root
leftPadding: frameSvg.margins.left
topPadding: frameSvg.margins.top
rightPadding: frameSvg.margins.right
bottomPadding: frameSvg.margins.bottom
background: PlasmaCore.FrameSvgItem {
id: frameSvg
imagePath: "widgets/background"
2019-10-09 14:11:10 +00:00
MouseArea {
2020-08-29 16:18:47 +00:00
anchors.fill: parent
}
2019-10-04 14:02:26 +00:00
}
}