Swing/CheckBoxMenuItemIcon のバックアップ(No.1)
- バックアップ一覧
- 差分 を表示
- 現在との差分 を表示
- 現在との差分 - Visual を表示
- ソース を表示
- Swing/CheckBoxMenuItemIcon へ行く。
- 1 (2009-11-20 (金) 13:54:08)
- 2 (2010-11-08 (月) 16:27:29)
- 3 (2012-10-24 (水) 13:47:36)
- 4 (2013-01-05 (土) 19:38:51)
- 5 (2013-05-03 (金) 23:43:34)
- 6 (2014-11-22 (土) 03:59:58)
- 7 (2014-12-01 (月) 15:11:11)
- 8 (2014-12-16 (火) 14:18:06)
- 9 (2015-01-01 (木) 21:45:26)
- 10 (2015-03-04 (水) 17:20:14)
- 11 (2015-08-21 (金) 18:33:14)
- 12 (2017-04-07 (金) 13:55:43)
- 13 (2018-02-24 (土) 19:51:30)
- 14 (2018-03-29 (木) 17:37:32)
- 15 (2020-03-26 (木) 15:13:00)
- 16 (2021-10-02 (土) 21:13:22)
TITLE:JCheckBoxMenuItemのチェックアイコンを変更する
Posted by terai at 2009-09-14
JCheckBoxMenuItemのチェックアイコンを変更する
JCheckBoxMenuItemのチェックアイコンを変更します。
- &jnlp;
- &jar;
- &zip;
#screenshot
サンプルコード
UIManager.put("CheckBoxMenuItem.checkIcon", new Icon() {
public void paintIcon(Component c, Graphics g, int x, int y) {
Graphics2D g2 = (Graphics2D)g;
g2.translate(x,y);
ButtonModel m = ((AbstractButton)c).getModel();
g2.setPaint(m.isSelected()?Color.ORANGE:Color.GRAY);
g2.setRenderingHint(RenderingHints.KEY_ANTIALIASING,
RenderingHints.VALUE_ANTIALIAS_ON);
g2.fillOval( 0, 2, 10, 10 );
g2.translate(-x,-y);
}
public int getIconWidth() { return 14; }
public int getIconHeight() { return 14; }
});
menu.add(new JCheckBoxMenuItem("checkIcon test"));
解説
JCheckBoxのチェックアイコンは、setIconメソッドで変更できますが、JCheckBoxMenuItemはチェックアイコンとは別のアイコンが設定されるので、UIManager.put("CheckBoxMenuItem.checkIcon", icon);を使用しています。