2016-03-11 13:37:45 +03:00
|
|
|
/*
|
|
|
|
* Copyright (C) by Klaas Freitag <freitag@owncloud.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
|
2016-10-25 12:00:07 +03:00
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
2016-03-11 13:37:45 +03:00
|
|
|
*
|
|
|
|
* 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 ACTIVITYLISTMODEL_H
|
|
|
|
#define ACTIVITYLISTMODEL_H
|
|
|
|
|
|
|
|
#include <QtCore>
|
|
|
|
|
|
|
|
#include "activitydata.h"
|
|
|
|
|
2017-04-26 13:15:33 +03:00
|
|
|
class QJsonDocument;
|
|
|
|
|
2016-03-11 13:37:45 +03:00
|
|
|
namespace OCC {
|
|
|
|
|
2017-05-09 15:24:11 +03:00
|
|
|
Q_DECLARE_LOGGING_CATEGORY(lcActivity)
|
|
|
|
|
2016-03-11 13:37:45 +03:00
|
|
|
class AccountState;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief The ActivityListModel
|
|
|
|
* @ingroup gui
|
|
|
|
*
|
|
|
|
* Simple list model to provide the list view with data.
|
|
|
|
*/
|
|
|
|
|
|
|
|
class ActivityListModel : public QAbstractListModel
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
2017-05-17 11:55:42 +03:00
|
|
|
explicit ActivityListModel(QWidget *parent = 0);
|
2016-03-11 13:37:45 +03:00
|
|
|
|
|
|
|
QVariant data(const QModelIndex &index, int role) const Q_DECL_OVERRIDE;
|
2017-05-17 11:55:42 +03:00
|
|
|
int rowCount(const QModelIndex &parent = QModelIndex()) const Q_DECL_OVERRIDE;
|
2016-03-11 13:37:45 +03:00
|
|
|
|
2017-05-17 11:55:42 +03:00
|
|
|
bool canFetchMore(const QModelIndex &) const Q_DECL_OVERRIDE;
|
|
|
|
void fetchMore(const QModelIndex &) Q_DECL_OVERRIDE;
|
2016-03-11 13:37:45 +03:00
|
|
|
|
|
|
|
ActivityList activityList() { return _finalList; }
|
2018-03-26 00:44:32 +03:00
|
|
|
void addToActivityList(AccountState *ast, ActivityList list);
|
2016-03-11 13:37:45 +03:00
|
|
|
|
|
|
|
public slots:
|
2017-05-17 11:55:42 +03:00
|
|
|
void slotRefreshActivity(AccountState *ast);
|
|
|
|
void slotRemoveAccount(AccountState *ast);
|
2016-03-11 13:37:45 +03:00
|
|
|
|
|
|
|
private slots:
|
2017-05-17 11:55:42 +03:00
|
|
|
void slotActivitiesReceived(const QJsonDocument &json, int statusCode);
|
2016-03-11 13:37:45 +03:00
|
|
|
|
|
|
|
signals:
|
2017-05-17 11:55:42 +03:00
|
|
|
void activityJobStatusCode(AccountState *ast, int statusCode);
|
2016-03-11 13:37:45 +03:00
|
|
|
|
|
|
|
private:
|
2017-05-17 11:55:42 +03:00
|
|
|
void startFetchJob(AccountState *s);
|
2016-03-11 13:37:45 +03:00
|
|
|
void combineActivityLists();
|
|
|
|
|
2017-05-17 11:55:42 +03:00
|
|
|
QMap<AccountState *, ActivityList> _activityLists;
|
2018-03-26 18:13:54 +03:00
|
|
|
QMap<AccountState *, ActivityList> _notificationLists;
|
2016-03-11 13:37:45 +03:00
|
|
|
ActivityList _finalList;
|
2017-05-17 11:55:42 +03:00
|
|
|
QSet<AccountState *> _currentlyFetching;
|
2016-03-11 13:37:45 +03:00
|
|
|
};
|
|
|
|
}
|
|
|
|
#endif // ACTIVITYLISTMODEL_H
|