summaryrefslogtreecommitdiff
path: root/watchlet.cpp
blob: 6d7fe681fdac0c3eee11d8ab1e9b5ddc1b3795b6 (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
#include "watchlet.h"
#include "watchserver.h"

using namespace sowatch;

Watchlet::Watchlet(WatchServer *server, const QString& id) :
	QObject(server), _id(id), _active(false), _server(server)
{
	_server->registerWatchlet(this);
}

WatchServer* Watchlet::server()
{
	return _server;
}

Watch* Watchlet::watch()
{
	return _server->watch();
}

QString Watchlet::id() const
{
	return _id;
}

bool Watchlet::isActive() const
{
	return _active;
}

void Watchlet::activate()
{
	_active = true;
	emit activeChanged();
	emit activated();
}

void Watchlet::deactivate()
{
	_active = false;
	emit activeChanged();
	emit deactivated();
}