Files
RedBear-OS/local/recipes/qt/qtsvg/source/tests/manual/cliptests/svgcliptest.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

133 lines
3.7 KiB
C++

// Copyright (C) 2015 Klarälvdalens Datakonsult AB, a KDAB Group company, info@kdab.com, author Giuseppe D'Angelo <giuseppe.dangelo@kdab.com>
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
#include <QGuiApplication>
#include <QFile>
#include <QSvgGenerator>
#include <QPainter>
#include <QBrush>
#include <QPen>
#include <QPainterPath>
#include <QRect>
#include <QSize>
int main(int argc, char **argv)
{
QGuiApplication app(argc, argv);
const QStringList arguments = app.arguments();
if (arguments.size() < 2) {
qWarning("Missing file name");
return 0;
}
QFile output(arguments[1]);
if (!output.open(QIODevice::WriteOnly))
qFatal("Cannot open output file name");
QSvgGenerator generator(QSvgGenerator::SvgVersion::Svg11);
generator.setOutputDevice(&output);
generator.setSize(QSize(1000, 500));
generator.setViewBox(QRect(0, 0, 1000, 500));
{
QPainter painter(&generator);
QFont f = painter.font();
f.setPointSize(48);
painter.setFont(f);
{
painter.save();
// clipped rectangle
painter.setClipRect(QRect(100, 100, 250, 200));
painter.setBrush(QColorConstants::Blue);
painter.drawEllipse(QRect(0, 100, 400, 200));
{
painter.save();
// transformed element within clip
painter.setBrush(QColorConstants::Green);
painter.translate(300, 150);
painter.rotate(45);
painter.drawEllipse(QPointF(0, 0), 100, 50);
painter.restore();
}
painter.drawText(200, 200, "A very long clipped text");
painter.restore();
}
{
// unclipped
painter.setBrush(QColorConstants::Red);
painter.drawEllipse(0, 0, 200, 150);
}
{
painter.save();
// transformed clip (by transforming the painter before setting the clip);
painter.translate(500, 0);
painter.rotate(45);
painter.setClipRect(QRect(50, 50, 150, 200));
painter.setBrush(QColorConstants::Green);
QPainterPath path;
path.addRect(50, 50, 100, 100);
path.moveTo(0, 0);
path.cubicTo(300, 0, 150, 150, 300, 300);
path.cubicTo(0, 300, 150, 150, 0, 0);
painter.drawPath(path);
painter.setBrush(QColorConstants::Blue);
painter.drawEllipse(QPointF(125, 125), 100, 50);
painter.restore();
}
{
painter.save();
// transformed clip
painter.translate(700, 50);
// clip by path
QPainterPath path;
path.moveTo(0, 0);
path.cubicTo(300, 0, 150, 150, 300, 300);
path.cubicTo(0, 300, 150, 150, 0, 0);
painter.setBrush(QColorConstants::Svg::red);
painter.drawPath(path);
painter.setClipPath(path);
painter.setBrush(QColorConstants::Svg::purple);
painter.drawEllipse(QPointF(150, 50), 150, 50);
// transform and remove clipping
painter.translate(0, 100);
painter.setClipping(false);
painter.setBrush(QColorConstants::Svg::darkblue);
painter.drawEllipse(QPointF(150, 50), 150, 50);
// transform and clip again
painter.translate(0, 100);
painter.setClipping(true);
painter.setBrush(QColorConstants::Svg::green);
painter.drawEllipse(QPointF(150, 50), 150, 50);
painter.restore();
}
}
output.close();
}