com.deepoove.poi.xwpf.CellBodyContainer Maven / Gradle / Ivy
Show all versions of poi-tl Show documentation
/*
* Copyright 2014-2021 Sayi
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.deepoove.poi.xwpf;
import java.util.List;
import org.apache.poi.xwpf.usermodel.BodyElementType;
import org.apache.poi.xwpf.usermodel.IBody;
import org.apache.poi.xwpf.usermodel.IBodyElement;
import org.apache.poi.xwpf.usermodel.IRunBody;
import org.apache.poi.xwpf.usermodel.XWPFParagraph;
import org.apache.poi.xwpf.usermodel.XWPFRun;
import org.apache.poi.xwpf.usermodel.XWPFTable;
import org.apache.poi.xwpf.usermodel.XWPFTableCell;
import org.apache.poi.xwpf.usermodel.XWPFTableRow;
import org.apache.xmlbeans.XmlCursor;
import org.openxmlformats.schemas.wordprocessingml.x2006.main.CTTc;
import com.deepoove.poi.util.ParagraphUtils;
import com.deepoove.poi.util.ReflectionUtils;
public class CellBodyContainer implements BodyContainer {
private XWPFTableCell cell;
public CellBodyContainer(XWPFTableCell cell) {
this.cell = cell;
}
@SuppressWarnings("unchecked")
@Override
public void removeBodyElement(int pos) {
// TODO remove Nest Table
List bodyElements = getBodyElements();
if (pos >= 0 && pos < bodyElements.size()) {
BodyElementType type = bodyElements.get(pos).getElementType();
if (type == BodyElementType.TABLE) {
int indexOf = cell.getTables().indexOf(bodyElements.get(pos));
// remove cell's table
List tables = (List) ReflectionUtils.getValue("tables", cell);
tables.remove(indexOf);
cell.getCTTc().removeTbl(indexOf);
}
if (type == BodyElementType.PARAGRAPH) {
int indexOf = cell.getParagraphs().indexOf(bodyElements.get(pos));
// cell.removeParagraph may has bug
// cell.removeParagraph(indexOf);
List paragraphs = (List) ReflectionUtils.getValue("paragraphs", cell);
paragraphs.remove(indexOf);
cell.getCTTc().removeP(indexOf);
}
bodyElements.remove(pos);
}
}
@SuppressWarnings("unchecked")
@Override
public void setParagraph(XWPFParagraph p, int pos) {
List paragraphs = (List) ReflectionUtils.getValue("paragraphs", cell);
paragraphs.set(pos, p);
CTTc ctTc = cell.getCTTc();
ctTc.setPArray(pos, p.getCTP());
}
@Override
public IBody getTarget() {
return cell;
}
@SuppressWarnings("unchecked")
@Override
public void setTable(int pos, XWPFTable table) {
// cell.getTables().set(pos, table);
List tables = (List) ReflectionUtils.getValue("tables", cell);
tables.set(pos, table);
cell.getCTTc().setTblArray(pos, table.getCTTbl());
}
@Override
public XWPFTable insertNewTable(XWPFRun run, int row, int col) {
XmlCursor cursor = ((XWPFParagraph) run.getParent()).getCTP().newCursor();
XWPFTable table = insertNewTbl(cursor);
// hack for cursor.removeXmlContents(); in XWPFTableCell
List rows = table.getRows();
for (int i = 0; i < rows.size(); i++) {
table.removeRow(i);
}
for (int i = 0; i < row; i++) {
XWPFTableRow tabRow = (table.getRow(i) == null) ? table.createRow() : table.getRow(i);
for (int k = 0; k < col; k++) {
if (tabRow.getCell(k) == null) {
tabRow.createCell();
}
}
}
return table;
}
@Override
public void clearPlaceholder(XWPFRun run) {
IRunBody parent = run.getParent();
run.setText("", 0);
// elements must be located before elements
if (parent instanceof XWPFParagraph) {
String paragraphText = ParagraphUtils.trimLine((XWPFParagraph) parent);
boolean havePictures = ParagraphUtils.havePictures((XWPFParagraph) parent);
if ("".equals(paragraphText) && !havePictures) {
int pos = getPosOfParagraph((XWPFParagraph) parent);
int lastPos = cell.getBodyElements().size() - 1;
if (canRemoveParagraph(pos, lastPos)) {
removeBodyElement(pos);
}
}
}
}
private boolean canRemoveParagraph(int pos, int lastPos) {
return pos < lastPos
|| (pos > 0 && cell.getBodyElements().get(pos - 1).getElementType() == BodyElementType.PARAGRAPH);
}
@Override
public XWPFSection closelySectPr(IBodyElement element) {
throw new UnsupportedOperationException();
}
@Override
public int elementPageWidth(IBodyElement element) {
return cell.getWidth();
}
}