status-desktop/ui/imports/shared/controls/chat/CalloutCard.qml

35 lines
1.0 KiB
QML
Raw Normal View History

import QtQuick 2.13
import QtQuick.Controls 2.15
import QtQuick.Shapes 1.5
import utils 1.0
import shared 1.0
import shared.controls 1.0
Control {
id: root
property bool leftTail: true
property color backgroundColor: Style.current.background
property color borderColor: Style.current.border
property bool dashedBorder: false
property real borderWidth: 1
readonly property Component clippingEffect: CalloutOpacityMask {
width: parent.width
height: parent.height
leftTail: root.leftTail
}
background: ShapeRectangle {
path.fillColor: root.backgroundColor
path.strokeColor: root.borderColor
path.strokeWidth: root.borderWidth
path.strokeStyle: root.dashedBorder ? ShapePath.DashLine : ShapePath.SolidLine
radius: Style.current.radius * 2
leftBottomRadius: root.leftTail ? Style.current.radius / 2 : Style.current.radius * 2
rightBottomRadius: root.leftTail ? Style.current.radius * 2 : Style.current.radius / 2
}
}