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 "FAQ Are there any visual composition editors available for SWT?"

m (Free Plug-ins)
m (Commercial Plug-ins)
(One intermediate revision by the same user not shown)
Line 12: Line 12:
 
* <i>V4ALL Assisi GUI-Builder</i>. This SourceForge GUI builder project  targets both SWT and Swing.  So far, it is the work of a single developer, and there does not appear to be much activity on it.
 
* <i>V4ALL Assisi GUI-Builder</i>. This SourceForge GUI builder project  targets both SWT and Swing.  So far, it is the work of a single developer, and there does not appear to be much activity on it.
  
* [http://jakarta.apache.org/commons/sandbox/jelly/jellyswt.html <i>JellySWT</i>]. Jelly is a scripting engine that uses XML as its scripting language.  The goal of JellySWT is to allow you to describe a UI by using Jelly script and then have it generate the Java code automatically.  The idea is that it takes care of the tedious layout code for you.  This isn&#146;t really a visual composition editor, but it is a GUI builder of sorts.
+
* [http://jakarta.apache.org/commons/jelly/jellyswt.html <i>JellySWT</i>]. Jelly is a scripting engine that uses XML as its scripting language.  The goal of JellySWT is to allow you to describe a UI by using Jelly script and then have it generate the Java code automatically.  The idea is that it takes care of the tedious layout code for you.  This isn&#146;t really a visual composition editor, but it is a GUI builder of sorts.
  
 
==Commercial Plug-ins==
 
==Commercial Plug-ins==
  
* <i>SWT designer (swt-designer.com)</i>.  This commercial plug-in to  Eclipse, which targets only SWT, is fairly new as a commercial  product but is based on an open source project that has been around  for a while and has a strong following.
+
* [http://www.swt-designer.com <i>SWT designer</i>].  This commercial plug-in to  Eclipse, which targets only SWT, is fairly new as a commercial  product but is based on an open source project that has been around  for a while and has a strong following.
  
* <i>SWT GUI Builder (www.swtguibuilder.com)</i>. This commercial plug-in provides a visual editor for SWT only.  The company also sells a product  called Swing2SWT that ports Swing applications to SWT.
+
* [http://www.swtguibuilder.com <i>SWT GUI Builder</i>]. This commercial plug-in provides a visual editor for SWT only.  The company also sells a product  called Swing2SWT that ports Swing applications to SWT.
  
* <i>Jigloo GUI Builder (cloudgarden.com/jigloo)</i>. This fairly new GUI  builder for both SWT and Swing is a commercial product, but a free  version is licensed for noncommercial use only.
+
* [http://www.cloudgarden.com/jigloo <i>Jigloo GUI Builder</i>]. This fairly new GUI  builder for both SWT and Swing is a commercial product, but a free  version is licensed for noncommercial use only.
  
 
== See Also: ==
 
== See Also: ==

Revision as of 22:58, 1 June 2006

Several free and commercial products provide visual composition editors, or GUI builders, for SWT. These tools are especially appealing to people who are not yet skilled in all the intricacies of the SWT layout mechanisms and do not yet know what kinds of widgets are available to choose from.

After doing an informal poll, we discovered that none of the respondents in the Eclipse development team uses a visual builder to implement Eclipse. The UI for Eclipse is written manually in SWT, using an additional UI framework called JFace to take care of some of the repetitive aspects of writing UIs. Furthermore, when defining a new dialog, the developers often use the &#147;Monkey see, monkey do&#148; rule: They first find one that is close to the intended result; then, the new UI is cloned from the inspiration source and modified until it fits the needs of the new application.

With the growing popularity of SWT, more and more developers want to prototype and develop user interfaces with SWT. Visual builders help less experienced developers by eliminating most of the guesswork from the UI design labor. Widgets can be selected from a panel, and attributes can be chosen and assigned values from a limited set of options. The most successful builders offer fully synchronized views of the UI being developed and the generated source code to implement the UI.

Visual builders have been a long time coming for SWT, but a number of free and commercial GUI builders are finally available.

Free Plug-ins

  • The Eclipse Visual Editor Project. The goal of this Eclipse project is to build a framework for creating Eclipse-based GUI builders. This project follows the general Eclipse philosophy of creating a platform- and language-independent framework, with language- and platform-specific layers on top. This project provides GUI builders for SWT/RCP and Swing applications.
  • V4ALL Assisi GUI-Builder. This SourceForge GUI builder project targets both SWT and Swing. So far, it is the work of a single developer, and there does not appear to be much activity on it.
  • JellySWT. Jelly is a scripting engine that uses XML as its scripting language. The goal of JellySWT is to allow you to describe a UI by using Jelly script and then have it generate the Java code automatically. The idea is that it takes care of the tedious layout code for you. This isn&#146;t really a visual composition editor, but it is a GUI builder of sorts.

Commercial Plug-ins

  • SWT designer. This commercial plug-in to Eclipse, which targets only SWT, is fairly new as a commercial product but is based on an open source project that has been around for a while and has a strong following.
  • SWT GUI Builder. This commercial plug-in provides a visual editor for SWT only. The company also sells a product called Swing2SWT that ports Swing applications to SWT.
  • Jigloo GUI Builder. This fairly new GUI builder for both SWT and Swing is a commercial product, but a free version is licensed for noncommercial use only.

See Also:


This FAQ was originally published in Official Eclipse 3.0 FAQs. Copyright 2004, Pearson Education, Inc. All rights reserved. This text is made available here under the terms of the Eclipse Public License v1.0.

Back to the top