forked from Stremio/stremio-shell
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mainapplication.h
55 lines (46 loc) · 1.27 KB
/
mainapplication.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
#include <QEvent>
#include <QFileOpenEvent>
#include "singleapplication.h"
#include "autoupdater.h"
#ifdef Q_OS_MACOS
#define APP_TYPE QApplication
#else
#define APP_TYPE SingleApplication
#endif
class MainApp : public APP_TYPE
{
Q_OBJECT
public:
MainApp(int &argc, char **argv, bool unique) : APP_TYPE(argc, argv, unique) {
autoupdater = new AutoUpdater();
autoupdater->moveToThread(&autoupdaterThread);
autoupdaterThread.start();
};
~MainApp() {
delete autoupdater;
autoupdaterThread.quit();
autoupdaterThread.wait();
};
AutoUpdater* autoupdater;
protected:
bool event (QEvent *event)
{
// The system requested us to open a file
if (event->type() == QEvent::FileOpen)
{
QFileOpenEvent *openEvent = static_cast<QFileOpenEvent *>(event);
emit this->receivedMessage(0, openEvent->url());
}
else
return QApplication::event (event);
return true;
};
public slots:
void processMessage(quint32 instance, QByteArray msg) {
emit this->receivedMessage(QVariant(instance), QVariant(QString(msg)));
}
signals:
void receivedMessage(QVariant instanceID, QVariant message);
private:
QThread autoupdaterThread;
};