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/MVC/Examples"

< GEF‎ | GEF4‎ | MVC
(Created page with "== Logo Example (Standalone, Eclipse UI, Web) == The GEF4 MVC Logo example demonstrates the interplay of all MVC components (i.e. MVC, MVC.FX, MVC.UI, and MVC.FX.UI), and is...")
 
(Logo Example (Standalone, Eclipse UI, Web))
Line 1: Line 1:
 
== Logo Example (Standalone, Eclipse UI, Web) ==
 
== Logo Example (Standalone, Eclipse UI, Web) ==
 +
 +
*'''feature: org.eclipse.gef4.mvc.examples'''
 +
*'''bundle: org.eclipse.gef4.mvc.examples'''
 +
*'''bundle: org.eclipse.gef4.mvc.examples.logo (standalone)'''
 +
*'''bundle: org.eclipse.gef4.mvc.examples.logo.ui (UI-integration)'''
 +
*'''bundle: org.eclipse.gef4.mvc.examples.logo.web (Web-integration)'''
  
 
The GEF4 MVC Logo example demonstrates the interplay of all MVC components (i.e. MVC, MVC.FX, MVC.UI, and MVC.FX.UI), and is also based on other GEF4 components. It comes in three variants:  
 
The GEF4 MVC Logo example demonstrates the interplay of all MVC components (i.e. MVC, MVC.FX, MVC.UI, and MVC.FX.UI), and is also based on other GEF4 components. It comes in three variants:  

Revision as of 06:00, 25 May 2015

Logo Example (Standalone, Eclipse UI, Web)

  • feature: org.eclipse.gef4.mvc.examples
  • bundle: org.eclipse.gef4.mvc.examples
  • bundle: org.eclipse.gef4.mvc.examples.logo (standalone)
  • bundle: org.eclipse.gef4.mvc.examples.logo.ui (UI-integration)
  • bundle: org.eclipse.gef4.mvc.examples.logo.web (Web-integration)

The GEF4 MVC Logo example demonstrates the interplay of all MVC components (i.e. MVC, MVC.FX, MVC.UI, and MVC.FX.UI), and is also based on other GEF4 components. It comes in three variants:

  • A standalone JavaFX application (org.eclipse.gef4.mvc.examples.logo.MvcLogoExample)

GEF4 MVC FX Example.png

The standalone JavaFX application is only indirectly-bundled on our update-site and can better be checked out in source (org.eclipse.gef4.mvc.examples.logo) from our GEF4 Git repository. In order to have the example plug-in compile properly, all other required GEF4 bundles will either have to be installed (in a matching version) into your running eclipse platform, added to a target definition (the already provided in the active target platform (the provided target definitions may be augmented for this purpose), or checked out in source as well. You will also have to install e(fx)clipse in your running eclipse instance and target platform (see GEF Project Contributor Guide for details on how to obtain the sources and setup your workspace). Having prepared everything as outlined before, the standalone example might easily be started by launching org.eclipse.gef4.mvc.examples.logo.MvcLogoExample via the context menu ('Run As' -> 'Java Application').

  • An extended version in the form of an Eclipse view (org.eclipse.gef4.mvc.examples.logo.ui), which integrates with the Eclipse Workbench operation history as well as the Eclipse UI properties view)

GEF4 MVC FX UI Example.png

The Eclipse UI-integrated version can simply be installed from our update-sites. It can then easily be accessed in your runtime eclipse application via the Window->Show View->Other... menu, where it is located in the Other category.

  • A web-integrated version of the standalone application, embedded into a web page (via Java WebStart)

GEF4 MVC FX Example Web.png

The web-integrated version of the standalone example is provided in a bundled form on hudson.eclipse.org and can be accessed at https://hudson.eclipse.org/hudson/job/gef4-master/lastSuccessfulBuild/artifact/org.eclipse.gef4.mvc.examples.logo.web-files/index.html. You will need to have the Java plug-in installed into your browser, and you may have to adjust your Java plug-in security settings to allow java content for the respective url.

Back to the top