• 追加された行はこの色です。
  • 削除された行はこの色です。
TITLE:JTreeのノード上でJPopupMenuを表示
#navi(../)
RIGHT:Posted by &author(aterai); at 2009-06-01
*JTreeのノード上でJPopupMenuを表示 [#u7d9276c]
JTreeのノード上でクリックした場合のみ、JPopupMenuを表示します。
---
category: swing
folder: TreeNodePopupMenu
title: JTreeのノード上でJPopupMenuを表示
tags: [JTree, JPopupMenu, TreePath]
author: aterai
pubdate: 2009-06-01T15:04:19+09:00
description: JTreeのノード上でクリックした場合のみ、JPopupMenuを表示します。
image: https://lh6.googleusercontent.com/_9Z4BYR88imo/TQTWLWQUjBI/AAAAAAAAAo0/3F3RUbU5sx8/s800/TreeNodePopupMenu.png
---
* 概要 [#summary]
`JTree`のノード上でクリックした場合のみ、`JPopupMenu`を表示します。

-&jnlp;
-&jar;
-&zip;
#download(https://lh6.googleusercontent.com/_9Z4BYR88imo/TQTWLWQUjBI/AAAAAAAAAo0/3F3RUbU5sx8/s800/TreeNodePopupMenu.png)

//#screenshot
#ref(http://lh6.ggpht.com/_9Z4BYR88imo/TQTWLWQUjBI/AAAAAAAAAo0/3F3RUbU5sx8/s800/TreeNodePopupMenu.png)

**サンプルコード [#i85dc25c]
* サンプルコード [#sourcecode]
#code(link){{
static class TreePopupMenu extends JPopupMenu {
  private TreePath[] tsp;
  public TreePopupMenu() {
class TreePopupMenu extends JPopupMenu {
  protected TreePopupMenu() {
    super();
    add(new AbstractAction("path") {
      public void actionPerformed(ActionEvent e) {
        JOptionPane.showMessageDialog(null, tsp, "path",
          JOptionPane.INFORMATION_MESSAGE);
      }
    add("path").addActionListener(e -> {
      JTree tree = (JTree) getInvoker();
      JOptionPane.showMessageDialog(
        tree, tree.getSelectionPaths(), "path",
        JOptionPane.INFORMATION_MESSAGE);
    });
    add(new JMenuItem("dummy"));
    add("JMenuItem");
  }
  public void show(Component c, int x, int y) {
    JTree tree = (JTree)c;
    tsp = tree.getSelectionPaths();
    if(tsp!=null) {

  @Override public void show(Component c, int x, int y) {
    if (c instanceof JTree) {
      JTree tree = (JTree) c;
      TreePath path = tree.getPathForLocation(x, y);
      if(path!=null && Arrays.asList(tsp).contains(path)) {
      if (tree.getSelectionCount() > 0
          && Arrays.asList(tree.getSelectionPaths()).contains(path)) {
        super.show(c, x, y);
      }
    }
  }
}
}}

**解説 [#kb3d3d05]
上記のサンプルでは以下の場合、JPopupMenuを表示しています。
-JTreeのノードが選択されている
-選択されたノード上にカーソルがある
* 解説 [#explanation]
上記のサンプルでは、`JTree`のノードが選択されている、かつ選択されたノード上にカーソルがある場合のみ`JPopupMenu`を表示可能に設定しています。

//**参考リンク
**コメント [#jef30594]
* 参考リンク [#reference]
- [https://docs.oracle.com/javase/jp/8/docs/api/javax/swing/JTree.html#getPathForLocation-int-int- JTree#getPathForLocation(...) (Java Platform SE 8)]

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