Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/desktop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKevin Ottens <kevin.ottens@nextcloud.com>2020-12-07 21:12:21 +0300
committerKevin Ottens <kevin.ottens@nextcloud.com>2020-12-15 12:59:22 +0300
commit8e5a8d9fb9fa5c882d8ab047e36f538736977617 (patch)
tree5643170796a0aa4978ad9bd36f15993234aef4c9 /src/gui/folderstatusmodel.h
parent7a4a3597045d3d52943ad52fc58c61936a35ecc4 (diff)
FolderStatusModel LSCOL job now gets the is-encrypted property
Signed-off-by: Kevin Ottens <kevin.ottens@nextcloud.com>
Diffstat (limited to 'src/gui/folderstatusmodel.h')
-rw-r--r--src/gui/folderstatusmodel.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/gui/folderstatusmodel.h b/src/gui/folderstatusmodel.h
index ecc13c209..147411ca9 100644
--- a/src/gui/folderstatusmodel.h
+++ b/src/gui/folderstatusmodel.h
@@ -66,6 +66,7 @@ public:
QVector<SubFolderInfo> _subs;
qint64 _size = 0;
bool _isExternal = false;
+ bool _isEncrypted = false;
bool _fetched = false; // If we did the LSCOL for this folder already
QPointer<LsColJob> _fetchingJob; // Currently running LsColJob
@@ -126,6 +127,7 @@ public slots:
private slots:
void slotUpdateDirectories(const QStringList &);
void slotGatherPermissions(const QString &name, const QMap<QString, QString> &properties);
+ void slotGatherEncryptionStatus(const QString &href, const QMap<QString, QString> &properties);
void slotLscolFinishedWithError(QNetworkReply *r);
void slotFolderSyncStateChange(Folder *f);
void slotFolderScheduleQueueChanged();