Add starter FileProviderEvictionDialog component

Signed-off-by: Claudio Cambra <claudio.cambra@nextcloud.com>
This commit is contained in:
Claudio Cambra 2023-10-11 10:41:41 +08:00
parent 2ce4e91383
commit af98e48805
No known key found for this signature in database
GPG key ID: C839200C384636B0
2 changed files with 44 additions and 0 deletions

View file

@ -63,5 +63,6 @@
<file>src/gui/ConflictDelegate.qml</file>
<file>src/gui/ConflictItemFileInfo.qml</file>
<file>src/gui/macOS/ui/FileProviderSettings.qml</file>
<file>src/gui/macOS/ui/FileProviderEvictionDialog.qml</file>
</qresource>
</RCC>

View file

@ -0,0 +1,43 @@
/*
* Copyright (C) 2023 by Claudio Cambra <claudio.cambra@nextcloud.com>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* for more details.
*/
import QtQuick 2.15
import QtQuick.Controls 2.15
import QtQuick.Layouts 1.15
import Style 1.0
import "../../filedetails"
import "../../tray"
import com.nextcloud.desktopclient 1.0
ApplicationWindow {
id: root
property var materialisedItemsModel: null
property string accountUserIdAtHost: ""
title: qsTr("Evict materialised files")
flags: Qt.Dialog | Qt.WindowStaysOnTopHint
width: 640
height: 480
ListView {
anchors.fill: parent
model: root.materialisedItemsModel
delegate: Text {
text: model.display
}
}
}