AGL-style PulseAudio mixer app
[apps/mixer.git] / app / main.cpp
1 /*
2  * Copyright (C) 2016 The Qt Company Ltd.
3  * Copyright (C) 2016 Konsulko Group
4  *
5  * Licensed under the Apache License, Version 2.0 (the "License");
6  * you may not use this file except in compliance with the License.
7  * You may obtain a copy of the License at
8  *
9  *      http://www.apache.org/licenses/LICENSE-2.0
10  *
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the License is distributed on an "AS IS" BASIS,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the License for the specific language governing permissions and
15  * limitations under the License.
16  */
17
18 #include <QtCore/QDebug>
19 #include <QtCore/QDir>
20 #include <QtCore/QStandardPaths>
21 #include <QtGui/QGuiApplication>
22 #include <QtQml/QQmlApplicationEngine>
23 #include <QtQml/QQmlContext>
24 #include <QtQml/qqml.h>
25 #include <QtQuickControls2/QQuickStyle>
26 #include <QtQuick/qquickitem.h>
27 #include <QtQuick/qquickview.h>
28
29 #include "pacontrolmodel.h"
30
31 #ifdef HAVE_LIBHOMESCREEN
32 #include <libhomescreen.hpp>
33 #endif
34
35 int main(int argc, char *argv[])
36 {
37 #ifdef HAVE_LIBHOMESCREEN
38         LibHomeScreen libHomeScreen;
39
40         if (!libHomeScreen.renderAppToAreaAllowed(0, 1)) {
41                 qWarning() << "renderAppToAreaAllowed is denied";
42                 return -1;
43         }
44 #endif
45
46         QGuiApplication app(argc, argv);
47
48         QQuickStyle::setStyle("AGL");
49
50         qmlRegisterType<PaControlModel>("PaControlModel", 1, 0, "PaControlModel");
51
52         QQmlApplicationEngine engine;
53         engine.load(QUrl(QStringLiteral("qrc:/Mixer.qml")));
54
55         return app.exec();
56 }