JButtonのテキストとしてActionの名前を適用しないよう設定する
Total: 3024
, Today: 2
, Yesterday: 1
Posted by aterai at
Last-modified:
概要
JButton
にAction
を設定したとき、そのアクション名をJButton
のテキストとして適用しないよう設定します。
Screenshot
Advertisement
サンプルコード
Action pasteAction = new DefaultEditorKit.PasteAction();
pasteAction.putValue(Action.LARGE_ICON_KEY, new ColorIcon(Color.GREEN));
JButton button = new JButton("text");
button.setFocusable(false);
button.setAction(pasteAction);
button.setIcon(new ColorIcon(Color.RED));
button.addActionListener(e -> Toolkit.getDefaultToolkit().beep());
button.setHideActionText(false);
View in GitHub: Java, Kotlin解説
上記のサンプルでは、JButton#setHideActionText(false)
を設定した状態でAction
を変更した場合などのテストを行っています。
JButton#setHideActionText(false)
を設定した状態でAction
を変更した場合、そのアクション名やアイコンなどはJButton
に適用されないJButton.setText(...)
、JButton.setIcon(...)
の設定が優先される
JButton#setHideActionText(false)
を設定した状態でもAction
をnull
(初期状態)に変更するとJButton
のテキストやアイコンはクリアされてしまう- アクションから名前とアイコンが適用された状態で
JButton#setHideActionText(false)
を実行した場合、JButton
のテキストはクリアされるがアイコンは変化しないJButton.setText(...)
、JButton.setIcon(...)
でテキストやアイコンを設定している場合も同様にJButton
のテキストはクリアされるが、アイコンは変化しない
JButton#setHideActionText(...)
の状態にJButton.setText(...)
、JButton.setIcon(...)
は依存しない