JTextFieldを編集不可のJTextPaneに追加する
Total: 4853
, Today: 1
, Yesterday: 1
Posted by aterai at
Last-modified:
概要
JTextField
を空欄として編集不可にしたJTextPane
に追加します。
Screenshot
Advertisement
サンプルコード
private static void insertQuestion(JTextPane textPane, String str) {
Document doc = textPane.getDocument();
try {
doc.insertString(doc.getLength(), str, null);
int pos = doc.getLength();
System.out.println(pos);
JTextField field = new JTextField(4) {
@Override public Dimension getMaximumSize() {
return getPreferredSize();
}
};
field.setBorder(BorderFactory.createMatteBorder(0, 0, 1, 0, Color.BLACK));
field.addFocusListener(new FocusAdapter() {
@Override public void focusGained(FocusEvent e) {
try {
Rectangle rect = textPane.modelToView(pos);
rect.grow(0, 4);
rect.setSize(field.getSize());
// System.out.println(rect);
// System.out.println(field.getLocation());
textPane.scrollRectToVisible(rect);
} catch (BadLocationException ex) {
// should never happen
RuntimeException wrap = new StringIndexOutOfBoundsException(
ex.offsetRequested());
wrap.initCause(ex);
throw wrap;
}
}
});
Dimension d = field.getPreferredSize();
int baseline = field.getBaseline(d.width, d.height);
field.setAlignmentY(baseline / (float) d.height);
// MutableAttributeSet a = new SimpleAttributeSet();
MutableAttributeSet a = textPane.getStyle(StyleContext.DEFAULT_STYLE);
StyleConstants.setLineSpacing(a, 1.5f);
textPane.setParagraphAttributes(a, true);
textPane.insertComponent(field);
doc.insertString(doc.getLength(), "\n", null);
} catch (BadLocationException ex) {
// should never happen
RuntimeException wrap = new StringIndexOutOfBoundsException(
ex.offsetRequested());
wrap.initCause(ex);
throw wrap;
}
}
View in GitHub: Java, Kotlin解説
上記のサンプルでは、編集不可状態のJTextPane
内の文字列中に編集可能なJTextField
をJTextPane#insertComponent(...)
メソッドを使用して追加しています。
JTextPane
- 編集不可に設定
- 行間を
1.5
倍に設定
JTextField
JTextField#getMaximumSize()
をオーバーライドして幅を制限JTextField
にMatteBorder
を設定して下線のみの空欄を表示JTextField#setAlignmentY(...)
でベースラインを揃えるJTextField
にFocusListener
を追加してTabキーなどでFocus
が移動したら、そのJTextField
までスクロールするように設定