/* * Copyright (c) 2010, 2014, Oracle and/or its affiliates. All rights reserved. * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. * * * * * * * * * * * * * * * * * * * * */ package com.sun.javafx.scene.control.behavior; import javafx.scene.Node; import javafx.scene.control.FocusModel; import javafx.scene.control.MultipleSelectionModel; import javafx.scene.control.TreeCell; import javafx.scene.control.TreeItem; import javafx.scene.control.TreeView; import javafx.scene.input.MouseButton; import java.util.Collections; public class TreeCellBehavior extends CellBehaviorBase> { /*************************************************************************** * * * Constructors * * * **************************************************************************/ public TreeCellBehavior(final TreeCell control) { super(control, Collections.emptyList()); } /*************************************************************************** * * * Private implementation * * * **************************************************************************/ @Override protected MultipleSelectionModel> getSelectionModel() { return getCellContainer().getSelectionModel(); } @Override protected FocusModel> getFocusModel() { return getCellContainer().getFocusModel(); } @Override protected TreeView getCellContainer() { return getControl().getTreeView(); } @Override protected void edit(TreeCell cell) { TreeItem treeItem = cell == null ? null : cell.getTreeItem(); getCellContainer().edit(treeItem); } @Override protected void handleClicks(MouseButton button, int clickCount, boolean isAlreadySelected) { // handle editing, which only occurs with the primary mouse button TreeItem treeItem = getControl().getTreeItem(); if (button == MouseButton.PRIMARY) { if (clickCount == 1 && isAlreadySelected) { edit(getControl()); } else if (clickCount == 1) { // cancel editing edit(null); } else if (clickCount == 2 && treeItem.isLeaf()) { // attempt to edit edit(getControl()); } else if (clickCount % 2 == 0) { // try to expand/collapse branch tree item treeItem.setExpanded(! treeItem.isExpanded()); } } } @Override protected boolean handleDisclosureNode(double x, double y) { TreeCell treeCell = getControl(); Node disclosureNode = treeCell.getDisclosureNode(); if (disclosureNode != null) { if (disclosureNode.getBoundsInParent().contains(x, y)) { if (treeCell.getTreeItem() != null) { treeCell.getTreeItem().setExpanded(! treeCell.getTreeItem().isExpanded()); } return true; } } return false; } }