JPopupMenuをコンポーネントに追加
Total: 10720
, Today: 1
, Yesterday: 0
Posted by aterai at
Last-modified:
概要
JComponent
に右クリックなどでポップアップするJPopupMenu
を追加します。
Screenshot
Advertisement
サンプルコード
JTextArea textArea = new JTextArea("ComponentPopupMenu Test");
textArea.setComponentPopupMenu(new TextComponentPopupMenu());
class TextComponentPopupMenu extends JPopupMenu {
private final Action cutAction = new DefaultEditorKit.CutAction();
private final Action copyAction = new DefaultEditorKit.CopyAction();
private final Action pasteAction = new DefaultEditorKit.PasteAction();
private final Action deleteAction;
private final Action selectAllAction;
public TextComponentPopupMenu() {
super();
add(cutAction);
add(copyAction);
add(pasteAction);
addSeparator();
add(deleteAction = new AbstractAction("delete") {
@Override public void actionPerformed(ActionEvent evt) {
((JTextComponent) getInvoker()).replaceSelection(null);
}
});
addSeparator();
add(selectAllAction = new AbstractAction("select all") {
@Override public void actionPerformed(ActionEvent evt) {
((JTextComponent) getInvoker()).selectAll();
}
});
// ActionMap am = textArea.getActionMap();
// add(cutAction = am.get("cut-to-clipboard"));
// add(copyAction = am.get("copy-to-clipboard"));
// add(am.get("paste-from-clipboard"));
// addSeparator();
// add(deleteAction = am.get("delete-next"));
// addSeparator();
// add(am.get("select-all"));
}
@Override public void show(Component c, int x, int y) {
JTextComponent textArea = (JTextComponent) c;
boolean flg = textArea.getSelectedText() != null;
cutAction.setEnabled(flg);
copyAction.setEnabled(flg);
deleteAction.setEnabled(flg);
super.show(c, x, y);
}
}
View in GitHub: Java, Kotlin解説
上記のサンプルでは、JTextArea
にsetComponentPopupMenu(JPopupMenu)
メソッドで、ポップアップメニューを追加しています。
JDK 1.5
でこのメソッドが追加されたため、各コンポーネントにマウスリスナーを設定してe.isPopupTrigger()
でポップアップを表示するクリックの判断が不要になった- ポップアップメニューを表示するときにコンポーネントの状態(例えば
JTable
やJList
などでの行選択の有無や、テキストが選択されてるかとどうかなどの条件)でメニューが実行可か不可かを変更したい場合は、JPopupMenu#show(Component, int, int)
メソッドをオーバーライドして使用可能 - このサンプルではテキストが選択されている場合だけカット、コピー、削除メニューが有効になるよう設定
JPopupMenu#show(Component, int, int)
のオーバーライドではなく、PopupMenuListener
を使用する方法もある
JPopupMenu popup = new JPopupMenu();
Action cutAction = new DefaultEditorKit.CutAction();
Action copyAction = new DefaultEditorKit.CopyAction();
Action pasteAction = new DefaultEditorKit.PasteAction();
Action deleteAction = new AbstractAction("delete") {
@Override public void actionPerformed(ActionEvent e) {
((JTextComponent) getInvoker()).replaceSelection(null);
}
};
Action selectAllAction = new AbstractAction("select all") {
@Override public void actionPerformed(ActionEvent e) {
JPopupMenu p = (JPopupMenu) e.getSource();
((JTextComponent) p.getInvoker()).selectAll();
}
};
popup.add(cutAction);
popup.add(copyAction);
popup.add(pasteAction);
popup.addSeparator();
popup.add(deleteAction);
popup.addSeparator();
popup.add(selectAllAction);
popup.addPopupMenuListener(new PopupMenuListener() {
@Override public void popupMenuCanceled(PopupMenuEvent e) {}
@Override public void popupMenuWillBecomeInvisible(PopupMenuEvent e) {}
@Override public void popupMenuWillBecomeVisible(PopupMenuEvent e) {
JPopupMenu p = (JPopupMenu) e.getSource();
JTextComponent c = (JTextComponent) p.getInvoker();
boolean flg = c.getSelectedText() != null;
cutAction.setEnabled(flg);
copyAction.setEnabled(flg);
deleteAction.setEnabled(flg);
}
});
textArea.setComponentPopupMenu(popup);
PopupMenuEvent
からはマウスでクリックした位置を取得できない- このため、
JTabbedPane
などでどのタブの上でポップアップが表示されるかなどを取得したい場合はJPopupMenu#show(...)
をオーバーライドする必要がある - JTabbedPaneでタブを追加削除
- このため、
参考リンク
- JComponent#setComponentPopupMenu(JPopupMenu) (Java Platform SE 8)
- JPopupMenuの取得を親に委譲
- JTabbedPaneでタブを追加削除
- Bug ID: 6675802 Regression: heavyweight popups cause SecurityExceptions in applets
- Bug ID: 6299213 The PopupMenu is not updated if the LAF is changed (incomplete fix of 4962731)