• title: WindowAncestor(親ウィンドウ)の取得 tags: [JFrame, Window] author: aterai pubdate: 2005-05-09 description: SwingUtilities.getWindowAncestor()などで、親ウィンドウを取得します。

概要

SwingUtilities.getWindowAncestor()などで、親ウィンドウを取得します。

サンプルコード

JButton button = new JButton(new AbstractAction("フレームのタイトルを表示") {
  @Override public void actionPerformed(ActionEvent e) {
    JButton btn  = (JButton)e.getSource();
    JFrame f = (JFrame)SwingUtilities.getWindowAncestor(btn);
    //JFrame f = (JFrame)btn.getTopLevelAncestor();
    //JFrame f = (JFrame)JOptionPane.getFrameForComponent(btn);
    JOptionPane.showMessageDialog(f, "parentFrame.getTitle(): "+f.getTitle(),
                                  "title", JOptionPane.INFORMATION_MESSAGE);
  }
}));
View in GitHub: Java, Kotlin

解説

自分(コンポーネント)の最初の上位ウィンドウ(親ウィンドウ)を取得します。

  • SwingUtilities.getRoot(Component c)
    • 親のコンポーネント(java.awt.Windowまたはjava.awt.Applet)が返る
      • Windowの場合は、c.getParent()で見つかる最初の上位Windowオブジェクトだが、Appletの場合は、JComponent#getTopLevelAncestor()とは異なり、最後の上位Appletオブジェクト
    • どちらも存在しない場合は、null
  • JComponent#getTopLevelAncestor()
    • 自身の親コンテナ(java.awt.Windowまたはjava.awt.Applet)が返る
    • 親コンテナが無い場合は、null
    • 下のコメント参照

参考リンク

コメント