aboutsummaryrefslogtreecommitdiffstats
path: root/main.cpp
diff options
context:
space:
mode:
authorNaoto Yamaguchi <naoto.yamaguchi@aisin.co.jp>2024-09-27 01:31:31 +0900
committerNaoto Yamaguchi <naoto.yamaguchi@aisin.co.jp>2024-09-29 00:18:05 +0900
commit88fb60ad9d0c673f868d907ca451462ec16c9d7f (patch)
tree1c3df54cd7b518868ce2f7913ae81900e7498d6c /main.cpp
parent6a0b126643d36ff28d0fb9638498ca56ff3d43e7 (diff)
Rework momiscreen to migrate to Qt6
AGL momi IVI used weston with wayland-ivi-extention. At the scarthgap, it has issue for the touch event handling. New momiscreen changes role from homescreen bar to homescreen that is including compositor. Bug-AGL: SPEC-5162 Change-Id: I9cc92c508de2b49840690af1477fd52a37de7a86 Signed-off-by: Naoto Yamaguchi <naoto.yamaguchi@aisin.co.jp>
Diffstat (limited to 'main.cpp')
-rw-r--r--main.cpp24
1 files changed, 7 insertions, 17 deletions
diff --git a/main.cpp b/main.cpp
index 7329171..82af8be 100644
--- a/main.cpp
+++ b/main.cpp
@@ -1,29 +1,19 @@
+// Copyright (C) 2017 The Qt Company Ltd.
+// Copyright (C) 2024 Automotive Grade Linux
// SPDX-License-Identifier: GPL-3.0+
-// Copyright (C) 2021 AISIN CORPORATION
-#include <QGuiApplication>
-#include <QQmlApplicationEngine>
-#include <QtQml>
-#include "exec.hpp"
+#include <QtCore/QUrl>
+#include <QtCore/QDebug>
+#include <QtGui/QGuiApplication>
+#include <QtQml/QQmlApplicationEngine>
int main(int argc, char *argv[])
{
- QCoreApplication::setAttribute(Qt::AA_EnableHighDpiScaling);
-
QGuiApplication app(argc, argv);
- qmlRegisterType<AppExec>("AppExec", 1, 0, "AppExec");
-
- QQmlApplicationEngine engine;
- const QUrl url(QStringLiteral("qrc:/momiscreen.qml"));
- QObject::connect(&engine, &QQmlApplicationEngine::objectCreated,
- &app, [url](QObject *obj, const QUrl &objUrl) {
- if (!obj && url == objUrl)
- QCoreApplication::exit(-1);
- }, Qt::QueuedConnection);
- engine.load(url);
+ QQmlApplicationEngine appEngine(QUrl("qrc:///main.qml"));
return app.exec();
}