2021-06-05 03:40:54 +00:00
|
|
|
/*
|
|
|
|
|
* SPDX-FileCopyrightText: 2021 Devin Lin <espidev@gmail.com>
|
|
|
|
|
*
|
|
|
|
|
* SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
|
*/
|
|
|
|
|
|
2023-05-13 02:07:48 +00:00
|
|
|
import QtQuick
|
|
|
|
|
import QtQuick.Controls as Controls
|
|
|
|
|
import QtQuick.Layouts
|
|
|
|
|
import QtQuick.Window
|
2021-06-05 03:40:54 +00:00
|
|
|
|
|
|
|
|
import org.kde.plasma.core 2.1 as PlasmaCore
|
|
|
|
|
import org.kde.plasma.components 3.0 as PlasmaComponents
|
|
|
|
|
|
|
|
|
|
// capture presses on the audio applet so it doesn't close the overlay
|
|
|
|
|
Controls.Control {
|
|
|
|
|
id: content
|
|
|
|
|
implicitWidth: Math.min(PlasmaCore.Units.gridUnit * 20, parent.width - PlasmaCore.Units.largeSpacing * 2)
|
|
|
|
|
padding: PlasmaCore.Units.smallSpacing * 2
|
|
|
|
|
background: PlasmaCore.FrameSvgItem {
|
|
|
|
|
imagePath: "widgets/background"
|
|
|
|
|
anchors.margins: -PlasmaCore.Units.smallSpacing * 2
|
|
|
|
|
anchors.fill: parent
|
|
|
|
|
}
|
|
|
|
|
}
|