blob: d5ba1731ba878a708497d2535bb14704e325858c (
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
|
#include "notificationswatchlet.h"
#include "notificationswatchletplugin.h"
using namespace sowatch;
NotificationsWatchletPlugin::NotificationsWatchletPlugin(QObject *parent) :
QObject(parent)
{
}
NotificationsWatchletPlugin::~NotificationsWatchletPlugin()
{
}
QStringList NotificationsWatchletPlugin::watchlets()
{
QStringList l;
l << "com.javispedro.sowatch.notifications";
return l;
}
WatchletPluginInterface::WatchletInfo NotificationsWatchletPlugin::describeWatchlet(const QString &id)
{
WatchletInfo info;
if (id != "com.javispedro.sowatch.notifications") return info;
info.name = "Pending notifications";
info.icon = QUrl::fromLocalFile(SOWATCH_QML_DIR "/notificationswatchlet/icon.png");
return info;
}
Watchlet* NotificationsWatchletPlugin::getWatchlet(const QString& driver, ConfigKey *settings, WatchServer *server)
{
Q_UNUSED(driver);
Q_UNUSED(settings);
return new NotificationsWatchlet(server);
}
Q_EXPORT_PLUGIN2(notificationswatchlet, NotificationsWatchletPlugin)
|