Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "GEF/GEF4/DOT/User Guide"

< GEF‎ | GEF4‎ | DOT
Line 13: Line 13:
  
 
[[Image:DotEditor.png|892px]]
 
[[Image:DotEditor.png|892px]]
 +
 +
The editor validates the currently edited .dot file on the fly and issues warnings/errors e.g in case of using deprecated/invalid dot language elements:
 +
 +
[[Image:dot_editor_warning_detection.png]]
 +
[[Image:dot_editor_error_detection.png]]
  
 
The editor also provides a 'Sync Graphviz Export' option (toggle button in the toolbar; using the default Graphviz icon), which - if enabled - automatically stores an image file (.pdf, .png, ...) representing the saved state of the edited .dot file to the directory containing the .dot file, and opens it with the associated external image viewer, if one is available. In this example, the export looks like this:
 
The editor also provides a 'Sync Graphviz Export' option (toggle button in the toolbar; using the default Graphviz icon), which - if enabled - automatically stores an image file (.pdf, .png, ...) representing the saved state of the edited .dot file to the directory containing the .dot file, and opens it with the associated external image viewer, if one is available. In this example, the export looks like this:
Line 22: Line 27:
 
[[Image:Graphviz_preference_page1.png|600px]]
 
[[Image:Graphviz_preference_page1.png|600px]]
 
[[Image:Graphviz_preference_page2.png|600px]]
 
[[Image:Graphviz_preference_page2.png|600px]]
 
The editor validates the currently edited .dot file on the fly and issues warnings/errors e.g in case of using deprecated/invalid dot language elements:
 
 
[[Image:dot_editor_warning_detection.png]]
 
[[Image:dot_editor_error_detection.png]]
 
  
 
=== DOT Graph view ===
 
=== DOT Graph view ===
Line 47: Line 47:
  
 
The DOT Graph view can be linked with the DOT editor to visualize the saved state of the currently edited .dot file (Link with DOT Editor).
 
The DOT Graph view can be linked with the DOT editor to visualize the saved state of the currently edited .dot file (Link with DOT Editor).
 
The visualized graph in ''''emulated mode'''':
 
 
[[Image:tree_emulated.png|800px]]
 
 
 
The visualized graph in ''''native mode'''':
 
The visualized graph in ''''native mode'''':
  

Revision as of 05:50, 20 May 2016

Note to non-wiki readers: This documentation is generated from the Eclipse wiki - if you have corrections or additions it would be awesome if you added them in the original wiki page.


Introduction

The GEF4 DOT component adds a DOT editor and a DOT Graph view to the UI. The DOT editor can be used to edit Graphviz *.dot files, while the DOT Graph view allows to render them within Eclipse using GEF4 Zest, as well as to export them into different image formats (such as PDF, PNG, ...) using the Graphviz native executable.

Please note that the DOT editor and the GEF4 Zest-based rendering of the DOT Graph view are currently still limited to support only a subset of the DOT language (see #454629, #321775, and #441352 for details).

DOT editor

The DOT editor is registered for *.dot files within the Eclipse Workbench UI. It is based on Xtext and thus provides support for syntax coloring, content assist, and integrated validation, as well as a customized Outline view integration.

DotEditor.png

The editor validates the currently edited .dot file on the fly and issues warnings/errors e.g in case of using deprecated/invalid dot language elements:

Dot editor warning detection.png Dot editor error detection.png

The editor also provides a 'Sync Graphviz Export' option (toggle button in the toolbar; using the default Graphviz icon), which - if enabled - automatically stores an image file (.pdf, .png, ...) representing the saved state of the edited .dot file to the directory containing the .dot file, and opens it with the associated external image viewer, if one is available. In this example, the export looks like this:

DotZestM2Rendered.png

The export relies on executing the native Graphviz dot binary, which can be configured under 'Windows -> Preferences -> Dot -> Graphviz' preference page. The following two screenshots represent the Graphviz preference page before/after the path to the dot executable is defined.

Graphviz preference page1.png Graphviz preference page2.png

DOT Graph view

The DOT Graph view ('Window -> Show View -> Other... -> Visualization -> DOT Graph') can be used to visualize DOT graphs contained in *.dot files or embedded in other files, which are either explicitly loaded from the workspace, or synched with the .dot file currently being edited in the active DOT editor.

The view draws the DOT graphs using GEF4 Zest and allows exporting the currently visualized Zest graph into different image formats (such as PDF, PNG, ...) based on the Graphviz executable.

For instance, consider a file with the .dot extension, containing the following DOT graph definition:

digraph s{ 
 n1[label="Node 1"]; n2[label="Node 2"]; 
 n1 -> n2[style=dotted label="A dotted edge"]
}

Loading it in the DOT Graph view will result either in the following representation on the left side in 'native mode' (when the dot executable is configured, it is used for layouting), or in the following representation on the right side in 'emulated mode' (when the dot executable is not configured, the layouting is emulated with GEF4 Layout algorithms).

DotGraphView native mode.png GEF4-DOT-DotGraphView.png

The DOT Graph view can be linked with the DOT editor to visualize the saved state of the currently edited .dot file (Link with DOT Editor). The visualized graph in 'native mode':

Tree native.png

It can further be used to display embedded DOT in other files, e.g. in source code comments or in wiki markup:

Embedded emulated.png

This provides a GEF4 Zest-based DOT authoring environment. If a *.dot file or embedded DOT is edited, it will be visualized in the DOT Graph view, and can be exported as a PDF with Graphviz. At the same time the view provides a simple way to visualize *.dot file output of any kind of program, e.g. to visualize and debug internal data structures, results, etc: if a program running in Eclipse outputs any *.dot file in the workspace and the workspace is refreshed, the view will be updated with the corresponding Zest graph.

Copyright © Eclipse Foundation, Inc. All Rights Reserved.