mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-11-22 19:08:58 +03:00
43 lines
988 B
QML
43 lines
988 B
QML
// 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 1.0
|
|
|
|
Popup {
|
|
property string errorString
|
|
property var image
|
|
|
|
modal: true
|
|
// 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;
|
|
|
|
}
|
|
|
|
RowLayout {
|
|
Image {
|
|
Layout.preferredWidth: 16
|
|
Layout.preferredHeight: 16
|
|
source: "image://colorimage/" + image + "?" + Nheko.colors.windowText
|
|
}
|
|
|
|
Label {
|
|
text: errorString
|
|
color: Nheko.colors.windowText
|
|
}
|
|
|
|
}
|
|
|
|
background: Rectangle {
|
|
color: Nheko.colors.window
|
|
border.color: Nheko.colors.windowText
|
|
}
|
|
|
|
}
|