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
tools_designer_src_lib_sdk_abstractformwindow.cpp
Go to the documentation of this file.
1// Copyright (C) 2016 The Qt Company Ltd.
2// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
3// Qt-Security score:significant reason:default
4
5//! [0]
6 auto *formWindow = QDesignerFormWindowInterface::findFormWindow(myWidget);
7//! [0]
8
9
10//! [1]
12
13 auto *manager = formEditor->formWindowManager();
14
15 for (int i = 0; i < manager->formWindowCount(); ++i)
16 forms.append(manager->formWindow(i));
17//! [1]
18
19
20//! [2]
21 if (formWindow->isManaged(myWidget))
22 formWindow->manageWidget(myWidget->childWidget);
23//! [2]
QNetworkAccessManager manager
[0]
QList< QDesignerFormWindowInterface * > forms
[0]