2020-06-17 15:31:01 -04:00
|
|
|
import QtQuick 2.13
|
2020-06-11 17:23:27 -04:00
|
|
|
import "../imports"
|
|
|
|
|
|
|
|
Rectangle {
|
|
|
|
id: roundedImage
|
|
|
|
property url source:"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAAg0lEQVR4nOzXwQmAMBAFURV7sQybsgybsgyr0QYUlE1g+Mw7ioQMe9lMQwhDaAyhMYTGEJqYkPnrj/t5XE/ft2UdW1yken7MRAyhMYTGEBpDaAyhKe9JbzvSX9WdLWYihtAYQuMLkcYQGkPUScxEDKExhMYQGkNoDKExhMYQmjsAAP//ZfIUZgXTZXQAAAAASUVORK5CYII="
|
|
|
|
width: 40
|
|
|
|
height: 40
|
2020-07-22 16:16:06 -04:00
|
|
|
color: Style.current.background
|
2020-06-11 17:23:27 -04:00
|
|
|
radius: 50
|
|
|
|
border.width: 1
|
2020-08-06 17:25:53 +10:00
|
|
|
border.color: Style.current.borderSecondary
|
2020-06-11 17:23:27 -04:00
|
|
|
|
|
|
|
Image {
|
|
|
|
width: parent.width
|
|
|
|
height: parent.height
|
|
|
|
fillMode: Image.PreserveAspectFit
|
|
|
|
anchors.horizontalCenter: parent.horizontalCenter
|
|
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
|
|
source: roundedImage.source
|
2020-06-23 13:54:16 -04:00
|
|
|
mipmap: true
|
|
|
|
smooth: false
|
|
|
|
antialiasing: true
|
2020-06-11 17:23:27 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*##^##
|
|
|
|
Designer {
|
|
|
|
D{i:0;formeditorColor:"#4c4e50";formeditorZoom:2}
|
|
|
|
}
|
|
|
|
##^##*/
|