Spectral/imports/Spectral/Component/Timeline/StateDelegate.qml

25 lines
539 B
QML
Raw Normal View History

2018-09-04 06:58:41 +00:00
import QtQuick 2.9
import QtQuick.Controls 2.2
import QtQuick.Layouts 1.3
import QtQuick.Controls.Material 2.2
2018-10-01 08:07:48 +00:00
import Spectral.Setting 0.1
2018-09-04 06:58:41 +00:00
Label {
Layout.alignment: Qt.AlignHCenter
text: "<b>" + author.displayName + "</b> " + display
color: "white"
padding: 8
wrapMode: Label.Wrap
linkColor: "white"
textFormat: MSettings.richText ? Text.RichText : Text.StyledText
onLinkActivated: Qt.openUrlExternally(link)
background: Rectangle {
color: MSettings.darkTheme ? "#484848" : "grey"
}
}