use of org.cytoscape.view.vizmap.gui.internal.view.VisualPropertySheet in project cytoscape-impl by cytoscape.
the class GenerateDiscreteValuesAction method actionPerformed.
// ==[ PUBLIC METHODS ]=============================================================================================
@Override
public void actionPerformed(final ActionEvent e) {
final VisualPropertySheet selVpSheet = getVizMapperMainPanel().getSelectedVisualPropertySheet();
if (selVpSheet == null)
return;
final Set<VisualPropertySheetItem<?>> vpSheetItems = selVpSheet.getSelectedItems();
new Thread() {
@Override
public void run() {
final Map<DiscreteMapping<?, ?>, Map<Object, Object>> previousMappingValues = new HashMap<DiscreteMapping<?, ?>, Map<Object, Object>>();
final Map<DiscreteMapping<?, ?>, Map<Object, ?>> newMappingValues = new HashMap<DiscreteMapping<?, ?>, Map<Object, ?>>();
for (final VisualPropertySheetItem<?> vpsItem : vpSheetItems) {
final VisualPropertySheetItemModel<?> model = vpsItem.getModel();
final VisualProperty<?> vp = (VisualProperty<?>) model.getVisualProperty();
final Class<?> vpValueType = vp.getRange().getType();
final Class<?> generatorType = generator.getDataType();
final PropertySheetPanel propSheetPnl = vpsItem.getPropSheetPnl();
final Item value = (Item) propSheetPnl.getTable().getValueAt(0, 0);
if (value.isProperty()) {
final VizMapperProperty<?, ?, ?> prop = (VizMapperProperty<?, ?, ?>) value.getProperty();
if (vpValueType.isAssignableFrom(generatorType) || ((generator instanceof NumberSeriesMappingGenerator || generator instanceof RandomNumberMappingGenerator) && Number.class.isAssignableFrom(vpValueType)))
generateValues(vpsItem, prop.getValue().toString(), vp, previousMappingValues, newMappingValues);
}
}
// Undo support
if (!previousMappingValues.isEmpty()) {
final UndoSupport undo = servicesUtil.get(UndoSupport.class);
undo.postEdit(new GenerateValuesEdit(previousMappingValues, newMappingValues));
}
}
}.start();
}
use of org.cytoscape.view.vizmap.gui.internal.view.VisualPropertySheet in project cytoscape-impl by cytoscape.
the class EditSelectedDiscreteValuesAction method actionPerformed.
// ==[ PUBLIC METHODS ]=============================================================================================
/**
* Edit all selected cells at once. This is for Discrete Mapping only.
*/
@Override
@SuppressWarnings({ "rawtypes", "unchecked" })
public void actionPerformed(final ActionEvent e) {
final VizMapperMainPanel vizMapperMainPanel = getVizMapperMainPanel();
if (vizMapperMainPanel == null)
return;
final VisualPropertySheet vpSheet = vizMapperMainPanel.getSelectedVisualPropertySheet();
if (vpSheet == null)
return;
for (final VisualPropertySheetItem<?> vpSheetItem : vpSheet.getSelectedItems()) {
final VisualPropertySheetItemModel<?> model = vpSheetItem.getModel();
final PropertySheetTable table = vpSheetItem.getPropSheetPnl().getTable();
final int[] selected = table.getSelectedRows();
if (selected == null || selected.length == 0 || !(model.getVisualMappingFunction() instanceof DiscreteMapping))
continue;
// Test with the first selected item
final DiscreteMapping dm = (DiscreteMapping) model.getVisualMappingFunction();
final VisualProperty vp = dm.getVisualProperty();
Object newValue = null;
try {
// Get new value
newValue = editorManager.showVisualPropertyValueEditor(vizMapperMainPanel, vp, vp.getDefault());
} catch (Exception ex) {
logger.error("Could not edit value.", ex);
}
if (newValue == null)
continue;
final Map<Object, Object> newValues = new HashMap<Object, Object>();
final Map<Object, Object> previousValues = new HashMap<Object, Object>();
for (int i = 0; i < selected.length; i++) {
final Item item = ((Item) table.getValueAt(selected[i], 0));
if (item != null && item.getProperty() instanceof VizMapperProperty) {
final VizMapperProperty<?, ?, ?> prop = (VizMapperProperty<?, ?, ?>) item.getProperty();
if (prop.getCellType() == CellType.DISCRETE) {
// Save the current value for undo
previousValues.put(prop.getKey(), prop.getValue());
// New value
newValues.put(prop.getKey(), newValue);
}
}
}
// Save the mapping->old_values for undo
if (!previousValues.isEmpty())
previousMappingValues.put(dm, previousValues);
// Save the mapping->new_values for redo
if (!newValues.isEmpty())
newMappingValues.put(dm, newValues);
// Update the visual mapping
dm.putAll(newValues);
}
// Undo support
if (!previousMappingValues.isEmpty()) {
final UndoSupport undo = servicesUtil.get(UndoSupport.class);
undo.postEdit(new EditSelectedDiscreteValuesEdit());
}
}
use of org.cytoscape.view.vizmap.gui.internal.view.VisualPropertySheet in project cytoscape-impl by cytoscape.
the class EditSelectedDiscreteValuesAction method updateEnableState.
@Override
public void updateEnableState() {
boolean enabled = false;
final VizMapperMainPanel vizMapperMainPanel = getVizMapperMainPanel();
VisualPropertySheet vpSheet = null;
if (vizMapperMainPanel != null)
vpSheet = vizMapperMainPanel.getSelectedVisualPropertySheet();
if (vpSheet != null) {
for (final VisualPropertySheetItem<?> vpSheetItem : vpSheet.getSelectedItems()) {
final VisualPropertySheetItemModel<?> model = vpSheetItem.getModel();
final PropertySheetTable table = vpSheetItem.getPropSheetPnl().getTable();
final int[] selected = table.getSelectedRows();
if (selected != null && model.getVisualMappingFunction() instanceof DiscreteMapping) {
// Make sure the selected rows have at least one Discrete Mapping entry
for (int i = 0; i < selected.length; i++) {
final Item item = (Item) table.getValueAt(selected[i], 0);
if (item != null && item.getProperty() instanceof VizMapperProperty) {
final VizMapperProperty<?, ?, ?> prop = (VizMapperProperty<?, ?, ?>) item.getProperty();
if (prop.getCellType() == CellType.DISCRETE) {
enabled = true;
break;
}
}
}
}
}
}
setEnabled(enabled);
}
use of org.cytoscape.view.vizmap.gui.internal.view.VisualPropertySheet in project cytoscape-impl by cytoscape.
the class RemoveVisualMappingsTaskFactory method createTaskIterator.
@Override
public TaskIterator createTaskIterator() {
final VisualStyle style = servicesUtil.get(VisualMappingManager.class).getCurrentVisualStyle();
final Set<VisualMappingFunction<?, ?>> mappings = new HashSet<VisualMappingFunction<?, ?>>();
final VizMapGUI gui = servicesUtil.get(VizMapGUI.class);
if (gui instanceof VizMapperMainPanel) {
final VisualPropertySheet vpSheet = ((VizMapperMainPanel) gui).getSelectedVisualPropertySheet();
final Set<VisualPropertySheetItem<?>> selectedItems = vpSheet.getSelectedItems();
for (VisualPropertySheetItem<?> item : selectedItems) {
if (item.getModel().getVisualMappingFunction() != null)
mappings.add(item.getModel().getVisualMappingFunction());
}
}
return new TaskIterator(new RemoveVisualMappingsTask(mappings, style, servicesUtil));
}
use of org.cytoscape.view.vizmap.gui.internal.view.VisualPropertySheet in project cytoscape-impl by cytoscape.
the class GenerateDiscreteValuesAction method updateEnableState.
@Override
public void updateEnableState() {
boolean enabled = false;
final VisualPropertySheet vpSheet = getVizMapperMainPanel().getSelectedVisualPropertySheet();
if (vpSheet != null) {
for (final VisualPropertySheetItem<?> item : vpSheet.getSelectedItems()) {
final VisualMappingFunction<?, ?> mapping = item.getModel().getVisualMappingFunction();
if (mapping != null && mapping instanceof DiscreteMapping) {
final VisualProperty<?> vp = item.getModel().getVisualProperty();
final Class<?> vpValueType = vp.getRange().getType();
final Class<?> generatorType = generator.getDataType();
if (generator instanceof FitLabelMappingGenerator) {
enabled = vp == BasicVisualLexicon.NODE_SIZE || vp == BasicVisualLexicon.NODE_WIDTH;
break;
}
if (vpValueType.isAssignableFrom(generatorType) || ((generator instanceof NumberSeriesMappingGenerator || generator instanceof RandomNumberMappingGenerator) && Number.class.isAssignableFrom(vpValueType))) {
enabled = true;
break;
}
}
}
}
setEnabled(enabled);
}
Aggregations