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_gui_graphicsview_qgraphicsgridlayout.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
4//! [0]
6QGraphicsWidget *textEdit = scene.addWidget(new QTextEdit);
7QGraphicsWidget *pushButton = scene.addWidget(new QPushButton);
8
9QGraphicsWidget *form = new QGraphicsWidget;
10scene.addItem(form);
11
12QGraphicsGridLayout *layout = new QGraphicsGridLayout(form);
13layout->addItem(textEdit, 0, 0);
14layout->addItem(pushButton, 0, 1);
15//! [0]
QGraphicsScene scene
[0]
QGraphicsWidget * textEdit