- 浏览: 383045 次
- 性别:
- 来自: 深圳
-
文章分类
最新评论
-
zxjlwt:
学习论。确实很全啊。欢迎交流http://surenpi.co ...
eclipse dialog 对话框 大全 -
zxjlwt:
很好。http://surenpi.com
eclipse 源码泛读 -
string2020:
有卵用???
activiti 第一个例子 helloworld -
ysj_csdn:
能给个正确的例子?
activiti 第一个例子 helloworld -
zxjlwt:
学习了。http://surenpi.com
Eclipse扩展点介绍
1. Eclipse Zest
1.1 概述
Eclipse Zest是一个可视化的图形工具。它基于SWT/Draw2D。Zest还支持JFace中Viewer的概念,因此允许模型和视图的分离。这篇文章假设你已经熟悉了Eclipse RCP或Eclipse Plugin开发。
(我注:其实也可以在一个普通的SWT程序中使用Zest)
1.2 组件
Eclipse Zest有以下组件:
- GraphNode -- graph中,带属性的结点
- GraphConnections -- graph中,用来连接两个结点的边线
- GraphContainer -- graph中,用来包含其他结点的容器
- Graph -- 根,用来包含所有其他的结点(nodes,connections,container)
1.3 布局
Zest提供了一些布局管理器,用来决定怎么布局graph上的结点。下面列出的就是所提供的一些布局:
表1 布局管理器
TreeLayoutAlgorithm | Graph is displayed in the form of a vertical tree |
HorizontalTreeLayoutAlgorithm | Similar to TreeLayoutAlgorithm, but layout is horizontal |
RadialLayoutAlgorithm | Root is the center, the others nodes are placed around this node |
GridLayoutAlgorithm SpringLayoutAlgorithm |
layout the graph, so that all connections should have approx the same length and that the edges overlap minimal |
HorizontalShift | move overlapping nodes to the right |
CompositeLayoutAlgorithm | combines other layout algorithms, for example, HorizontalShift can be the second layout algorithm to move nodes which were still overlapping if another algorithm is used. |
1.4 Filter
可以通过调用setFilter(filter)方法,在布局上增加过滤器(org.eclipse.zest.layouts.filter),用于决定哪些结点和边线是可见的。filter收到一个LayoutItem对象,实际的graph结点可以通过方法getGraphData()得到。
2. 安装
(我注:好像现在安装完GEF后,自动就有了,所以这里略了)
3 你的第一个Zest工程
3.1 开始
创建一个Eclipse RCP应用“de.vogella.zest.first”。选择模板"Eclipse RCP with a view“。 增加"org.eclipse.zest.core" 和 "org.eclipse.zest.layouts" 依赖项。
修改"View.java"的代码如下,用于创建一个简单的graph和连接它的元素:
- package de.vogella.zest.first;
- import org.eclipse.swt.SWT;
- import org.eclipse.swt.widgets.Composite;
- import org.eclipse.swt.widgets.Event;
- import org.eclipse.swt.widgets.Listener;
- import org.eclipse.ui.part.ViewPart;
- import org.eclipse.zest.core.widgets.Graph;
- import org.eclipse.zest.core.widgets.GraphConnection;
- import org.eclipse.zest.core.widgets.GraphNode;
- import org.eclipse.zest.core.widgets.ZestStyles;
- import org.eclipse.zest.layouts.LayoutStyles;
- import org.eclipse.zest.layouts.algorithms.SpringLayoutAlgorithm;
- import org.eclipse.zest.layouts.algorithms.TreeLayoutAlgorithm;
- public class View extends ViewPart {
- public static final String ID = "de.vogella.zest.first.view";
- private Graph graph;
- private int layout = 1;
- public void createPartControl(Composite parent) {
- // Graph will hold all other objects
- graph = new Graph(parent, SWT.NONE);
- // Now a few nodes
- GraphNode node1 = new GraphNode(graph, SWT.NONE, "Jim");
- GraphNode node2 = new GraphNode(graph, SWT.NONE, "Jack");
- GraphNode node3 = new GraphNode(graph, SWT.NONE, "Joe");
- GraphNode node4 = new GraphNode(graph, SWT.NONE, "Bill");
- // Lets have a directed connection
- new GraphConnection(graph, ZestStyles.CONNECTIONS_DIRECTED, node1,
- node2);
- // Lets have a dotted graph connection
- new GraphConnection(graph, ZestStyles.CONNECTIONS_DOT, node2, node3);
- // Standard connection
- new GraphConnection(graph, SWT.NONE, node3, node1);
- // Change line color and line width
- GraphConnection graphConnection = new GraphConnection(graph, SWT.NONE,
- node1, node4);
- graphConnection.changeLineColor(parent.getDisplay().getSystemColor(
- SWT.COLOR_GREEN));
- // Also set a text
- graphConnection.setText("This is a text");
- graphConnection.setHighlightColor(parent.getDisplay().getSystemColor(
- SWT.COLOR_RED));
- graphConnection.setLineWidth(3);
- graphConnection.addListener(SWT.SELECTED, new Listener() {
- @Override
- public void handleEvent(Event event) {
- System.out.println("Selected");
- }
- });
- graph.setLayoutAlgorithm(new SpringLayoutAlgorithm(
- LayoutStyles.NO_LAYOUT_NODE_RESIZING), true);
- }
- public void setLayoutManager() {
- switch (layout) {
- case 1:
- graph.setLayoutAlgorithm(new TreeLayoutAlgorithm(
- LayoutStyles.NO_LAYOUT_NODE_RESIZING), true);
- layout++;
- break;
- case 2:
- graph.setLayoutAlgorithm(new SpringLayoutAlgorithm(
- LayoutStyles.NO_LAYOUT_NODE_RESIZING), true);
- layout = 1;
- break;
- }
- }
- /**
- * Passing the focus request to the viewer's control.
- */
- public void setFocus() {
- }
- }
运行以后,得到下图:

3.2 通过command来改变布局
创建一个command,并把以下"de.vogella.zest.first.handler.ChangeLayout"作为它的handler,此handler用于更改布局。最后把这个command加到一个menu上:
- package de.vogella.zest.first.handler;
- import org.eclipse.core.commands.AbstractHandler;
- import org.eclipse.core.commands.ExecutionEvent;
- import org.eclipse.core.commands.ExecutionException;
- import org.eclipse.ui.IViewPart;
- import org.eclipse.ui.handlers.HandlerUtil;
- import de.vogella.zest.first.View;
- public class ChangeLayout extends AbstractHandler {
- @Override
- public Object execute(ExecutionEvent event) throws ExecutionException {
- IViewPart findView = HandlerUtil.getActiveWorkbenchWindow(event)
- .getActivePage().findView("de.vogella.zest.first.view");
- View view = (View) findView;
- view.setLayoutManager();
- return null;
- }
- }
运行应用,如果你选择了上面的菜单,视图的布局将会改变
4.Zest和JFace
JFace提供了viewers用于分离数据和展现。请看Eclipse JFace TableViewer 或 Eclipse JFace TreeViewer 。JFace要求一个content provider和一个label provider。Zest提供了一个"GraphViewer“作为一个viewer。content provider则是基于connections或者是nodes的。
标准的Zest content providers有:
IGraphContentProvider | Based on the connections. The connections contain the information which nodes they refer to. Cannot display nodes without connections. |
IGraphEntityContentProvider | Based on the Node which contain the information about which relationship they have. These relationship are available in the label provider as EntityConnectionData objects. |
IGraphEntityRelationshipContentProvider | Node based, the content provider defines getRelationShips(sourceNode, destinationNode) which determines the connections. The advantages compared with IGraphEntityContentProvider is that you decide which objects you return. |
Zest的label provider可以是一个标准的JFace的 ILabelProvider,也可以是Zest特定的IEntityStyleProvider。
http://www.ibm.com/developerworks/cn/opensource/os-cn-zest/index.html
http://liugang594.iteye.com/blog/865253
发表评论
-
离线使用tycho对eclipse RCP打包导出
2015-09-02 09:22 1261http://www.bubuko.com/infodetai ... -
RAP源码泛读及分析
2014-01-17 13:27 1176SWT、RWT如何保证大部 ... -
rap 的学习1
2013-10-27 22:02 800RAP 2.2 December 2013 (planne ... -
tycho 打包不同平台的RCP
2013-06-18 10:56 1179<configuration> < ... -
rap web开发
2013-04-10 17:12 909rap项目已经2.0(changelog) 这次改动 ... -
subversion升级到1.7
2012-09-07 15:37 1931http://www.cnblogs.com/xiziy ... -
ubuntu eclipse 中使用jadclipse java反编译
2012-09-07 11:04 12071:net.sf.jadclipse_3.3.0.jar 发 ... -
Nebula Project
2012-08-10 02:42 895http://www.eclipse.org/nebula/ -
Eclipse Plug-in dependencies – Required Bundle vrs. Import-Package
2012-07-19 00:32 3047http://www.vogella.com/blog/200 ... -
rcp培训
2012-07-19 00:22 1255<!-- @pa ... -
No schema found for … extension point 问题
2012-03-13 13:09 1599很多时候在编辑plugin.xml 文件的Extensi ... -
Eclipse中的org.eclipse.core.resources.markers扩展点
2011-11-09 11:26 1950扩展点配置如下:<extension ... -
开发一个调试 JSP 的 Eclipse 插件
2011-10-27 22:34 1594AVA调试框架(JPDA)简介JPDA是一个多层的调试框架 ... -
gmf 优点
2011-09-28 15:09 991http://www.ibm.com/developerwor ... -
gef 与gmf的结合
2011-09-28 14:03 1051以前的项目已经就是直接用gef,自己写模型的。 今天研 ... -
rcp自动加载插件
2011-09-28 13:56 1218http://blog.ixpub.net/html/9 ... -
rcp DialogSettings IPreferenceStore IMemento
2011-09-22 14:31 1154三个不的不同点: IMemento 要求rc ... -
rcp IPreferenceStore
2011-09-22 14:21 1277IPreferenceStore store=Acti ... -
rcp DialogSettings
2011-09-22 14:10 1190Activator.getDefault().getDialo ... -
rcp IMemento 状态的保存
2011-09-22 13:50 1145rcp 可以对每个part进行状态的保存。 保存数据 ...
相关推荐
首先,打开Eclipse的“Help” > “Eclipse Marketplace”,搜索“Maven”,找到"M2E - Maven Integration for Eclipse"并安装。安装完成后,需要重启Eclipse。 2. **配置Maven**: 在Eclipse中,进入“Window” > ...
《深入理解Maven Eclipse GEF-Zest 3.7.1与m2e-extras集成》 在软件开发过程中,工具的集成与协同工作能力至关重要。Maven作为Java项目管理和构建的强大工具,大大简化了依赖管理和构建流程。而Eclipse作为广受欢迎...
1. `org.eclipse.zest.core_1.3.0.v20110221-2050.jar`:这是Eclipse Zest核心库的一个版本,Zest是一个用于在Eclipse RCP应用程序中创建图形表示的库,可以用于构建网络图、流程图等。在m2eclipse插件中,可能用于...
- 将解压得到的jar文件(如org.eclipse.zest.core_1.3.0.v20110221-2050.jar和org.eclipse.zest.layouts_1.1.0.v20110425-2050.jar)复制到`plugins`目录。 - 重启Eclipse,插件就会自动安装并启用。 - 在Eclipse...
Eclipse是一款流行的集成开发环境(IDE),它通过插件系统可以扩展各种功能,包括对Maven的支持。本文将详细介绍如何安装和配置Maven,以及在Eclipse中安装Maven插件。 首先,我们来了解Maven的基本概念。Maven基于...
旧版本eclipse,比如indigo版本要安装maven,旧的在线安装方式已经失效,因为依赖的zest和m2eclipse的location url都已经无法访问。所以从已经安装这两个包的eclipse中分离出离线的安装包,拷贝到对应的features和...
8. **GEF和Zest**:GEF(Graphical Editing Framework)是Eclipse中用于图形编辑的框架,而Zest则是其可视化组件。在Eclipse 3.6.1中,可能需要单独安装Zest以解决m2eclipse插件的依赖问题。Zest插件的下载地址是:...
9. **Zest 图形库**:作为 GEF 的一部分,Zest 是一个专门用于构建图形图表的库,适用于生成流程图、关系图和其他类型的可视化信息。 综上所述,"org.eclipse.gef" 插件为 Eclipse 开发者提供了一套强大的工具,...
Eclipse插件开发是软件开发领域中的一个重要环节,它允许开发者扩展Eclipse集成开发环境(IDE)的功能,以满足特定的开发需求。GEF(Graphical Editing Framework)是Eclipse平台的一部分,专为构建图形化编辑器而...
Eclipse的GEF(Graphical Editing Framework)插件是一个强大的工具,用于在Eclipse集成开发环境中创建、编辑和展示图形用户界面。它为开发者提供了一种框架,支持创建可定制的、交互式的图形编辑器,使得开发人员...
此外,GEF还支持Zest,一个用于创建图形图表的库,它可以与GEF一起使用,以增强图形的呈现效果和交互性。通过学习和实践这些示例,开发者不仅可以熟悉GEF的基本用法,还能深入理解图形编辑器的设计原则和实现技术,...
- **Zest图表库**:GEF的一部分,用于创建复杂的图表和图形网络,如流程图、关系图等。 5. **插件安装与集成** 将"GEF-SDK-3.4.0.zip"解压后,开发者可以通过Eclipse的"Install New Software"功能将插件导入到...
- **Zest图库**:作为GEF的一部分,Zest提供了用于创建图表的强大库,如树图、网络图等。 - **Marlin 3D绘图**:对于需要三维视图的项目,Marlin是GEF的一个扩展,提供3D图形支持。 总之,Eclipse GEF插件通过其...
5. **Zest图表库**:如果包含,可能会提及Zest,它是GEF的一个扩展,用于创建图表和图形表示。 6. **自定义编辑器**:介绍如何使用GEF创建针对特定领域或技术的图形编辑器。 通过学习这两个文档,开发者不仅可以...
同时,熟悉GEF也能为你打开通往其他图形工具如GMF(Graphical Modeling Framework)和Zest(图可视化库)的大门。 总的来说,Eclipse插件开发结合GEF框架是一项强大且富有挑战性的技术。随着你对这个领域的深入探索...
GEF还提供了Zest组件,它是GEF的一个子项目,专注于开发图形可视化工具,比如图形化的图表和网络。 开发GEF插件时,开发者需要编写相应的Model、EditPart和EditPolicy类,并将它们关联起来,以构建完整的图形编辑...
5. **Zest图渲染库**:ECLIPSE GEF 5.4.0可能集成了Zest库,这是一个用于绘制图表和图形网络的库,可以创建有吸引力的视觉表示。 6. **插件体系**:Eclipse本身就是一个插件化的开发环境,GEF也是通过插件形式集成...
Eclipse GEF是Eclipse平台的重要组成部分,与Eclipse的其他插件如Draw2D和ZEST紧密集成,为开发人员提供了丰富的图形化编程能力。 "GEF P2 Repositories & SDK Dropins"指的是Eclipse的软件仓库(P2 repositories)...
你可以看到如何使用`Zest`库创建图表,以及如何实现基本的交互,如拖放、连接线等。 2. **高级示例**:高级示例可能包含更多的特性,如自定义手势识别、复杂编辑操作(如剪切、复制、粘贴)、以及使用`...
2. **Zest图表**:Eclipse GEF常常与Zest图表库结合使用,用于创建可定制的图表和图形表示。Zest提供了丰富的图表元素和布局算法。 3. **图元工厂(Figure Factory)**:用于创建和管理图形元素的工厂类,帮助...