summaryrefslogtreecommitdiff
path: root/nekowatchlet/nekowatchletplugin.cpp
blob: aee7923c093100a59c8fd0d1a59c6ec5d54c74f3 (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 "nekowatchlet.h"
#include "nekowatchletplugin.h"

using namespace sowatch;

NekoWatchletPlugin::NekoWatchletPlugin(QObject *parent) :
    QObject(parent)
{
}

NekoWatchletPlugin::~NekoWatchletPlugin()
{
}

QStringList NekoWatchletPlugin::watchlets()
{
	QStringList l;
	l << NekoWatchlet::myId;
	return l;
}

WatchletPluginInterface::WatchletInfo NekoWatchletPlugin::describeWatchlet(const QString &id)
{
	WatchletInfo info;
	if (id != NekoWatchlet::myId) return info;
	info.name = "Neko";
	info.icon = QUrl::fromLocalFile(SOWATCH_QML_DIR "/nekowatchlet/icon.png");
	return info;
}

Watchlet* NekoWatchletPlugin::getWatchlet(const QString& driver, ConfigKey *settings, Watch *watch)
{
	Q_UNUSED(driver);
	Q_UNUSED(settings);
	return new NekoWatchlet(watch);
}

Q_EXPORT_PLUGIN2(notificationswatchlet, NekoWatchletPlugin)