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
qquickimplicitsizeitem.cpp
Go to the documentation of this file.
1// Copyright (C) 2016 The Qt Company Ltd.
2// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
3// Qt-Security score:significant reason:default
4
7
9
10/*!
11 \internal
12
13 QQuickImplicitSizeItem redefines the implicitWidth and implicitHeight
14 properties as readonly, as some items (e.g. Image, where the implicit size
15 represents the real size of the image) should not be able to have their
16 implicit size modified.
17*/
18
19QQuickImplicitSizeItem::QQuickImplicitSizeItem(QQuickImplicitSizeItemPrivate &dd, QQuickItem *parent)
20 : QQuickItem(dd, parent)
21{
22}
23
24QT_END_NAMESPACE
25
26#include "moc_qquickimplicitsizeitem_p.cpp"