diff options
author | Petr Mrázek <peterix@gmail.com> | 2015-02-04 21:10:10 +0100 |
---|---|---|
committer | Petr Mrázek <peterix@gmail.com> | 2015-04-12 20:57:17 +0200 |
commit | 141e0a02a0a0c4bbc4cc2e900560db5048366104 (patch) | |
tree | d61b0ac7fedc656d2906f084b9a384b8047e8617 /logic/updater/NotificationChecker.h | |
parent | 473971b6e7a79ed38fa68dffacd207fda874fdc0 (diff) | |
download | PrismLauncher-141e0a02a0a0c4bbc4cc2e900560db5048366104.tar.gz PrismLauncher-141e0a02a0a0c4bbc4cc2e900560db5048366104.tar.bz2 PrismLauncher-141e0a02a0a0c4bbc4cc2e900560db5048366104.zip |
SCRATCH move things to the right places
Diffstat (limited to 'logic/updater/NotificationChecker.h')
-rw-r--r-- | logic/updater/NotificationChecker.h | 54 |
1 files changed, 0 insertions, 54 deletions
diff --git a/logic/updater/NotificationChecker.h b/logic/updater/NotificationChecker.h deleted file mode 100644 index 915ee54d..00000000 --- a/logic/updater/NotificationChecker.h +++ /dev/null @@ -1,54 +0,0 @@ -#pragma once - -#include <QObject> - -#include "logic/net/NetJob.h" -#include "logic/net/CacheDownload.h" - -class NotificationChecker : public QObject -{ - Q_OBJECT - -public: - explicit NotificationChecker(QObject *parent = 0); - - QUrl notificationsUrl() const; - void setNotificationsUrl(const QUrl ¬ificationsUrl); - - struct NotificationEntry - { - int id; - QString message; - enum - { - Critical, - Warning, - Information - } type; - QString channel; - QString platform; - QString from; - QString to; - bool applies() const; - static bool versionLessThan(const QString &v1, const QString &v2); - }; - - QList<NotificationEntry> notificationEntries() const; - -public -slots: - void checkForNotifications(); - -private -slots: - void downloadSucceeded(int); - -signals: - void notificationCheckFinished(); - -private: - QList<NotificationEntry> m_entries; - QUrl m_notificationsUrl; - NetJobPtr m_checkJob; - CacheDownloadPtr m_download; -}; |