JMenuItemのAccelerator表示を変更する
Total: 571
, Today: 1
, Yesterday: 1
Posted by aterai at
Last-modified:
概要
JMenuItem
に設定されたAccelerator
の文字サイズや色を変更します。
Screenshot
Advertisement
サンプルコード
Color color1;
Color color2;
Font font;
List<String> list = Arrays.asList(
"MenuItem", "CheckBoxMenuItem", "RadioButtonMenuItem");
for (String prefix : list) {
String key1 = prefix + ".acceleratorForeground";
String key2 = prefix + ".acceleratorSelectionForeground";
String key3 = prefix + ".acceleratorFont";
if (selected) {
color1 = AFC;
color2 = Color.WHITE;
font = UIManager.getFont(key3);
if (font != null) {
font = font.deriveFont(10f);
}
} else {
UIDefaults def = UIManager.getLookAndFeelDefaults();
color1 = def.getColor(key1);
color2 = def.getColor(key2);
font = def.getFont(key3);
}
UIManager.put(key1, color1);
UIManager.put(key2, color2);
UIManager.put(key3, font);
}
SwingUtilities.updateComponentTreeUI(popup);
View in GitHub: Java, Kotlin解説
UIManager.put("MenuItem.acceleratorForeground", color)
JMenuItem#setAccelerator(KeyStroke)
で設定したaccelerator
の文字色を変更MetalLookAndFeel
、WindowsLookAndFeel
などで有効、NimbusLookAndFeel
、GTKLookAndFeel
などでは無効JCheckBoxMenuItem
、JRadioButtonMenuItem
には影響しないため、別途CheckBoxMenuItem.acceleratorForeground
などで設定する必要があるBasicLookAndFeel
でMenu.acceleratorForeground
、Menu.acceleratorSelectionForeground
、Menu.acceleratorSelectionFont
が設定されているが、JMenu
にaccelerator
を設定しても実行時にjava.lang.Error: setAccelerator() is not defined for JMenu. Use setMnemonic() instead.
とエラーになるので無意味
UIManager.put("MenuItem.acceleratorSelectionForeground", color)
accelerator
の選択文字色を変更
UIManager.put("MenuItem.acceleratorSelectionFont", font)
accelerator
のFont
を変更- このサンプルでは
Font
サイズをFont#deriveFont(10f)
で縮小している