2022-05-13 13:12:05 +00:00
|
|
|
// Copyright (C) 2021 The Qt Company Ltd.
|
|
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
|
2021-05-06 15:43:32 +00:00
|
|
|
|
|
|
|
#include <QtQuick/QQuickView>
|
|
|
|
#include <QGuiApplication>
|
|
|
|
#include "documenthighlighter.h"
|
|
|
|
|
|
|
|
int main(int argc, char *argv[])
|
|
|
|
{
|
|
|
|
QGuiApplication app(argc, argv);
|
|
|
|
QQuickView view;
|
|
|
|
view.setResizeMode(QQuickView::SizeRootObjectToView);
|
|
|
|
view.setSource(QUrl("qrc:///app.qml"));
|
|
|
|
view.show();
|
|
|
|
return app.exec();
|
|
|
|
}
|