Skip to end of metadata
Go to start of metadata

GroovySWT is a wrapper around SWT, the eclipse Standard Widget Toolkit. It allows you to easily write Eclipse SWT applications by using Groovy's builder mechanism.
Here is some SWT code using native Groovy:

When you run this (see below for setup details), the result looks like:

Here is the same example using SwtBuilder - note that this example does more because it actually prints some text 'Hello' to standard output when you press the button:

Examples 

For a short example of using the JFace builder for creating a standard application see the TextEditor sample.
You can find about 70 examples in the example directory in subversion or you can download them here.

For a comparison of the groovy and java code see here or see the latest code in subversion.

Platform dependency.

Groovy-swt is not platform dependent, but SWT is. So you need to make sure that you are running a SWT matching the platform you are running the application on. You can download the appropriate SWT version at eclipse (select the eclipse version, find the heading "SWT Binary and Source", and download the SWT for your platform)

Releases:

See the changelog for changes.

0.5:

Updated to eclipse 3.5 (see the changelog for all the other changes)

Please note the 0.5 was completely re-written to use FactoryBuilderSupport (to be able to be included in griffon), so there may be a few inconsistencies with version 0.3, but if you find any then please let me know. You can see the changelog for a list of all the changes.

Another major new feature in version 0.5 is the binding framework (build on top of the jface databinding and following the same style as the swing builder). You can find a little documentation with examples here.

0.3:

The sources (and README.txt telling you how to set up the libraries and dll's) can be found in subversion:

The jar file compiled against Eclipse SDK 3.3 jars can be found attached:

To run groov-swt application you also need some of the eclipse libraries (including SWT), so download groovy-swt-0.3-including-Eclipse-libs.ZIP and unzip all the jar files into the lib directory of your groovy installation. This zip file includes the windows version of SWT, so if you are on another platform you need to download the appropriate version of SWT at eclipse and include that instead.

  1. Aug 19, 2006

    I am making another implementaion of GroovySwt. It has some features mentioned below.

    • Instead of creating Factory classes source codes manually , I maked factory
      creating program and the program makes all factory's source code .
                    
    • Construction arguments are passed as last parameter. For example ,
          
           button(text:"hello world" , background:[100 , 100, 100] , SWT.PUSH)
           
      this code is same as below.
          
           Button btn = new Button(parent , SWT.PUSH) ;
           btn.setText("hello world") ;
           btn.setBackground(new Color(btn.getDisplay() , 100 , 100 , 100)) ; 
           
      ( note: The Color resource is managed automatically . )
      If Construction arguments' length is longer than 1 , just wrap those in list.
          
           tabItem(text:"hello world" , [SWT.NONE , 1])
                  
    •  You can define interfaces(includes event handlers) inline , or use your 
       custom implementation classes.
         
          button( SWT.PUSH ) {
               selectionListener(
                   widgetSelected:{ println "hello world"   /* define inline */ }
               )
          }
         
          // custom implementation of SelectionListener
          CustomSelectionListener listener = new CustomSelectionListener() ;
         
          button( SWT.PUSH ) {
              selectionListener(listener)    // use custom class
          }
               
    •  You can assign your custom tag name to existing class.  For example , 
       you can use 'BUTTON' to use org.eclipse.swt.widgets.Button . This mapping
       is configured by configuration file at runtime .
       (note : The default mapping (class name) is always usable.)
          

    My Implementation is not perfect currently , but it works fine.
    I want to contribute my works , is It possible ?

  2. Nov 14, 2006

    Yes, if you have some useful code to contribute, that would be great.

  3. Mar 10, 2008

    Hello,
    I get SWT.zip, but i don't know how to install . I've read some webs, but i haven't found nothing about this.

    Could someone help me about this? Im working on Windows XP. I've installed Groovy and Eclipse.

    Thanks!

  4. Apr 03, 2008


    Download the attachment called groovy-swt-0.3-including-Eclipse-libs.ZIP and unzip everything into you groovy/lib directory and remove the old groovyswt.jar from that directory.

     Frank

  5. Apr 09, 2008

    The link for groovy-swt-0.3-including-Eclipse-libs.ZIP is broken. Can someone fix it?

  6. Apr 10, 2008

    The link for groovy-swt-0.3-including-Eclipse-libs.ZIP should now be working again.

    Frank