From 2e715ee1a4fa519fe751eb32d93258535fbe4b83 Mon Sep 17 00:00:00 2001 From: jtauber Date: Fri, 3 Dec 1999 11:17:47 +0000 Subject: [PATCH] background-color now works on list-block (contributed by Eric Schaeffer) git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@193265 13f79535-47bb-0310-9956-ffa450edef68 --- STATUS | 1 + src/org/apache/fop/fo/flow/ListBlock.java | 5 +++++ 2 files changed, 6 insertions(+) diff --git a/STATUS b/STATUS index 8191e0d62..1304f4502 100644 --- a/STATUS +++ b/STATUS @@ -36,6 +36,7 @@ Done since 0.12.0 release: basic support for padding-{top,left,bottom,right} on blocks. implemented simple-link (don't think it works, though) XTCommandLine now works again +background color works on list-block Done for 0.12.0 release: diff --git a/src/org/apache/fop/fo/flow/ListBlock.java b/src/org/apache/fop/fo/flow/ListBlock.java index 931251adb..cad844d3e 100644 --- a/src/org/apache/fop/fo/flow/ListBlock.java +++ b/src/org/apache/fop/fo/flow/ListBlock.java @@ -54,6 +54,7 @@ package org.apache.fop.fo.flow; // FOP import org.apache.fop.fo.*; import org.apache.fop.fo.properties.*; +import org.apache.fop.datatypes.*; import org.apache.fop.layout.Area; import org.apache.fop.layout.BlockArea; import org.apache.fop.layout.FontState; @@ -88,6 +89,7 @@ public class ListBlock extends FObj { int provisionalDistanceBetweenStarts; int provisionalLabelSeparation; int spaceBetweenListRows = 0; + ColorType backgroundColor; public ListBlock(FObj parent, PropertyList propertyList) { super(parent, propertyList); @@ -126,6 +128,8 @@ public class ListBlock extends FObj { this.provisionalLabelSeparation = this.properties.get("provisional-label-separation").getLength().mvalue(); this.spaceBetweenListRows = 0; // not used at present + this.backgroundColor = + this.properties.get("background-color").getColorType(); this.marker = 0; @@ -148,6 +152,7 @@ public class ListBlock extends FObj { area.spaceLeft(), startIndent, endIndent, 0, align, alignLast, lineHeight); blockArea.setPage(area.getPage()); + blockArea.setBackgroundColor(backgroundColor); blockArea.start(); int numChildren = this.children.size(); -- 2.39.5