Warning, /plasma/xdg-desktop-portal-kde/src/RemoteDesktopDialog.qml is written in an unsupported language. File is not indexed.

0001 /*  This file is part of the KDE project
0002     SPDX-FileCopyrightText: 2021 Aleix Pol Gonzalez <aleixpol@kde.org>
0003 
0004     SPDX-License-Identifier: LGPL-2.0-or-later
0005 */
0006 
0007 import QtQuick 2.15
0008 import QtQuick.Layouts 1.15
0009 import QtQuick.Controls 2.15 as QQC2
0010 import org.kde.kirigami 2.14 as Kirigami
0011 import org.kde.plasma.workspace.dialogs 1.0 as PWD
0012 
0013 PWD.SystemDialog
0014 {
0015     id: root
0016     iconName: "krfb"
0017     property alias description: desc.text
0018 
0019     QQC2.Label {
0020         id: desc
0021         textFormat: Text.MarkdownText
0022     }
0023 
0024     standardButtons: QQC2.DialogButtonBox.Ok | QQC2.DialogButtonBox.Cancel
0025     Component.onCompleted: {
0026         dialogButtonBox.standardButton(QQC2.DialogButtonBox.Ok).text = i18n("Share")
0027     }
0028 }