|
|
|
@ -60,17 +60,18 @@ import com.fr.third.v2.lowagie.text.pdf.PdfPCell;
|
|
|
|
|
import com.fr.third.v2.lowagie.text.Phrase; |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* |
|
|
|
|
* @author psoares |
|
|
|
|
* @author psoares |
|
|
|
|
*/ |
|
|
|
|
public class IncCell implements TextElementArray { |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
private ArrayList chunks = new ArrayList(); |
|
|
|
|
private PdfPCell cell; |
|
|
|
|
|
|
|
|
|
/** Creates a new instance of IncCell */ |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* Creates a new instance of IncCell |
|
|
|
|
*/ |
|
|
|
|
public IncCell(String tag, ChainedProperties props) { |
|
|
|
|
cell = new PdfPCell((Phrase)null); |
|
|
|
|
cell = new PdfPCell((Phrase) null); |
|
|
|
|
String value = props.getProperty("colspan"); |
|
|
|
|
if (value != null) |
|
|
|
|
cell.setColspan(Integer.parseInt(value)); |
|
|
|
@ -104,84 +105,87 @@ public class IncCell implements TextElementArray {
|
|
|
|
|
if (value != null) |
|
|
|
|
cell.setPadding(CSSUtils.parseFloat(value)); |
|
|
|
|
cell.setUseDescender(true); |
|
|
|
|
value = props.getProperty("bgcolor"); |
|
|
|
|
cell.setBackgroundColor(Markup.decodeColor(value)); |
|
|
|
|
|
|
|
|
|
//解析td上声明的width
|
|
|
|
|
value = props.getLastChainProperty("width"); |
|
|
|
|
if(value != null){ |
|
|
|
|
if (value != null) { |
|
|
|
|
cell.setStyleWidth(CSSUtils.parseFloat(value)); |
|
|
|
|
} |
|
|
|
|
//解析td上声明的height
|
|
|
|
|
value = props.getLastChainProperty("height"); |
|
|
|
|
if(value != null){ |
|
|
|
|
if (value != null) { |
|
|
|
|
cell.setStyleHeight(CSSUtils.parseFloat(value)); |
|
|
|
|
} |
|
|
|
|
//解析background相关属性并保存到cell对象
|
|
|
|
|
Map<String, String> backgroundRules = new HashMap<String, String>(); |
|
|
|
|
value = props.getProperty("bgcolor"); |
|
|
|
|
if (value != null) { |
|
|
|
|
backgroundRules.put("background-color", value); |
|
|
|
|
} |
|
|
|
|
value = props.getLastChainProperty("background-size"); |
|
|
|
|
if(value!=null){ |
|
|
|
|
if (value != null) { |
|
|
|
|
backgroundRules.put("background-size", value); |
|
|
|
|
} |
|
|
|
|
value = props.getLastChainProperty("background"); |
|
|
|
|
if(value!=null){ |
|
|
|
|
if (value != null) { |
|
|
|
|
Map<String, String> backgroundStyles = CSSUtils.processBackground(value); |
|
|
|
|
backgroundRules.putAll(backgroundStyles); |
|
|
|
|
} |
|
|
|
|
value = props.getLastChainProperty("background-color"); |
|
|
|
|
if(value!=null){ |
|
|
|
|
if (value != null) { |
|
|
|
|
backgroundRules.put("background-color", value); |
|
|
|
|
} |
|
|
|
|
value = props.getLastChainProperty("background-position"); |
|
|
|
|
if(value!=null){ |
|
|
|
|
if (value != null) { |
|
|
|
|
backgroundRules.put("background-position", value); |
|
|
|
|
} |
|
|
|
|
value = props.getLastChainProperty("background-repeat"); |
|
|
|
|
if(value!=null){ |
|
|
|
|
if (value != null) { |
|
|
|
|
backgroundRules.put("background-repeat", value); |
|
|
|
|
} |
|
|
|
|
value = props.getLastChainProperty("background-image"); |
|
|
|
|
if(value!=null){ |
|
|
|
|
if (value != null) { |
|
|
|
|
backgroundRules.put("background-image", value); |
|
|
|
|
} |
|
|
|
|
cell.setBackground(backgroundRules); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public boolean add(Object o) { |
|
|
|
|
if (!(o instanceof Element)) |
|
|
|
|
return false; |
|
|
|
|
cell.addElement((Element)o); |
|
|
|
|
cell.addElement((Element) o); |
|
|
|
|
return true; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public ArrayList getChunks() { |
|
|
|
|
return chunks; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public boolean process(ElementListener listener) { |
|
|
|
|
return true; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public int type() { |
|
|
|
|
return Element.RECTANGLE; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public PdfPCell getCell() { |
|
|
|
|
return cell; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* @see Element#isContent() |
|
|
|
|
* @since iText 2.0.8 |
|
|
|
|
*/ |
|
|
|
|
public boolean isContent() { |
|
|
|
|
return true; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* @see Element#isNestable() |
|
|
|
|
* @since iText 2.0.8 |
|
|
|
|
*/ |
|
|
|
|
public boolean isNestable() { |
|
|
|
|
return true; |
|
|
|
|
} |
|
|
|
|
/** |
|
|
|
|
* @since iText 2.0.8 |
|
|
|
|
* @see Element#isContent() |
|
|
|
|
*/ |
|
|
|
|
public boolean isContent() { |
|
|
|
|
return true; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* @since iText 2.0.8 |
|
|
|
|
* @see Element#isNestable() |
|
|
|
|
*/ |
|
|
|
|
public boolean isNestable() { |
|
|
|
|
return true; |
|
|
|
|
} |
|
|
|
|
} |