-
Notifications
You must be signed in to change notification settings - Fork 87
/
Copy pathplatformdepend.cpp
67 lines (56 loc) · 1.12 KB
/
platformdepend.cpp
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
56
57
58
59
60
61
62
63
64
65
66
67
#include "platformdepend.h"
#ifdef Q_OS_OSX
#include "osx/osxplatform.h"
#endif
class MockPlatform : public IPlatform
{
public:
long showNotify(const QString& title, const QString& content, const QString& data)
{
(void)title;
(void)content;
(void)data;
return 0;
}
void hideAllNotify()
{
}
void setBadgeNumber(int number)
{
(void)number;
}
};
PlatformDepend::PlatformDepend()
{
#ifdef Q_OS_OSX
mImpl = new OsxPlatform();
#else
mImpl = new MockPlatform();
#endif
}
PlatformDepend::~PlatformDepend()
{
delete mImpl;
}
PlatformDepend &PlatformDepend::instance()
{
static PlatformDepend me;
return me;
}
long PlatformDepend::showNotify(const QString &title, const QString &content, const QString &fellowIp)
{
return mImpl->showNotify(title, content, fellowIp);
}
void PlatformDepend::hideAllNotify()
{
mImpl->hideAllNotify();
}
void PlatformDepend::setBadgeNumber(int number)
{
mImpl->setBadgeNumber(number);
}
void PlatformDepend::setMainWnd(MainWindow *mainWnd)
{
IPlatform::setMainWnd(mainWnd);
mImpl->setMainWnd(mainWnd);
}