diff options
author | 2024-09-27 01:31:31 +0900 | |
---|---|---|
committer | 2024-09-29 00:18:05 +0900 | |
commit | 88fb60ad9d0c673f868d907ca451462ec16c9d7f (patch) | |
tree | 1c3df54cd7b518868ce2f7913ae81900e7498d6c /main.cpp | |
parent | 6a0b126643d36ff28d0fb9638498ca56ff3d43e7 (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.cpp | 24 |
1 files changed, 7 insertions, 17 deletions
@@ -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(); } |