Java

本类阅读TOP10

·使用MyEclipse开发Struts框架的Hello World!(录像1)
·hibernate配置笔记
·AOP编程入门--Java篇
·linux下Tomcat 5.0.20 与 Apache 2 安装/集成/配置
·在win2003下整合了整合Tomcat5.5+ apache_2.0.53+ mod_jk_2.0.47.dll
·构建Linux下IDE环境--Eclipse篇
·Jsp 连接 mySQL、Oracle 数据库备忘(Windows平台)
·ASP、JSP、PHP 三种技术比较
·Tomcat5.5.9的安装配置
·AWT GUI 设计笔记(二)

分类导航
VC语言Delphi
VB语言ASP
PerlJava
Script数据库
其他语言游戏开发
文件格式网站制作
软件工程.NET开发
玩转Eclipse tools第三部分GEF

作者:未知 来源:月光软件站 加入时间:2005-2-28 月光软件站

一、概述


Graphical Editing Framework (GEF)
是目前为止介绍的最震撼的Eclipse工具了。GEF使用

基于SWT插件Draw2d建立图形环境。对MVC (model-view-controller) architecture感兴趣的赶快研究源代码吧。


先看一个例子震撼一下:
http://dev.eclipse.org/viewcvs/index.cgi/%7Echeckout%7E/gef-home/images/LogicExample.jpg?cvsroot=Tools_Project

 

GEF可以用于开发以下应用:

flow builders,

GUI builders,

UML diagram editors (such as work-flow and class modeling diagrams),

WYSIWYG text editors like HTML

 

参考文档:


The GEF FAQ

Display a UML Diagram using Draw2D Daniel Lee (IBM) August 25, 2003

Using Native Drag and Drop with GEF Eric Bordeau (IBM) August 25, 2003

Create an Eclipse-based Application using the Graphical Editing Framework Randy Hudson (IBM) July 29, 2003

 

二、GEF主要包括两个部分:


GEF
Draw2d


The Draw2d plug-in provides a standalone rendering and layout package for an SWT Canvas.  It includes common shapes and layouts that can be assembled to render almost anything.


Features


Double buffered painting and optimized layouts 

Various Figure and Layout implementations 

Simple event routing to figures (mouse and keyboard) 

Border support on figures 

Cursor and tooltip support 

Connection anchoring, routing and decorating 

Multiple layers 

Flexible coordinate systems

Overview window (thumbnail with scrolling) 


The GEF plug-in uses Draw2d for rendering, but adds a rich MVC editing framework on top of it.  This framework helps ensure that most graphical applications look and behave in a similar way.


Features


Tools like Selection, Creation, Connection and Marquee tools 

A Palette for displaying those tools 

Handles for resizing objects and bending connections 

Two types of GEF Viewers (Graphical and Tree) 

A Controller framework for mapping the business Model to a View 

Plug-in policies for mapping interactions with the view to changes in the model 

Various implementations for showing feedback and adding selection handles 

Various request types and tools or actions that send these requests to the controllers 

Undo/Redo support via Commands and a CommandStack

 

三、下载和使用


GEF-SDK-3.0.1.zip

GEF-examples-3.0.1.zip


安装后核实
6plugins:

org.eclipse.draw2d - The Draw2d plug-in

org.eclipse.gef - The GEF plug-in (requires Draw2d)

org.eclipse.draw2d.doc.isv - ISV integrated Help

org.eclipse.gef.doc.isv - ISV integrated Help

org.eclipse.gef.example.logic - A GEF example that shows containers, nodes, and connections.

org.eclipse.gef.example.flow - A GEF example of a flow editor.


注意后面两个例子,当你安装以后,就可以新建两种文件,logic 和 flow .




相关文章

相关软件