#61169 - Text with Japanese characters overflows textbox
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1798986 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
b1ed57750d
commit
0e57435abe
@ -70,10 +70,19 @@ public class DrawTextFragment implements Drawable {
|
||||
* @return full height of this text run which is sum of ascent, descent and leading
|
||||
*/
|
||||
public float getHeight(){
|
||||
double h = Math.ceil(layout.getAscent()) + Math.ceil(layout.getDescent()) + layout.getLeading();
|
||||
double h = Math.ceil(layout.getAscent()) + Math.ceil(layout.getDescent()) + getLeading();
|
||||
return (float)h;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return the leading height before/after a text line
|
||||
*/
|
||||
public float getLeading() {
|
||||
// fix invalid leadings (leading == 0) by fallback to descent
|
||||
double l = layout.getLeading();
|
||||
return (float)(l == 0 ? layout.getDescent() : l);
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
* @return width if this text run
|
||||
|
@ -215,6 +215,10 @@ public class DrawTextParagraph implements Drawable {
|
||||
y = penY - y;
|
||||
}
|
||||
|
||||
public float getFirstLineLeading() {
|
||||
return (lines.isEmpty()) ? 0 : lines.get(0).getLeading();
|
||||
}
|
||||
|
||||
public float getFirstLineHeight() {
|
||||
return (lines.isEmpty()) ? 0 : lines.get(0).getHeight();
|
||||
}
|
||||
@ -253,7 +257,8 @@ public class DrawTextParagraph implements Drawable {
|
||||
for (;;) {
|
||||
int startIndex = measurer.getPosition();
|
||||
|
||||
double wrappingWidth = getWrappingWidth(lines.size() == 0, graphics) + 1; // add a pixel to compensate rounding errors
|
||||
// add a pixel to compensate rounding errors
|
||||
double wrappingWidth = getWrappingWidth(lines.isEmpty(), graphics) + 1;
|
||||
// shape width can be smaller that the sum of insets (this was proved by a test file)
|
||||
if(wrappingWidth < 0) {
|
||||
wrappingWidth = 1;
|
||||
|
@ -137,10 +137,7 @@ public class DrawTextShape extends DrawSimpleShape {
|
||||
DrawFactory fact = DrawFactory.getInstance(graphics);
|
||||
|
||||
double y0 = y;
|
||||
//noinspection RedundantCast
|
||||
@SuppressWarnings("cast")
|
||||
Iterator<? extends TextParagraph<?,?,? extends TextRun>> paragraphs =
|
||||
(Iterator<? extends TextParagraph<?,?,? extends TextRun>>) getShape().iterator();
|
||||
Iterator<? extends TextParagraph<?,?,? extends TextRun>> paragraphs = getShape().iterator();
|
||||
|
||||
boolean isFirstLine = true;
|
||||
for (int autoNbrIdx=0; paragraphs.hasNext(); autoNbrIdx++){
|
||||
@ -158,7 +155,9 @@ public class DrawTextShape extends DrawSimpleShape {
|
||||
dp.setAutoNumberingIdx(autoNbrIdx);
|
||||
dp.breakText(graphics);
|
||||
|
||||
if (!isFirstLine) {
|
||||
if (isFirstLine) {
|
||||
y += dp.getFirstLineLeading();
|
||||
} else {
|
||||
// the amount of vertical white space before the paragraph
|
||||
Double spaceBefore = p.getSpaceBefore();
|
||||
if (spaceBefore == null) spaceBefore = 0d;
|
||||
@ -221,7 +220,7 @@ public class DrawTextShape extends DrawSimpleShape {
|
||||
}
|
||||
|
||||
@Override
|
||||
protected TextShape<?,?> getShape() {
|
||||
return (TextShape<?,?>)shape;
|
||||
protected TextShape<?,? extends TextParagraph<?,?,? extends TextRun>> getShape() {
|
||||
return (TextShape<?,? extends TextParagraph<?,?,? extends TextRun>>)shape;
|
||||
}
|
||||
}
|
||||
|
@ -67,6 +67,7 @@ public abstract class XSLFTextShape extends XSLFSimpleShape
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public Iterator<XSLFTextParagraph> iterator(){
|
||||
return getTextParagraphs().iterator();
|
||||
}
|
||||
@ -75,7 +76,9 @@ public abstract class XSLFTextShape extends XSLFSimpleShape
|
||||
public String getText() {
|
||||
StringBuilder out = new StringBuilder();
|
||||
for (XSLFTextParagraph p : _paragraphs) {
|
||||
if (out.length() > 0) out.append('\n');
|
||||
if (out.length() > 0) {
|
||||
out.append('\n');
|
||||
}
|
||||
out.append(p.getText());
|
||||
}
|
||||
return out.toString();
|
||||
@ -109,7 +112,9 @@ public abstract class XSLFTextShape extends XSLFSimpleShape
|
||||
|
||||
@Override
|
||||
public XSLFTextRun appendText(String text, boolean newParagraph) {
|
||||
if (text == null) return null;
|
||||
if (text == null) {
|
||||
return null;
|
||||
}
|
||||
|
||||
// copy properties from last paragraph / textrun or paragraph end marker
|
||||
CTTextParagraphProperties otherPPr = null;
|
||||
@ -202,7 +207,9 @@ public abstract class XSLFTextShape extends XSLFSimpleShape
|
||||
CTTextBodyProperties bodyPr = getTextBodyPr(true);
|
||||
if (bodyPr != null) {
|
||||
if(anchor == null) {
|
||||
if(bodyPr.isSetAnchor()) bodyPr.unsetAnchor();
|
||||
if(bodyPr.isSetAnchor()) {
|
||||
bodyPr.unsetAnchor();
|
||||
}
|
||||
} else {
|
||||
bodyPr.setAnchor(STTextAnchoringType.Enum.forInt(anchor.ordinal() + 1));
|
||||
}
|
||||
@ -212,6 +219,7 @@ public abstract class XSLFTextShape extends XSLFSimpleShape
|
||||
@Override
|
||||
public VerticalAlignment getVerticalAlignment(){
|
||||
PropertyFetcher<VerticalAlignment> fetcher = new TextBodyPropertyFetcher<VerticalAlignment>(){
|
||||
@Override
|
||||
public boolean fetch(CTTextBodyProperties props){
|
||||
if(props.isSetAnchor()){
|
||||
int val = props.getAnchor().intValue();
|
||||
@ -230,7 +238,9 @@ public abstract class XSLFTextShape extends XSLFSimpleShape
|
||||
CTTextBodyProperties bodyPr = getTextBodyPr(true);
|
||||
if (bodyPr != null) {
|
||||
if (isCentered == null) {
|
||||
if (bodyPr.isSetAnchorCtr()) bodyPr.unsetAnchorCtr();
|
||||
if (bodyPr.isSetAnchorCtr()) {
|
||||
bodyPr.unsetAnchorCtr();
|
||||
}
|
||||
} else {
|
||||
bodyPr.setAnchorCtr(isCentered);
|
||||
}
|
||||
@ -240,6 +250,7 @@ public abstract class XSLFTextShape extends XSLFSimpleShape
|
||||
@Override
|
||||
public boolean isHorizontalCentered(){
|
||||
PropertyFetcher<Boolean> fetcher = new TextBodyPropertyFetcher<Boolean>(){
|
||||
@Override
|
||||
public boolean fetch(CTTextBodyProperties props){
|
||||
if(props.isSetAnchorCtr()){
|
||||
setValue(props.getAnchorCtr());
|
||||
@ -257,7 +268,9 @@ public abstract class XSLFTextShape extends XSLFSimpleShape
|
||||
CTTextBodyProperties bodyPr = getTextBodyPr(true);
|
||||
if (bodyPr != null) {
|
||||
if(orientation == null) {
|
||||
if(bodyPr.isSetVert()) bodyPr.unsetVert();
|
||||
if(bodyPr.isSetVert()) {
|
||||
bodyPr.unsetVert();
|
||||
}
|
||||
} else {
|
||||
bodyPr.setVert(STTextVerticalType.Enum.forInt(orientation.ordinal() + 1));
|
||||
}
|
||||
@ -315,6 +328,7 @@ public abstract class XSLFTextShape extends XSLFSimpleShape
|
||||
*/
|
||||
public double getBottomInset(){
|
||||
PropertyFetcher<Double> fetcher = new TextBodyPropertyFetcher<Double>(){
|
||||
@Override
|
||||
public boolean fetch(CTTextBodyProperties props){
|
||||
if(props.isSetBIns()){
|
||||
double val = Units.toPoints(props.getBIns());
|
||||
@ -338,6 +352,7 @@ public abstract class XSLFTextShape extends XSLFSimpleShape
|
||||
*/
|
||||
public double getLeftInset(){
|
||||
PropertyFetcher<Double> fetcher = new TextBodyPropertyFetcher<Double>(){
|
||||
@Override
|
||||
public boolean fetch(CTTextBodyProperties props){
|
||||
if(props.isSetLIns()){
|
||||
double val = Units.toPoints(props.getLIns());
|
||||
@ -361,6 +376,7 @@ public abstract class XSLFTextShape extends XSLFSimpleShape
|
||||
*/
|
||||
public double getRightInset(){
|
||||
PropertyFetcher<Double> fetcher = new TextBodyPropertyFetcher<Double>(){
|
||||
@Override
|
||||
public boolean fetch(CTTextBodyProperties props){
|
||||
if(props.isSetRIns()){
|
||||
double val = Units.toPoints(props.getRIns());
|
||||
@ -383,6 +399,7 @@ public abstract class XSLFTextShape extends XSLFSimpleShape
|
||||
*/
|
||||
public double getTopInset(){
|
||||
PropertyFetcher<Double> fetcher = new TextBodyPropertyFetcher<Double>(){
|
||||
@Override
|
||||
public boolean fetch(CTTextBodyProperties props){
|
||||
if(props.isSetTIns()){
|
||||
double val = Units.toPoints(props.getTIns());
|
||||
@ -406,8 +423,11 @@ public abstract class XSLFTextShape extends XSLFSimpleShape
|
||||
public void setBottomInset(double margin){
|
||||
CTTextBodyProperties bodyPr = getTextBodyPr(true);
|
||||
if (bodyPr != null) {
|
||||
if(margin == -1) bodyPr.unsetBIns();
|
||||
else bodyPr.setBIns(Units.toEMU(margin));
|
||||
if(margin == -1) {
|
||||
bodyPr.unsetBIns();
|
||||
} else {
|
||||
bodyPr.setBIns(Units.toEMU(margin));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@ -420,8 +440,11 @@ public abstract class XSLFTextShape extends XSLFSimpleShape
|
||||
public void setLeftInset(double margin){
|
||||
CTTextBodyProperties bodyPr = getTextBodyPr(true);
|
||||
if (bodyPr != null) {
|
||||
if(margin == -1) bodyPr.unsetLIns();
|
||||
else bodyPr.setLIns(Units.toEMU(margin));
|
||||
if(margin == -1) {
|
||||
bodyPr.unsetLIns();
|
||||
} else {
|
||||
bodyPr.setLIns(Units.toEMU(margin));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@ -434,8 +457,11 @@ public abstract class XSLFTextShape extends XSLFSimpleShape
|
||||
public void setRightInset(double margin){
|
||||
CTTextBodyProperties bodyPr = getTextBodyPr(true);
|
||||
if (bodyPr != null) {
|
||||
if(margin == -1) bodyPr.unsetRIns();
|
||||
else bodyPr.setRIns(Units.toEMU(margin));
|
||||
if(margin == -1) {
|
||||
bodyPr.unsetRIns();
|
||||
} else {
|
||||
bodyPr.setRIns(Units.toEMU(margin));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@ -448,8 +474,11 @@ public abstract class XSLFTextShape extends XSLFSimpleShape
|
||||
public void setTopInset(double margin){
|
||||
CTTextBodyProperties bodyPr = getTextBodyPr(true);
|
||||
if (bodyPr != null) {
|
||||
if(margin == -1) bodyPr.unsetTIns();
|
||||
else bodyPr.setTIns(Units.toEMU(margin));
|
||||
if(margin == -1) {
|
||||
bodyPr.unsetTIns();
|
||||
} else {
|
||||
bodyPr.setTIns(Units.toEMU(margin));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@ -470,6 +499,7 @@ public abstract class XSLFTextShape extends XSLFSimpleShape
|
||||
@Override
|
||||
public boolean getWordWrap(){
|
||||
PropertyFetcher<Boolean> fetcher = new TextBodyPropertyFetcher<Boolean>(){
|
||||
@Override
|
||||
public boolean fetch(CTTextBodyProperties props){
|
||||
if(props.isSetWrap()){
|
||||
setValue(props.getWrap() == STTextWrappingType.SQUARE);
|
||||
@ -500,9 +530,15 @@ public abstract class XSLFTextShape extends XSLFSimpleShape
|
||||
public void setTextAutofit(TextAutofit value){
|
||||
CTTextBodyProperties bodyPr = getTextBodyPr(true);
|
||||
if (bodyPr != null) {
|
||||
if(bodyPr.isSetSpAutoFit()) bodyPr.unsetSpAutoFit();
|
||||
if(bodyPr.isSetNoAutofit()) bodyPr.unsetNoAutofit();
|
||||
if(bodyPr.isSetNormAutofit()) bodyPr.unsetNormAutofit();
|
||||
if(bodyPr.isSetSpAutoFit()) {
|
||||
bodyPr.unsetSpAutoFit();
|
||||
}
|
||||
if(bodyPr.isSetNoAutofit()) {
|
||||
bodyPr.unsetNoAutofit();
|
||||
}
|
||||
if(bodyPr.isSetNormAutofit()) {
|
||||
bodyPr.unsetNormAutofit();
|
||||
}
|
||||
|
||||
switch(value){
|
||||
case NONE: bodyPr.addNewNoAutofit(); break;
|
||||
@ -519,9 +555,13 @@ public abstract class XSLFTextShape extends XSLFSimpleShape
|
||||
public TextAutofit getTextAutofit(){
|
||||
CTTextBodyProperties bodyPr = getTextBodyPr();
|
||||
if (bodyPr != null) {
|
||||
if(bodyPr.isSetNoAutofit()) return TextAutofit.NONE;
|
||||
else if (bodyPr.isSetNormAutofit()) return TextAutofit.NORMAL;
|
||||
else if (bodyPr.isSetSpAutoFit()) return TextAutofit.SHAPE;
|
||||
if(bodyPr.isSetNoAutofit()) {
|
||||
return TextAutofit.NONE;
|
||||
} else if (bodyPr.isSetNormAutofit()) {
|
||||
return TextAutofit.NORMAL;
|
||||
} else if (bodyPr.isSetSpAutoFit()) {
|
||||
return TextAutofit.SHAPE;
|
||||
}
|
||||
}
|
||||
return TextAutofit.NORMAL;
|
||||
}
|
||||
@ -551,7 +591,9 @@ public abstract class XSLFTextShape extends XSLFSimpleShape
|
||||
|
||||
public Placeholder getTextType(){
|
||||
CTPlaceholder ph = getCTPlaceholder();
|
||||
if (ph == null) return null;
|
||||
if (ph == null) {
|
||||
return null;
|
||||
}
|
||||
|
||||
int val = ph.getType().intValue();
|
||||
return Placeholder.lookupOoxml(val);
|
||||
@ -571,12 +613,15 @@ public abstract class XSLFTextShape extends XSLFSimpleShape
|
||||
*/
|
||||
public Rectangle2D resizeToFitText(){
|
||||
Rectangle2D anchor = getAnchor();
|
||||
if(anchor.getWidth() == 0.) throw new POIXMLException(
|
||||
"Anchor of the shape was not set.");
|
||||
|
||||
if(anchor.getWidth() == 0.) {
|
||||
throw new POIXMLException("Anchor of the shape was not set.");
|
||||
}
|
||||
double height = getTextHeight();
|
||||
height += 1; // add a pixel to compensate rounding errors
|
||||
|
||||
anchor.setRect(anchor.getX(), anchor.getY(), anchor.getWidth(), height);
|
||||
Insets2D insets = getInsets();
|
||||
anchor.setRect(anchor.getX(), anchor.getY(), anchor.getWidth(), height+insets.top+insets.bottom);
|
||||
setAnchor(anchor);
|
||||
|
||||
return anchor;
|
||||
@ -596,7 +641,9 @@ public abstract class XSLFTextShape extends XSLFSimpleShape
|
||||
|
||||
thisTB.setBodyPr((CTTextBodyProperties)otherTB.getBodyPr().copy());
|
||||
|
||||
if (thisTB.isSetLstStyle()) thisTB.unsetLstStyle();
|
||||
if (thisTB.isSetLstStyle()) {
|
||||
thisTB.unsetLstStyle();
|
||||
}
|
||||
if (otherTB.isSetLstStyle()) {
|
||||
thisTB.setLstStyle((CTTextListStyle)otherTB.getLstStyle().copy());
|
||||
}
|
||||
@ -665,7 +712,9 @@ public abstract class XSLFTextShape extends XSLFSimpleShape
|
||||
@Override
|
||||
public TextPlaceholder getTextPlaceholder() {
|
||||
Placeholder ph = getTextType();
|
||||
if (ph == null) return TextPlaceholder.BODY;
|
||||
if (ph == null) {
|
||||
return TextPlaceholder.BODY;
|
||||
}
|
||||
switch (ph) {
|
||||
case BODY: return TextPlaceholder.BODY;
|
||||
case TITLE: return TextPlaceholder.TITLE;
|
||||
|
@ -329,7 +329,8 @@ implements TextShape<HSLFShape,HSLFTextParagraph> {
|
||||
double height = getTextHeight();
|
||||
height += 1; // add a pixel to compensate rounding errors
|
||||
|
||||
anchor.setRect(anchor.getX(), anchor.getY(), anchor.getWidth(), height);
|
||||
Insets2D insets = getInsets();
|
||||
anchor.setRect(anchor.getX(), anchor.getY(), anchor.getWidth(), height+insets.top+insets.bottom);
|
||||
setAnchor(anchor);
|
||||
|
||||
return anchor;
|
||||
|
Loading…
Reference in New Issue
Block a user