From 88fb60ad9d0c673f868d907ca451462ec16c9d7f Mon Sep 17 00:00:00 2001 From: Naoto Yamaguchi Date: Fri, 27 Sep 2024 01:31:31 +0900 Subject: 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 --- main.cpp | 24 +++++++----------------- 1 file changed, 7 insertions(+), 17 deletions(-) (limited to 'main.cpp') 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 -#include -#include -#include "exec.hpp" +#include +#include +#include +#include int main(int argc, char *argv[]) { - QCoreApplication::setAttribute(Qt::AA_EnableHighDpiScaling); - QGuiApplication app(argc, argv); - qmlRegisterType("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(); } -- cgit