2023-03-23 12:25:21 +00:00
|
|
|
// Copyright (C) 2023 The Qt Company Ltd.
|
2024-02-22 14:51:16 +00:00
|
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
|
2023-03-23 12:25:21 +00:00
|
|
|
|
|
|
|
#include <QtGui/qguiapplication.h>
|
|
|
|
#include <QtQuick/QQuickView>
|
|
|
|
|
|
|
|
int main(int argc, char *argv[])
|
|
|
|
{
|
|
|
|
QGuiApplication app(argc, argv);
|
|
|
|
|
|
|
|
QCoreApplication::setApplicationName("textalignment-manual-test");
|
|
|
|
QCoreApplication::setOrganizationName("QtProject");
|
|
|
|
QQuickView view;
|
|
|
|
view.setSource(QUrl(QStringLiteral("qrc:/qt/qml/textalignment/textalignment.qml")));
|
|
|
|
view.show();
|
|
|
|
|
|
|
|
return app.exec();
|
|
|
|
}
|