feat: add basic type for rounded images and a icon button

This commit is contained in:
Nydragon 2024-09-28 01:12:41 +02:00
parent 1b55777da1
commit eb4a7110bb
Signed by: nydragon
SSH key fingerprint: SHA256:iQnIC12spf4QjWSbarmkD2No1cLMlu6TWoV7K6cYF5g
2 changed files with 55 additions and 0 deletions

14
src/base/BIconButton.qml Normal file
View file

@ -0,0 +1,14 @@
import QtQuick
import QtQuick.Controls
Button {
property int size: 40
required property var source
icon.source: source
icon.height: size
icon.width: size
background: Rectangle {
color: "transparent"
}
}

View file

@ -0,0 +1,41 @@
import QtQuick
import QtQuick.Effects
Rectangle {
id: roundedImage
required property var source
height: 300
width: 300
color: "transparent"
Image {
id: image
source: roundedImage.source ?? ""
anchors.fill: parent
anchors.centerIn: parent
anchors.margins: roundedImage.border.width
visible: false
}
MultiEffect {
source: image
anchors.fill: image
maskEnabled: true
maskSource: mask
}
Item {
id: mask
width: image.width
height: image.height
layer.enabled: true
visible: false
Rectangle {
width: image.width
height: image.height
radius: roundedImage.radius
color: "black"
}
}
}