mirror of
https://github.com/HenkKalkwater/sddm-nx
synced 2024-11-16 08:25:18 +00:00
28 lines
570 B
QML
28 lines
570 B
QML
// SPDX-FileCopyrightText: 2020 Chris Josten
|
|
//
|
|
// SPDX-License-Identifier: BSL-1.0
|
|
|
|
import QtQuick 2.6
|
|
import QtGraphicalEffects 1.6
|
|
|
|
Item {
|
|
property alias source: image.source
|
|
property alias color: colorOverlay.color
|
|
|
|
// I thought this should be standard
|
|
implicitWidth: image.implicitWidth
|
|
implicitHeight: image.implicitHeight
|
|
Image {
|
|
id: image
|
|
visible: false
|
|
anchors.fill: parent
|
|
smooth: true
|
|
}
|
|
|
|
ColorOverlay {
|
|
id: colorOverlay
|
|
anchors.fill: parent
|
|
source: image
|
|
}
|
|
}
|