mirror of
https://github.com/nextcloud/desktop.git
synced 2024-12-21 21:24:40 +03:00
48 lines
1.1 KiB
C
48 lines
1.1 KiB
C
|
/*
|
||
|
* 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; version 2 of the License.
|
||
|
*
|
||
|
* 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
|