2016-03-10 19:09:36 +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-10 19:09:36 +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 SERVERNOTIFICATIONHANDLER_H
|
|
|
|
#define SERVERNOTIFICATIONHANDLER_H
|
|
|
|
|
|
|
|
#include <QtCore>
|
|
|
|
|
|
|
|
#include "activitywidget.h"
|
|
|
|
|
|
|
|
namespace OCC
|
|
|
|
{
|
|
|
|
|
|
|
|
class ServerNotificationHandler : public QObject
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
explicit ServerNotificationHandler(QObject *parent = 0);
|
|
|
|
|
|
|
|
signals:
|
|
|
|
void newNotificationList(ActivityList);
|
|
|
|
|
|
|
|
public slots:
|
|
|
|
void slotFetchNotifications(AccountState *ptr);
|
|
|
|
|
|
|
|
private slots:
|
|
|
|
void slotNotificationsReceived(const QVariantMap& json, int statusCode);
|
|
|
|
|
|
|
|
private:
|
|
|
|
QPointer<JsonApiJob> _notificationJob;
|
|
|
|
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif // SERVERNOTIFICATIONHANDLER_H
|