/** * Copyright (C) 2001-2017 by RapidMiner and the contributors * * Complete list of developers available at our web site: * * http://rapidminer.com * * This program is free software: you can redistribute it and/or modify it under the terms of the * GNU Affero General Public License as published by the Free Software Foundation, either version 3 * of the License, or (at your option) any later version. * * This program 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 * Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public License along with this program. * If not, see http://www.gnu.org/licenses/. */ package com.rapidminer.gui.properties.celleditors.value; import com.rapidminer.gui.properties.EnumerationPropertyDialog; import com.rapidminer.gui.properties.ListPropertyDialog; import com.rapidminer.gui.tools.ResourceAction; import com.rapidminer.operator.Operator; import com.rapidminer.parameter.ParameterTypeEnumeration; import java.awt.Component; import java.awt.Insets; import java.awt.event.ActionEvent; import java.util.LinkedList; import java.util.List; import javax.swing.AbstractCellEditor; import javax.swing.JButton; import javax.swing.JTable; /** * A cell editor with a button that opens a {@link ListPropertyDialog}. Values generated by this * operator are Lists of String pairs. * * @see com.rapidminer.gui.properties.ListPropertyDialog * @author Simon Fischer, Ingo Mierswa */ public class EnumerationValueCellEditor extends AbstractCellEditor implements PropertyValueCellEditor { private static final long serialVersionUID = -4429790999365057931L; private ParameterTypeEnumeration type; private JButton button; private List<String> valuesList = new LinkedList<String>(); public EnumerationValueCellEditor(ParameterTypeEnumeration type) { this.type = type; } @Override public void setOperator(final Operator operator) { button = new JButton(new ResourceAction(true, "enumeration") { private static final long serialVersionUID = 3163983383358779866L; @Override public void actionPerformed(ActionEvent e) { EnumerationPropertyDialog dialog = new EnumerationPropertyDialog(type, valuesList, operator); dialog.setVisible(true); if (dialog.isOk()) { fireEditingStopped(); setButtonText(); } else { fireEditingCanceled(); } } }); button.setMargin(new Insets(0, 0, 0, 0)); // button.setToolTipText(type.getDescription()); setButtonText(); } @Override public Object getCellEditorValue() { return ParameterTypeEnumeration.transformEnumeration2String(valuesList); } @Override public Component getTableCellEditorComponent(JTable table, Object value, boolean isSelected, int row, int col) { if (value != null) { LinkedList<String> values = new LinkedList<String>(); for (String string : ParameterTypeEnumeration.transformString2Enumeration((String) value)) { values.add(string); } this.valuesList = values; } else { this.valuesList = new LinkedList<String>(); } setButtonText(); return button; } @Override public Component getTableCellRendererComponent(JTable table, Object value, boolean isSelected, boolean hasFocus, int row, int column) { return getTableCellEditorComponent(table, value, isSelected, row, column); } @Override public boolean useEditorAsRenderer() { return true; } // TODO: externalize button text private void setButtonText() { button.setText("Edit Enumeration (" + valuesList.size() + ")..."); } @Override public boolean rendersLabel() { return false; } }