/* * Geotoolkit - An Open Source Java GIS Toolkit * http://www.geotoolkit.org * * (C) 2014, Geomatys * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; * version 2.1 of the License. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. */ package org.geotoolkit.gui.javafx.util; import java.security.MessageDigest; import javafx.event.ActionEvent; import javafx.event.EventHandler; import javafx.geometry.Pos; import javafx.scene.control.ContentDisplay; import javafx.scene.control.PasswordField; import javafx.scene.control.TableCell; /** * * @author Samuel Andrés (Geomatys) * @param <S> cell source value type */ public class FXPasswordTableCell<S> extends TableCell<S, String>{ private final PasswordField field = new PasswordField(); private final MessageDigest messageDigest; public FXPasswordTableCell() { this(null); } public FXPasswordTableCell(final MessageDigest messageDigest) { setGraphic(field); setAlignment(Pos.CENTER); setContentDisplay(ContentDisplay.CENTER); field.setOnAction(new EventHandler<ActionEvent>() { @Override public void handle(ActionEvent event) { commitEdit(field.getText()); } }); this.messageDigest=messageDigest; } private String digest(final String toEncrypt){ if(messageDigest==null) return toEncrypt; else { return new String(messageDigest.digest(toEncrypt.getBytes())); } } @Override public void startEdit() { String value = (String) getItem(); field.setText(value); super.startEdit(); setText(null); setGraphic(field); field.requestFocus(); } @Override public void commitEdit(String newValue) { final String digest = digest(newValue); itemProperty().set(digest); super.commitEdit(digest); } @Override public void cancelEdit() { super.cancelEdit(); updateItem(getItem(), false); } @Override protected void updateItem(String item, boolean empty) { super.updateItem(item, empty); setText(null); setGraphic(null); if (item != null) { setText(item.toString()); } } }