概要
JTextArea
で文字列のダブルクリックによる単語選択を実行した場合、単語の区切りとみなす文字を追加します。
Screenshot
Advertisement
サンプルコード
// @see javax.swint.text.Utilities.getWordStart(...)
int getWordStart(JTextComponent c, int offs) throws BadLocationException {
Element line = Optional.ofNullable(Utilities.getParagraphElement(c, offs))
.orElseThrow(() -> new BadLocationException("No word at " + offs, offs));
Document doc = c.getDocument();
int lineStart = line.getStartOffset();
int lineEnd = Math.min(line.getEndOffset(), doc.getLength());
int offs2 = offs;
Segment seg = SegmentCache.getSharedSegment();
doc.getText(lineStart, lineEnd - lineStart, seg);
if (seg.count > 0) {
BreakIterator words = BreakIterator.getWordInstance(c.getLocale());
words.setText(seg);
int wordPosition = seg.offset + offs - lineStart;
if (wordPosition >= words.last()) {
wordPosition = words.last() - 1;
words.following(wordPosition);
offs2 = lineStart + words.previous() - seg.offset;
} else {
words.following(wordPosition);
offs2 = lineStart + words.previous() - seg.offset;
for (int i = offs; i > offs2; i--) {
char ch = seg.charAt(i - seg.offset);
if (ch == '_' || ch == '-') {
offs2 = i + 1;
break;
}
}
}
}
SegmentCache.releaseSharedSegment(seg);
return offs2;
}
View in GitHub: Java, Kotlin解説
上記のサンプルでは、JTextArea
で文字列をダブルクリックした場合に実行される単語選択アクション(new TextAction(DefaultEditorKit.selectWordAction)
)を変更し、常に_
、-
記号で単語を区切るように設定しています。
Default
_
と-
は単語区切りにならず、AA-BB_CC
は一つの単語として選択される- 単語選択アクションはクリックした位置から単語の先頭と末尾を探す方法として
javax.swint.text.Utilities
のgetWordEnd(...)
とgetWordEnd(...)
メソッドを使用している
Break words: _ and -
_
と-
を単語区切りに追加し、AA-BB_CC
のBB
上でダブルクリックするとBB
のみ選択されるよう変更javax.swint.text.Utilities
のgetWordEnd(...)
とgetWordEnd(...)
メソッドをコピーし、BreakIterator.getWordInstance(c.getLocale())
で見つけた単語内に_
か-
が存在するか再度検索するよう改変