Swing/CaretColor のバックアップ(No.2)
- バックアップ一覧
- 差分 を表示
- 現在との差分 を表示
- 現在との差分 - Visual を表示
- ソース を表示
- Swing/CaretColor へ行く。
- 1 (2018-02-15 (木) 14:23:42)
- 2 (2020-01-15 (水) 18:36:10)
- 3 (2021-07-16 (金) 09:02:52)
- category: swing folder: CaretColor title: JTextComponentのCaretの色を変更する tags: [Caret, JTextComponent, JTextField, JTextArea, JTextPane] author: aterai pubdate: 2018-01-22T15:56:54+09:00 description: JTextFieldやJTextPaneなどのJTextComponentで、Caretの色を変更します。 image: https://drive.google.com/uc?id=1u7eaiGMgpBZefGTMjAxkHBsxf29Fu-ZfbQ
概要
JTextField
やJTextPane
などのJTextComponent
で、Caret
の色を変更します。
Screenshot
Advertisement
サンプルコード
UIManager.put("TextArea.caretForeground", Color.ORANGE);
JTextArea area = new JTextArea("TextArea.caretForeground: ORANGE");
JTextField field = new JTextField("JTextField");
field.setCaretColor(Color.RED);
View in GitHub: Java, Kotlin解説
JTextField
setCaretColor(...)
メソッドで、Caret
の色を変更null
を設定すると、JTextField
の文字色がCaret
の色になる
IME
で変換中のCaret
は、setCaretColor(...)
での設定を無視してJTextField
の文字色がCaret
の色になる
JTextArea
UIManager.put("TextArea.caretForeground", Color.ORANGE)
でCaret
の色を変更IME
で変換中のCaret
は、setCaretColor(...)
での設定を無視してJTextArea
の文字色がCaret
の色になる
JTextPane
setCaretColor(null)
で、Caret
の色をnull
に設定- 上記のサンプルで
Caret
の色は、一行目の途中(二行目の111
の幅まで?)まで赤、それ以外は黒になる IME
で変換中のCaret
は、setCaretColor(...)
での設定を無視してGraphics#setXORMode(...)
で反転した色がCaret
の色になる- 二行目では、行の背景色の緑の反転色のピンク、文字色の赤の反転色の水色になる?(
JTextComponent.ComposedTextCaret
を参照)// // Caret implementation for editing the composed text. // class ComposedTextCaret extends DefaultCaret implements Serializable { Color bg; // // Get the background color of the component // public void install(JTextComponent c) { super.install(c); Document doc = c.getDocument(); if (doc instanceof StyledDocument) { StyledDocument sDoc = (StyledDocument)doc; Element elem = sDoc.getCharacterElement(c.composedTextStart.getOffset()); AttributeSet attr = elem.getAttributes(); bg = sDoc.getBackground(attr); } if (bg == null) { bg = c.getBackground(); } } // // Draw caret in XOR mode. // public void paint(Graphics g) { if (isVisible()) { try { Rectangle r = component.modelToView(getDot()); g.setXORMode(bg); g.drawLine(r.x, r.y, r.x, r.y + r.height - 1); g.setPaintMode(); } catch (BadLocationException e) { // can't render I guess //System.err.println("Can't render cursor"); } } } // // If some area other than the composed text is clicked by mouse, // issue endComposition() to force commit the composed text. // protected void positionCaret(MouseEvent me) { JTextComponent host = component; Point pt = new Point(me.getX(), me.getY()); int offset = host.viewToModel(pt); int composedStartIndex = host.composedTextStart.getOffset(); if ((offset < composedStartIndex) || (offset > composedTextEnd.getOffset())) { try { // Issue endComposition Position newPos = host.getDocument().createPosition(offset); host.getInputContext().endComposition(); // Post a caret positioning runnable to assure that the positioning // occurs *after* committing the composed text. EventQueue.invokeLater(new DoSetCaretPosition(host, newPos)); } catch (BadLocationException ble) { System.err.println(ble); } } else { // Normal processing super.positionCaret(me); } } }
- 二行目では、行の背景色の緑の反転色のピンク、文字色の赤の反転色の水色になる?(