31 lines
806 B
QML
31 lines
806 B
QML
import QtQuick 2.7
|
|
import QtQuick.Layouts 1.3
|
|
import "../Base"
|
|
|
|
HRowLayout {
|
|
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
|
|
|
|
HLabel {
|
|
id: noticeLabel
|
|
horizontalAlignment: Text.AlignHCenter
|
|
wrapMode: Text.Wrap
|
|
padding: 3
|
|
leftPadding: 10
|
|
rightPadding: 10
|
|
|
|
Layout.margins: 10
|
|
Layout.alignment: Qt.AlignCenter
|
|
Layout.maximumWidth: parent.width - Layout.margins * 2
|
|
|
|
background: Rectangle {
|
|
id: noticeLabelBackground
|
|
color: HStyle.box.background
|
|
radius: HStyle.box.radius
|
|
}
|
|
}
|
|
}
|