-
Notifications
You must be signed in to change notification settings - Fork 87
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Indented tree layout algorithm #1099
base: master
Are you sure you want to change the base?
Conversation
Added an indented tree layout algorithm for filesystem-like representations
Moved IntentedTree to correct the level in the hierarchy
Updated Spacings to only have default values where appropriate; improved documentation of spacing options, including graphics.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this image doesn't show which node each property needs to be set on
also the text is cut off on the right
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
In which representation/context did you see the text cut off?
The file itself is correctly cropped, perhaps it is too wide for some contexts?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The final "n" of indentation in pink is missing
plugins/org.eclipse.elk.alg.indentedtree/src-gen/org/eclipse/elk/alg/indentedtree/.gitignore
Outdated
Show resolved
Hide resolved
...se.elk.alg.indentedtree/src/org/eclipse/elk/alg/indentedtree/IndentedtreeLayoutProvider.java
Outdated
Show resolved
Hide resolved
...se.elk.alg.indentedtree/src/org/eclipse/elk/alg/indentedtree/IndentedtreeLayoutProvider.java
Show resolved
Hide resolved
plugins/org.eclipse.elk.alg.indentedtree/src/org/eclipse/elk/alg/indentedtree/indentedtree.melk
Show resolved
Hide resolved
plugins/org.eclipse.elk.alg.indentedtree/src/org/eclipse/elk/alg/indentedtree/indentedtree.melk
Outdated
Show resolved
Hide resolved
...se.elk.alg.indentedtree/src/org/eclipse/elk/alg/indentedtree/options/InternalProperties.java
Outdated
Show resolved
Hide resolved
...se.elk.alg.indentedtree/src/org/eclipse/elk/alg/indentedtree/options/InternalProperties.java
Outdated
Show resolved
Hide resolved
copyright headers, newlines, removed .gitignore from src-gen/ folder
Adds the IndentedTree layout algorithm for filesystem-like representations of trees without ports.
Currently, this involves a recursive depth-first-search to obtain a list of nodes ordered by parent-child relationship.
This might leave room for improvement.