A chamfer with no neighbour behind it now carries the corner it removed, put back OUTSIDE the panel as a detached accent triangle. capGap is the perpendicular distance from the cut, hence the per-axis shift of capGap over root 2: the cap moves along the cut's normal, not along an axis. The trace joining two caps belongs to the RAIL, not the panel — the run it draws is the gap BETWEEN two panels, which no panel can see. HyprChromeBar filters the row down to panels (a slack Item has no `rightChamfer`, so spacers drop out, and dropping them is exactly what makes a trace span them), then joins each right cap to the next left cap: straight, one 45° step at the midpoint of the gap, straight. It meets the middle of each cap's outward face rather than its tip. TestPanel is a staging slot between two spacers. It counts seconds since load, which is the cheapest proof the panel is live, and standing alone it exercises a cap and a trace at both ends — something a rail of butted panels never does. Restructures the module in the same commit, since the moves and the edits above land in the same files: folders are PascalCase, the bar and its widgets moved under Widgets/Bar, and DebugWindow takes the HyprChrome Theme instead of the legacy one. The two singletons are identical today, so that is not a visual fix — it is a palette edit reaching the debug stage in future. Rename detection needs -M40% to follow HyprChromeBar, which grew past the default similarity threshold. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01U19X5LGTxtq4pb4jdNVivv
41 lines
1.3 KiB
QML
41 lines
1.3 KiB
QML
pragma ComponentBehavior: Bound
|
|
|
|
import QtQuick
|
|
import qs.HyprChrome.Theme
|
|
|
|
// Segmented horizontal meter: a row of cells lit up to `value`.
|
|
//
|
|
// A copy of the dense bar's meter rather than a reuse of it — that one is an
|
|
// inline component inside DenseBarContent.qml and so is not visible from any
|
|
// other file (the same reason BarPanel inlines its own MicroText).
|
|
Row {
|
|
id: meter
|
|
|
|
property int segments: 16
|
|
property real value: 0 // 0..1
|
|
property bool ready: false
|
|
property real warn: 0.85 // fraction at which the lit cells go hot
|
|
|
|
readonly property real fraction: Math.max(0, Math.min(1, meter.value))
|
|
readonly property bool hot: meter.ready && meter.fraction >= meter.warn
|
|
readonly property color litColor: meter.hot ? Theme.hot : Theme.accent
|
|
|
|
spacing: 2
|
|
|
|
Repeater {
|
|
model: meter.segments
|
|
|
|
Rectangle {
|
|
required property int index
|
|
|
|
readonly property bool lit: meter.ready && index < Math.round(meter.fraction * meter.segments)
|
|
|
|
width: Math.max(2, (meter.width - (meter.segments - 1) * meter.spacing) / meter.segments)
|
|
height: meter.height
|
|
color: lit ? meter.litColor : Theme.textAlpha(0.06)
|
|
border.width: 1
|
|
border.color: lit ? meter.litColor : Theme.textAlpha(0.18)
|
|
}
|
|
}
|
|
}
|