38ccfe129e08df40d42f2a315c5cf69a7217e3f4
[apps/hvac.git] / app / main.cpp
1 /*
2  * Copyright (C) 2016 The Qt Company Ltd.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 #include <QtAGLExtras/AGLApplication>
18 #include <QtQml/QQmlApplicationEngine>
19 #include <hvac.h>
20
21 #include "translator.h"
22
23 int main(int argc, char *argv[])
24 {
25     AGLApplication app(argc, argv);
26     app.setApplicationName("HVAC");
27     app.setupApplicationRole("hvac");
28
29     QQmlApplicationEngine *engine = app.getQmlApplicationEngine();
30     QQmlContext *context = engine->rootContext();
31     QVariant v = context->contextProperty(QStringLiteral("bindingAddress"));
32     if(v.canConvert(QMetaType::QUrl)) {
33         QUrl bindingAddress = v.toUrl();
34         context->setContextProperty("hvac", new HVAC(bindingAddress));
35     } else {
36         qCritical("Cannot find bindingAddress property in context, SignalComposer unavailable");
37     }
38
39     qmlRegisterType<Translator>("Translator", 1, 0, "Translator");
40     app.load(QUrl(QStringLiteral("qrc:/HVAC.qml")));
41     return app.exec();
42 }
43