Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/owncloud/client.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKlaas Freitag <freitag@owncloud.com>2016-03-10 19:09:36 +0300
committerKlaas Freitag <freitag@owncloud.com>2016-03-11 12:48:34 +0300
commit2d1ab27cb52b318f30e9825091d94dc5444ff363 (patch)
treebe44a3040a13eddcee127ae41d9d85df893a7fc9 /src/gui/servernotificationhandler.h
parent903e79a7c4023c6f28377d5323b2401cea0cae92 (diff)
Notifications: Refactor - create a notification handler class
That cleans the ActivityWidget class
Diffstat (limited to 'src/gui/servernotificationhandler.h')
-rw-r--r--src/gui/servernotificationhandler.h47
1 files changed, 47 insertions, 0 deletions
diff --git a/src/gui/servernotificationhandler.h b/src/gui/servernotificationhandler.h
new file mode 100644
index 000000000..280b219bc
--- /dev/null
+++ b/src/gui/servernotificationhandler.h
@@ -0,0 +1,47 @@
+/*
+ * 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