Files
RedBear-OS/local/recipes/qt/qtdeclarative/source/tests/manual/pointer/hoverpropagation.qml
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

257 lines
7.2 KiB
QML

// Copyright (C) 2022 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
import QtQuick 2.1
import QtQuick.Window
import QtQuick.Controls
Window {
width: 800
height: 700
visible: true
Flow {
anchors.fill: parent
spacing: 20
Column {
Label {
text: "Nested: MouseArea, MouseArea"
}
Rectangle {
width: 200
height: 200
border.width: 1
color: m3.containsMouse ? "yellow" : "transparent"
MouseArea {
id: m3
anchors.fill: parent
hoverEnabled: true
MouseArea {
id: m2
width: 100
height: 100
hoverEnabled: true
Rectangle {
anchors.fill: parent
color: m2.containsMouse ? "green" : "transparent"
opacity: 0.5
border.width: 1
}
}
}
}
}
Column {
Label {
text: "Nested: MouseArea, Rectangle, MouseArea"
}
Rectangle {
width: 200
height: 200
border.width: 1
color: m4.containsMouse ? "yellow" : "transparent"
MouseArea {
id: m4
anchors.fill: parent
hoverEnabled: true
Rectangle {
width: 100
height: 100
color: m1.containsMouse ? "green" : "transparent"
opacity: 0.5
border.width: 1
MouseArea {
id: m1
anchors.fill: parent
hoverEnabled: true
}
}
}
}
}
Column {
Label {
text: "Siblings: MouseArea, MouseArea"
}
Item {
width: 200
height: 200
MouseArea {
id: ma1
width: 150
height: 150
hoverEnabled: true
Rectangle {
anchors.fill: parent
color: ma1.containsMouse ? "red" : "white"
opacity: 0.5
border.width: 1
}
}
MouseArea {
id: ma2
x: 50
y: 50
width: 150
height: 150
hoverEnabled: true
Rectangle {
anchors.fill: parent
color: ma2.containsMouse ? "blue" : "white"
opacity: 0.5
border.width: 1
}
}
}
}
Column {
Label {
text: "Nested: Button, Button"
}
Button {
width: 200
height: 200
hoverEnabled: true
text: hovered ? "hovered" : ""
Button {
width: 100
height: 100
text: hovered ? "hovered" : ""
}
}
}
Column {
Label {
text: "Siblings: Button, Button"
}
Item {
width: 200
height: 200
Button {
width: 150
height: 150
hoverEnabled: true
text: hovered ? "hovered" : ""
}
Button {
x: 50
y: 50
width: 150
height: 150
text: hovered ? "hovered" : ""
opacity: 0.8
}
}
}
Column {
Label {
text: "Siblings: Button, MouseArea"
}
Item {
width: 200
height: 200
Button {
width: 150
height: 150
text: hovered ? "hovered" : ""
}
MouseArea {
id: m8
x: 50
y: 50
width: 150
height: 150
hoverEnabled: true
Rectangle {
anchors.fill: parent
color: m8.containsMouse ? "blue" : "transparent"
opacity: 0.5
border.width: 1
}
}
}
}
Column {
Label {
text: "Siblings: MouseArea, Button"
}
Item {
width: 200
height: 200
MouseArea {
id: ma11
width: 150
height: 150
hoverEnabled: true
Rectangle {
anchors.fill: parent
color: ma11.containsMouse ? "blue" : "transparent"
opacity: 0.5
border.width: 1
}
}
Button {
x: 50
y: 50
width: 150
height: 150
text: hovered ? "hovered" : ""
opacity: 0.8
}
}
}
Column {
Label {
text: "Nested: Button, Rectangle, MouseArea, Rectangle, MouseArea"
}
Button {
width: 200
height: 200
text: hovered ? "hovered" : ""
Rectangle {
anchors.fill: parent
anchors.margins: 20
border.width: 1
color: m5.containsMouse ? "yellow" : "transparent"
opacity: 0.5
MouseArea {
id: m5
anchors.fill: parent
hoverEnabled: true
Rectangle {
anchors.fill: parent
anchors.margins: 20
color: m6.containsMouse ? "green" : "transparent"
opacity: 0.5
border.width: 1
MouseArea {
id: m6
anchors.fill: parent
hoverEnabled: true
}
}
}
}
}
}
}
}