TITLE:JTreeのノード上でJPopupMenuを表示

Posted by at 2009-06-01

JTreeのノード上でJPopupMenuを表示

JTreeのノード上でクリックした場合のみ、JPopupMenuを表示します。

  • &jnlp;
  • &jar;
  • &zip;
TreeNodePopupMenu.png

サンプルコード

static class TreePopupMenu extends JPopupMenu {
  private TreePath[] tsp;
  public TreePopupMenu() {
    super();
    add(new AbstractAction("path") {
      public void actionPerformed(ActionEvent e) {
        JOptionPane.showMessageDialog(null, tsp, "path",
          JOptionPane.INFORMATION_MESSAGE);
      }
    });
    add(new JMenuItem("dummy"));
  }
  public void show(Component c, int x, int y) {
    JTree tree = (JTree)c;
    tsp = tree.getSelectionPaths();
    if(tsp!=null) {
      TreePath path = tree.getPathForLocation(x, y);
      if(path!=null && Arrays.asList(tsp).contains(path)) {
        super.show(c, x, y);
      }
    }
  }
}
View in GitHub: Java, Kotlin

解説

上記のサンプルでは以下の場合、JPopupMenuを表示しています。

  • JTreeのノードが選択されている
  • 選択されたノード上にカーソルがある

コメント