Swing/SimpleSyntaxHighlight のバックアップ(No.12)
- バックアップ一覧
- 差分 を表示
- 現在との差分 を表示
- 現在との差分 - Visual を表示
- ソース を表示
- Swing/SimpleSyntaxHighlight へ行く。
- 1 (2009-11-03 (火) 04:07:29)
- 2 (2011-07-07 (木) 21:05:25)
- 3 (2011-07-14 (木) 16:02:03)
- 4 (2012-01-01 (日) 14:50:12)
- 5 (2013-01-05 (土) 19:41:48)
- 6 (2013-08-17 (土) 01:15:35)
- 7 (2013-11-05 (火) 19:23:14)
- 8 (2014-03-18 (火) 18:56:39)
- 9 (2014-10-13 (月) 10:43:20)
- 10 (2014-12-22 (月) 15:02:09)
- 11 (2015-01-14 (水) 15:01:22)
- 12 (2015-07-25 (土) 22:54:25)
- 13 (2017-03-28 (火) 14:55:02)
- 14 (2017-03-30 (木) 14:19:58)
- 15 (2018-03-07 (水) 19:10:06)
- 16 (2020-03-17 (火) 18:29:39)
- 17 (2021-09-19 (日) 10:52:20)
- title: JTextPaneでキーワードのSyntaxHighlight tags: [JTextPane, StyledDocument, Element, Highlight] author: aterai pubdate: 2009-09-21T02:07:00+09:00 description: JTextPaneでキーワードのSyntax Highlightを行います。
概要
JTextPane
でキーワードのSyntax Highlight
を行います。このサンプルは、Fast styled JTextPane editor | Oracle Communityなどのサンプルコードからキーワードのハイライト部分を参考にして作成しています。
Screenshot
Advertisement
サンプルコード
//This code is taken from: SyntaxDocument.java
//[https://community.oracle.com/thread/2105230 Fast styled JTextPane editor | Oracle Community]
class SimpleSyntaxDocument extends DefaultStyledDocument {
private final Style normal; //MutableAttributeSet normal = new SimpleAttributeSet();
private static final String OPERANDS = ".,";
public SimpleSyntaxDocument() {
super();
Style def = StyleContext.getDefaultStyleContext().getStyle(StyleContext.DEFAULT_STYLE);
normal = addStyle("normal", def);
StyleConstants.setForeground(normal, Color.BLACK);
StyleConstants.setForeground(addStyle("red", normal), Color.RED);
StyleConstants.setForeground(addStyle("green", normal), Color.GREEN);
StyleConstants.setForeground(addStyle("blue", normal), Color.BLUE);
}
@Override public void insertString(int offset, String str, AttributeSet a)
throws BadLocationException {
super.insertString(offset, str, a);
processChangedLines(offset, str.length());
}
@Override public void remove(int offset, int length)
throws BadLocationException {
super.remove(offset, length);
processChangedLines(offset, 0);
}
private void processChangedLines(int offset, int length)
throws BadLocationException {
Element root = getDefaultRootElement();
String content = getText(0, getLength());
int startLine = root.getElementIndex(offset);
int endLine = root.getElementIndex(offset + length);
for (int i = startLine; i <= endLine; i++) {
applyHighlighting(content, i);
}
}
private void applyHighlighting(String content, int line)
throws BadLocationException {
Element root = getDefaultRootElement();
int startOffset = root.getElement(line).getStartOffset();
int endOffset = root.getElement(line).getEndOffset() - 1;
int lineLength = endOffset - startOffset;
int contentLength = content.length();
if (endOffset >= contentLength) {
endOffset = contentLength - 1;
}
setCharacterAttributes(startOffset, lineLength, normal, true);
checkForTokens(content, startOffset, endOffset);
}
private void checkForTokens(String content, int startOffset, int endOffset) {
int index = startOffset;
while (index <= endOffset) {
while (isDelimiter(content.substring(index, index + 1))) {
if (index < endOffset) {
index++;
} else {
return;
}
}
index = getOtherToken(content, index, endOffset);
}
}
private int getOtherToken(String content, int startOffset, int endOffset) {
int endOfToken = startOffset + 1;
while (endOfToken <= endOffset) {
if (isDelimiter(content.substring(endOfToken, endOfToken + 1))) {
break;
}
endOfToken++;
}
String token = content.substring(startOffset, endOfToken);
Style s = getStyle(token);
if (s != null) {
setCharacterAttributes(startOffset, endOfToken - startOffset, s, false);
}
return endOfToken + 1;
}
protected boolean isDelimiter(String character) {
return Character.isWhitespace(character.charAt(0))
|| OPERANDS.indexOf(character) != -1;
}
}
View in GitHub: Java, Kotlin解説
上記のサンプルでは、red
, green
, blue
といったキーワードを入力すると、その色で文字列をハイライトするようになっています。区切り文字は、空白、.
(ドット)、,
(カンマ)の3
つです。
Java
のシンタックスハイライトを行うサンプルコード(参考リンクのSyntaxDocument.java
など)からキーワードのハイライト部分を抜き出して作成しています。
参考リンク
- Fast styled JTextPane editor | Oracle Community
オリジナルの作者、ライセンス、参照元のページが何処だったかなどが不明…- Java Code Example forによると、元はFast styled JTextPane editor | Oracle Communityの投稿で、作者は camickr さん、David Underhill さん。そう言われるとなんとなくそんな記憶があるような…、あのフォーラムはもういろいろ変更されすぎててどうにも…
- Customizing a Text Editor
- Text Editor Tutorial