nextcloud-desktop/src/gui/syncconflictsmodel.h

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

122 lines
3.3 KiB
C
Raw Normal View History

/*
* Copyright (C) 2023 by Matthieu Gallien <matthieu.gallien@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.
*/
#ifndef SYNCCONFLICTSMODEL_H
#define SYNCCONFLICTSMODEL_H
#include "tray/activitydata.h"
#include <QAbstractListModel>
#include <QMimeDatabase>
#include <QLocale>
namespace OCC {
class SyncConflictsModel : public QAbstractListModel
{
Q_OBJECT
Q_PROPERTY(OCC::ActivityList conflictActivities READ conflictActivities WRITE setConflictActivities NOTIFY conflictActivitiesChanged)
Q_PROPERTY(bool allExistingsSelected READ allExistingsSelected NOTIFY allExistingsSelectedChanged)
Q_PROPERTY(bool allConflictingSelected READ allConflictingSelected NOTIFY allConflictingSelectedChanged)
struct ConflictInfo {
QString mExistingFileName;
QString mExistingSize;
QString mConflictSize;
QString mExistingDate;
QString mConflictDate;
QUrl mExistingPreviewUrl;
QUrl mConflictPreviewUrl;
bool mExistingSelected = false;
bool mConflictSelected = false;
};
public:
enum class SyncConflictRoles : int {
ExistingFileName = Qt::UserRole,
ExistingSize,
ConflictSize,
ExistingDate,
ConflictDate,
ExistingSelected,
ConflictSelected,
ExistingPreviewUrl,
ConflictPreviewUrl,
};
Q_ENUM(SyncConflictRoles)
explicit SyncConflictsModel(QObject *parent = nullptr);
[[nodiscard]] int rowCount(const QModelIndex &parent = QModelIndex()) const override;
[[nodiscard]] QVariant data(const QModelIndex &index, int role = Qt::DisplayRole) const override;
[[nodiscard]] bool setData(const QModelIndex &index, const QVariant &value, int role = Qt::EditRole) override;
[[nodiscard]] QHash<int,QByteArray> roleNames() const override;
[[nodiscard]] Qt::ItemFlags flags(const QModelIndex &index) const override;
[[nodiscard]] OCC::ActivityList conflictActivities() const;
[[nodiscard]] bool allExistingsSelected() const;
[[nodiscard]] bool allConflictingSelected() const;
public slots:
void setConflictActivities(OCC::ActivityList conflicts);
void selectAllExisting(bool selected);
void selectAllConflicting(bool selected);
signals:
void conflictActivitiesChanged();
void allExistingsSelectedChanged();
void allConflictingSelectedChanged();
private:
void updateConflictsData();
void setExistingSelected(bool value,
const QModelIndex &index,
int role);
void setConflictingSelected(bool value,
const QModelIndex &index,
int role);
OCC::ActivityList mData;
QVector<ConflictInfo> mConflictData;
QMimeDatabase mMimeDb;
QLocale mLocale;
bool mAllExistingsSelected = false;
bool mAllConflictingsSelected = false;
};
}
#endif // SYNCCONFLICTSMODEL_H