moment/src/gui/Base/HNoticePage.qml

36 lines
995 B
QML
Raw Normal View History

2019-12-19 22:46:16 +11:00
// SPDX-License-Identifier: LGPL-3.0-or-later
import QtQuick 2.12
import QtQuick.Layouts 1.12
import "../Base"
2019-04-29 01:01:38 +10:00
HRowLayout {
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
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
opacity: width > 16 * theme.uiScale ? 1 : 0
2019-04-29 01:01:38 +10:00
background: Rectangle {
id: noticeLabelBackground
color: theme.controls.box.background
radius: theme.controls.box.radius
2019-04-29 01:01:38 +10:00
}
Layout.alignment: Qt.AlignCenter
Layout.preferredWidth: implicitWidth
Layout.maximumWidth: parent.width
2019-04-29 01:01:38 +10:00
}
}