public String getName() {
return "fo:character";
}
public int layout(Area area) throws FOPException {
BlockArea blockArea;
if (!(area instanceof BlockArea)) {
log.warn("currently Character can only be in a BlockArea");
return Status.OK;
}
blockArea = (BlockArea)area;
boolean textDecoration;
// Common Aural Properties
AuralProps mAurProps = propMgr.getAuralProps();
// Common Border, Padding, and Background Properties
BorderAndPadding bap = propMgr.getBorderAndPadding();
BackgroundProps bProps = propMgr.getBackgroundProps();
// Common Font Properties
//this.fontState = propMgr.getFontState(area.getFontInfo());
// Common Hyphenation Properties
HyphenationProps mHyphProps = propMgr.getHyphenationProps();
// Common Margin Properties-Inline
MarginInlineProps mProps = propMgr.getMarginInlineProps();
// Common Relative Position Properties
RelativePositionProps mRelProps = propMgr.getRelativePositionProps();
// this.properties.get("alignment-adjust");
// this.properties.get("treat-as-word-space");
// this.properties.get("alignment-baseline");
// this.properties.get("baseline-shift");
// this.properties.get("character");
// this.properties.get("color");
// this.properties.get("dominant-baseline");
// this.properties.get("text-depth");
// this.properties.get("text-altitude");
// this.properties.get("glyph-orientation-horizontal");
// this.properties.get("glyph-orientation-vertical");
// this.properties.get("id");
// this.properties.get("keep-with-next");
// this.properties.get("keep-with-previous");
// this.properties.get("letter-spacing");
// this.properties.get("line-height");
// this.properties.get("line-height-shift-adjustment");
// this.properties.get("score-spaces");
// this.properties.get("suppress-at-line-break");
// this.properties.get("text-decoration");
// this.properties.get("text-shadow");
// this.properties.get("text-transform");
// this.properties.get("word-spacing");
// color properties
ColorType c = this.properties.get("color").getColorType();
float red = c.red();
float green = c.green();
float blue = c.blue();
int whiteSpaceCollapse =
this.properties.get("white-space-collapse").getEnum();
int wrapOption = this.parent.properties.get("wrap-option").getEnum();
int tmp = this.properties.get("text-decoration").getEnum();
if (tmp == org.apache.fop.fo.properties.TextDecoration.UNDERLINE) {
textDecoration = true;
} else {
textDecoration = false;
}
// Character specific properties
char characterValue = this.properties.get("character").getCharacter();
// initialize id
String id = this.properties.get("id").getString();
try {
blockArea.getIDReferences().initializeID(id, blockArea);
}
catch(FOPException e) {
if (!e.isLocationSet()) {
e.setLocation(systemId, line, column);
}
throw e;
}
LineArea la = blockArea.getCurrentLineArea();
if (la == null) {
return Status.AREA_FULL_NONE;
}
la.changeFont(propMgr.getFontState(area.getFontInfo()));
la.changeColor(red, green, blue);
la.changeWrapOption(wrapOption);
la.changeWhiteSpaceCollapse(whiteSpaceCollapse);
blockArea.setupLinkSet(this.getLinkSet());
int result = la.addCharacter(characterValue, this.getLinkSet(),
textDecoration);
if (result == Character.DOESNOT_FIT) {
la = blockArea.createNextLineArea();
if (la == null) {
return Status.AREA_FULL_NONE;
}
la.changeFont(propMgr.getFontState(area.getFontInfo()));
la.changeColor(red, green, blue);
la.changeWrapOption(wrapOption);
la.changeWhiteSpaceCollapse(whiteSpaceCollapse);
blockArea.setupLinkSet(this.getLinkSet());
la.addCharacter(characterValue, this.getLinkSet(),
textDecoration);
}
return Status.OK;