95981ec336a9e672dd9181eaa60f3c268fadf623
[googlelatitude] / latitude.qml / qml.cpp
1 #include "qml.h"
2 #include <QtDeclarative/QDeclarativeContext>
3
4 LatitudeQML::LatitudeQML(QDeclarativeView *parent) :
5     QDeclarativeView(parent),
6     latitude(this),
7     gps(this),
8     demonio("/opt/linfati.com/bin/latituded"),
9     cli(this) {
10     qDebug() << "* LatitudeQML::LatitudeQML";
11
12     rootContext()->setContextProperty("latitude", &latitude);
13     rootContext()->setContextProperty("gps", &gps);
14     rootContext()->setContextProperty("demonio", this);
15     setSource(QUrl("qrc:/main.qml"));
16
17     latitude.getAccess();
18 }