Miro Spönemann
Miro Spönemann
Thanks for bringing this up! Right, we tend to use the sprotty-vscode integration rather than this one. I would pin this issue and keep the repository open for a while,...
* Install [Graphviz](http://graphviz.org) * Include [org.eclipse.elk.alg.graphviz.layouter](https://search.maven.org/artifact/org.eclipse.elk/org.eclipse.elk.alg.graphviz.layouter/0.7.0/eclipse-plugin) in your classpath * Include `GraphvizMetaDataProvider` when loading layout meta data * Set [CoreOptions.ALGORITHM](https://www.eclipse.org/elk/reference/options/org-eclipse-elk-algorithm.html) to one of the Graphviz layouters, e.g. `org.eclipse.elk.graphviz.dot`
The configuration by string ```java configurator.configureByType('node:module') .setProperty(CoreOptions.ALGORITHM, "org.eclipse.elk.alg.graphviz.dot") ``` is the correct approach. I don't know what's going wrong. Invoking ```java ElkLayoutEngine.initialize(new GraphvizMetaDataProvider()); ``` should be sufficient to enable the...
Hi! I moved this issue to `sprotty-server` as it fits better here. The easiest way to debug the language server is to start it as separate process and connect via...
It looks like you have an edge where the sourceId or targetId does not exist in the graph. I'm wondering whether we should validate this when we transform the SGraph...
This is now solved with #454.
Great, thanks! I think a contribution would be awesome. My first thought is let's make a dedicated TouchTool/TouchListener mechanism along the lines of the existing mouse support. The most important...
I see. I can imagine that it would still make sense to have a separate TouchTool/TouchListener mechanism and handle the interference with the mouse events specifically in those listeners where...
Yes, sounds good! 👍
I assume here you mean generically mapping an AST to its textual syntax according to the language's grammar definition, which we call serializing. Generating arbitrary code [is already covered with...