summaryrefslogtreecommitdiff
path: root/sysinfowatchlet/sysinfowatchlet.cpp
blob: 214d5de37ebff4d7db04f75f4628791e1c0b97f4 (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 <QtDebug>

#include "sysinfowatchlet.h"

using namespace sowatch;
QTM_USE_NAMESPACE

SysInfoWatchlet::SysInfoWatchlet(Watch* watch) :
	DeclarativeWatchlet(watch, "com.javispedro.sowatch.sysinfo"),
	_devInfo(new QSystemDeviceInfo(this)),
	_netMgr(new QNetworkConfigurationManager(this))
{
	context()->setContextProperty("batteryLevel", 0);
	context()->setContextProperty("networkName", "");
	setSource(QUrl(SOWATCH_QML_DIR "/sysinfowatchlet/" + watch->model() + ".qml"));
	connect(this, SIGNAL(activated()), SLOT(handleActivated()));
	connect(this, SIGNAL(deactivated()), SLOT(handleDeactivated()));
}

void SysInfoWatchlet::handleActivated()
{
	updateInformation();
	connect(_devInfo, SIGNAL(batteryLevelChanged(int)), this, SLOT(updateInformation()));
	connect(_netMgr, SIGNAL(onlineStateChanged(bool)), this, SLOT(updateInformation()));
}

void SysInfoWatchlet::handleDeactivated()
{
	disconnect(_devInfo, SIGNAL(batteryLevelChanged(int)), this, SLOT(updateInformation()));
	disconnect(_netMgr, SIGNAL(onlineStateChanged(bool)), this, SLOT(updateInformation()));
}

void SysInfoWatchlet::updateInformation()
{
	QList<QNetworkConfiguration> cfgs = _netMgr->allConfigurations(QNetworkConfiguration::Active);
	int batteryLevel = _devInfo->batteryLevel();
	qDebug() << "Updating system information (batteryLevel =" << batteryLevel << "%)";
	context()->setContextProperty("batteryLevel", batteryLevel);
	if (cfgs.size() > 0) {
		context()->setContextProperty("networkName", cfgs[0].name());
	} else {
		context()->setContextProperty("networkName", "-");
	}
}