Edit C:\Program Files\Java\jdk1.8.0_121\javafx\scene\control\cell\TextFieldTreeCell.java
/* * Copyright (c) 2012, 2014, Oracle and/or its affiliates. All rights reserved. * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. * * * * * * * * * * * * * * * * * * * * */ package javafx.scene.control.cell; import javafx.beans.property.ObjectProperty; import javafx.beans.property.SimpleObjectProperty; import javafx.scene.Node; import javafx.scene.control.Label; import javafx.scene.control.TextField; import javafx.scene.control.TreeCell; import javafx.scene.control.TreeItem; import javafx.scene.control.TreeView; import javafx.scene.layout.HBox; import javafx.util.Callback; import javafx.util.StringConverter; import javafx.util.converter.DefaultStringConverter; /** * A class containing a {@link TreeCell} implementation that draws a * {@link TextField} node inside the cell. * * <p>By default, the TextFieldTreeCell is rendered as a {@link Label} when not * being edited, and as a TextField when in editing mode. The TextField will, by * default, stretch to fill the entire tree cell. * * @param <T> The type of the elements contained within the TreeView. * @since JavaFX 2.2 */ public class TextFieldTreeCell<T> extends DefaultTreeCell<T> { /*************************************************************************** * * * Static cell factories * * * **************************************************************************/ /** * Provides a {@link TextField} that allows editing of the cell content when * the cell is double-clicked, or when * {@link TreeView#edit(javafx.scene.control.TreeItem)} is called. * This method will only work on {@link TreeView} instances which are of * type String. * * @return A {@link Callback} that can be inserted into the * {@link TreeView#cellFactoryProperty() cell factory property} of a * TreeView, that enables textual editing of the content. */ public static Callback<TreeView<String>, TreeCell<String>> forTreeView() { return forTreeView(new DefaultStringConverter()); } /** * Provides a {@link TextField} that allows editing of the cell content when * the cell is double-clicked, or when * {@link TreeView#edit(javafx.scene.control.TreeItem)} is called. This * method will work on any {@link TreeView} instance, * regardless of its generic type. However, to enable this, a * {@link StringConverter} must be provided that will convert the given String * (from what the user typed in) into an instance of type T. This item will * then be passed along to the {@link TreeView#onEditCommitProperty()} * callback. * * @param converter A {@link StringConverter} that can convert the given String * (from what the user typed in) into an instance of type T. * @return A {@link Callback} that can be inserted into the * {@link TreeView#cellFactoryProperty() cell factory property} of a * TreeView, that enables textual editing of the content. */ public static <T> Callback<TreeView<T>, TreeCell<T>> forTreeView( final StringConverter<T> converter) { return list -> new TextFieldTreeCell<T>(converter); } /*************************************************************************** * * * Fields * * * **************************************************************************/ private TextField textField; private HBox hbox; /*************************************************************************** * * * Constructors * * * **************************************************************************/ /** * Creates a default TextFieldTreeCell with a null converter. Without a * {@link StringConverter} specified, this cell will not be able to accept * input from the TextField (as it will not know how to convert this back * to the domain object). It is therefore strongly encouraged to not use * this constructor unless you intend to set the converter separately. */ public TextFieldTreeCell() { this(null); } /** * Creates a TextFieldTreeCell that provides a {@link TextField} when put * into editing mode that allows editing of the cell content. This method * will work on any TreeView instance, regardless of its generic type. * However, to enable this, a {@link StringConverter} must be provided that * will convert the given String (from what the user typed in) into an * instance of type T. This item will then be passed along to the * {@link TreeView#onEditCommitProperty()} callback. * * @param converter A {@link StringConverter converter} that can convert * the given String (from what the user typed in) into an instance of * type T. */ public TextFieldTreeCell(StringConverter<T> converter) { this.getStyleClass().add("text-field-tree-cell"); setConverter(converter); } /*************************************************************************** * * * Properties * * * **************************************************************************/ // --- converter private ObjectProperty<StringConverter<T>> converter = new SimpleObjectProperty<StringConverter<T>>(this, "converter"); /** * The {@link StringConverter} property. */ public final ObjectProperty<StringConverter<T>> converterProperty() { return converter; } /** * Sets the {@link StringConverter} to be used in this cell. */ public final void setConverter(StringConverter<T> value) { converterProperty().set(value); } /** * Returns the {@link StringConverter} used in this cell. */ public final StringConverter<T> getConverter() { return converterProperty().get(); } /*************************************************************************** * * * Public API * * * **************************************************************************/ /** {@inheritDoc} */ @Override public void startEdit() { if (! isEditable() || ! getTreeView().isEditable()) { return; } super.startEdit(); if (isEditing()) { StringConverter<T> converter = getConverter(); if (textField == null) { textField = CellUtils.createTextField(this, converter); } if (hbox == null) { hbox = new HBox(CellUtils.TREE_VIEW_HBOX_GRAPHIC_PADDING); } CellUtils.startEdit(this, converter, hbox, getTreeItemGraphic(), textField); } } /** {@inheritDoc} */ @Override public void cancelEdit() { super.cancelEdit(); CellUtils.cancelEdit(this, getConverter(), getTreeItemGraphic()); } /** {@inheritDoc} */ @Override public void updateItem(T item, boolean empty) { super.updateItem(item, empty); CellUtils.updateItem(this, getConverter(), hbox, getTreeItemGraphic(), textField); } /*************************************************************************** * * * Private Implementation * * * **************************************************************************/ private Node getTreeItemGraphic() { TreeItem<T> treeItem = getTreeItem(); return treeItem == null ? null : treeItem.getGraphic(); } }
Ms-Dos/Windows
Unix
Write backup
jsp File Browser version 1.2 by
www.vonloesch.de