Qt
Internal/Contributor docs for the Qt SDK. Note: These are NOT official API docs; those are found at https://doc.qt.io/
Loading...
Searching...
No Matches
src_plugins_platforms_qnx_qqnxwindow.cpp
Go to the documentation of this file.
1// Copyright (C) 2018 The Qt Company Ltd.
2// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
3
4//! [0]
5 QQuickView *view = new QQuickView(parent);
6 view->create();
7 QGuiApplication::platformNativeInterface()->setWindowProperty(view->handle(), "qnxWindowGroup",
8 group);
9//! [0]
10
11//! [1]
12 QQuickView *view = new QQuickView(parent);
13 view->create();
14 QGuiApplication::platformNativeInterface()->setWindowProperty(view->handle(), "qnxWindowGroup",
15 QVariant());
16//! [1]
QQuickView * view
[0]