JEditorPaneで選択した文字列の色反転を無効化
Total: 2108
, Today: 1
, Yesterday: 1
Posted by aterai at
Last-modified:
概要
JEditorPane
で選択した文字のレンダリングに使用する色をnull
にして選択文字色の変更を無効化します。
Screenshot
Advertisement
サンプルコード
HTMLEditorKit htmlEditorKit = new HTMLEditorKit();
htmlEditorKit.setStyleSheet(styleSheet);
editor.setEditorKit(htmlEditorKit);
editor.setEditable(false);
editor.setSelectedTextColor(null);
editor.setSelectionColor(new Color(0x64_88_AA_AA, true));
editor.setBackground(new Color(0xEE_EE_EE));
View in GitHub: Java, Kotlin解説
- 上:
- 選択した文字をレンダリングする色は
LookAndFeel
でのデフォルト- たとえば
WindowsLookAndFeel
の場合選択文字色はColor.WHITE
になる
- たとえば
- 選択した文字をレンダリングする色は
- 下:
- 選択した文字のレンダリングを
JTextComponent#setSelectedTextColor(null)
で無効化してCSS
で設定した文字色を変更しないよう設定 - JTextComponent#setSelectedTextColor(Color) (Java Platform SE 8)のドキュメントには「色に
null
を設定することは、Color.black
と同じです。」と記述されているが、実際のJEditorPane
でnull
を設定すると選択文字色の変更は無効になる
- 選択した文字のレンダリングを
参考リンク
- JEditorPaneで選択色を半透明化
- JEditorPaneにソースコードをシンタックスハイライトして表示する
- Java access files in jar causes java.nio.file.FileSystemNotFoundException - Stack Overflow