Files
RedBear-OS/local/recipes/qt/qtdeclarative/source/src/quicktemplates/qquickpane.cpp
T
vasilito f31522130f fix: comprehensive boot warnings and exceptions — fixable silenced, unfixable diagnosed
Build system (5 gaps hardened):
- COOKBOOK_OFFLINE defaults to true (fork-mode)
- normalize_patch handles diff -ruN format
- New 'repo validate-patches' command (25/25 relibc patches)
- 14 patched Qt/Wayland/display recipes added to protected list
- relibc archive regenerated with current patch chain

Boot fixes (fixable):
- Full ISO EFI partition: 16 MiB → 1 MiB (matches mini, BIOS hardcoded 2 MiB offset)
- D-Bus system bus: absolute /usr/bin/dbus-daemon path (was skipped)
- redbear-sessiond: absolute /usr/bin/redbear-sessiond path (was skipped)
- daemon framework: silenced spurious INIT_NOTIFY warnings for oneshot_async services (P0-daemon-silence-init-notify.patch)
- udev-shim: demoted INIT_NOTIFY warning to INFO (expected for oneshot_async)
- relibc: comprehensive named semaphores (sem_open/close/unlink) replacing upstream todo!() stubs
- greeterd: Wayland socket timeout 15s → 30s (compositor DRM wait)
- greeter-ui: built and linked (header guard unification, sem_compat stubs removed)
- mc: un-ignored in both configs, fixed glib/libiconv/pcre2 transitive deps
- greeter config: removed stale keymapd dependency from display/greeter services
- prefix toolchain: relibc headers synced, _RELIBC_STDLIB_H guard unified

Unfixable (diagnosed, upstream):
- i2c-hidd: abort on no-I2C-hardware (QEMU) — process::exit → relibc abort
- kded6/greeter-ui: page fault 0x8 — Qt library null deref
- Thread panics fd != -1 — Rust std library on Redox
- DHCP timeout / eth0 MAC — QEMU user-mode networking
- hwrngd/thermald — no hardware RNG/thermal in VM
- live preload allocation — BIOS memory fragmentation, continues on demand
2026-05-05 20:20:37 +01:00

456 lines
13 KiB
C++

// Copyright (C) 2017 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
// Qt-Security score:significant reason:default
#include "qquickpane_p.h"
#include "qquickpane_p_p.h"
#include "qquickcontentitem_p.h"
#include <QtCore/qloggingcategory.h>
QT_BEGIN_NAMESPACE
Q_STATIC_LOGGING_CATEGORY(lcPane, "qt.quick.controls.pane")
/*!
\qmltype Pane
\inherits Control
//! \nativetype QQuickPane
\inqmlmodule QtQuick.Controls
\since 5.7
\ingroup qtquickcontrols-containers
\ingroup qtquickcontrols-focusscopes
\brief Provides a background matching with the application style and theme.
Pane provides a background color that matches with the application style
and theme. Pane does not provide a layout of its own, but requires you to
position its contents, for instance by creating a \l RowLayout or a
\l ColumnLayout.
Items declared as children of a Pane are automatically parented to the
Pane's \l[QtQuickControls2]{Control::}{contentItem}. Items created
dynamically need to be explicitly parented to the \c contentItem.
As mentioned in \l {Event Handling}, Pane does not let click and touch
events through to items beneath it. If \l [QML] {Control::}{wheelEnabled}
is \c true, the same applies to mouse wheel events.
\section1 Content Sizing
If only a single item is used within a Pane, it will resize to fit the
implicit size of its contained item. This makes it particularly suitable
for use together with layouts.
\image qtquickcontrols-pane.png
{Pane with styled background containing checkboxes}
\snippet qtquickcontrols-pane.qml 1
Sometimes there might be two items within the pane:
\code
Pane {
SwipeView {
// ...
}
PageIndicator {
anchors.horizontalCenter: parent.horizontalCenter
anchors.bottom: parent.bottom
}
}
\endcode
In this case, Pane cannot calculate a sensible implicit size. Since we're
anchoring the \l PageIndicator over the \l SwipeView, we can simply set the
content size to the view's implicit size:
\code
Pane {
contentWidth: view.implicitWidth
contentHeight: view.implicitHeight
SwipeView {
id: view
// ...
}
PageIndicator {
anchors.horizontalCenter: parent.horizontalCenter
anchors.bottom: parent.bottom
}
}
\endcode
If the \l[QtQuickControls2]{Control::}{contentItem} has no implicit size
and only one child, Pane will use the implicit size of that child. For
example, in the following code, the Pane assumes the size of the Rectangle:
\code
Pane {
Item {
Rectangle {
implicitWidth: 200
implicitHeight: 200
color: "salmon"
}
}
}
\endcode
\sa {Customizing Pane}, {Container Controls},
{Focus Management in Qt Quick Controls}, {Event Handling}
*/
void QQuickPanePrivate::init()
{
Q_Q(QQuickPane);
q->setFlag(QQuickItem::ItemIsFocusScope);
q->setAcceptedMouseButtons(Qt::AllButtons);
#if QT_CONFIG(cursor)
q->setCursor(Qt::ArrowCursor);
#endif
connect(q, &QQuickControl::implicitContentWidthChanged, this, &QQuickPanePrivate::updateContentWidth);
connect(q, &QQuickControl::implicitContentHeightChanged, this, &QQuickPanePrivate::updateContentHeight);
setSizePolicy(QLayoutPolicy::Preferred, QLayoutPolicy::Preferred);
}
QList<QQuickItem *> QQuickPanePrivate::contentChildItems() const
{
if (!contentItem)
return QList<QQuickItem *>();
return contentItem->childItems();
}
QQuickItem *QQuickPanePrivate::getContentItem()
{
Q_Q(QQuickPane);
if (QQuickItem *item = QQuickControlPrivate::getContentItem())
return item;
return new QQuickContentItem(q);
}
void QQuickPanePrivate::itemImplicitWidthChanged(QQuickItem *item)
{
QQuickControlPrivate::itemImplicitWidthChanged(item);
if (item == firstChild)
updateImplicitContentWidth();
}
void QQuickPanePrivate::itemImplicitHeightChanged(QQuickItem *item)
{
QQuickControlPrivate::itemImplicitHeightChanged(item);
if (item == firstChild)
updateImplicitContentHeight();
}
void QQuickPanePrivate::itemDestroyed(QQuickItem *item)
{
// Do this check before calling the base class implementation, as that clears contentItem.
if (item == firstChild)
firstChild = nullptr;
QQuickControlPrivate::itemDestroyed(item);
}
void QQuickPanePrivate::contentChildrenChange()
{
Q_Q(QQuickPane);
QQuickItem *newFirstChild = getFirstChild();
if (newFirstChild != firstChild) {
if (firstChild)
removeImplicitSizeListener(firstChild);
if (newFirstChild && newFirstChild != contentItem)
addImplicitSizeListener(newFirstChild);
firstChild = newFirstChild;
}
updateImplicitContentSize();
emit q->contentChildrenChanged();
}
qreal QQuickPanePrivate::getContentWidth() const
{
if (!contentItem)
return 0;
if (hasContentWidth)
return contentWidth;
const qreal cw = contentItem->implicitWidth();
if (!qFuzzyIsNull(cw))
return cw;
const auto contentChildren = contentChildItems();
if (contentChildren.size() == 1)
return contentChildren.first()->implicitWidth();
return 0;
}
QQuickItem* QQuickPanePrivate::getFirstChild() const
{
// The first child varies depending on how the content item is declared.
// If it's declared as a child of the Pane, it will be parented to the
// default QQuickContentItem. If it's assigned to the contentItem property
// directly, QQuickControl::contentItem will be used.
return (qobject_cast<QQuickContentItem *>(contentItem)
? contentChildItems().value(0) : contentItem.data());
}
qreal QQuickPanePrivate::getContentHeight() const
{
if (!contentItem)
return 0;
if (hasContentHeight)
return contentHeight;
const qreal ch = contentItem->implicitHeight();
if (!qFuzzyIsNull(ch))
return ch;
const auto contentChildren = contentChildItems();
if (contentChildren.size() == 1)
return contentChildren.first()->implicitHeight();
return 0;
}
void QQuickPanePrivate::updateContentWidth()
{
Q_Q(QQuickPane);
if (hasContentWidth || qFuzzyCompare(contentWidth, implicitContentWidth))
return;
const qreal oldContentWidth = contentWidth;
contentWidth = implicitContentWidth;
qCDebug(lcPane) << "contentWidth of" << q << "changed to" << contentWidth;
q->contentSizeChange(QSizeF(contentWidth, contentHeight), QSizeF(oldContentWidth, contentHeight));
emit q->contentWidthChanged();
}
void QQuickPanePrivate::updateContentHeight()
{
Q_Q(QQuickPane);
if (hasContentHeight || qFuzzyCompare(contentHeight, implicitContentHeight))
return;
const qreal oldContentHeight = contentHeight;
contentHeight = implicitContentHeight;
qCDebug(lcPane) << "contentHeight of" << q << "changed to" << contentHeight;
q->contentSizeChange(QSizeF(contentWidth, contentHeight), QSizeF(contentWidth, oldContentHeight));
emit q->contentHeightChanged();
}
/*
A pane needs to be opaque to mouse events, so that events don't get
propagated through to controls covered by the pane.
*/
bool QQuickPanePrivate::handlePress(const QPointF &point, ulong timestamp)
{
QQuickControlPrivate::handlePress(point, timestamp);
return true;
}
QQuickPane::QQuickPane(QQuickItem *parent)
: QQuickControl(*(new QQuickPanePrivate), parent)
{
Q_D(QQuickPane);
d->init();
}
QQuickPane::~QQuickPane()
{
Q_D(QQuickPane);
if (d->contentItem) {
// It's possible for the focus frame to be removed as a child of our contentItem
// upon our destruction, so disconnect to avoid getting our slot getting called during this.
QObjectPrivate::disconnect(d->contentItem, &QQuickItem::childrenChanged,
d, &QQuickPanePrivate::contentChildrenChange);
}
d->removeImplicitSizeListener(d->contentItem);
d->removeImplicitSizeListener(d->firstChild);
}
QQuickPane::QQuickPane(QQuickPanePrivate &dd, QQuickItem *parent)
: QQuickControl(dd, parent)
{
Q_D(QQuickPane);
d->init();
}
/*!
\qmlproperty real QtQuick.Controls::Pane::contentWidth
This property holds the content width. It is used for calculating the total
implicit width of the pane.
For more information, see \l {Content Sizing}.
\sa contentHeight
*/
qreal QQuickPane::contentWidth() const
{
Q_D(const QQuickPane);
return d->contentWidth;
}
void QQuickPane::setContentWidth(qreal width)
{
Q_D(QQuickPane);
d->hasContentWidth = true;
if (qFuzzyCompare(d->contentWidth, width))
return;
const qreal oldWidth = d->contentWidth;
d->contentWidth = width;
contentSizeChange(QSizeF(width, d->contentHeight), QSizeF(oldWidth, d->contentHeight));
emit contentWidthChanged();
}
void QQuickPane::resetContentWidth()
{
Q_D(QQuickPane);
if (!d->hasContentWidth)
return;
d->hasContentWidth = false;
d->updateImplicitContentWidth();
}
/*!
\qmlproperty real QtQuick.Controls::Pane::contentHeight
This property holds the content height. It is used for calculating the total
implicit height of the pane.
For more information, see \l {Content Sizing}.
\sa contentWidth
*/
qreal QQuickPane::contentHeight() const
{
Q_D(const QQuickPane);
return d->contentHeight;
}
void QQuickPane::setContentHeight(qreal height)
{
Q_D(QQuickPane);
d->hasContentHeight = true;
if (qFuzzyCompare(d->contentHeight, height))
return;
const qreal oldHeight = d->contentHeight;
d->contentHeight = height;
contentSizeChange(QSizeF(d->contentWidth, height), QSizeF(d->contentWidth, oldHeight));
emit contentHeightChanged();
}
void QQuickPane::resetContentHeight()
{
Q_D(QQuickPane);
if (!d->hasContentHeight)
return;
d->hasContentHeight = false;
d->updateImplicitContentHeight();
}
/*!
\qmlproperty list<QtObject> QtQuick.Controls::Pane::contentData
\qmldefault
This property holds the list of content data.
The list contains all objects that have been declared in QML as children
of the pane.
\note Unlike \c contentChildren, \c contentData does include non-visual QML
objects.
\sa Item::data, contentChildren
*/
QQmlListProperty<QObject> QQuickPanePrivate::contentData()
{
Q_Q(QQuickPane);
return QQmlListProperty<QObject>(q->contentItem(), nullptr,
QQuickItemPrivate::data_append,
QQuickItemPrivate::data_count,
QQuickItemPrivate::data_at,
QQuickItemPrivate::data_clear);
}
/*!
\qmlproperty list<Item> QtQuick.Controls::Pane::contentChildren
This property holds the list of content children.
The list contains all items that have been declared in QML as children
of the pane.
\note Unlike \c contentData, \c contentChildren does not include non-visual
QML objects.
\sa Item::children, contentData
*/
QQmlListProperty<QQuickItem> QQuickPanePrivate::contentChildren()
{
Q_Q(QQuickPane);
return QQmlListProperty<QQuickItem>(q->contentItem(), nullptr,
QQuickItemPrivate::children_append,
QQuickItemPrivate::children_count,
QQuickItemPrivate::children_at,
QQuickItemPrivate::children_clear);
}
void QQuickPane::componentComplete()
{
Q_D(QQuickPane);
QQuickControl::componentComplete();
d->updateImplicitContentSize();
}
void QQuickPane::contentItemChange(QQuickItem *newItem, QQuickItem *oldItem)
{
Q_D(QQuickPane);
QQuickControl::contentItemChange(newItem, oldItem);
if (oldItem) {
d->removeImplicitSizeListener(oldItem);
QObjectPrivate::disconnect(oldItem, &QQuickItem::childrenChanged, d, &QQuickPanePrivate::contentChildrenChange);
}
if (newItem) {
d->addImplicitSizeListener(newItem);
QObjectPrivate::connect(newItem, &QQuickItem::childrenChanged, d, &QQuickPanePrivate::contentChildrenChange);
}
d->contentChildrenChange();
}
void QQuickPane::contentSizeChange(const QSizeF &newSize, const QSizeF &oldSize)
{
Q_UNUSED(newSize);
Q_UNUSED(oldSize);
Q_D(QQuickPane);
if (d->hasContentWidth)
d->updateImplicitContentWidth();
if (d->hasContentHeight)
d->updateImplicitContentHeight();
}
#if QT_CONFIG(accessibility)
QAccessible::Role QQuickPane::accessibleRole() const
{
return QAccessible::Pane;
}
#endif
QT_END_NAMESPACE
#include "moc_qquickpane_p.cpp"