Skip to content
Snippets Groups Projects
Commit ad0743b4 authored by Piotr Gawron's avatar Piotr Gawron
Browse files

line width of species is exported/imported

parent 0c7d8b37
No related branches found
No related tags found
2 merge requests!630WIP: Resolve "The privileges of a new user are not saved in some cases",!494Conversion rest api scaling
......@@ -117,7 +117,7 @@ public abstract class SbmlElementParser<T extends org.sbml.jsbml.Symbol> extends
return elementWithLayout;
}
private void applyStyleToElement(Element elementWithLayout, LocalStyle style) {
protected void applyStyleToElement(Element elementWithLayout, LocalStyle style) {
if (style.getGroup().getFill() != null) {
Color backgroundColor = getColorByColorDefinition(style.getGroup().getFill());
elementWithLayout.setColor(backgroundColor);
......
......@@ -5,6 +5,7 @@ import java.util.List;
import org.apache.log4j.Logger;
import org.sbml.jsbml.ext.layout.AbstractReferenceGlyph;
import org.sbml.jsbml.ext.layout.Layout;
import org.sbml.jsbml.ext.render.LocalStyle;
import lcsb.mapviewer.converter.model.sbml.SbmlCompartmentExporter;
import lcsb.mapviewer.converter.model.sbml.SbmlElementExporter;
......@@ -54,4 +55,10 @@ public class SbmlSpeciesExporter extends SbmlElementExporter<Species, org.sbml.j
return element.getClass().getSimpleName() + "\n" + element.getName() + "\n" + compartmentName;
}
protected LocalStyle createStyle(Species element) {
LocalStyle style = super.createStyle(element);
style.getGroup().setStrokeWidth(element.getLineWidth());
return style;
}
}
package lcsb.mapviewer.converter.model.sbml.species;
import java.awt.Color;
import java.lang.reflect.InvocationTargetException;
import java.util.ArrayList;
import java.util.List;
......@@ -11,6 +12,7 @@ import org.sbml.jsbml.ext.layout.AbstractReferenceGlyph;
import org.sbml.jsbml.ext.layout.CompartmentGlyph;
import org.sbml.jsbml.ext.layout.Layout;
import org.sbml.jsbml.ext.layout.SpeciesGlyph;
import org.sbml.jsbml.ext.render.LocalStyle;
import lcsb.mapviewer.common.Pair;
import lcsb.mapviewer.common.exception.InvalidStateException;
......@@ -99,4 +101,14 @@ public class SbmlSpeciesParser extends SbmlElementParser<org.sbml.jsbml.Species>
return result;
}
@Override
protected void applyStyleToElement(Element elementWithLayout, LocalStyle style) {
super.applyStyleToElement(elementWithLayout, style);
Species specisWithLayout = (Species) elementWithLayout;
if (style.getGroup().getStrokeWidth() != null) {
specisWithLayout.setLineWidth(style.getGroup().getStrokeWidth());
}
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment