nextcloud-desktop/src/gui/activitylistmodel.h

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

73 lines
2 KiB
C
Raw Normal View History

/*
* 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
* 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 ACTIVITYLISTMODEL_H
#define ACTIVITYLISTMODEL_H
#include <QtCore>
#include "activitydata.h"
2017-04-26 13:15:33 +03:00
class QJsonDocument;
namespace OCC {
Q_DECLARE_LOGGING_CATEGORY(lcActivity)
class AccountState;
/**
* @brief The ActivityListModel
* @ingroup gui
*
* Simple list model to provide the list view with data.
*/
class ActivityListModel : public QAbstractListModel
{
Q_OBJECT
public:
explicit ActivityListModel(QWidget *parent = 0);
QVariant data(const QModelIndex &index, int role) const Q_DECL_OVERRIDE;
int rowCount(const QModelIndex &parent = QModelIndex()) const Q_DECL_OVERRIDE;
bool canFetchMore(const QModelIndex &) const Q_DECL_OVERRIDE;
void fetchMore(const QModelIndex &) Q_DECL_OVERRIDE;
ActivityList activityList() { return _finalList; }
void addToActivityList(AccountState *ast, ActivityList list);
public slots:
void slotRefreshActivity(AccountState *ast);
void slotRemoveAccount(AccountState *ast);
private slots:
2017-04-26 13:15:33 +03:00
void slotActivitiesReceived(const QJsonDocument &json, int statusCode);
signals:
void activityJobStatusCode(AccountState *ast, int statusCode);
private:
void startFetchJob(AccountState *s);
void combineActivityLists();
QMap<AccountState *, ActivityList> _activityLists;
QMap<AccountState *, ActivityList> _notificationLists;
ActivityList _finalList;
QSet<AccountState *> _currentlyFetching;
};
}
#endif // ACTIVITYLISTMODEL_H