2021-03-05 02:35:15 +03:00
|
|
|
// SPDX-FileCopyrightText: 2021 Nheko Contributors
|
2022-01-01 06:57:53 +03:00
|
|
|
// SPDX-FileCopyrightText: 2022 Nheko Contributors
|
2023-01-02 06:25:33 +03:00
|
|
|
// SPDX-FileCopyrightText: 2023 Nheko Contributors
|
2021-03-07 07:57:56 +03:00
|
|
|
//
|
2021-03-05 02:35:15 +03:00
|
|
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
|
2021-01-12 17:03:39 +03:00
|
|
|
import QtQuick 2.9
|
2020-12-30 23:03:07 +03:00
|
|
|
import QtQuick.Controls 2.3
|
2021-01-12 17:03:39 +03:00
|
|
|
import QtQuick.Layouts 1.2
|
2020-12-30 23:03:07 +03:00
|
|
|
import im.nheko 1.0
|
|
|
|
|
|
|
|
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
|
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.preferredWidth: 16
|
|
|
|
Layout.preferredHeight: 16
|
2021-05-13 09:23:56 +03:00
|
|
|
source: "image://colorimage/" + image + "?" + Nheko.colors.windowText
|
2020-12-30 23:03:07 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
Label {
|
|
|
|
text: errorString
|
2021-05-13 09:23:56 +03:00
|
|
|
color: Nheko.colors.windowText
|
2020-12-30 23:03:07 +03:00
|
|
|
}
|
2021-01-12 01:51:39 +03:00
|
|
|
|
2020-12-30 23:03:07 +03:00
|
|
|
}
|
2021-01-12 01:51:39 +03:00
|
|
|
|
|
|
|
background: Rectangle {
|
2021-05-13 09:23:56 +03:00
|
|
|
color: Nheko.colors.window
|
|
|
|
border.color: Nheko.colors.windowText
|
2021-01-12 01:51:39 +03:00
|
|
|
}
|
|
|
|
|
2020-12-30 23:03:07 +03:00
|
|
|
}
|