1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252
|
/**
* ===========================================
* LibLayout : a free Java layouting library
* ===========================================
*
* Project Info: http://reporting.pentaho.org/liblayout/
*
* (C) Copyright 2006-2007, by Pentaho Corporation and Contributors.
*
* This library is free software; you can redistribute it and/or modify it under the terms
* of the GNU Lesser General Public License as published by the Free Software Foundation;
* either version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
* without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
* See the GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License along with this
* library; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
* Boston, MA 02111-1307, USA.
*
* [Java is a trademark or registered trademark of Sun Microsystems, Inc.
* in the United States and other countries.]
*
* ------------
* $Id: BorderFactory.java 3524 2007-10-16 11:26:31Z tmorgner $
* ------------
* (C) Copyright 2006-2007, by Pentaho Corporation.
*/
package org.jfree.layouting.renderer.border;
import org.jfree.layouting.input.style.keys.border.BorderStyle;
import org.jfree.layouting.input.style.keys.border.BorderStyleKeys;
import org.jfree.layouting.input.style.values.CSSColorValue;
import org.jfree.layouting.input.style.values.CSSConstant;
import org.jfree.layouting.input.style.values.CSSValue;
import org.jfree.layouting.input.style.values.CSSValuePair;
import org.jfree.layouting.layouter.context.LayoutContext;
import org.jfree.layouting.output.OutputProcessorMetaData;
/**
* Creation-Date: 23.06.2006, 16:52:43
*
* @author Thomas Morgner
*/
public class BorderFactory
{
public BorderFactory()
{
}
public Border createBorder(final LayoutContext layoutContext,
final OutputProcessorMetaData metaData)
{
final CSSValue borderTopStyle = layoutContext.getValue(BorderStyleKeys.BORDER_TOP_STYLE);
final CSSValue borderTopWidth = layoutContext.getValue(BorderStyleKeys.BORDER_TOP_WIDTH);
final CSSValue borderTopColor = layoutContext.getValue(BorderStyleKeys.BORDER_TOP_COLOR);
final BorderEdge topEdge = createEdge(borderTopStyle, borderTopWidth,
borderTopColor, layoutContext, metaData);
final CSSValue borderLeftStyle = layoutContext.getValue(BorderStyleKeys.BORDER_LEFT_STYLE);
final CSSValue borderLeftWidth = layoutContext.getValue(BorderStyleKeys.BORDER_LEFT_WIDTH);
final CSSValue borderLeftColor = layoutContext.getValue(BorderStyleKeys.BORDER_LEFT_COLOR);
final BorderEdge leftEdge = createEdge (borderLeftStyle, borderLeftWidth,
borderLeftColor, layoutContext, metaData);
final CSSValue borderBottomStyle = layoutContext.getValue(BorderStyleKeys.BORDER_BOTTOM_STYLE);
final CSSValue borderBottomWidth = layoutContext.getValue(BorderStyleKeys.BORDER_BOTTOM_WIDTH);
final CSSValue borderBottomColor = layoutContext.getValue(BorderStyleKeys.BORDER_BOTTOM_COLOR);
final BorderEdge bottomEdge = createEdge(borderBottomStyle, borderBottomWidth,
borderBottomColor, layoutContext, metaData);
final CSSValue borderRightStyle = layoutContext.getValue(BorderStyleKeys.BORDER_RIGHT_STYLE);
final CSSValue borderRightWidth = layoutContext.getValue(BorderStyleKeys.BORDER_RIGHT_WIDTH);
final CSSValue borderRightColor = layoutContext.getValue(BorderStyleKeys.BORDER_RIGHT_COLOR);
final BorderEdge rightEdge = createEdge(borderRightStyle, borderRightWidth,
borderRightColor, layoutContext, metaData);
final CSSValue borderBreakStyle = layoutContext.getValue(BorderStyleKeys.BORDER_BREAK_STYLE);
final CSSValue borderBreakWidth = layoutContext.getValue(BorderStyleKeys.BORDER_BREAK_WIDTH);
final CSSValue borderBreakColor = layoutContext.getValue(BorderStyleKeys.BORDER_BREAK_COLOR);
final BorderEdge breakEdge = createEdge(borderBreakStyle, borderBreakWidth,
borderBreakColor, layoutContext, metaData);
final CSSValue topLeftRadius = layoutContext.getValue(BorderStyleKeys.BORDER_TOP_LEFT_RADIUS);
final CSSValue topRightRadius = layoutContext.getValue(BorderStyleKeys.BORDER_TOP_RIGHT_RADIUS);
final CSSValue bottomLeftRadius = layoutContext.getValue(BorderStyleKeys.BORDER_BOTTOM_LEFT_RADIUS);
final CSSValue bottomRightRadius = layoutContext.getValue(BorderStyleKeys.BORDER_BOTTOM_RIGHT_RADIUS);
final BorderCorner topLeftCorner = createCorner(topLeftRadius, layoutContext, metaData);
final BorderCorner topRightCorner = createCorner(topRightRadius, layoutContext, metaData);
final BorderCorner bottomLeftCorner = createCorner(bottomLeftRadius, layoutContext, metaData);
final BorderCorner bottomRightCorner = createCorner(bottomRightRadius, layoutContext, metaData);
return new Border(topEdge, leftEdge, bottomEdge, rightEdge, breakEdge,
topLeftCorner, topRightCorner, bottomLeftCorner, bottomRightCorner);
}
private BorderCorner createCorner (final CSSValue value,
final LayoutContext layoutContext,
final OutputProcessorMetaData metaData)
{
if (value instanceof CSSValuePair == false)
{
return EmptyBorderCorner.getInstance();
}
final CSSValuePair vp = (CSSValuePair) value;
final CSSValue first = vp.getFirstValue();
final CSSValue second = vp.getSecondValue();
final RenderLength width = RenderLength.convertToInternal(first, layoutContext, metaData);
final RenderLength height = RenderLength.convertToInternal(second, layoutContext, metaData);
if (width.getValue() > 0 && height.getValue() > 0)
{
return new RoundedBorderCorner(width, height);
}
else
{
return EmptyBorderCorner.getInstance();
}
}
private BorderEdge createEdge (final CSSValue style,
final CSSValue widthVal,
final CSSValue color,
final LayoutContext layoutContext,
final OutputProcessorMetaData metaData)
{
if (style instanceof CSSConstant == false)
{
return EmptyBorderEdge.getInstance();
}
if (color instanceof CSSColorValue == false)
{
return EmptyBorderEdge.getInstance();
}
if (BorderStyle.NONE.equals(style))
{
return EmptyBorderEdge.getInstance();
}
final RenderLength width = RenderLength.convertToInternal
(widthVal, layoutContext, metaData);
if (width.getValue() <= 0)
{
return EmptyBorderEdge.getInstance();
}
return new StyledBorderEdge(style, (CSSColorValue) color, width);
}
public static BorderEdge merge (final BorderEdge first,
final BorderEdge second,
final long computedParentWidth)
{
// Borders with the 'border-style' of 'hidden' take precedence over
// all other conflicting borders. Any border with this value suppresses
// all borders at this location.
final CSSValue firstStyle = first.getBorderStyle();
if (BorderStyle.HIDDEN.equals(firstStyle))
{
return first;
}
final CSSValue secondStyle = second.getBorderStyle();
if (BorderStyle.HIDDEN.equals(secondStyle))
{
return second;
}
// Borders with a style of 'none' have the lowest priority. Only if the
// border properties of all the elements meeting at this edge are
// 'none' will the border be omitted (but note that 'none' is the
// default value for the border style.)
if (BorderStyle.NONE.equals(first))
{
return second;
}
if (BorderStyle.NONE.equals(second))
{
return first;
}
// If none of the styles are 'hidden' and at least one of them is not
// 'none', then narrow borders are discarded in favor of wider ones.
final long firstWidth = first.getWidth().resolve(computedParentWidth);
final long secondWidth = second.getWidth().resolve(computedParentWidth);
if (firstWidth < secondWidth)
{
return second;
}
else if (secondWidth < firstWidth)
{
return first;
}
// If several have the same 'border-width' then styles are preferred in
// this order: 'double', 'solid', 'dashed', 'dotted', 'ridge', 'outset',
// 'groove', and the lowest: 'inset'.
final int firstStyleWeight = getStylePreferrence(firstStyle);
final int secondStyleWeight = getStylePreferrence(secondStyle);
if (firstStyleWeight > secondStyleWeight)
{
return first;
}
return second;
}
private static int getStylePreferrence (final CSSValue value)
{
if (BorderStyle.DOUBLE.equals(value))
{
return 10;
}
if (BorderStyle.SOLID.equals(value))
{
return 9;
}
if (BorderStyle.DASHED.equals(value))
{
return 8;
}
if (BorderStyle.DOT_DASH.equals(value))
{
return 7;
}
if (BorderStyle.DOT_DOT_DASH.equals(value))
{
return 6;
}
if (BorderStyle.DOTTED.equals(value))
{
return 5;
}
if (BorderStyle.RIDGE.equals(value))
{
return 4;
}
if (BorderStyle.OUTSET.equals(value))
{
return 3;
}
if (BorderStyle.GROOVE.equals(value))
{
return 2;
}
if (BorderStyle.INSET.equals(value))
{
return 1;
}
return 0;
}
}
|