• 追加された行はこの色です。
  • 削除された行はこの色です。
TITLE:JPopupMenuなどからWindowを閉じる
#navi(../)
#tags(JFrame, JPopupMenu, JToolBar, JMenuBar)
RIGHT:Posted by &author(aterai); at 2013-03-11
*JPopupMenuなどからWindowを閉じる [#s4d4f1c8]
``JPopupMenu``や、``JToolBar``などに親``Window``を閉じるための``Action``を作成します。
---
category: swing
folder: WindowClosingAction
title: JPopupMenuなどからWindowを閉じる
tags: [JFrame, JPopupMenu, JToolBar, JMenuBar]
author: aterai
pubdate: 2013-03-11T17:04:49+09:00
description: JPopupMenuや、JToolBarなどに親Windowを閉じるためのActionを作成します。
image: https://lh6.googleusercontent.com/-xWsEbhvjfDY/UT2P-83x0FI/AAAAAAAABmc/7isd5KoGMQc/s800/WindowClosingAction.png
---
* 概要 [#summary]
`JPopupMenu`や、`JToolBar`などに親`Window`を閉じるための`Action`を作成します。

-&jnlp;
-&jar;
-&zip;
#download(https://lh6.googleusercontent.com/-xWsEbhvjfDY/UT2P-83x0FI/AAAAAAAABmc/7isd5KoGMQc/s800/WindowClosingAction.png)

//#screenshot
#ref(https://lh6.googleusercontent.com/-xWsEbhvjfDY/UT2P-83x0FI/AAAAAAAABmc/7isd5KoGMQc/s800/WindowClosingAction.png)

**サンプルコード [#bd96e7d1]
* サンプルコード [#sourcecode]
#code(link){{
private static class ExitAction extends AbstractAction{
private static class ExitAction extends AbstractAction {
  public ExitAction() {
    super("Exit");
  }

  @Override public void actionPerformed(ActionEvent e) {
    JComponent c = (JComponent)e.getSource();
    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();
    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()) {
    } else if (parent instanceof JToolBar) {
      JToolBar toolbar = (JToolBar) parent;
      if (((BasicToolBarUI) toolbar.getUI()).isFloating()) {
        window = SwingUtilities.getWindowAncestor(toolbar).getOwner();
      }else{
      } else {
        window = SwingUtilities.getWindowAncestor(toolbar);
      }
    }else{
      JComponent invoker = (JComponent)c.getParent();
    } else {
      Component invoker = c.getParent();
      window = SwingUtilities.getWindowAncestor(invoker);
    }
    if(window!=null) {
      //window.dispose();
    if (window != null) {
      // window.dispose();
      window.dispatchEvent(new WindowEvent(window, WindowEvent.WINDOW_CLOSING));
    }
  }
}
}}

**解説 [#xcbdae17]
上記のサンプルでは、親となる``JFrame``を取得し、``window.dispatchEvent(new WindowEvent(window, WindowEvent.WINDOW_CLOSING));``を
使って、終了イベントを実行しています。
* 解説 [#explanation]
上記のサンプルでは、親となる`JFrame`を取得して`window.dispatchEvent(new WindowEvent(window, WindowEvent.WINDOW_CLOSING));`を使用し、これを閉じるためのイベントを実行しています。

- ``JPopupMenu``
-- ``JPopupMenu#getInvoker()``を使って、``JComponent#setComponentPopupMenu(popup)``で設定したコンポーネントを取得し、``SwingUtilities.getWindowAncestor(...)``で、親``Window``を取得
- ``JMenuBar``
-- ``SwingUtilities.getWindowAncestor(...)``で、自身の親``Window``を取得
- ``JToolBar``
-- 移動中の場合、``JComponent#setComponentPopupMenu(toolbar)``で取得した移動中の``Window``の親``Window``をWindow#getOwner()``で取得
-- 移動中では無い場合、``SwingUtilities.getWindowAncestor(toolbar)``で、自身の親``Window``を取得
コンポーネントの親`Window`を取得する場合、`SwingUtilities.getWindowAncestor(...)`などが使用可能ですが、`HeavyWeightWindow`な`JPopupMenu`や`Floating`中の`JToolBar`では親`Window`とは異なる`Window`が使用されるので注意が必要です。

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

* 参考リンク [#reference]
- [[JFrameの終了をキャンセル>Swing/WindowClosing]]
- [[WindowAncestor(親ウィンドウ)の取得>Swing/WindowAncestor]]

**コメント [#r69fe5c7]
* コメント [#comment]
#comment
#comment