From f61dfc6557303a8bba5301927f42e5b2a7ffcac6 Mon Sep 17 00:00:00 2001 From: "Javier S. Pedro" Date: Sun, 7 Jul 2013 13:50:28 +0200 Subject: add some notification support to liveview --- liveviewwatchlets/liveviewwatchletsplugin.cpp | 44 +++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 liveviewwatchlets/liveviewwatchletsplugin.cpp (limited to 'liveviewwatchlets/liveviewwatchletsplugin.cpp') diff --git a/liveviewwatchlets/liveviewwatchletsplugin.cpp b/liveviewwatchlets/liveviewwatchletsplugin.cpp new file mode 100644 index 0000000..cf93ec5 --- /dev/null +++ b/liveviewwatchlets/liveviewwatchletsplugin.cpp @@ -0,0 +1,44 @@ +#include "liveviewnotificationwatchlet.h" +#include "liveviewwatchletsplugin.h" + +using namespace sowatch; + +LiveViewWatchletsPlugin::LiveViewWatchletsPlugin(QObject *parent) : + QObject(parent) +{ +} + +LiveViewWatchletsPlugin::~LiveViewWatchletsPlugin() +{ +} + +QStringList LiveViewWatchletsPlugin::watchlets() +{ + QStringList l; + l << LiveViewNotificationWatchlet::myId; + return l; +} + +WatchletPluginInterface::WatchletInfo LiveViewWatchletsPlugin::describeWatchlet(const QString &id, const QString& watchModel) +{ + WatchletInfo info; + if (id == LiveViewNotificationWatchlet::myId) { + if (watchModel == "metawatch-digital") { + info.name = "MetaWatch Notification Watchlet"; + // Keep non visible + } + } + return info; +} + +Watchlet* LiveViewWatchletsPlugin::getWatchlet(const QString& id, ConfigKey *settings, Watch *watch) +{ + Q_UNUSED(settings); + if (id == LiveViewNotificationWatchlet::myId) { + return new LiveViewNotificationWatchlet(watch); + } else { + return 0; + } +} + +Q_EXPORT_PLUGIN2(liveviewwatchlets, LiveViewWatchletsPlugin) -- cgit v1.2.3