blob: 31b66ab57e0d8653fbfc43c36acf739ae95733cc (
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
|
#include "metawatchfacewatchlet.h"
#include "metawatchwatchletsplugin.h"
using namespace sowatch;
MetaWatchWatchletsPlugin::MetaWatchWatchletsPlugin(QObject *parent) :
QObject(parent)
{
}
MetaWatchWatchletsPlugin::~MetaWatchWatchletsPlugin()
{
}
QStringList MetaWatchWatchletsPlugin::watchlets()
{
QStringList l;
l << MetaWatchFaceWatchlet::myId;
return l;
}
WatchletPluginInterface::WatchletInfo MetaWatchWatchletsPlugin::describeWatchlet(const QString &id)
{
WatchletInfo info;
if (id == MetaWatchFaceWatchlet::myId) {
info.name = "MetaWatch Face Watchlet";
info.hidden = true;
}
return info;
}
Watchlet* MetaWatchWatchletsPlugin::getWatchlet(const QString& id, ConfigKey *settings, Watch *watch)
{
Q_UNUSED(settings);
if (id == MetaWatchFaceWatchlet::myId) {
return new MetaWatchFaceWatchlet(watch);
}
}
Q_EXPORT_PLUGIN2(notificationswatchlet, MetaWatchWatchletsPlugin)
|