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

GEF/GEF4/MVC/Examples

< GEF‎ | GEF4‎ | MVC
Revision as of 04:28, 18 July 2015 by Alexander.nyssen.itemis.de (Talk | contribs)

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 also based on other GEF4 components. It comes in three variants: a standalone JavaFX application, a deployed Eclipse UI-integration, as well as a JNLP-based web integration.

Logo Example (Standalone)

  • bundle: org.eclipse.gef4.mvc.examples.logo

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 (if this is used as target), added to a target definition (the target definitions contained in org.eclipse.gef4.target 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').

GEF4 MVC FX Example.png

Logo Example (UI-integration)

  • feature: org.eclipse.gef4.mvc.examples
  • bundle: org.eclipse.gef4.mvc.examples
  • bundle: org.eclipse.gef4.mvc.examples.logo
  • bundle: org.eclipse.gef4.mvc.examples.logo.ui

The Eclipse UI-integrated version of the Logo Example, which integrates with the Eclipse Workbench operation history as well as the Eclipse UI properties view, can simply be installed from our update-sites. It is accessible via the 'GEF4 MVC Logo Example' view, which can be opened via the Window -> Show View -> Other... menu, being located in the Other category.

Note that, if you are running on Linux with GTK3, you have to force SWT to use the GTK2 API by setting the environment variable SWT_GTK3 to 0, because of a JavaFX/SWT integration bug (Bugzilla #469126).

GEF4 MVC FX UI Example.png

Logo Example (Web-integration)

  • bundle: org.eclipse.gef4.mvc.examples.logo.web

The web-integrated version of the standalone application is realized 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/gef/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 (see How can I run or activate Java in the browser? for details) to properly run the example, and you will have to adjust your Java plug-in security settings to Enable Java content in the browser and use security level High instead of Very High.

Back to the top