概要

JPopupMenuや、JToolBarなどに親Windowを閉じるためのActionを作成します。

サンプルコード

private static class ExitAction extends AbstractAction {
  public ExitAction() {
    super("Exit");
  }

  @Override public void actionPerformed(ActionEvent e) {
    JComponent c = (JComponent) e.getSource();
    Window window = null;
    Container parent = c.getParent();
    if (parent instanceof JPopupMenu) {
      JPopupMenu popup = (JPopupMenu) parent;
      JComponent invoker = (JComponent) popup.getInvoker();
      window = SwingUtilities.getWindowAncestor(invoker);
    } else if (parent instanceof JToolBar) {
      JToolBar toolbar = (JToolBar) parent;
      if (((BasicToolBarUI) toolbar.getUI()).isFloating()) {
        window = SwingUtilities.getWindowAncestor(toolbar).getOwner();
      } else {
        window = SwingUtilities.getWindowAncestor(toolbar);
      }
    } else {
      Component invoker = c.getParent();
      window = SwingUtilities.getWindowAncestor(invoker);
    }
    if (window != null) {
      // window.dispose();
      window.dispatchEvent(new WindowEvent(window, WindowEvent.WINDOW_CLOSING));
    }
  }
}
View in GitHub: Java, Kotlin

解説

上記のサンプルでは、親となるJFrameを取得してwindow.dispatchEvent(new WindowEvent(window, WindowEvent.WINDOW_CLOSING));を使用し、これを閉じるためのイベントを実行しています。

コンポーネントの親Windowを取得する場合、SwingUtilities.getWindowAncestor(...)などが使用可能ですが、HeavyWeightWindowJPopupMenuFloating中のJToolBarでは親Windowとは異なるWindowが使用されるので注意が必要です。

  • JPopupMenu
    • JPopupMenu#getInvoker()を使用してJComponent#setComponentPopupMenu(popup)で設定したコンポーネントを取得し、SwingUtilities.getWindowAncestor(...)メソッドで親Windowを取得
  • JMenuBar
    • SwingUtilities.getWindowAncestor(...)メソッドで自身の親Windowを取得
  • JToolBar
    • 移動中の場合、JComponent#setComponentPopupMenu(toolbar)メソッドで取得した移動中のWindowの親WindowWindow#getOwner()で取得
    • 移動中では無い場合、SwingUtilities.getWindowAncestor(toolbar)メソッドで自身の親Windowを取得

参考リンク

コメント