mirror of https://github.com/Nheko-Reborn/nheko
Merge pull request #1388 from Nheko-Reborn/command
Warn if an invalid command is enteredpull/1415/head
commit
7d8ccd4ce8
@ -0,0 +1,47 @@ |
||||
// SPDX-FileCopyrightText: 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 1.0 |
||||
|
||||
Rectangle { |
||||
id: warningRoot |
||||
|
||||
required property string text |
||||
property color bubbleColor: Nheko.theme.error |
||||
|
||||
implicitHeight: visible ? warningDisplay.implicitHeight + 4 * Nheko.paddingSmall : 0 |
||||
height: implicitHeight |
||||
Layout.fillWidth: true |
||||
color: Nheko.colors.window // required to hide the timeline behind this warning |
||||
|
||||
Rectangle { |
||||
id: warningRect |
||||
|
||||
visible: warningRoot.visible |
||||
// TODO: Qt.alpha() would make more sense but it wasn't working... |
||||
color: Qt.rgba(bubbleColor.r, bubbleColor.g, bubbleColor.b, 0.3) |
||||
border.width: 1 |
||||
border.color: bubbleColor |
||||
radius: 3 |
||||
anchors.fill: parent |
||||
anchors.margins: visible ? Nheko.paddingSmall : 0 |
||||
z: 3 |
||||
|
||||
Label { |
||||
id: warningDisplay |
||||
|
||||
anchors.left: parent.left |
||||
anchors.verticalCenter: parent.verticalCenter |
||||
anchors.margins: Nheko.paddingSmall |
||||
color: Nheko.colors.text |
||||
text: warningRoot.text |
||||
textFormat: Text.PlainText |
||||
} |
||||
|
||||
} |
||||
|
||||
} |
@ -1,38 +0,0 @@ |
||||
// SPDX-FileCopyrightText: 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 1.0 |
||||
|
||||
Item { |
||||
implicitHeight: warningRect.visible ? warningDisplay.implicitHeight : 0 |
||||
height: implicitHeight |
||||
Layout.fillWidth: true |
||||
|
||||
Rectangle { |
||||
id: warningRect |
||||
|
||||
visible: (room && room.permissions.canPingRoom() && room.input.containsAtRoom) |
||||
color: Nheko.colors.base |
||||
anchors.fill: parent |
||||
z: 3 |
||||
|
||||
Label { |
||||
id: warningDisplay |
||||
|
||||
anchors.left: parent.left |
||||
anchors.leftMargin: 10 |
||||
anchors.right: parent.right |
||||
anchors.rightMargin: 10 |
||||
anchors.bottom: parent.bottom |
||||
color: Nheko.theme.red |
||||
text: qsTr("You are about to notify the whole room") |
||||
textFormat: Text.PlainText |
||||
} |
||||
|
||||
} |
||||
|
||||
} |
Loading…
Reference in new issue