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 "Graphical Editing Framework"

Line 43: Line 43:
  
 
== External Documentation (Articles, Slides, Books) ==
 
== External Documentation (Articles, Slides, Books) ==
 +
* Lars Vogel (2009): [http://www.vogella.de/articles/EclipseZest/article.html Eclipse Zest - Tutorial], article
 
* Chris Aniszczyk, Randy Hudson (2007): [http://www.ibm.com/developerworks/library/os-eclipse-gef11 Create an Eclipse-based application using the Graphical Editing Framework - How to get started with the GEF and other options for the graphically inclined Eclipse developer], IBM developerWorks article
 
* Chris Aniszczyk, Randy Hudson (2007): [http://www.ibm.com/developerworks/library/os-eclipse-gef11 Create an Eclipse-based application using the Graphical Editing Framework - How to get started with the GEF and other options for the graphically inclined Eclipse developer], IBM developerWorks article
 
* Randy Hudson (2006): [http://eclipsezilla.eclipsecon.org/php/attachment.php?bugid=52 Graphical Editing Framework - Tutorial], EclipseCon presentation slides
 
* Randy Hudson (2006): [http://eclipsezilla.eclipsecon.org/php/attachment.php?bugid=52 Graphical Editing Framework - Tutorial], EclipseCon presentation slides
 
* William Moore, David Dean, Anna Gerber, Gunnar Wagenknecht, Philippe Vanderheyden (2004): [http://publib-b.boulder.ibm.com/Redbooks.nsf/RedpieceAbstracts/sg246302.html?Open Eclipse Development using the Graphical Editing Framework and the Eclipse Modeling Framework], IBM Redbook
 
* William Moore, David Dean, Anna Gerber, Gunnar Wagenknecht, Philippe Vanderheyden (2004): [http://publib-b.boulder.ibm.com/Redbooks.nsf/RedpieceAbstracts/sg246302.html?Open Eclipse Development using the Graphical Editing Framework and the Eclipse Modeling Framework], IBM Redbook
* Daniel Lee (2003): [http://www.eclipse.org/articles/Article-GEF-Draw2d/GEF-Draw2d.html Display a UML Diagram using Draw2D], Eclipse Corner Article
 
* Eric Bordeau (2003): [http://eclipse.org/articles/Article-GEF-dnd/GEF-dnd.html Using Native Drag and Drop in GEF], Eclipse Corner Article
 
 
* Phil Zoio (2004): [http://eclipse.org/articles/Article-GEF-editor/gef-schema-editor.html Building a database schema diagram editor], Eclipse Corner Article
 
* Phil Zoio (2004): [http://eclipse.org/articles/Article-GEF-editor/gef-schema-editor.html Building a database schema diagram editor], Eclipse Corner Article
 
* By Bo Majewski (2004): [http://www.eclipse.org/articles/Article-GEF-diagram-editor/shape.html A shape diagram editor], Eclipse Corner Article
 
* By Bo Majewski (2004): [http://www.eclipse.org/articles/Article-GEF-diagram-editor/shape.html A shape diagram editor], Eclipse Corner Article
* Lars Vogel (2009): [http://www.vogella.de/articles/EclipseZest/article.html Eclipse Zest - Tutorial], article
+
* Daniel Lee (2003): [http://www.eclipse.org/articles/Article-GEF-Draw2d/GEF-Draw2d.html Display a UML Diagram using Draw2D], Eclipse Corner Article
 +
* Eric Bordeau (2003): [http://eclipse.org/articles/Article-GEF-dnd/GEF-dnd.html Using Native Drag and Drop in GEF], Eclipse Corner Article
  
 
[[Category:Tools_Project]]
 
[[Category:Tools_Project]]
 
[[Category:GEF]]
 
[[Category:GEF]]

Revision as of 15:42, 9 November 2010

Gefbanner.jpg

The Graphical Editing Framework (GEF) allows developers to create a rich graphical editor from an existing application model. GEF consists of 2 plug-ins. The org.eclipse.draw2d plug-in provides a layout and rendering toolkit for displaying graphics. The developer can then take advantage of the many common operations provided in GEF and/or extend them for the specific domain. GEF employs an MVC (model-view-controller) architecture which enables simple changes to be applied to the model from the view.

While the main GEF website contains the bulk of information regarding the project, the type of information more appropriately hosted on a wiki is (or will be) found here, such as: FAQs, tutorials, requirements, discussions, etc.

Downloads

  • Downloads
  • Learn GEF through Template for more Look GEF Developer FAQ-->Sample GEF As a Template for Eclipse 3.4.Xv

Update Sites

The GEF update sites have moved.

The old sites are still available here:

Documentation

GEF Project

Draw2d/GEF

Zest

External Documentation (Articles, Slides, Books)

Back to the top