blob: 6b3237fdd7ea78b043a1dec10bf8e4bea43e5349 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
// Copyright (C) 2017 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
#include "touchsettings.h"
#include <QtGui/QGuiApplication>
#include <QOpenGLContext>
#include <QtQuick/QQuickView>
#include <QtQuick/QQuickItem>
#include <QtQml/QQmlContext>
int main(int argc, char* argv[])
{
qputenv("QML_XHR_ALLOW_FILE_READ", "1");
#ifdef Q_OS_ANDROID
QGuiApplication::setAttribute(Qt::AA_EnableHighDpiScaling);
#endif
QGuiApplication app(argc, argv);
QSurfaceFormat format;
if (QOpenGLContext::openGLModuleType() == QOpenGLContext::LibGL) {
format.setVersion(3, 2);
format.setProfile(QSurfaceFormat::CoreProfile);
}
format.setDepthBufferSize(24);
format.setStencilBufferSize(8);
QQuickView view;
view.setFormat(format);
view.create();
TouchSettings touchSettings;
view.rootContext()->setContextProperty("touchSettings", &touchSettings);
view.setSource(QUrl("qrc:/main.qml"));
view.setResizeMode(QQuickView::SizeRootObjectToView);
view.setMaximumSize(QSize(1820, 1080));
view.setMinimumSize(QSize(300, 150));
view.show();
return app.exec();
}
|