Добавление нескольких StyleConstants в AttributeSet
У меня есть строка текста: "Это |
Я хочу |<хорошо>| и |<лыжи>| красный, курсив, FontSize 9.
Я установил отдельные наборы атрибутов
StyleContext myProtected = StyleContext.getDefaultStyleContext();
AttributeSet attR = myProtected.addAttribute(myProtected.getEmptySet(), StyleConstants.Foreground, Color.RED);
AttributeSet attB = myProtected.addAttribute(myProtected.getEmptySet(), StyleConstants.Background, Color.BLUE);
AttributeSet attI = myProtected.addAttribute(myProtected.getEmptySet(), StyleConstants.Italic, Boolean.TRUE);
AttributeSet attS = myProtected.addAttribute(myProtected.getEmptySet(), StyleConstants.FontSize, 9);
и у меня есть регулярное выражение, которое находит шаблоны правильно. Но если я попытаюсь установить несколько наборов атрибутов в одно и то же совпадение, только первый из них учитывает регулярное выражение. Другие просто применяют себя ко всей последовательности. Вот весь класс:
class ElementHighlight2 extends DefaultStyledDocument {
//private final MutableAttributeSet XRED = new SimpleAttributeSet();
StyleContext myProtected = StyleContext.getDefaultStyleContext();
AttributeSet attR = myProtected.addAttribute(myProtected.getEmptySet(), StyleConstants.Foreground, Color.RED);
//AttributeSet attB = myProtected.addAttribute(myProtected.getEmptySet(), StyleConstants.Background, Color.BLUE);
AttributeSet attI = myProtected.addAttribute(myProtected.getEmptySet(), StyleConstants.Italic, Boolean.TRUE);
AttributeSet attS = myProtected.addAttribute(myProtected.getEmptySet(), StyleConstants.FontSize, 9);
@Override
public void insertString (int offset, String Pstr, AttributeSet RedBlue) throws BadLocationException
{
super.insertString(offset, Pstr, RedBlue);
String text = getText(0, getLength());
int pre = pipeCharEnd(text, offset);
if (pre < 0) pre = 0;
int post = pipeCharStart(text, offset + Pstr.length());
int prewords = pre;
int postwords = pre;
while (postwords <= post) {
if (postwords == post || String.valueOf(text.charAt(postwords)).matches("\\|")) {
if (text.substring(prewords, postwords).matches("(\\|\\<[^\\>]*\\>)"))
setCharacterAttributes(prewords, postwords - prewords +1, attR, false);
setCharacterAttributes(prewords, postwords - prewords +1, attI, false);
setCharacterAttributes(prewords, postwords - prewords +1, attS, false);
prewords = postwords;
}
postwords++;
}
}
Если кто-то может помочь мне освоить лучшую практику, которую я еще не открыл для достижения этой цели, я буду очень благодарен.
1 ответ
Вместо того, чтобы создавать отдельные атрибуты и комбинировать их с setCharacterAttributes
Я думаю, вы могли бы создать комбинированный набор атрибутов:
AttributeSet attR = myProtected.addAttribute(myProtected.getEmptySet(), StyleConstants.Foreground, Color.RED);
AttributeSet attI = myProtected.addAttribute(attR, StyleConstants.Italic, Boolean.TRUE);
AttributeSet attS = myProtected.addAttribute(attI, StyleConstants.FontSize, 9);
а затем применять только комбинированные attS
,