2019-07-13 19:39:01 +10:00
|
|
|
import QtQuick 2.12
|
|
|
|
import QtQuick.Layouts 1.12
|
2019-04-29 05:18:36 +10:00
|
|
|
import "../Base"
|
2019-04-29 01:01:38 +10:00
|
|
|
|
2019-04-29 05:18:36 +10:00
|
|
|
HRowLayout {
|
2019-05-03 04:20:21 +10:00
|
|
|
property alias label: noticeLabel
|
2019-04-29 01:01:38 +10:00
|
|
|
property alias text: noticeLabel.text
|
|
|
|
property alias color: noticeLabel.color
|
|
|
|
property alias font: noticeLabel.font
|
|
|
|
property alias backgroundColor: noticeLabelBackground.color
|
|
|
|
property alias radius: noticeLabelBackground.radius
|
|
|
|
|
2019-04-29 05:18:36 +10:00
|
|
|
HLabel {
|
2019-04-29 01:01:38 +10:00
|
|
|
id: noticeLabel
|
|
|
|
horizontalAlignment: Text.AlignHCenter
|
|
|
|
wrapMode: Text.Wrap
|
2019-07-16 19:29:47 +10:00
|
|
|
padding: theme.spacing / 2
|
|
|
|
leftPadding: theme.spacing
|
|
|
|
rightPadding: leftPadding
|
2019-04-29 01:01:38 +10:00
|
|
|
|
2019-07-16 19:29:47 +10:00
|
|
|
Layout.margins: theme.spacing
|
2019-04-29 01:01:38 +10:00
|
|
|
Layout.alignment: Qt.AlignCenter
|
2019-05-03 04:20:21 +10:00
|
|
|
Layout.maximumWidth:
|
|
|
|
parent.width - Layout.leftMargin - Layout.rightMargin
|
|
|
|
|
|
|
|
opacity: width > Layout.leftMargin + Layout.rightMargin ? 1 : 0
|
2019-04-29 01:01:38 +10:00
|
|
|
|
|
|
|
background: Rectangle {
|
|
|
|
id: noticeLabelBackground
|
2019-07-24 16:14:34 +10:00
|
|
|
color: theme.controls.box.background
|
|
|
|
radius: theme.controls.box.radius
|
2019-04-29 01:01:38 +10:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|