use of com.xenoage.zong.core.text.FormattedTextElement in project Zong by Xenoage.
the class FormattedTextConverter method fromStyledDocument.
/**
* Creates a {@link FormattedText} from the given {@link StyledDocument}.
*/
public static FormattedText fromStyledDocument(StyledDocument styledDoc) {
CList<FormattedTextParagraph> paragraphs = clist();
int endPos = styledDoc.getLength();
AttributeSet attribute = null;
String textelement = "";
String letter = "";
CList<FormattedTextElement> elements = clist();
Alignment alignment = null;
// paragraph, when '\n' is found
for (int i = 0; i < endPos; i++) {
try {
letter = styledDoc.getText(i, 1);
} catch (BadLocationException e) {
}
// line break: create new paragraph
if (letter.equals("\n")) {
if (!textelement.equals("")) {
elements.add(new FormattedTextString(textelement, getStyleFromAttributeSet(attribute)));
textelement = "";
}
paragraphs.add(new FormattedTextParagraph(elements, alignment));
elements = clist();
alignment = null;
} else if (attribute != styledDoc.getCharacterElement(i).getAttributes()) {
// set alignment, if not already done
if (alignment == null) {
alignment = fromAttributeSet(styledDoc.getParagraphElement(i).getAttributes());
}
// style has changed, so save old element and create a new one
if (!textelement.equals("")) {
elements.add(new FormattedTextString(textelement, getStyleFromAttributeSet(attribute)));
}
attribute = styledDoc.getCharacterElement(i).getAttributes();
textelement = letter;
} else {
// style stayed the same, so just append
textelement += letter;
}
}
if (!textelement.equals("")) {
// save the last string
elements.add(new FormattedTextString(textelement, getStyleFromAttributeSet(attribute)));
}
if (elements.size() > 0) {
// add (non-empty) paragraph
paragraphs.add(new FormattedTextParagraph(elements, alignment));
}
return new FormattedText(paragraphs);
}
use of com.xenoage.zong.core.text.FormattedTextElement in project Zong by Xenoage.
the class AndroidCanvas method drawText.
/**
* {@inheritDoc}
* The text selection is ignored.
*/
@Override
public void drawText(FormattedText text, TextSelection selection, Point2f position, boolean yIsBaseline, float frameWidth) {
int oldTransform = canvas.save();
canvas.translate(position.x, position.y);
// print the text frame paragraph for paragraph
float offsetX = 0;
float offsetY = 0;
for (FormattedTextParagraph p : text.getParagraphs()) {
TextMetrics pMetrics = p.getMetrics();
if (!yIsBaseline)
offsetY += pMetrics.getAscent();
// adjustment
if (p.getAlignment() == Alignment.Center)
offsetX = (frameWidth - pMetrics.getWidth()) / 2;
else if (p.getAlignment() == Alignment.Right)
offsetX = frameWidth - pMetrics.getWidth();
else
offsetX = 0;
// draw elements
for (FormattedTextElement e : p.getElements()) {
if (e instanceof FormattedTextString) {
// TODO - formatting
FormattedTextString t = (FormattedTextString) e;
Paint paint = new Paint(AndroidColorUtils.black);
paint.setTypeface(Typeface.SERIF);
paint.setTextSize(Units.pxToMm(t.getStyle().getFont().getSize(), 1));
// nice, smooth drawing
paint.setFlags(Paint.LINEAR_TEXT_FLAG | Paint.ANTI_ALIAS_FLAG);
canvas.drawText(t.getText(), offsetX, offsetY, paint);
} else {
// symbol
FormattedTextSymbol fts = (FormattedTextSymbol) e;
float scaling = fts.getScaling();
androidSymbolsRenderer.draw((PathSymbol) fts.getSymbol(), canvas, Color.black, new Point2f(offsetX + fts.getOffsetX(), offsetY + fts.getSymbol().baselineOffset * scaling), new Point2f(scaling, scaling));
}
offsetX += e.getMetrics().getWidth();
}
// next line
offsetY += p.getMetrics().getAscent() + p.getMetrics().getDescent() + p.getMetrics().getLeading();
}
canvas.restoreToCount(oldTransform);
}
use of com.xenoage.zong.core.text.FormattedTextElement in project Zong by Xenoage.
the class Test32b method check.
private void check(Words words, Text expectedText, MP mp) {
FormattedTextElement elem = getFormattedTextElement(words, mp);
assertEquals("" + mp, expectedText.getText(), elem.getText());
assertEquals("" + mp, expectedText.getStyle(), elem.getStyle().getFont().getStyle());
assertEquals("" + mp, expectedText.getColor(), elem.getStyle().getColor());
// TODO: wrong position coordinates in MusicXML file. for example, placement says "below"
// but default-y is positive. and default-x should be relative to the measure start
// bug reported: https://code.google.com/p/lilypond/issues/detail?id=4172
// assertEquals(""+mp, expectedText.getPlacement(), words.getPositioning());
}
Aggregations