matrixion/qml/NotificationWarning.qml

34 lines
982 B
QML
Raw Permalink Normal View History

// SPDX-FileCopyrightText: 2021 Nheko Contributors
// SPDX-FileCopyrightText: 2022 Nheko Contributors
// SPDX-License-Identifier: GPL-3.0-or-later
import QtQuick 2.9
import QtQuick.Controls 2.3
import QtQuick.Layouts 1.2
import im.nheko
Item {
Layout.fillWidth: true
2022-04-16 03:13:01 +03:00
height: implicitHeight
implicitHeight: warningRect.visible ? warningDisplay.implicitHeight : 0
Rectangle {
id: warningRect
anchors.fill: parent
2022-04-16 03:13:01 +03:00
color: timelineRoot.palette.base
visible: (room && room.permissions.canPingRoom() && room.input.containsAtRoom)
z: 3
Label {
id: warningDisplay
2022-04-16 03:13:01 +03:00
anchors.bottom: parent.bottom
anchors.left: parent.left
anchors.leftMargin: 10
anchors.right: parent.right
anchors.rightMargin: 10
color: Nheko.theme.red
2021-10-01 04:24:28 +03:00
text: qsTr("You are about to notify the whole room")
textFormat: Text.PlainText
}
}
}