summaryrefslogtreecommitdiffstats
path: root/demo3/vertical/restriction/app
diff options
context:
space:
mode:
authorzheng_wenlong <wenlong_zheng@nexty-ele.com>2018-11-14 13:01:56 +0900
committerzheng_wenlong <wenlong_zheng@nexty-ele.com>2018-11-14 13:01:56 +0900
commit36fe083c39bef0a17328f008d4935a562efa123b (patch)
tree2aeff4166711be57aa79cad0bf9b74f0468f5dd0 /demo3/vertical/restriction/app
parent990474de8e93bf295e2aa65610c5298c4faac364 (diff)
This applciation is used to display restriction text, When car is running and videoplayer is showing. Change-Id: If8f287cd129638ccc0c87d03cc9dc7c53953f916 Signed-off-by: zheng_wenlong <wenlong_zheng@nexty-ele.com>
Diffstat (limited to 'demo3/vertical/restriction/app')
-rw-r--r--demo3/vertical/restriction/app/app.pri13
-rw-r--r--demo3/vertical/restriction/app/app.pro17
-rw-r--r--demo3/vertical/restriction/app/images/black_normal.pngbin0 -> 9809 bytes
-rw-r--r--demo3/vertical/restriction/app/images/black_split.pngbin0 -> 5011 bytes
-rw-r--r--demo3/vertical/restriction/app/main.cpp107
-rw-r--r--demo3/vertical/restriction/app/main.qml67
-rw-r--r--demo3/vertical/restriction/app/main.qrc7
-rw-r--r--demo3/vertical/restriction/app/pkg-config_wrapper.sh6
8 files changed, 217 insertions, 0 deletions
diff --git a/demo3/vertical/restriction/app/app.pri b/demo3/vertical/restriction/app/app.pri
new file mode 100644
index 0000000..c3b1fd1
--- /dev/null
+++ b/demo3/vertical/restriction/app/app.pri
@@ -0,0 +1,13 @@
+TEMPLATE = app
+QMAKE_LFLAGS += "-Wl,--hash-style=gnu -Wl,--as-needed"
+
+load(configure)
+qtCompileTest(libhomescreen)
+
+config_libhomescreen {
+ CONFIG += link_pkgconfig
+ PKGCONFIG += homescreen
+ DEFINES += HAVE_LIBHOMESCREEN
+}
+
+DESTDIR = $${OUT_PWD}/../package/root/bin
diff --git a/demo3/vertical/restriction/app/app.pro b/demo3/vertical/restriction/app/app.pro
new file mode 100644
index 0000000..22c9b00
--- /dev/null
+++ b/demo3/vertical/restriction/app/app.pro
@@ -0,0 +1,17 @@
+######################################################################
+# Automatically generated by qmake (3.1) Tue Apr 24 05:31:07 2018
+######################################################################
+
+TARGET = restriction
+INCLUDEPATH += .
+
+QT = quickcontrols2
+
+CONFIG += link_pkgconfig
+PKGCONFIG += libhomescreen qlibwindowmanager
+
+# Input
+SOURCES += main.cpp
+RESOURCES += main.qrc
+
+include(app.pri) \ No newline at end of file
diff --git a/demo3/vertical/restriction/app/images/black_normal.png b/demo3/vertical/restriction/app/images/black_normal.png
new file mode 100644
index 0000000..378798a
--- /dev/null
+++ b/demo3/vertical/restriction/app/images/black_normal.png
Binary files differ
diff --git a/demo3/vertical/restriction/app/images/black_split.png b/demo3/vertical/restriction/app/images/black_split.png
new file mode 100644
index 0000000..9ce95ed
--- /dev/null
+++ b/demo3/vertical/restriction/app/images/black_split.png
Binary files differ
diff --git a/demo3/vertical/restriction/app/main.cpp b/demo3/vertical/restriction/app/main.cpp
new file mode 100644
index 0000000..92f1c5f
--- /dev/null
+++ b/demo3/vertical/restriction/app/main.cpp
@@ -0,0 +1,107 @@
+
+#include <QtQml/qqml.h>
+#include <qlibwindowmanager.h>
+#include <QQuickWindow>
+#include <QtCore/QCommandLineParser>
+#include <QtCore/QDebug>
+#include <QtCore/QDir>
+#include <QtCore/QStandardPaths>
+#include <QtCore/QUrlQuery>
+#include <QtGui/QGuiApplication>
+#include <QtQml/QQmlApplicationEngine>
+#include <QtQml/QQmlContext>
+#include <QtQuickControls2/QQuickStyle>
+#include <libhomescreen.hpp>
+
+int main(int argc, char* argv[]) {
+ QString role = QString("Restriction");
+
+ QGuiApplication app(argc, argv);
+
+ QQuickStyle::setStyle("AGL");
+
+ QQmlApplicationEngine engine;
+
+ QCommandLineParser parser;
+ parser.addPositionalArgument("port",
+ app.translate("main", "port for binding"));
+ parser.addPositionalArgument("secret",
+ app.translate("main", "secret for binding"));
+ parser.addHelpOption();
+ parser.addVersionOption();
+ parser.process(app);
+ QStringList positionalArguments = parser.positionalArguments();
+
+ if (positionalArguments.length() == 2) {
+ int port = positionalArguments.takeFirst().toInt();
+ QString secret = positionalArguments.takeFirst();
+ QUrl bindingAddress;
+ bindingAddress.setScheme(QStringLiteral("ws"));
+ bindingAddress.setHost(QStringLiteral("localhost"));
+ bindingAddress.setPort(port);
+ bindingAddress.setPath(QStringLiteral("/api"));
+ QUrlQuery query;
+ query.addQueryItem(QStringLiteral("token"), secret);
+ bindingAddress.setQuery(query);
+
+ std::string token = secret.toStdString();
+ LibHomeScreen* hs = new LibHomeScreen();
+ QLibWindowmanager* qwm = new QLibWindowmanager();
+
+ if (qwm->init(port, secret) != 0) {
+ exit(EXIT_FAILURE);
+ }
+ // Request a surface as described in layers.json windowmanager’s file
+ if (qwm->requestSurface(role) != 0) {
+ exit(EXIT_FAILURE);
+ }
+ // Create an event callback against an event type. Here a lambda is
+ // called when SyncDraw event occurs
+ qwm->set_event_handler(QLibWindowmanager::Event_SyncDraw,
+ [qwm, role](json_object* object) {
+ fprintf(stderr, "Surface got syncDraw!\n");
+ qwm->endDraw(role);
+ });
+
+ engine.load(QUrl(QStringLiteral("qrc:/main.qml")));
+ QObject* root = engine.rootObjects().first();
+
+ // HomeScreen
+ hs->init(port, token.c_str());
+
+ // release restriction
+ hs->set_event_handler(
+ LibHomeScreen::Event_ReleaseRestriction,
+ [qwm, role, root](json_object* object) {
+ json_object* areaJ = nullptr;
+ if (json_object_object_get_ex(object, "area", &areaJ)) {
+ QString area(QLatin1String(json_object_get_string(areaJ)));
+
+ QMetaObject::invokeMethod(root, "hideImage");
+
+ // qwm->releaseWR(role, area);
+ qwm->deactivateSurface(role);
+ }
+ });
+
+ // allocate restriction
+ hs->set_event_handler(
+ LibHomeScreen::Event_AllocateRestriction,
+ [qwm, role, root](json_object* object) {
+ json_object* areaJ = nullptr;
+ if (json_object_object_get_ex(object, "area", &areaJ)) {
+ QString area(QLatin1String(json_object_get_string(areaJ)));
+ qDebug()
+ << "Surface got Event_AllocateRestriction " << area;
+
+ QMetaObject::invokeMethod(root, "showImage",
+ Q_ARG(QVariant, area));
+
+ // qwm->allocateWR(role, area);
+ qwm->activateSurface(role, area.prepend("restriction."));
+ }
+ });
+ }
+
+ return app.exec();
+} \ No newline at end of file
diff --git a/demo3/vertical/restriction/app/main.qml b/demo3/vertical/restriction/app/main.qml
new file mode 100644
index 0000000..15369cf
--- /dev/null
+++ b/demo3/vertical/restriction/app/main.qml
@@ -0,0 +1,67 @@
+import QtQuick 2.6
+import QtQuick.Controls 2.0
+
+ApplicationWindow {
+ id: root
+
+ color: "#00000000"
+
+ Label {
+ id: message
+ anchors.top: parent.top
+ anchors.left: parent.left
+ anchors.right: parent.right
+ anchors.bottom: parent.bottom
+ anchors.margins: 20
+ font.pixelSize: 75
+ wrapMode: Text.WordWrap
+ horizontalAlignment: Text.AlignHCenter
+ verticalAlignment: Text.AlignVCenter
+ color: "white"
+ text: "Only the video’s sound will be available while driving."
+ }
+
+ background : Image {
+ id: backgroundImg
+ anchors.fill: parent
+ anchors.topMargin: 0
+ anchors.bottomMargin: 0
+
+ visible: true
+ fillMode: Image.Stretch
+ source: 'images/black_normal.png'
+
+ state: "begin"
+ states: [
+ State {
+ name: "begin"
+ PropertyChanges { target: backgroundImg; opacity: 0.25 }
+ },
+ State {
+ name: "end"
+ PropertyChanges { target: backgroundImg; opacity: 0.75 }
+ }
+ ]
+
+ transitions: [
+ Transition {
+ from: "begin"; to: "end"
+ PropertyAnimation {target: backgroundImg; properties: "opacity"; duration: 2000}
+ }
+ ]
+ }
+
+ function showImage(area) {
+ if (area === 'normal') {
+ backgroundImg.source = 'images/black_normal.png'
+ } else {
+ backgroundImg.source = 'images/black_split.png'
+ }
+ backgroundImg.state = "end"
+ }
+
+
+ function hideImage() {
+ backgroundImg.state = "begin"
+ }
+}
diff --git a/demo3/vertical/restriction/app/main.qrc b/demo3/vertical/restriction/app/main.qrc
new file mode 100644
index 0000000..c9f6449
--- /dev/null
+++ b/demo3/vertical/restriction/app/main.qrc
@@ -0,0 +1,7 @@
+<RCC>
+ <qresource prefix="/">
+ <file>main.qml</file>
+ <file>images/black_normal.png</file>
+ <file>images/black_split.png</file>
+ </qresource>
+</RCC>
diff --git a/demo3/vertical/restriction/app/pkg-config_wrapper.sh b/demo3/vertical/restriction/app/pkg-config_wrapper.sh
new file mode 100644
index 0000000..02ed39b
--- /dev/null
+++ b/demo3/vertical/restriction/app/pkg-config_wrapper.sh
@@ -0,0 +1,6 @@
+#!/bin/sh
+PKG_CONFIG_SYSROOT_DIR=/opt/sdk/sysroots/aarch64-agl-linux
+export PKG_CONFIG_SYSROOT_DIR
+PKG_CONFIG_LIBDIR=/opt/sdk/sysroots/aarch64-agl-linux/usr/lib/pkgconfig:/opt/sdk/sysroots/aarch64-agl-linux/usr/share/pkgconfig
+export PKG_CONFIG_LIBDIR
+exec pkg-config "$@"