mirror of
https://github.com/noctalia-dev/noctalia-shell.git
synced 2026-05-11 17:08:27 +08:00
169 lines
6.0 KiB
QML
169 lines
6.0 KiB
QML
import QtQuick
|
|
import QtQuick.Shapes
|
|
import qs.Commons
|
|
import qs.Modules.MainScreen.Backgrounds
|
|
import qs.Services.UI
|
|
|
|
/**
|
|
* BarBackground - ShapePath component for rendering the bar background
|
|
*
|
|
* Unified shadow system. This component is a ShapePath that will be
|
|
* a child of the unified AllBackgrounds Shape container.
|
|
*
|
|
* Uses 4-state per-corner system for flexible corner rendering:
|
|
* - State -1: No radius (flat/square corner)
|
|
* - State 0: Normal (inner curve)
|
|
* - State 1: Horizontal inversion (outer curve on X-axis)
|
|
* - State 2: Vertical inversion (outer curve on Y-axis)
|
|
*/
|
|
ShapePath {
|
|
id: root
|
|
|
|
// Required reference to the bar component
|
|
required property var bar
|
|
|
|
// Required reference to AllBackgrounds shapeContainer
|
|
required property var shapeContainer
|
|
|
|
// Required reference to windowRoot for screen access
|
|
required property var windowRoot
|
|
|
|
required property color backgroundColor
|
|
|
|
// Check if bar should be visible on this screen
|
|
readonly property bool shouldShow: {
|
|
// Check global bar visibility
|
|
if (!BarService.isVisible)
|
|
return false;
|
|
|
|
// Check screen-specific configuration
|
|
var monitors = Settings.data.bar.monitors || [];
|
|
var screenName = windowRoot?.screen?.name || "";
|
|
|
|
// If no monitors specified, show on all screens
|
|
// If monitors specified, only show if this screen is in the list
|
|
return monitors.length === 0 || monitors.includes(screenName);
|
|
}
|
|
|
|
// Corner radius (from Style)
|
|
readonly property real radius: Style.radiusL
|
|
|
|
// Bar position - since bar's parent fills the screen and Shape also fills the screen,
|
|
// we can use bar.x and bar.y directly (they're already in screen coordinates)
|
|
readonly property point barMappedPos: bar ? Qt.point(bar.x, bar.y) : Qt.point(0, 0)
|
|
|
|
// Effective dimensions - 0 when bar shouldn't show (similar to panel behavior)
|
|
readonly property real barWidth: (bar && shouldShow) ? bar.width : 0
|
|
readonly property real barHeight: (bar && shouldShow) ? bar.height : 0
|
|
|
|
// Flatten corners if bar is too small (handle null bar)
|
|
readonly property bool shouldFlatten: bar ? ShapeCornerHelper.shouldFlatten(barWidth, barHeight, radius) : false
|
|
readonly property real effectiveRadius: shouldFlatten ? (bar ? ShapeCornerHelper.getFlattenedRadius(Math.min(barWidth, barHeight), radius) : 0) : radius
|
|
|
|
// Helper function for getting corner radius based on state
|
|
function getCornerRadius(cornerState) {
|
|
// State -1 = no radius (flat corner)
|
|
if (cornerState === -1)
|
|
return 0;
|
|
// All other states use effectiveRadius
|
|
return effectiveRadius;
|
|
}
|
|
|
|
// Per-corner multipliers and radii based on bar's corner states (handle null bar)
|
|
readonly property real tlMultX: bar ? ShapeCornerHelper.getMultX(bar.topLeftCornerState) : 1
|
|
readonly property real tlMultY: bar ? ShapeCornerHelper.getMultY(bar.topLeftCornerState) : 1
|
|
readonly property real tlRadius: bar ? getCornerRadius(bar.topLeftCornerState) : 0
|
|
|
|
readonly property real trMultX: bar ? ShapeCornerHelper.getMultX(bar.topRightCornerState) : 1
|
|
readonly property real trMultY: bar ? ShapeCornerHelper.getMultY(bar.topRightCornerState) : 1
|
|
readonly property real trRadius: bar ? getCornerRadius(bar.topRightCornerState) : 0
|
|
|
|
readonly property real brMultX: bar ? ShapeCornerHelper.getMultX(bar.bottomRightCornerState) : 1
|
|
readonly property real brMultY: bar ? ShapeCornerHelper.getMultY(bar.bottomRightCornerState) : 1
|
|
readonly property real brRadius: bar ? getCornerRadius(bar.bottomRightCornerState) : 0
|
|
|
|
readonly property real blMultX: bar ? ShapeCornerHelper.getMultX(bar.bottomLeftCornerState) : 1
|
|
readonly property real blMultY: bar ? ShapeCornerHelper.getMultY(bar.bottomLeftCornerState) : 1
|
|
readonly property real blRadius: bar ? getCornerRadius(bar.bottomLeftCornerState) : 0
|
|
|
|
// ShapePath configuration
|
|
strokeWidth: -1 // No stroke, fill only
|
|
fillColor: backgroundColor
|
|
|
|
// Starting position (top-left corner, after the arc)
|
|
// Use mapped coordinates relative to the Shape container
|
|
startX: barMappedPos.x + tlRadius * tlMultX
|
|
startY: barMappedPos.y
|
|
|
|
// Smooth color animation
|
|
Behavior on fillColor {
|
|
ColorAnimation {
|
|
duration: Style.animationFast
|
|
}
|
|
}
|
|
|
|
// ========== PATH DEFINITION ==========
|
|
// Draws a rectangle with potentially inverted corners
|
|
// All coordinates are relative to startX/startY
|
|
|
|
// Top edge (moving right)
|
|
PathLine {
|
|
relativeX: root.barWidth - root.tlRadius * root.tlMultX - root.trRadius * root.trMultX
|
|
relativeY: 0
|
|
}
|
|
|
|
// Top-right corner arc
|
|
PathArc {
|
|
relativeX: root.trRadius * root.trMultX
|
|
relativeY: root.trRadius * root.trMultY
|
|
radiusX: root.trRadius
|
|
radiusY: root.trRadius
|
|
direction: ShapeCornerHelper.getArcDirection(root.trMultX, root.trMultY)
|
|
}
|
|
|
|
// Right edge (moving down)
|
|
PathLine {
|
|
relativeX: 0
|
|
relativeY: root.barHeight - root.trRadius * root.trMultY - root.brRadius * root.brMultY
|
|
}
|
|
|
|
// Bottom-right corner arc
|
|
PathArc {
|
|
relativeX: -root.brRadius * root.brMultX
|
|
relativeY: root.brRadius * root.brMultY
|
|
radiusX: root.brRadius
|
|
radiusY: root.brRadius
|
|
direction: ShapeCornerHelper.getArcDirection(root.brMultX, root.brMultY)
|
|
}
|
|
|
|
// Bottom edge (moving left)
|
|
PathLine {
|
|
relativeX: -(root.barWidth - root.brRadius * root.brMultX - root.blRadius * root.blMultX)
|
|
relativeY: 0
|
|
}
|
|
|
|
// Bottom-left corner arc
|
|
PathArc {
|
|
relativeX: -root.blRadius * root.blMultX
|
|
relativeY: -root.blRadius * root.blMultY
|
|
radiusX: root.blRadius
|
|
radiusY: root.blRadius
|
|
direction: ShapeCornerHelper.getArcDirection(root.blMultX, root.blMultY)
|
|
}
|
|
|
|
// Left edge (moving up) - closes the path back to start
|
|
PathLine {
|
|
relativeX: 0
|
|
relativeY: -(root.barHeight - root.blRadius * root.blMultY - root.tlRadius * root.tlMultY)
|
|
}
|
|
|
|
// Top-left corner arc (back to start)
|
|
PathArc {
|
|
relativeX: root.tlRadius * root.tlMultX
|
|
relativeY: -root.tlRadius * root.tlMultY
|
|
radiusX: root.tlRadius
|
|
radiusY: root.tlRadius
|
|
direction: ShapeCornerHelper.getArcDirection(root.tlMultX, root.tlMultY)
|
|
}
|
|
}
|