matrixion/qml/voip/DeviceError.qml

39 lines
1,009 B
QML
Raw Permalink Normal View History

2021-03-05 02:35:15 +03:00
// SPDX-FileCopyrightText: 2021 Nheko Contributors
// SPDX-FileCopyrightText: 2022 Nheko Contributors
2021-03-05 02:35:15 +03:00
// SPDX-License-Identifier: GPL-3.0-or-later
import QtQuick 2.9
2020-12-30 23:03:07 +03:00
import QtQuick.Controls 2.3
import QtQuick.Layouts 1.2
import im.nheko
2020-12-30 23:03:07 +03:00
Popup {
property string errorString
2021-01-07 01:15:43 +03:00
property var image
2020-12-30 23:03:07 +03:00
modal: true
2022-04-16 03:13:01 +03:00
background: Rectangle {
border.color: timelineRoot.palette.windowText
color: timelineRoot.palette.window
}
2021-01-18 14:43:27 +03:00
// only set the anchors on Qt 5.12 or higher
// see https://doc.qt.io/qt-5/qml-qtquick-controls2-popup.html#anchors.centerIn-prop
Component.onCompleted: {
if (anchors)
anchors.centerIn = parent;
}
2020-12-30 23:03:07 +03:00
RowLayout {
Image {
Layout.preferredHeight: 16
2022-04-16 03:13:01 +03:00
Layout.preferredWidth: 16
2022-04-11 05:18:16 +03:00
source: "image://colorimage/" + image + "?" + timelineRoot.palette.windowText
2020-12-30 23:03:07 +03:00
}
Label {
2022-04-11 05:18:16 +03:00
color: timelineRoot.palette.windowText
2022-04-16 03:13:01 +03:00
text: errorString
2020-12-30 23:03:07 +03:00
}
2021-01-12 01:51:39 +03:00
}
2020-12-30 23:03:07 +03:00
}