Skip to main content

Notice: This Wiki is now read only and edits are no longer possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "XWT/Running the demos"

< XWT
(e4 contact demo)
(Getting started)
Line 1: Line 1:
 
== [http://dev.eclipse.org/blogs/yvesyang/2009/01/17/xwt-getting-started/ Getting started] ==  
 
== [http://dev.eclipse.org/blogs/yvesyang/2009/01/17/xwt-getting-started/ Getting started] ==  
 
+
First of all, your project must import at least the following plugins
 +
<source lang="java">
 +
org.eclipse.swt
 +
org.eclipse.jface
 +
org.eclipse.e4.xwt
 +
org.eclipse.jface.databinding
 +
org.eclipse.core.databinding
 +
com.ibm.icu
 +
</source>
 
Here is the [http://www.soyatec.org/eclipse/xwt/getting-started/getting-started.html screencast]:
 
Here is the [http://www.soyatec.org/eclipse/xwt/getting-started/getting-started.html screencast]:
  
 
[[Image:Getting-started.png|500px]]
 
[[Image:Getting-started.png|500px]]
 
  
 
== Data Binding ==
 
== Data Binding ==

Revision as of 17:02, 23 July 2009

Getting started

First of all, your project must import at least the following plugins

org.eclipse.swt
org.eclipse.jface
org.eclipse.e4.xwt
org.eclipse.jface.databinding
org.eclipse.core.databinding
com.ibm.icu

Here is the screencast:

Getting-started.png

Data Binding

Java Bean

Here is the screencast:

Model.png

Here is the screencast:

Model-nested.png


EMF integration

Control Binding

Here is the screencast:

ControlBinding.png


CSS integration

Workbench integration

e4 photo demo in XWT

Here is an integration of e4 workbench with XWT. The Exif view part and Exif edition dialog are developed in XWT.

This demo shows mainly the following features in XWT:

  • Control/Viewer binding
  • CSS integration

The Exif view in XWT:

E4-photo.png

The Exif edition dialog in XWT:

E4-photo-edit.png

The sources can be found in Bug 263720

e4 contact demo

This is a demo of the integration of e4 workbench. Two view parts "Contacts List" and "Details" are developed in XWT with the CSS support.

E4-contact.png

The sources can be found in Bug 279047

Back to the top