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 Zest Visualization"

(Getting Started)
Line 4: Line 4:
  
 
== Getting Started ==
 
== Getting Started ==
 +
/*******************************************************************************
 +
* Copyright 2005-2007, CHISEL Group, University of Victoria, Victoria, BC,
 +
* Canada. All rights reserved. This program and the accompanying materials are
 +
* made available under the terms of the Eclipse Public License v1.0 which
 +
* accompanies this distribution, and is available at
 +
* http://www.eclipse.org/legal/epl-v10.html
 +
*
 +
* Contributors: The Chisel Group, University of Victoria
 +
******************************************************************************/
 +
package org.eclipse.mylar.zest.examples.swt;
 +
 +
import org.eclipse.mylar.zest.core.widgets.Graph;
 +
import org.eclipse.mylar.zest.core.widgets.GraphConnection;
 +
import org.eclipse.mylar.zest.core.widgets.GraphNode;
 +
import org.eclipse.mylar.zest.layouts.LayoutStyles;
 +
import org.eclipse.mylar.zest.layouts.algorithms.SpringLayoutAlgorithm;
 +
import org.eclipse.swt.SWT;
 +
import org.eclipse.swt.layout.FillLayout;
 +
import org.eclipse.swt.widgets.Display;
 +
import org.eclipse.swt.widgets.Shell;
 +
 +
/**
 +
* This snippet creates a very simpl graph where Rock is connected to Paper
 +
* which is connected to scissors which is connected to rock.
 +
*
 +
* The nodes a layed out using a SpringLayout Algorithm, and they can be moved
 +
* around.
 +
*
 +
*
 +
* @author Ian Bull
 +
*
 +
*/
 +
public class GraphSnippet1 {
 +
 +
/**
 +
* @param args
 +
*/
 +
public static void main(String[] args) {
 +
// Create the shell
 +
Display d = new Display();
 +
Shell shell = new Shell(d);
 +
shell.setText("GraphSnippet1");
 +
shell.setLayout(new FillLayout());
 +
shell.setSize(400, 400);
 +
 +
Graph g = new Graph(shell, SWT.NONE);
 +
 +
GraphNode n = new GraphNode(g, SWT.NONE, "Paper");
 +
GraphNode n2 = new GraphNode(g, SWT.NONE, "Rock");
 +
GraphNode n3 = new GraphNode(g, SWT.NONE, "Scissors");
 +
new GraphConnection(g, SWT.NONE, n, n2);
 +
new GraphConnection(g, SWT.NONE, n2, n3);
 +
new GraphConnection(g, SWT.NONE, n3, n);
 +
g.setLayoutAlgorithm(new SpringLayoutAlgorithm(LayoutStyles.NO_LAYOUT_NODE_RESIZING), true);
 +
 +
shell.open();
 +
while (!shell.isDisposed()) {
 +
while (!d.readAndDispatch()) {
 +
d.sleep();
 +
}
 +
}
 +
}
 +
 +
}
  
 
== Layout Algorithms ==
 
== Layout Algorithms ==
  
 
== Zest Viewers ==
 
== Zest Viewers ==

Revision as of 14:45, 27 March 2007


Zest is visualization toolkit for Eclipse. The primary goal of Zest is to make graph based programming easy. Using Zest, Graphs are considered SWT Components which have been wrapped using standard JFace viewers. This allows developers to use Zest the same way they use JFace Tables, Trees and Lists. Please visit our main page at http://www.eclipse.org/mylar/zest.php.

Getting Started

/*******************************************************************************

* Copyright 2005-2007, CHISEL Group, University of Victoria, Victoria, BC,
* Canada. All rights reserved. This program and the accompanying materials are
* made available under the terms of the Eclipse Public License v1.0 which
* accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
* 
* Contributors: The Chisel Group, University of Victoria
******************************************************************************/

package org.eclipse.mylar.zest.examples.swt;

import org.eclipse.mylar.zest.core.widgets.Graph; import org.eclipse.mylar.zest.core.widgets.GraphConnection; import org.eclipse.mylar.zest.core.widgets.GraphNode; import org.eclipse.mylar.zest.layouts.LayoutStyles; import org.eclipse.mylar.zest.layouts.algorithms.SpringLayoutAlgorithm; import org.eclipse.swt.SWT; import org.eclipse.swt.layout.FillLayout; import org.eclipse.swt.widgets.Display; import org.eclipse.swt.widgets.Shell;

/**

* This snippet creates a very simpl graph where Rock is connected to Paper
* which is connected to scissors which is connected to rock.
* 
* The nodes a layed out using a SpringLayout Algorithm, and they can be moved
* around.
* 
* 
* @author Ian Bull
* 
*/

public class GraphSnippet1 {

/** * @param args */ public static void main(String[] args) { // Create the shell Display d = new Display(); Shell shell = new Shell(d); shell.setText("GraphSnippet1"); shell.setLayout(new FillLayout()); shell.setSize(400, 400);

Graph g = new Graph(shell, SWT.NONE);

GraphNode n = new GraphNode(g, SWT.NONE, "Paper"); GraphNode n2 = new GraphNode(g, SWT.NONE, "Rock"); GraphNode n3 = new GraphNode(g, SWT.NONE, "Scissors"); new GraphConnection(g, SWT.NONE, n, n2); new GraphConnection(g, SWT.NONE, n2, n3); new GraphConnection(g, SWT.NONE, n3, n); g.setLayoutAlgorithm(new SpringLayoutAlgorithm(LayoutStyles.NO_LAYOUT_NODE_RESIZING), true);

shell.open(); while (!shell.isDisposed()) { while (!d.readAndDispatch()) { d.sleep(); } } }

}

Layout Algorithms

Zest Viewers

Back to the top