Attribut-Panel: Vordergrund/Hintergrund mit 'Nach System'

Die Attribut-Sektion 'Fuellung' zeigt statt der einen Fuellfarbe jetzt zwei
Felder: Vordergrund (Muster-/Schraffurfarbe) und Hintergrund (Fuellung),
jeweils per Element ueberschreibbar. Leerer Override = 'Nach System' (erbt);
Farbe waehlen setzt den Override, x loescht ihn wieder. Schreibt
Wall/Ceiling/Drawing2D.foreground/background ueber neue Store-Mutationen
(setElementForeground/Background), gespiegelt zum bestehenden Fuellfarbe-Pfad.
Die Resolve-Schicht (generatePlan) liest diese Overrides bereits, wirkt also
sofort im Plan.
This commit is contained in:
2026-07-04 00:26:32 +02:00
parent 6288f755a8
commit f3639cfb15
7 changed files with 157 additions and 34 deletions
+17
View File
@@ -218,6 +218,17 @@ export interface Selection {
* keine (transparent). Bei Wänden/Türen `undefined` (nicht anwendbar).
*/
fillColor?: string | null;
/**
* Vordergrund-Override (Muster-/Schraffurfarbe) des Elements; `undefined` =
* „Nach System" (erbt vom Bauteil/System). Gesetzt bei Wand, Decke und
* geschlossener Drawing2D.
*/
foreground?: string;
/**
* Hintergrund-Override (Füllfarbe/Poché) des Elements; `undefined` = „Nach
* System". Nachfolger von `fillColor`; hat im Plan Vorrang.
*/
background?: string;
/** Ob die Form geschlossen ist (rect/circle/closed polyline) — nur Drawing2D. */
closed?: boolean;
/** Achsparallele Bounding-Box in Modell-Metern. */
@@ -342,6 +353,8 @@ function wallSelection(project: Project, wall: Wall): Selection {
weightMm,
fillHatchId: undefined,
fillColor: undefined,
foreground: wall.foreground,
background: wall.background,
closed: undefined,
bbox: { minX, minY, maxX, maxY },
wall: wallInfo,
@@ -386,6 +399,8 @@ function ceilingSelection(project: Project, ceiling: Ceiling): Selection {
weightMm,
fillHatchId: undefined,
fillColor: undefined,
foreground: ceiling.foreground,
background: ceiling.background,
closed: true,
bbox: { minX: box.minX, minY: box.minY, maxX: box.maxX, maxY: box.maxY },
ceiling: ceilingInfo,
@@ -542,6 +557,8 @@ function drawingSelection(project: Project, d: Drawing2D): Selection {
weightMm,
fillHatchId: closed ? d.hatchId ?? null : null,
fillColor: closed ? d.fillColor ?? null : null,
foreground: closed ? d.foreground : undefined,
background: closed ? d.background : undefined,
closed,
bbox: geomBBox(d.geom),
};