diff --git a/src/declarativeimports/plasmaextracomponents/qml/PlasmoidHeading.qml b/src/declarativeimports/plasmaextracomponents/qml/PlasmoidHeading.qml new file mode 100644 --- /dev/null +++ b/src/declarativeimports/plasmaextracomponents/qml/PlasmoidHeading.qml @@ -0,0 +1,55 @@ +/* + * Copyright 2020 Niccolò Venerandi + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU Library General Public License as + * published by the Free Software Foundation; either version 2, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Library General Public License for more details + * + * You should have received a copy of the GNU Library General Public + * License along with this program; if not, write to the + * Free Software Foundation, Inc., + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + */ + +import QtQuick 2.12 +import QtQuick.Layouts 1.12 + +import org.kde.plasma.core 2.0 as PlasmaCore +import QtQuick.Templates 2.12 as T + + T.Frame { + + enum Location { + Header, + Footer + } + + property Location location: Location.Header + + Layout.fillWidth: true + //Layout.bottomMargin: location == Location.Footer ? 0 : headingSvg.margins.top + //Layout.topMargin: location == Location.Footer ? headingSvg.margins.bottom : 0 + + implicitHeight: contentHeight + topPadding + bottomPadding + contentHeight: contentItem.implicitHeight || (contentChildren.length === 1 ? contentChildren[0].implicitHeight : 0) + + leftInset: -headingSvg.fixedMargins.left + rightInset: -headingSvg.fixedMargins.right + topInset: location == Location.Footer ? -headingSvg.fixedMargins.bottom : -headingSvg.margins.top + bottomInset: location == Location.Footer ? -headingSvg.fixedMargins.bottom : -headingSvg.margins.top + + background: PlasmaCore.FrameSvgItem { + id: headingSvg + imagePath: "widgets/plasmoidheader" + prefix: location == Location.Header? 'header' : 'footer' + enabledBorders: (PlasmaCore.FrameSvgItem.LeftEdge | PlasmaCore.FrameSvgItem.RightEdge + (plasmoid.location === PlasmaCore.Types.TopEdge && location == Location.Header ? 0 : PlasmaCore.FrameSvgItem.TopEdge) | + (plasmoid.location === PlasmaCore.Types.BottomEdge && location == Location.Footer ? 0 : PlasmaCore.FrameSvgItem.BottomEdge)) + } + }