概要

JCheckBoxJRadioButtonのチェックアイコン内部の描画に使用するインテリア背景色などを変更します。

サンプルコード

try {
  UIManager.setLookAndFeel(
    "com.sun.java.swing.plaf.windows.WindowsClassicLookAndFeel");
} catch (Exception ignored) {
  Toolkit.getDefaultToolkit().beep();
}
// System.setProperty("swing.noxp", "true");
UIManager.put("CheckBox.foreground", Color.RED);
UIManager.put("CheckBox.background", Color.GREEN);
UIManager.put("CheckBox.interiorBackground", Color.BLUE);

UIManager.put("RadioButton.foreground", Color.RED);
UIManager.put("RadioButton.background", Color.GREEN);
UIManager.put("RadioButton.interiorBackground", Color.BLUE);
View in GitHub: Java, Kotlin

解説

  • CheckBox.interiorBackgroundRadioButton.interiorBackground: BLUE
    • JCheckBoxJRadioButtonのチェックアイコン内部のButtonModel#isPressed()でない、かつButtonModel#isArmed()でない状態の背景色
    • WindowsClassicLookAndFeelでのみ有効
    • CheckBoxMenuItem.interiorBackgroundRadioButtonMenuItem.interiorBackgroundは存在せず無効
  • CheckBox.backgroundRadioButton.background: GREEN
    • JCheckBoxJRadioButtonのラベル背景色
      • このサンプルではJCheckBox#setOpaque(false)を設定してラベルの背景を描画しないよう設定している
    • WindowsClassicLookAndFeelの場合、ButtonModel#isPressed()、かつButtonModel#isArmed()状態のチェックアイコン内部の背景色も共有している
  • CheckBox.foregroundRadioButton.foreground: RED
    • JCheckBoxJRadioButtonのラベル文字色
    • WindowsClassicLookAndFeelの場合、チェックアイコンのチェックマーク色も共有している
    • MotifLookAndFeelの場合、JCheckBoxのチェックマーク色のみ変更可能で、JRadioButtonのチェックマーク色は変更不可

参考リンク

コメント