impl.org.controlsfx.skin.CustomTextFieldSkin Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of controlsfx Show documentation
Show all versions of controlsfx Show documentation
High quality UI controls and other tools to complement the core JavaFX distribution
/**
* Copyright (c) 2013, 2015 ControlsFX
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* * Neither the name of ControlsFX, any associated website, nor the
* names of its contributors may be used to endorse or promote products
* derived from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
* DISCLAIMED. IN NO EVENT SHALL CONTROLSFX BE LIABLE FOR ANY
* DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
package impl.org.controlsfx.skin;
import javafx.beans.property.ObjectProperty;
import javafx.css.PseudoClass;
import javafx.geometry.Pos;
import javafx.scene.Node;
import javafx.scene.control.TextField;
import javafx.scene.layout.StackPane;
import com.sun.javafx.scene.control.behavior.TextFieldBehavior;
import com.sun.javafx.scene.control.skin.TextFieldSkin;
import com.sun.javafx.scene.text.HitInfo;
public abstract class CustomTextFieldSkin extends TextFieldSkin {
private static final PseudoClass HAS_NO_SIDE_NODE = PseudoClass.getPseudoClass("no-side-nodes"); //$NON-NLS-1$
private static final PseudoClass HAS_LEFT_NODE = PseudoClass.getPseudoClass("left-node-visible"); //$NON-NLS-1$
private static final PseudoClass HAS_RIGHT_NODE = PseudoClass.getPseudoClass("right-node-visible"); //$NON-NLS-1$
private Node left;
private StackPane leftPane;
private Node right;
private StackPane rightPane;
private final TextField control;
public CustomTextFieldSkin(final TextField control) {
super(control, new TextFieldBehavior(control));
this.control = control;
updateChildren();
registerChangeListener(leftProperty(), "LEFT_NODE"); //$NON-NLS-1$
registerChangeListener(rightProperty(), "RIGHT_NODE"); //$NON-NLS-1$
registerChangeListener(control.focusedProperty(), "FOCUSED"); //$NON-NLS-1$
}
public abstract ObjectProperty leftProperty();
public abstract ObjectProperty rightProperty();
@Override protected void handleControlPropertyChanged(String p) {
super.handleControlPropertyChanged(p);
if (p == "LEFT_NODE" || p == "RIGHT_NODE") { //$NON-NLS-1$ //$NON-NLS-2$
updateChildren();
}
}
private void updateChildren() {
Node newLeft = leftProperty().get();
if (newLeft != null) {
leftPane = new StackPane(newLeft);
leftPane.setAlignment(Pos.CENTER_LEFT);
leftPane.getStyleClass().add("left-pane"); //$NON-NLS-1$
getChildren().remove(left);
getChildren().add(leftPane);
left = newLeft;
}
Node newRight = rightProperty().get();
if (newRight != null) {
rightPane = new StackPane(newRight);
rightPane.setAlignment(Pos.CENTER_RIGHT);
rightPane.getStyleClass().add("right-pane"); //$NON-NLS-1$
getChildren().remove(right);
getChildren().add(rightPane);
right = newRight;
}
control.pseudoClassStateChanged(HAS_LEFT_NODE, left != null);
control.pseudoClassStateChanged(HAS_RIGHT_NODE, right != null);
control.pseudoClassStateChanged(HAS_NO_SIDE_NODE, left == null && right == null);
}
@Override protected void layoutChildren(double x, double y, double w, double h) {
final double fullHeight = h + snappedTopInset() + snappedBottomInset();
final double leftWidth = leftPane == null ? 0.0 : snapSize(leftPane.prefWidth(fullHeight));
final double rightWidth = rightPane == null ? 0.0 : snapSize(rightPane.prefWidth(fullHeight));
final double textFieldStartX = snapPosition(x) + snapSize(leftWidth);
final double textFieldWidth = w - snapSize(leftWidth) - snapSize(rightWidth);
super.layoutChildren(textFieldStartX, 0, textFieldWidth, fullHeight);
if (leftPane != null) {
final double leftStartX = 0;
leftPane.resizeRelocate(leftStartX, 0, leftWidth, fullHeight);
}
if (rightPane != null) {
final double rightStartX = rightPane == null ? 0.0 : w - rightWidth + snappedLeftInset();
rightPane.resizeRelocate(rightStartX, 0, rightWidth, fullHeight);
}
}
@Override
public HitInfo getIndex(double x, double y) {
/**
* This resolves https://bitbucket.org/controlsfx/controlsfx/issue/476
* when we have a left Node and the click point is badly returned
* because we weren't considering the shift induced by the leftPane.
*/
final double leftWidth = leftPane == null ? 0.0 : snapSize(leftPane.prefWidth(getSkinnable().getHeight()));
return super.getIndex(x - leftWidth, y);
}
// @Override
// protected double computePrefWidth(double h, double topInset, double rightInset, double bottomInset, double leftInset) {
// final double pw = super.computePrefWidth(h, topInset, rightInset, bottomInset, leftInset);
// final double leftWidth = leftPane == null ? 0.0 : snapSize(leftPane.prefWidth(h));
// final double rightWidth = rightPane == null ? 0.0 : snapSize(rightPane.prefWidth(h));
//
// return pw + leftWidth + rightWidth + leftInset + rightInset;
// }
//
// @Override
// protected double computePrefHeight(double w, double topInset, double rightInset, double bottomInset, double leftInset) {
// final double ph = super.computePrefHeight(w, topInset, rightInset, bottomInset, leftInset);
// final double leftHeight = leftPane == null ? 0.0 : snapSize(leftPane.prefHeight(-1));
// final double rightHeight = rightPane == null ? 0.0 : snapSize(rightPane.prefHeight(-1));
//
// return Math.max(ph, Math.max(leftHeight, rightHeight));
// }
//
// @Override
// protected double computeMinWidth(double height, double topInset, double rightInset, double bottomInset, double leftInset) {
// return computePrefWidth(height, topInset, rightInset, bottomInset, leftInset);
//}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy