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

295 lines
8.8 KiB
QML

// Copyright (C) 2019 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
import QtQuick 2.15
import "content"
Rectangle {
id: root
width: 600; height: 480; color: "#f0f0f0"
property int globalGesturePolicy : TapHandler.DragThreshold
Flickable {
id: flick
anchors.fill: parent
contentHeight: 600
contentWidth: 1000
objectName: "Flick"
Repeater {
model: flick.contentHeight/200
Rectangle {
width: flick.contentWidth
height: 101
x: 0
y: index * 200
border.color: "#808080"
border.width: 1
color: "transparent"
}
}
Repeater {
model: flick.contentWidth/200
Rectangle {
width: 101
height: flick.contentHeight
x: index * 200
y: 0
border.color: "#808080"
border.width: 1
color: "transparent"
}
}
TextBox {
x: 0; y: 0
width: 100; height: 100
label: "DragHandler"
objectName: "dragSquircle1"
DragHandler {
dragThreshold: ckZeroDragThreshold1.checked ? 0 : undefined
}
CheckBox {
id: ckZeroDragThreshold1
label: " Zero threshold"
anchors.horizontalCenter: parent.horizontalCenter
y: 20
checked: false
}
}
TextBox {
x: 100; y: 0
width: 100; height: 100
label: "TapHandler"
color: queryColor(tap1.pressed)
TapHandler {
id: tap1
gesturePolicy: root.globalGesturePolicy
}
}
TextBox {
x: 200; y: 0
width: 100; height: 100
label: "TapHandler\nDragHandler"
color: queryColor(tap2.pressed)
TapHandler {
id: tap2
gesturePolicy: root.globalGesturePolicy
}
DragHandler {
dragThreshold: ckZeroDragThreshold2.checked ? 0 : undefined
}
CheckBox {
id: ckZeroDragThreshold2
label: " Zero threshold"
anchors.horizontalCenter: parent.horizontalCenter
y: 32
checked: false
}
}
TextBox {
x: 300; y: 0
width: 100; height: 100
label: "DragHandler\nTapHandler"
color: queryColor(tap3.pressed)
DragHandler {
dragThreshold: ckZeroDragThreshold3.checked ? 0 : undefined
}
CheckBox {
id: ckZeroDragThreshold3
label: " Zero threshold"
anchors.horizontalCenter: parent.horizontalCenter
y: 32
checked: false
}
TapHandler {
id: tap3
gesturePolicy: root.globalGesturePolicy
}
}
TextBox {
x: 400; y: 0
width: 100; height: 100
label: "DragHandler"
DragHandler {
dragThreshold: ckZeroDragThreshold4.checked ? 0 : undefined
}
CheckBox {
id: ckZeroDragThreshold4
label: " Zero threshold"
anchors.horizontalCenter: parent.horizontalCenter
y: 20
checked: false
}
TextBox {
label: "TapHandler"
x: (parent.width - width)/2
y: 60
color: queryColor(tap4.pressed)
TapHandler {
id: tap4
gesturePolicy: root.globalGesturePolicy
}
}
}
TextBox {
objectName: "dragSquircle5"
x: 500; y: 0
width: 100; height: 100
label: "TapHandler"
color: queryColor(tap5.pressed)
CheckBox {
id: ckGreedyDrag
x: 10
anchors.bottom: dragRect5.top
label: " Greedy ↓"
checked: true
}
CheckBox {
id: ckZeroDragThreshold5
label: " Zero threshold"
x: 10
anchors.bottom: ckGreedyDrag.top
checked: false
}
TapHandler {
id: tap5
gesturePolicy: root.globalGesturePolicy
}
TextBox {
id: dragRect5
objectName: "dragRect5"
label: "DragHandler"
x: (parent.width - width)/2
y: 60
DragHandler {
grabPermissions: ckGreedyDrag ? DragHandler.CanTakeOverFromAnything :
DragHandler.CanTakeOverFromItems | DragHandler.CanTakeOverFromHandlersOfDifferentType | DragHandler.ApprovesTakeOverByAnything
dragThreshold: ckZeroDragThreshold5.checked ? 0 : undefined
}
}
}
TextBox {
x: 0; y: 100
width: 100; height: 100
label: "No MouseArea"
TextBox {
objectName: "dragRect01"
label: "DragHandler"
x: (parent.width - width)/2
y: 60
DragHandler {
dragThreshold: ckZeroDragThreshold6.checked ? 0 : undefined
}
}
CheckBox {
id: ckZeroDragThreshold6
label: " Zero threshold"
anchors.horizontalCenter: parent.horizontalCenter
y: 20
checked: false
}
}
TextBox {
id: r2
label: "MouseArea"
x: 100; y: 100
width: 100; height: 100
MouseArea {
id: ma
enabled: ckEnabled.checked
drag.target: ckDrag.checked ? r2 : undefined
drag.threshold: ckExtendDragThreshold.checked ? 50 : undefined
anchors.fill: parent
}
Column {
anchors.bottom: parent.bottom
anchors.bottomMargin: 10
x: 10
CheckBox {
id: ckEnabled
label: " Enabled"
checked: true
}
CheckBox {
id: ckDrag
label: " Drag"
checked: true
}
CheckBox {
id: ckExtendDragThreshold
label: " Extend threshold"
checked: false
}
}
}
TextBox {
objectName: "dragSquircle9"
x: 200; y: 100
width: 100; height: 100
label: "DragHandler"
color: queryColor(drag9.active)
CheckBox {
id: ckGreedyDrag9
x: 10
y: 20
label: " Greedy"
checked: true
}
CheckBox {
id: ckZeroDragThreshold9
label: " Zero threshold"
x: 10
anchors.bottom: ckGreedyDragR9.top
checked: false
}
CheckBox {
id: ckGreedyDragR9
x: 10
anchors.bottom: dragRect9.top
label: " Greedy ↓"
checked: false
}
DragHandler {
id: drag9
objectName: "drag9"
grabPermissions: ckGreedyDrag9.checked ? DragHandler.CanTakeOverFromAnything :
DragHandler.CanTakeOverFromItems | DragHandler.CanTakeOverFromHandlersOfDifferentType | DragHandler.ApprovesTakeOverByAnything
dragThreshold: ckZeroDragThreshold9.checked ? 0 : undefined
}
TextBox {
id: dragRect9
objectName: "dragRect9"
label: "DragHandler"
x: (parent.width - width)/2
y: 65
DragHandler {
objectName: "dragRect9"
grabPermissions: ckGreedyDragR9.checked ? DragHandler.CanTakeOverFromAnything :
DragHandler.CanTakeOverFromItems | DragHandler.CanTakeOverFromHandlersOfDifferentType | DragHandler.ApprovesTakeOverByAnything
dragThreshold: ckZeroDragThreshold9.checked ? 0 : undefined
}
}
}
}
}