blob: 4acf721d9d0a23bf639d5cf0591c4d0017286e86 (
plain)
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
|
#include "metawatchfacewatchlet.h"
#include "metawatchnotificationwatchlet.h"
#include "metawatchwatchletsplugin.h"
using namespace sowatch;
MetaWatchWatchletsPlugin::MetaWatchWatchletsPlugin(QObject *parent) :
QObject(parent)
{
}
MetaWatchWatchletsPlugin::~MetaWatchWatchletsPlugin()
{
}
QStringList MetaWatchWatchletsPlugin::watchlets()
{
QStringList l;
l << MetaWatchFaceWatchlet::myId << MetaWatchNotificationWatchlet::myId;
return l;
}
WatchletPluginInterface::WatchletInfo MetaWatchWatchletsPlugin::describeWatchlet(const QString &id, const QString& watchModel)
{
WatchletInfo info;
if (id == MetaWatchFaceWatchlet::myId) {
if (watchModel == "metawatch-digital") {
info.name = "MetaWatch Face Watchlet";
// Keep non visible
}
} else if (id == MetaWatchNotificationWatchlet::myId) {
if (watchModel == "metawatch-digital") {
info.name = "MetaWatch Notification Watchlet";
// Keep non visible
}
}
return info;
}
Watchlet* MetaWatchWatchletsPlugin::getWatchlet(const QString& id, ConfigKey *settings, Watch *watch)
{
Q_UNUSED(settings);
if (id == MetaWatchFaceWatchlet::myId) {
return new MetaWatchFaceWatchlet(watch);
} else if (id == MetaWatchNotificationWatchlet::myId) {
return new MetaWatchNotificationWatchlet(watch);
} else {
return 0;
}
}
Q_EXPORT_PLUGIN2(notificationswatchlet, MetaWatchWatchletsPlugin)
|