feat: add basic type for rounded images and a icon button
This commit is contained in:
parent
1b55777da1
commit
eb4a7110bb
2 changed files with 55 additions and 0 deletions
14
src/base/BIconButton.qml
Normal file
14
src/base/BIconButton.qml
Normal 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"
|
||||||
|
}
|
||||||
|
}
|
41
src/base/BRoundedImage.qml
Normal file
41
src/base/BRoundedImage.qml
Normal 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"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
Loading…
Add table
Reference in a new issue