Skip to main content

The SWT FAQ

If you have questions you believe should go in here, please let us know on the Platform developer mailing list or just open a new bug: https://bugs.eclipse.org/bugs/enter_bug.cgi?product=Platform&component=SWT.


Archive: Questions that are not relevant for the latest SWT versions but may be useful for older versions.


Q: What are the testing details that should be accompanied with an SWT patch submitted for review?
A: Testing details that are needed to be accompanied with an SWT patch submitted for review.

The SWT team is happy to receive patches and understand that providing patches is a challenging task for new contributors.

The following is a list that could be associated with the bugzilla bug report:

  • Results of the test snippet (if any) associated with that specified bug.
  • Results of the Widget's new behavior(if applicable) should be tested with various SWT examples: ControlExample.java, CustomControlExample.java and BrowserExample.java
  • For changes done to any specific widget, the widget specific SWT snippets from the list of: SWT Snippets should be used for testing.
  • When adding a new API try to add new JUnit tests as separate gerrit patch(as gerrit validation will only succeed when the new API is in master and an IBuild exists)
  • For Windows only patch, which all operating systems are covered like Windows7, Windows10 (at times specific version of Win10 if applicable)
  • For MAC only patch, patch should be tested on latest OS version.
  • For Linux only patch, which all GTK versions are covered (GTK3, GTK4 or both) and also if applicable what all desktop managers(gnome, wayland etc..) are covered.
  • For patches across multiple platform, the patch should have been tested on all affected platforms, if possible for the contributor
  • Also if you expect some behavior change in Eclipse, always launch Eclipse in self-hosted mode to verify the behavior.

Note: Patches satisfying all the items on the list will be reviewed with priority.

Q: What packages make up SWT?
A: Package names in SWT begin with the prefix org.eclipse.swt.

Here is the complete list:

  • org.eclipse.swt
  • org.eclipse.swt.accessibility
  • org.eclipse.swt.awt
  • org.eclipse.swt.browser
  • org.eclipse.swt.custom
  • org.eclipse.swt.dnd
  • org.eclipse.swt.events
  • org.eclipse.swt.graphics
  • org.eclipse.swt.internal.* (Not API, do not reference classes in these packages)
  • org.eclipse.swt.layout
  • org.eclipse.swt.opengl
  • org.eclipse.swt.ole.win32 (Windows only)
  • org.eclipse.swt.printing
  • org.eclipse.swt.program
  • org.eclipse.swt.widgets

Classes that are not in these packages do not belong to SWT.

Q: Does SWT support JavaBeans?
A: To the extent that it makes sense, given the constraints of operating system compatibility, SWT mirrors the beans behavior. An example of this is the use of standard beans mechanisms for event dispatch (EventListener, EventObject and adapter classes). Some aspects of the beans paradigm, such as the ability to create beans with null constructors, run counter to the constraints of the underlying operating systems that SWT runs on. For example, operating systems do not typically support creating a widget without specifying its parent.

The essence of the problem is that if you allow a widget to be created with a null constructor, then you can't actually create the o/s resources at the time the constructor runs (you would have to wait until later, after the parent has been set). We can not do this, since we always create the o/s resources in the constructor, and for performance/efficiency/consistency reasons do not keep slots in the object to hold whatever state would be required if the object were to be created later.
Q: Is there a GUI Builder for SWT?
A: SWT itself does not provide a GUI Builder (also known as "GUI Designer", "GUI Editor", "Visual Builder", "Visual Designer", "Visual Editor", or "Visual Composition Editor"). However, there is an Eclipse project called WindowBuilder which integrates an SWT GUI Designer. There are several other mature 'third-party' products listed at http://marketplace.eclipse.org/. Search for "GUI Builder".
Q: What is a snippet and why do I care?
A: A snippet is a minimal stand alone program that demonstrates functionality or lack of functionality.

Why is this important? Posting a snippet to the news group is the quickest way to get help. Including a snippet in a bug report is the fastest way to get a bug fixed. Taking the time to construct a snippet helps you understand the API of the library you are calling and focuses your thinking. For example, the SWT team uses C and Java snippets internally to prove or disprove problems in the operating system. Often, something you think is a bug is actually caused by something elsewhere in your program.

Snippets isolate problems. Code speaks louder than words.

Here is a minimal stand alone SWT program to help you get started:

public static void main (String [] args) {
    Display display = new Display ();
    Shell shell = new Shell (display);
    shell.open ();
    while (!shell.isDisposed ()) {
        if (!display.readAndDispatch ()) display.sleep ();
    }
    display.dispose ();
}
For a list of sample snippets, see the SWT snippets page.
Q: Where do I find the SWT source?
A: SWT's source can be retrieved directly from GIT as described in Using SWT from GIT. It's also included in eclipse as follows:
  • eclipse 3.4 and newer: plugins/org.eclipse.swt.<ws>.<os>.<arch>.source_X.X.X.<version>.jar
  • eclipse 3.3.2 and earlier: directory plugins/org.eclipse.rcp.source.<os>.<ws>.<arch>_X.X.X.<version>/src/
Q: How do I build an SWT jar for my platform?
A: The SWT jar can be built from the eclipse GIT repository using an Ant task:
  1. Retrieve SWT directly from GIT as described in Using SWT from GIT
  2. Load the projects org.eclipse.swt and org.eclipse.swt.WS.OS.ARCH where WS.OS.ARCH are the names of the windowing system, operating system and architecture of interest, respectively. For example, org.eclipse.swt.gtk.linux.x86.
  3. In the project org.eclipse.swt.WS.OS.ARCH, locate the file build.xml. This is an Ant script.
  4. Run Ant on the target build.jars. If you are using eclipse as your development environment, you can run Ant by selecting the file in the Navigator or Packages view, then selecting Run Ant... from the context menu.
  5. The script will create file swt.jar in the root directory of the org.eclipse.swt.WS.OS.ARCH project. When it has finished running you can Refresh this project to bring this jar into your eclipse workspace.
Q: How do I build the SWT Eclipse plug-in for my platform?
A: The SWT Eclipse plug-in can be built (excluding the signing of the jar) with the steps below.
  1. Retrieve SWT directly from GIT as described in Using SWT from GIT
  2. Load the projects org.eclipse.swt and org.eclipse.swt.WS.OS.ARCH where WS.OS.ARCH are the names of the windowing system, operating system and architecture of interest, respectively. For example, org.eclipse.swt.gtk.linux.x86.
  3. (optional) If you wish to compile SWT in your workspace, in the Navigator view rename the org.eclipse.swt project's .classpath_WS file to .classpath. This is useful if, for instance, you have a patch to apply to the SWT codebase before building the plug-in.
  4. Invoke the File > Export... menu item, then select the "Plug-in Development" - "Deployable Plug-ins and Fragments" wizard, and press Next.
  5. In the resulting wizard's plug-ins list, select the org.eclipse.swt.WS.OS.ARCH fragment.
  6. Specify a destination for the output.
  7. On the Options tab set the qualifier to the plug-in's desired qualifier string. This will be something like v3655 and must match the qualifier of Eclipse's SWT plug-in that is being replaced.
  8. Press Finish to export the plug-in.

Important note: Once the plug-in has been exported, the intermediate files that were created in order to make the plug-in jar are not deleted. As a result, subsequent exports of the same plug-in will NOT recompile the workspace contents, and therefore will not contain any changes that have been made in the interim. For such changes to be included in a re-export of the plug-in, these intermediate files must be deleted in order to force their recompilation. The easiest way to do this is to select the org.eclipse.swt.WS.OS.ARCH project, press F5 to refresh it, and then replace its content with the released content.

Q: How do I build the SWT JNI libraries for my platform?
A: SWT uses JNI to interact with the native widgets in the operating system. The SWT JNI libraries must be compiled for the windowing system, operating system and hardware architecture of interest. The libraries can be built either from the code in the GIT repository or from an eclipse SDK download.

In order to build the required libraries and run Eclipse, you will require a JDK (Java Development Kit) version that is supported by Eclipse. Check eclipse.org for details.

Building the SWT JNI libraries from the eclipse SDK download:

  1. Download an Eclipse distribution from http://www.eclipse.org/downloads/index.php.
  2. Unzip the distribution. This will create a directory called eclipse. This directory is subsequently referred to as <eclipseRoot>.
  3. Copy file <eclipseRoot>/plugins/org.eclipse.swt.<ws>.<os>.<arch>.source_X.X.X.<versionString>.zip to another directory and unzip it.
  4. Edit the file build.sh (or build.bat on Windows) in the current directory. Set the environment variables defined in that file to match the location of your JRE, etc. Save the file and close it.
  5. Run the build command (sh build.sh for UNIX and Linux platforms, build.bat for Windows). This will create the appropriate library file(s) in the current directory. For example, this will create swt-XXXX.dll files on windows, or libswt-XXXX.so files on Linux and Solaris.

Building the SWT JNI libraries from the eclipse GIT repository:
NOTE: These instructions require you to use Eclipse

  1. Follow these instructions to get SWT from GIT.
  2. Compile the project. This will create a folder called bin under the org.eclipse.swt project.
  3. Change directory into org.eclipse.swt/bin/library
  4. Edit the file build.sh (or build.bat on Windows) in the current directory. Set the environment variables defined in that file to match the location of your JRE, etc. Save the file and close it.
  5. Run the build command (sh build.sh for UNIX and Linux platforms, build.bat for Windows). This will create the appropriate library file(s) in the current directory. For example, this will create swt-XXXX.dll files on windows, or libswt-XXXX.so files on Linux and Solaris.

Building the SWT natives on Ubuntu 12.04, 14.04, etc. (without XULRunner support)

  1. Install dependencies with:
    $ sudo apt-get install libgnomeui-dev libxtst-dev freeglut3-dev libgtk-3-dev libgtk2.0-dev
  2. Follow these instructions to get SWT from GIT.
  3. Make sure the org.eclipse.swt project is compiled.
  4. Context menu > Run As > Ant Build...
  5. On Targets tab, select "build_libraries" (14th from end of list).
  6. On Properties tab, add these two properties:
    • to make the build succeed even without a XULRunner installation: targets = install
    • to enable GTK3 support: machine_gtk3 = localmachine
  7. On JRE tab, select Execution Environment JavaSE-1.8.
  8. If the JAVA_HOME environment variable is not yet set, go to Environment tab and set it to the root directory of the JDK.
  9. Run the External Tools launch configuration. From now on, this is the only step you have to do to build natives.
Q: How do I add a new native to the SWT JNI libraries for my platform?
A: For the steps to add new natives to the SWT JNI libraries, see Generating the SWT JNI Code.
Q: How do I add a new native to the SWT JNI libraries for Cocoa?
A: For the steps to add new natives to the SWT Cocoa JNI libraries, see Generating the SWT PI Code for Cocoa.
Q: How do I build the 64-bit version of SWT GTK?
A: Follow these steps to extract the 64-bit SWT GTK source code from GIT and produce your own build:
  1. Start Eclipse and retrieve the org.eclipse.swt, org.eclipse.swt.gtk.linux.x86_64 and org.eclipse.swt.tools projects from dev.eclipse.org (see How to use SWT from GIT, use .classpath_gtk as the .classpath file in the org.eclipse.swt project).
  2. Note this is not needed for builds after 4.3 M3 as the code was changed to 64-bit. Convert SWT's Java from its 32-bit form to 64-bit:
    • To convert the Java code in-place, go to the build.xml ant script in the org.eclipse.swt.gtk.linux.x86_64 project and run its "replace.32.to.64" target. Once this target has completed you must refresh (F5) the org.eclipse.swt project in order to pick up the changes.
    • Run the "build_libraries" target in the same build.xml file. Refresh (F5) the org.eclipse.swt.gtk.linux.x86_64 project when this target has completed, to pick up the new libraries.
  3. You're done! The org.eclipse.swt.gtk.linux.x86_64 project will now contain the 64-bit native libraries, and if you're interested, the 64-bit source code will now be available in the org.eclipse.swt.gtk.linux.x86_64/src folder.
Q: Which GTK version do I need to run SWT?
A: SWT requires the following GTK+ versions (or newer) to be installed:
  • Eclipse/SWT 4.16.x: GTK+ 3.20.0 and its dependencies
  • Eclipse/SWT 4.15.x: GTK+ 3.14.0 and its dependencies
  • Eclipse/SWT 4.11.x - 4.14.x: GTK+ 3.10.0 and its dependencies
  • Eclipse/SWT 4.10.x: GTK+ 3.8.0 and its dependencies
  • Eclipse/SWT 4.6.x - 4.9.x: GTK+ 2.24.0 and its dependencies (for GTK+ 2) OR GTK+ 3.0.0 and its dependencies (for GTK+ 3)
  • Eclipse/SWT 4.5.x: GTK+ 2.18.0 and its dependencies (for GTK+ 2) OR GTK+ 3.0.0 and its dependencies (for GTK+ 3)
  • Eclipse/SWT 4.4.x: GTK+ 2.10.0 and its dependencies (for GTK+ 2) OR GTK+ 3.0.0 and its dependencies (for GTK+ 3)
  • Eclipse/SWT 4.3.x: GTK+ 2.10.0 and its dependencies
  • Eclipse/SWT 3.8.x: GTK+ 2.6.0 and its dependencies
  • Eclipse/SWT 3.6.x - 3.7.x: GTK+ 2.4.1 and its dependencies
  • Eclipse/SWT 3.0.x - 3.5.x: GTK+ 2.2.1 and its dependencies
  • Eclipse/SWT 2.1.x: GTK+ 2.0.6 and its dependencies
Note that Eclipse/SWT 4.3.x includes early access support for GTK+ 3.x.

Starting from Eclipse/SWT 4.4.x, Linux builds come with GTK+ 3 support enabled by default.

Starting from Eclipse/SWT 4.10.x, Linux builds only come with GTK+ 3 support, GTK+ 2 is no longer supported.

You can determine which version(s) of GTK you have installed with rpm -q gtk2 or rpm -q gtk3.

Q: Which GTK version is being used by SWT?
A: Since Mars (4.5), SWT sets the org.eclipse.swt.internal.gtk.version system property to the version being used. To display this value in Eclipse, go to Help > Installation Details > Configuration.
Look for the line: org.eclipse.swt.internal.gtk.version=3.14.12, where 3.14.12 corresponds to the GTK version currently used by Eclipse.
Q: Why do I get an UnsatisfiedLinkError when launching from the 64-bit Cocoa port?
A: You need to be sure that you are forcing your launch to use a 64-bit VM. Apple ships most of their VMs with 32 and 64-bit binaries. To force the VM to run in 64-bit mode, use the -d64 option as VM argument in your launch configuration.

If you are launching with SWT from GIT in your workspace (see How to use SWT from GIT, use .classpath_cocoa as the .classpath file in the org.eclipse.swt project and make sure you have the org.eclipse.swt.cocoa.maxosx.x86_64 project in your workspace), then you also need to modify the .classpath file as follows:

         attribute value="org.eclipse.swt.cocoa.macosx"
change to:
         attribute value="org.eclipse.swt.cocoa.macosx.x86_64"

Q: How to enable external manifest file on Windows?
A: Follow below steps(ref. MSDN blog) on Windows to enable external manifest file:
  • Open Windows Registry Editor.
  • Locate and then click the following registry subkey: HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\SideBySide
  • On the Edit menu, point to New, and then click DWORD Value.
  • Type PreferExternalManifest, and then press ENTER.
  • Right-click PreferExternalManifest, and then click Modify.
  • In the Edit DWORD Value dialog box, click Decimal under Base.
  • In the Value data box, type 1, and then click OK.
  • On the File menu, click Exit to close Registry Editor.
  • The name of the manifest file must match the name of the executable. In the case of eclipse, the executable is javaw.exe and the manifest file must have the name javaw.exe.manifest. The manifest file must be in the jre\bin folder for the VM you use to launch Eclipse. Note: the eclipse.exe executable does not launch Eclipse; eclipse.exe displays a splash screen and then invokes the Java VM.

    Here is a sample manifest file to download.

Q: How to enable 'dpiAwareness' setting on Windows 10?
A: In order to enable dpiawareness on Windows10, there must be a manifest file located in the same place as the executable that launches the application.
Here is a sample manifest file to download, for more details on how to enable external manifest file on Windows
Q: On GTK, how do I change the default fonts and colors of widgets?
A: GTK uses a file called .gtkrc which is located in your home directory. On some versions of Linux, this file is called .gtkrc-2.0. Here is an example of the content of that file which sets the font and colors for Eclipse:
      style "eclipse" {
        font_name = "Sans 12"
        bg[NORMAL] = "#d6d3ce"
        bg[ACTIVE] = "#c7c2bc"
        bg[INSENSITIVE] = "#828282"
        bg[PRELIGHT] = "#3a6ea5"
        fg[NORMAL] = "#000000"
        fg[ACTIVE] = "#000000"
        fg[INSENSITIVE] = "#d4d0c8"
        fg[PRELIGHT] = "#ffffff"
      }
      class "GtkWidget" style "eclipse"
    

To turn off anti-aliasing of fonts you should use the facilities available in your desktop if possible, such as the Gnome Font Properties dialog. An alternate approach is to ensure that your ~/fonts.conf or system-wide fonts.conf file contains the following:

    <match target="font">
    <edit name="antialias" mode="assign"><bool>false</bool></edit>
    <edit name="hinting" mode="assign"><bool>true</bool></edit>
    <edit name="autohint" mode="assign"><bool>false</bool></edit>
    </match>
    
Q: Why do I get the error "java.lang.NoClassDefFoundError: org/eclipse/swt/internal/XXX/OS."?
A: On some platforms such as GTK, SWT is broken into multiple jars. Therefore, you must ensure that all required jars are on the classpath. The required jars are:
  • swt.jar (all platforms)
  • swt-pi.jar (some platforms like GTK and Carbon)
  • swt-mozilla.jar (for Browser widget on GTK and Motif)
  • swt-gtk.jar (on Linux Motif)
Q: Why do I get the error "java.lang.UnsatisfiedLinkError: no swt-win32-3232 in java.library.path."?
A: The SWT JNI libraries must be found at runtime. As of Eclipse/SWT 3.3 this will happen automatically if the platform-specific SWT jar is on the java classpath. For older Eclipse/SWT versions you need to place the SWT JNI libraries in a place where the Java Virtual Machine will find them.

The SWT JNI libraries are included in the SWT download.

A Java application can be informed of the location of the libraries in several ways:

  1. Set the library path in the VM launch arguments.

    In the Launch Configuration Dialog of eclipse select the Arguments page, and in the VM arguments field enter: -Djava.library.path={runtime-library-path} Where the runtime-library-path is the absolute path to the directory containing the native code library (see above).

    This solution means that the SWT libraries have to be manually added to every project that uses SWT.

  2. Set the library location in an environment variable.

    For Windows this is done by editing the PATH environment variable to include the above mentioned runtime-library-path.
    in Win 9X this is done by editing the autoexec.bat file,
    on NT or 2K the variable is edited through My Computer > Properties > Advanced > Environment Variables.

    On linux/unix, modify the LD_LIBRARY_PATH environment variable to include the runtime-library-path.

  3. Copy the SWT library to a directory that is already on the Java library path. For example, the jre/bin directory.

    The disadvantage of this solution is that every time you upgrade eclipse you have to remember to copy the native code library.

Starting with Eclipse 3.1, the SWT plugin that comes with Eclipse, includes the JNI libraries in the SWT jar. This was done to support OSGi and Eclipse RCP. If you are using the plugin you must extract the libraries to include them in the path.

Q: Why do I get an error beginning with "...SWTException: Unsupported or unrecognized format" on startup?
A: There is a bug in the Konqueror decompressor which causes Eclipse to be improperly extracted if used. To avoid this the Eclipse archive should first be downloaded to your machine and then extracted using unzip at the command line.
Q: Why do I get the error "error while loading shared libraries: ./libXm.so.2: file too short" on startup?
A: You must use unzip, not jar, to extract your eclipse download. Jar does not extract the libXm.so.2 link file properly.
Q: Why do I get the error "java.lang.UnsatisfiedLinkError: libXm.so.2: cannot open shared object file: No such file or directory."?
A: On motif, the SWT library links against the open motif library libXm.so.2. On most platforms, the open motif library is installed and added to the library path by default. However, on some Linux platforms, either open motif is not installed or is not on the default library path, or lesstif is installed. Eclipse (and the standalone version of SWT) includes the libXm.so.2 library in the root of the Eclipse install.

You need to either launch Eclipse from the installed directory or modify the LD_LIBRARY_PATH environment variable to include the location of libXm.so.2.

Note -Djava.library.path is used by the VM to locate libraries for System.loadLibrary calls. However, it does not update the LD_LIBRARY_PATH and therefore does not help libraries locate other libraries.

Q: Why do I get an error beginning with "org.eclipse.swt.SWTError: Font not valid" on startup?
A: This error occurs if a recognized font cannot be resolved at startup time. The scenario where this has been observed to sometimes happen is when accessing a remote machine via Reflection X. This situation can be made to work by changing some settings in Reflection X. For information about how to do this see bug 33828.
Q: Why do I get the error "java.lang.OutOfMemoryError: Java heap space" when I try to create a very large Image?
A: This error occurs if there is not enough Java heap space to create a very large image, for example:
new Image(display, 10985, 1102);

To allocate more heap space for the Java VM, start eclipse with a VM argument that allocates more heap, for example:
eclipse -vmargs -Xmx400m

allocates 400 Mb of heap space.
Q: How do I enable debug mode in Eclipse for SWT?
A: Follow these steps:
  1. Create a .options file in the same directory as your eclipse executable.
  2. Place the following lines in the .options file:
    org.eclipse.ui/debug=true
    org.eclipse.ui/debug/swtdebugglobal=true
  3. Start up eclipse from the command line with the debug flag: ./eclipse -debug

All messages from SWT will be printed to the console window.

Q: Can I use Swing or AWT inside Eclipse?
A: Yes. As of Eclipse 3.2, Swing and AWT can be embedded in SWT on Windows, GTK and OS X. However it is important to note that a supporting JDK is required on some platforms in order for this to work. Specifically, GTK require that JDK 1.5 or newer be used. Additionally, AIX and Solaris users must ensure that AWT is using XToolkit, as described in Why does the SWT_AWT bridge not work for me on AIX or Solaris?

See this snippet for an example of how to use the API.

Q: Why does Eclipse (4.2 and greater) on GTK crash with a call to org.eclipse.swt.internal.C.memmove originating from some graphics call?
A: Eclipse 4.2 (and greater) makes use of functions in cairo that were not present in the 1.0.2 version of cairo that shipped with Eclipse by default. Since all modern Linux distributions that ship GTK will ship a more recent version of the Cairo library, it was decided to stop shipping the library.

If you are running an older Linux distribution that does not include cairo, you will have to install the cairo library (any version greater than 1.2)

Q: Why can't I subclass SWT widgets like Button and Table?
A: You can but it is not recommended. The article Creating Your Own Widget using SWT describes the reasons in detail:

Subclassing Widgets Directly

In extreme circumstances, you may need to subclass a widget other than Canvas or Composite. We recommend against doing this unless all other avenues have been explored and exhausted. Try to wrap the widget first, before subclassing it. Here is why:

  • Subclasses may inherit a lot of API that makes no sense, and must be overridden. In Java, you cannot override a method and change the return type; therefore you cannot reimplement some methods.
  • Subclassing is typically not the safest way to extend a class that you do not own. For a simplified list of the common arguments, see the article by Bill Venners in the Nov '98 issue of Java World called "Inheritance versus composition: Which one should you choose?" at: http://www.javaworld.com/javaworld/jw-11-1998/jw-11-techniques.html
  • Widget subclasses are almost certainly guaranteed to be platform-specific unless great care is taken to ensure that they work on all platforms.
  • Subclassed widgets can be affected by changes in the non-API implementation of the superclass.
  • Subclassing may cause bad system-level bugs, and runs the risk of leaking resources. For example, if a subclass reimplements a method without making certain that dispose code from the superclass method is still called, then the new method will leak system resources.
  • Binary incompatibility across releases becomes possible. If a method signature or field name changes, or new methods or fields are added, there may be a name conflict in the widget subclass. Only Canvas and Composite are guaranteed not to have name conflicts in future releases.
  • See any paper by Leonid Mikhajlov on the "Fragile Base Class Problem". You can find his paper "A Study of The Fragile Base Class Problem" at: http://www.cas.mcmaster.ca/~emil/publications/fragile/

Subclassing Canvas or Composite is the best way to ensure that your widget works on all SWT platforms. The 'is-a' test in this case tests whether your widget is-a basic or compound widget. Subclassing anything else requires asking if the new widget is an SWT native widget of the type being subclassed. For example, a 100% Java portable PictureLabel is not an SWT native Label.

When subclassing anything other than Composite or Canvas you must override the method protected void checkSubclass() to do nothing. Make sure you read the method comment before overriding it.

Q: Why are some events like Selection not fired in response to programmatic widget changes?

A: See Why doesn't a widget send events when I change it programmatically?.

Q: Why don't SWTError and SWTException override all printStackTrace methods?
A: SWTError and SWTException each contain a slot which records the original exception (if it is known) that caused the SWTError or SWTException to be thrown. The printStackTrace() method in these classes has been overridden to print the stacktrace of the original exception as well.

The problem with the other two API methods (i.e. printStackTrace(PrintStream) and printStackTrace(PrintWriter)) is that the classes mentioned in their arguments (PrintStream and PrintWriter) are not available in the CLDC class library. Because we need to maintain compatability with CLDC, we can not override them.

Q: How do I print using my favorite Unix print program?
A: You can use the External Tools support in Eclipse to print files using external programs. Just create a new Program launch config from the External Tools dialog that launches your favorite printing utility and you can pass the selected resource as a parameter.
  1. Select the file you want to print.
  2. Run > External Tools > External Tools...
  3. Select "Program" in the Configurations: list.
  4. Click New
  5. Type: Print Selected File
    in the Name: field.
  6. Type the full path name of your favorite printing program in the Location: field. For example: /usr/bin/lpr
  7. Type: ${container_loc}/${resource_name}
    in the Arguments: field.
  8. Click Apply
  9. Click Run
Q: How can I tell whether or not there are any printers installed?
A: The method org.eclipse.swt.printing.Printer.getPrinterList() can be used to determine whether or not there are any printers installed on the system. This method returns an array of PrinterData objects. If the length of the array is 0, then there are no printers available. If there are 1 or more elements in the array, then each PrinterData object represents an installed printer.
Q: How do I print a snapshot of a widget?
A: To print an image, the image needs to be created on the printer. A common mistake is to try to print an image that was created on a display.

First take the snapshot into an image that was created on the display, and then get the imageData and create a new Image just for printing. Something like this:

  // Take the snapshot into a display Image
  Point size = myWidget.getSize();
  Image image = new Image(display, size.x, size.y);
  GC gc = new GC(myWidget);
  gc.copyArea(image, 0, 0);
  gc.dispose();

  // Get the ImageData and create a new printer Image from it
  ImageData imageData = image.getImageData();
  Image printImage = new Image(printer, imageData);

Then print using printImage. (Remember to dispose both images when you are done with them).

This is true for all graphic objects that you want to use for printing: Fonts, Colors, and Images. You need to recreate them on the printer before you can use them for drawing on the printer GC. You might get lucky sometimes, if the printer happens to have this font or that color, but you won't get lucky on all platforms and for all printers, and you won't get lucky for images. So get into the habit of thinking "Did I create this graphics resource on the same device that I am now trying to draw to?"

Q: Why does everything I print seem so small?
A: When you are printing something from the screen to a printer device, you need to think about scaling. What is happening is that your figure is being drawn in something like 72 x 72 dots per inch on the screen, but then you are printing it to something like a 300 x 300 or 600 x 600 DPI printer. What you have to do is ask both the screen and the printer what their DPI is, and then figure out what scale factor you need to use when you draw to the printer GC. The code might look like this:
      Point screenDPI = display.getDPI();
      Point printerDPI = printer.getDPI();
      int scaleFactor = printerDPI.x / screenDPI.x;
    
Please see the ImageAnalyzer example in the org.eclipse.swt.examples project for an example of printing an image to a printer. Look at method menuPrint(). Note however that this is a pretty rough example, and it does not take into account what happens if the image is larger than the page - it just clips.

Text printing takes some thought also. You need to wrap words, put your page breaks in the right place, know where your margins are, etc. The SWT StyledText widget does its own text printing. If you need to see a more complicated example of printing a document, wrapping, margins, multi-page, etc., then please look at the inner class Printing in StyledText in org.eclipse.swt.custom. An instance of this class is created by the StyledText.print(Printer) API method.

Note also that when printing, any graphics objects that you use to draw, such as fonts, colors, and images, need to be re-created on the printer device before you can draw them to the printer GC.

We also recommend that you run your print job in a separate thread and not in the UI thread, because printing a long document to a slow printer can hang your entire UI while the printer spools.

Unfortunately, printing is not simply a matter of just passing in the printer GC instead of the screen GC. Printing has to be designed into your drawing classes. You don't have scrollbars anymore, so you have to either cut stuff off and print it on another page, or reorganize it, or scale it down, or wrap it somehow. Maybe you want to give some control to your users, and let them specify how many inches something should be, or whatever - maybe give them a ruler. There is no magic bullet - you will definitely have to give it some thought.

Q: What does computeTrim mean for a Printer?
A: The "trim" is the area of the page that the printer cannot print on. Usually, computeTrim is used as follows:
Rectangle trim = printer.computeTrim(0, 0, 0, 0);

A printer that can print edge-to-edge would have a trim.x and trim.y of 0,0. The trim.width and trim.height would be the same as the width and height of the physical paper.

A 600 dot per inch printer that cannot print on the leftmost 0.18 inch of the paper would have a trim.x of -108. So to print starting at precisely 1" from the left edge, take 600 (i.e. 1") and "add" -108 (i.e. subtract 0.18") to get the starting x position. Trim positions are negative because they are relative to the 0,0 position of the client area (or 'printable area') of the paper.

Q: How can I implement user interaction tests?
A: The method org.eclipse.swt.widgets.Display.post(Event) can be used to post mouse and keyboard events into the OS, which emulates the user performing the specified action. This is the typical approach that is used for implementing JUnit test cases.

There are also stand-alone applications available for automating SWT user interaction tests:

Q: On gtk, why does my widget's selection disappear when it loses focus?
A: This effect may be seen if KDE color settings are being utilized. This can be fixed by unchecking the "Apply KDE colors to non-KDE apps" option in the KDE colors control panel.
Q: On gtk and motif, why are some widgets hidden when they are visible on Windows or the Macintosh?
A: The SWT.CENTER, although undefined for composites, has the same value as SWT.EMBEDDED which is used to embed widgets from other widget toolkits into SWT. On some operating systems (GTK, Motif), this may cause the children of this compostite to be obscured. Do not use the SWT.CENTER style when creating a composite.
Q: Which platforms have advanced graphics support?
A:
  • SWT for Windows uses GDI+ for advanced graphics, which is installed on Windows XP and newer. Windows 2000 users can download and install a Microsoft package containing GDI+.
  • SWT for GTK+ and Motif use Cairo for advanced graphics, which is installed on systems with GTK+ 2.8 or newer (for example RHEL 5).
  • SWT for OS X uses Quartz for advanced graphics, which is installed on all supported OS X versions.
Q: What is the SWT Browser widget?
A: The SWT Browser widget wraps a native web browser engine and can be used to display HTML documents, provide browser-like experience or create hybrid web/native applications.
Q: Which platforms support the SWT Browser, and which native renderers are available?
A: The SWT Browser is currently available on all supported platforms. Available renderers and corresponding widget style flags are:

RendererPlatformStyle FlagDefault
Internet ExplorerWindowsSWT.IEYes
WebKitmacOS, Linux GTKSWT.WEBKITYes
Edge (Chromium-based)WindowsSWT.EDGENo
ChromiumAllSWT.CHROMIUMNo

Note: As of Eclipse/SWT 4.8, Mozilla (XULRunner) renderer is no longer supported, SWT.MOZILLA flag is deprecated and has no effect.

Browser instances created with style SWT.NONE will use the default platform renderer according to the table above. Default renderer does not require additional software installation. It is possible to override the default native renderer, see How do I specify the default type of native renderer that is used by the Browser?.

For additional information on specific renderers see How do I explicitly use Chromium as the Browser's underlying renderer? and How do I explicitly use Edge as the Browser's underlying renderer?.

Q: How do I specify the default type of native renderer that is used by the Browser?
A: The default native renderers that are used for SWT.NONE-style Browsers are listed in Which platforms support the SWT Browser, and which native renderers do they use?. Default is chosen to not require additional software installation and to preserve backward-compativle behavior.

A user can set a property to specify the type of native renderer to use for SWT.NONE-style Browsers. Setting this property does not affect Browsers that are created with explicit renderer styles such as SWT.WEBKIT or SWT.CHROMIUM. The property name is org.eclipse.swt.browser.DefaultType and valid values for it currently include "webkit", "ie" (since 4.3), "chromium" (since 4.17) and "edge" (since 4.19). This property must be set before the first Browser instance is created.

Note: As of Eclipse/SWT 4.8, Mozilla (XULRunner) renderer is no longer supported, the value mozilla has no effect.

A user can specify a comma-separated list of native renderers, in order of preference, for the org.eclipse.swt.browser.DefaultType value. Valus not applicable to a particular platform are ignored. For example, the value of edge,chromium will change the default to Edge on Windows and Chromium on other platforms.

The best opportunity for a user to set this property is by launching their application with a -D VM switch (eg. add to the end of the eclipse.ini file: -Dorg.eclipse.swt.browser.DefaultType=chromium).

An alternate approach that an eclipse application may use is to provide a BrowserInitializer implementation that sets this property. This implementation will be invoked when the first Browser instance is about to be created. The steps to do this are:

  • Create a fragment with host plug-in org.eclipse.swt.
  • In this fragment create class org.eclipse.swt.browser.BrowserInitializer.
  • Implement a static initializer in this class that sets the org.eclipse.swt.browser.DefaultType property.
Q: Which Internet Explorer version do Browsers on Windows use?
A: All supported Windows versions provide Internet Explorer 11.

An HTML document can override this behavior by including a X-UA-Compatible meta tag as described in Defining Document Compatibility.

Additionally, the Browser's default compatibility mode can be overridden by setting Java property org.eclipse.swt.browser.IEVersion to a value from Browser Emulation before the first Browser instance is created. For example, adding the line -Dorg.eclipse.swt.browser.IEVersion=7000 to the end of eclipse's eclipse.ini file will revert all IE-based Browsers to use IE7 compatibility mode by default.

Q: What do I need to run the SWT Browser inside Eclipse on Linux?
A: Default Browser renderer for Linux GTK is WebKitGTK+ 2. Generally, it will be installed as part of the GTK-based desktop environment.

Particular package name depends on the distribution. For example:

  • RHEL, Fedora: webkit2gtk3 or webkitgtk4
  • Debian, Ubuntu: libwebkit2gtk-4.0-37
  • SLES, openSUSE: libwebkit2gtk-4_0-37

Note: as of Eclipse/SWT 4.8, Mozilla (XULRunner) is no longer supported.
Note: as of Eclipse/SWT 4.15, WebKitGTK 1.x is no longer supported.

Chromium renderer is also available for Linux, see How do I explicitly use Chromium as the Browser's underlying renderer?.

Q: How do I explicitly use Chromium as the Browser's underlying renderer?
A: To specify that a Chromium renderer be used by a Browser instance, create it with style SWT.CHROMIUM (since 4.17) or set the Java property org.eclipse.swt.browser.DefaultType=chromium.

You can get the SWT-Chromium libraries from the Eclipse SDK or from the standalone SWT Chromium support libraries section on the download page.

To use the Chromium libraries from the Eclipse SDK:

  • Install the CEF binaries in Eclipse from the p2 repo - CEF p2 repo from Make technology
  • Add the required jars to classpath of project:
    • SWT-Chromium fragment (org.eclipse.swt.browser.chromium.<ws>.<os>.<arch>.jar)
    • SWT fragment (org.eclipse.swt.<ws>.<os>.<arch>.jar)
    • CEF binary (com.make.chromium.cef.<ws>.<os>.<arch>.jar)

To use the Chromium libraries from the standalone SWT downloads:

  • Get CEF binaries for your platform from the p2 repo:
  • Add the required jars to classpath of project:
    • SWT-Chromium standalone jar (swt-chromium.jar)
    • SWT standalone jar (swt.jar)
    • CEF binary (com.make.chromium.cef.<ws>.<os>.<arch>.jar)

To launch Eclipse with Chromium as the default browser type:

  • Install the CEF binaries in Eclipse from the p2 repo - CEF p2 repo from Make technology
  • In eclipse.ini, add -Dorg.eclipse.swt.browser.DefaultType=chromium under -vmargs.
Q: How do I explicitly use Edge as the Browser's underlying renderer?
A: To specify that an Edge renderer be used by a Browser instance, create it with style SWT.EDGE (since 4.19) or set the Java property org.eclipse.swt.browser.DefaultType=edge.

Edge rendering back-end uses the WebView2 component, which is based on, but distinct from the Edge browser itself. WebView2 has to be installed separately from one of the following sources:

  • A stand-alone runtime installer, either web or offline (Download the WebView2 Runtime from Microsoft).
    This runtime will be shared between all applications on the machine and will auto-update itself independent of your application.
  • A fixed-version archive with all the necessary files (Same link as above).
    This is a complete, fixed set of files to be included with your application. Unlike the first option, you have complete freedom in bundling, packaging and updating it.
  • Beta, Dev or Canary version of the Edge browser (https://www.microsoftedgeinsider.com/en-us/download).
    This option is convenient for testing, but production deployments should use the previous two options.

Note: Stable Edge browser installations don't provide a WebView2 component.

See also Distribution of apps using WebView2 on MSDN.

SWT will automatically locate installed browsers and runtimes. In case you want to use fixed-version binaries or override the automatically chosen version, set the org.eclipse.swt.browser.EdgeDir Java property to the directory containing msedgewebview2.exe. For example:

    java "-Dorg.eclipse.swt.browser.EdgeDir=c:\Program Files (x86)\Microsoft\Edge Beta\Application\88.0.705.29" ...

WebView2 creates a user data directory to stores caches and persistent data like cookies and localStorage. All WebView2 instances in an application and all instances of the same application share this directory.

The default user directory location is %LOCALAPPDATA%\<AppName>\WebView2, where <AppName> is defined with Display.setAppName(). This location can be overridden on a per-process basis by setting the org.eclipse.swt.browser.EdgeDataDir Java property.

Q: What configuration options are avaibale for the Edge renderer?
A: Several Java properties are available to fine-tune the behavior of the Edge renderer.

The properties org.eclipse.swt.browser.EdgeDir and org.eclipse.swt.browser.EdgeDataDir are described in How do I explicitly use Edge as the Browser's underlying renderer.

The property org.eclipse.swt.browser.EdgeArgs defines command line arguments to be passed directly to the Chromium process. For a list of available arguments (unofficial) see https://peter.sh/experiments/chromium-command-line-switches/.
For example, to disable GPU rendering use:

    java -Dorg.eclipse.swt.browser.EdgeArgs=--disable-gpu ...

The property org.eclipse.swt.browser.EdgeLanguage is a language or language+country code that defines the browser UI language and preferred language for HTTP requests (Accept-Languages header). Example values: en, ja, en-GB, de-AT, etc.

Informational property org.eclipse.swt.browser.EdgeVersion contains the version of the browser currently in use.

Note: All of the properties described above must be set before the first instance of the Edge-based Browser is created.

Q: What are the limitations of the Edge Browser renderer?
A: Due to API differences and WebView2 implementation details, Edge renderer doesn't implement complete Browser widget API. Some features aren't available or behave differently compared to the older Internet Explorer renderer.

  • AuthenticationListener: Unsupported. Missing upstream API.
  • StatusTextListener: Unsupported. Conceptually obsolete.
  • VisibilityWindowListener.hide: Unsupported. Conceptually obsolete.
  • ProgressListener.changed: Unsupported. Missing upstream API.
  • ProgressListener.completed: Fires for the top level document only. On Edge version 88 and later it matches the DOMContentLoaded JavaScript event, on earlier versions it matches the load JavaScript event.
  • LocationListener.changing, OpenWindowListener.open: These events may return values and have to run synchronously. Calling evaluate() and getText() from their handlers is impossible and will throw an exception.
  • LocationListener.changed: Fires for the top document only. May not fire when using setText().
  • KeyListener, MouseListener: Unsupported. Missing upstream API.
  • evaluate(String script, boolean trusted): The parameter trusted is ignored. Everything runs in the same security context scoped to a given user directory.
  • execute(String script): Execution is always asynchronous. You can't observe evaluation effects immediately after the execute() call. Use evaluate() for synchronous script evaluation.
  • getText(): Returns the live contents of HTML document as seen by the browser. This can differ from what was set with setText() due to browser processing and script execution.
    Note: Implemented as evaluate("return document.documentElement.outerHTML").
  • setText(): This method uses data: URLs internally (WebView2 implementation detail) and these URLs might appear in the LocationEvent.url field.
  • getCookie(), setCookie(): Unsupported. WebView doesn't have a global cookie manager.
  • setUrl(String url, String postData, String[] headers): The parameters headers and postData require Edge 88 or later (currently in Beta).
  • close(): Unsupported. Missing upstream API.
  • Unless loaded from a file:// URL, pages don't have access to other file:// URLs.
  • Pages navigated to with setText() might appear to have data: URLs in event parameters and elsewhere. (Internet Explorer uses about:blank URL in this case).

Q: How do I hide the Browser's scrollbars?
A: The only way to influence whether scrollbars are shown in a Browser or not is for the document it's showing to specify a style such as 'overflow:auto' or 'overflow:hidden'. There are two ways to do this:
  1. If you are providing the document being shown then its body tag can specify this style like <body style='overflow:hidden'>.
  2. Alternatively, this style can be changed in the DOM for any document that has been loaded. The easiest way to do this is with a line like <yourBrowser>.execute("document.getElementsByTagName('body')[0].style.overflow='auto'");.
Q: How do I set a proxy for the Browser to use?
A:
  • Windows: All Browser instances, regardless of native renderer, automatically use Windows' global proxy settings. These settings can be changed at any time in the Windows Control Panel.
  • OS X: All Browser instances, regardless of native renderer, automatically use OS X's global proxy settings. These settings can be changed at any time in the OS X System Preferences.
  • Linux/Solaris: Proxy information must be explicitly specified by setting values for java properties network.proxy_host and network.proxy_port (@since 3.4). These properties are checked the first time a Browser is created, and if set, will be used for all non-local HTTP, HTTPS and FTP requests in all Browser instances. A user wishing to set these values should do so by passing -D... VM arguments to the JRE at startup.
Q: Why does the SWT_AWT bridge not work for me on OS X, even after updating Java or the OS?
A: Prior to Eclipse 3.6, both the Carbon and Cocoa versions of the SWT only supported embedding the SWT in an AWT Frame. In Cocoa SWT 3.6 and later, embedding works in either direction. If you have the right environment, next, make sure you are starting your application with the argument '-XstartOnFirstThread'. This is necessary even if you will be using Swing or the AWT. Next, make sure your code is calling each toolkit on the correct thread. Code that calls into the SWT must be running on the main thread, and code that calls the AWT or Swing must be called from a thread other than the SWT thread, using either java.awt.EventQueue.invokeLater() or javax.swing.SwingUtilities.invokeLater(). NOTE: This is true on ALL PLATFORMS, not just Mac OS X, but your application is almost guaranteed to hang or be very unstable if you don't follow this rule on the Mac.
Q: Why is the Print menu item disabled in Eclipse on GTK (Linux, UNIX)?
A: GTK+ began supporting printing in version 2.10. To print in Eclipse, you need to have Eclipse version 3.3 or later, and at least GTK+ 2.10.0. To determine what GTK+ version you are running, type: rpm -q gtk2.

Prior to Eclipse 3.3, printing was not implemented on GTK; however you can use the External Tools support in Eclipse to print files using lpr or some other printing utility. See here for the steps to set this up.

Q: Why do I get the error "org.eclipse.swt.SWTException: Invalid thread access"?
A: In SWT, by definition the thread that creates the Display is a UI-thread. This thread is responsible for reading and dispatching events from the operating system event queue, and invoking listeners in response to these events. Listener code is executed in the UI-thread. This makes an SWT application generally quite responsive, behaving like most other operating system programs. However, any long operation, when executed by a listener, will run in the UI-thread and prevent it from reading and dispatching events, thus hanging the application.

If a listener has a large amount of work to perform, instead of performing that work in the UI-thread, it can fork a separate thread so the UI-thread can continue dispatching events. If the other thread needs to execute code that accesses an SWT object, such as changing the string in a label, there is a concurrency issue. At the very least, some kind of synchronization is necessary to prevent the operating system or SWT from crashing, hanging or behaving unpredictably.

SWT implements a single-threaded UI model often called apartment threading. In this model, only the UI-thread can invoke UI operations. SWT strictly enforces this rule. If you try and access an SWT object from outside the UI-thread, you get the exception "org.eclipse.swt.SWTException: Invalid thread access". Different operating systems have different rules governing threads, UI components and synchronization. Some use a single-threaded UI model like SWT. Others allow only one thread at a time in the window system library, controlling access through a global lock. This type of multi-threaded UI model is often called free threading. Currently, in order to be simple, efficient and portable, SWT is apartment threaded.

To allow background threads to perform operations on objects belonging to the UI-thread, the methods syncExec(Runnable runnable) and asyncExec(Runnable runnable) of Display are used. These are the only methods in SWT that can be called from any thread. They allow a runnable to be executed by the UI-thread, either synchronously, causing the background thread to wait for the runnable to finish, or asynchronously allowing the background thread to continue execution without waiting for the result. A runnable that is executed using syncExec() most closely matches the equivalent direct call to the UI operation because a Java method call always waits for the result before proceeding, just like syncExec().

The following code sets the text of a label from a background thread and waits for the operation to complete:

display.syncExec(
  new Runnable() {
    public void run(){
      label.setText(text);
    }
  });
Q: Why do I have to resize my shell to get my changed widgets to lay out again?
A: See Why doesn't my layout update when I create/dispose/move/resize a control?
Q: Why do I get "SWTException: Unable to load graphics library" using GC?
A: Support for advanced graphics operations such as path for curvers and lines, alpha blending, antialiasing, patterns and transformations was added to SWT 3.1. On Windows, GDI+ is required. On X Windows platforms (i.e. GTK and Motif), Cairo 0.4.0 is required. If your Windows platform does not have GDI+ by default then you can download a redistributable package from Microsoft.
Q: Why doesn't my Shell have the trim decorations that I specified in its constructor?
A: The native window system is responsible for creating the decorations for all windows, and has the right to not fully honor the set of requested decorations. For this reason, styles that are passed to a Shell's constructor are considered to be hints. For example, on some window managers, creating a shell with SWT.RESIZE, will also create a minimize and maximize button. This is a constraint that all native applications are subject to.
Q: Why doesn't a widget send events when I change it programmatically?
A: This is a design decision that is applied throughout SWT. Events are usually not sent in response to programmatic changes (as opposed to user actions) in order to minimize notification of potentially unwanted events. As a result, patterns like the following are not needed:
    ignoreNextSelectionEvent = true;
    myTable.select(2);
    ignoreNextSelectionEvent = false;
    
Since a programmatic change implies that the application is already aware of the change being made, it can trigger the appropriate action directly. If firing an event is still desired (for instance, to preserve object de-coupling) then the application can create the event and send it to the widget's listeners with Widget.notifyListeners(int,Event).

Note that some specific programmatically-triggered events are sent, typically in response to low-level widget operations such as focus, move and resize changes.

Q: Why doesn't my layout update when I create/dispose/move/resize a control?
A: A layout is only performed automatically on a Composite's children when the Composite is resized, including when it is initially shown. To make a Composite lay out its children under any other circumstances, such as when children are created or disposed, its layout() method must be called. For an example of this see SWT snippet create and dispose children of a composite.
Q: How do I programmatically scroll a Composite?
A: This is done by using a ScrolledComposite instead of a Composite, and invoking ScrolledComposite.setOrigin(...) to scroll it. For an example of this see SWT snippet use a ScrolledComposite to scroll a Tree vertically.
Q: Why does Copy/Paste sometimes not work on Linux?
A: There's a known Copy/Paste problem for people who run Klipper Clipboard applet which causes Eclipse clipboard operations to fail. For more information about this issue see Bug 153809 Bug 226540.
Q: Can I use the TaskItem's menu without the launcher?
A: The TaskItem's menu (also known as Jump List on Windows 7) was designed to be used in conjunction with the eclipse launcher. That said, it is possible on Windows 7 to overwrite the default values for the items in the jump list calling setData() on the respective menu item using the following keys:
  1. org.eclipse.swt.win32.taskbar.executable: path to the executable
  2. org.eclipse.swt.win32.taskbar.arguments: arguments to be passed to the executable
  3. org.eclipse.swt.win32.taskbar.icon: path to the icon file
  4. org.eclipse.swt.win32.taskbar.icon.index: the index of the icon, when the icon file is a dll or an exe
For more information about this issue see Bug 306039.

Q: How do I produce a single jar file that contains all of the various SWT platform jars?
A: Please see this post for a complete overview of how to package the jars.
Q: How do I enable the fade animation for expando buttons in Trees (Windows Vista and up) ?
A: The fade in/fade out animation for expando buttons on Trees that can be seen in some applications, like Windows Explorer and older version of Eclipse, has been disabled. See Bug 342282 for details.
The animation can be enabled by passing the -Dorg.eclipse.swt.internal.win32.enableFadeInOutExpandos argument to the JVM. For example:

eclipse -vmargs -Dorg.eclipse.swt.internal.win32.enableFadeInOutExpandos

will bring the animation back to Eclipse.

Alternatively, the flag -Dorg.eclipse.swt.internal.win32.enableFadeInOutExpandos can be added to the end of eclipse's eclipse.ini for the same result.

Q: What are the standard keyboard shortcuts on Windows, Mac OS X, Linux?
A: Since SWT uses native controls, standard keyboard shortcuts can be used in SWT applications. Here is a useful Table of Keyboard Shortcuts.
Eclipse has additional keyboard shortcuts. For a list, type Ctrl + Shift + L.
On Mac OS X, the OS screen reader, VoiceOver, can also be used to navigate through controls using the keyboard. Here is the VoiceOver User's Manual.
Q: Can I use a screen reader with Eclipse?
A: Yes. Eclipse works with JAWS and NVDA on Windows, VoiceOver on the Mac, and Orca on Linux. Window-Eyes and Hal/SuperNova on Windows have not been tested recently, however they both worked the last time they were tested.
Q: Why doesn't my old Windows screen reader work with Eclipse 3.6?
A: JAWS version 8 and 9 and Window-Eyes version 6 no longer work well with Eclipse and other SWT applications. Window-Eyes 6 will cause Eclipse to crash, and JAWS 8 and 9 can cause SWT applications to crash. The reason is that Eclipse 3.6 added support for IAccessible2, and these older screen reader versions contain a partial implementation of IAccessible2 that does not follow the current IAccessible2 specification. The workaround is to launch eclipse or your SWT application using the
-Dorg.eclipse.swt.accessibility.UseIA2=false
VM argument. For more information about this issue see Bug 313182.
Q: How do I get JAWS to read Table column headers?
A: JAWS does not read table column headers by default. To get JAWS to read table headers, you need to do the following steps with JAWS running:
  1. Focus on the table
  2. Press Insert+F2 (this opens the "Run JAWS Manager" dialog)
  3. Select "Customize ListView" and OK (this opens the "Customize ListView Headers" dialog)
  4. Select OK
Q: Where can I get more info on Accessibility in Eclipse/SWT?
A: You can get more information on the Accessibility Features in Eclipse, and the Eclipse/SWT Accessibility API on the Eclipse/SWT Accessibility wiki.


Archived questions and answers


Q: How do I build the 32-bit version of SWT GTK?
A: Follow these steps to extract the 32-bit SWT GTK source code from GIT and produce your own build:
  1. Start Eclipse and retrieve the org.eclipse.swt, org.eclipse.swt.gtk.linux.x86 and org.eclipse.swt.tools projects from dev.eclipse.org (see How to use SWT from GIT, use .classpath_gtk as the .classpath file in the org.eclipse.swt project).
  2. Convert SWT's Java from its 64-bit form to 32-bit:
    • To convert the Java code in-place, go to the build.xml ant script in the org.eclipse.swt.gtk.linux.x86 project and run its "replace.64.to.32" target. Once this target has completed you must refresh (F5) the org.eclipse.swt project in order to pick up the changes.
    • Run the "build_libraries" target in the same build.xml file. Refresh (F5) the org.eclipse.swt.gtk.linux.x86 project when this target has completed, to pick up the new libraries.
  3. You're done! The org.eclipse.swt.gtk.linux.x86 project will now contain the 32-bit native libraries, and if you're interested, the 32-bit source code will now be available in the org.eclipse.swt.gtk.linux.x86/src folder.
Q: How can I deploy my standalone SWT application with Java Web Start?
A: For steps that can be used to package and deploy an SWT application with Java Web Start (JWS) see How to deploy SWT Applications with Java Web Start. A related article that describes the deployment of SWT applications with JWS (but does not outline the process of packaging SWT) can be found at http://www-106.ibm.com/developerworks/opensource/library/os-jws/.
Q: How do I make SWT use the Windows XP themes?
A: In order for an application to use Windows XP themes, there must be a manifest file located in the same place as the executable that launches the application.
Here is a sample manifest file to download, for more details on how to enable external manifest file on Windows

Note: As of SWT 3.2, the manifest file is no longer needed.

Q: What do I need to run the SWT Browser in a standalone application on Linux or Solaris?
A: Follow the steps below to use the SWT Browser widget in your standalone SWT application.
  • A supported native browser must be installed (linux requirements) (solaris requirements).
  • If a supported WebKitGTK and/or XULRunner is installed then it should be found automatically at runtime with no additional effort. For other native Mozilla-based browsers:
    1. Set the environment variable MOZILLA_FIVE_HOME to the native browser's installation folder. e.g. setenv MOZILLA_FIVE_HOME /usr/lib/mozilla
    2. Set the environmnent variable LD_LIBRARY_PATH to include MOZILLA_FIVE_HOME. e.g. setenv LD_LIBRARY_PATH ${MOZILLA_FIVE_HOME}:${LD_LIBRARY_PATH}
    3. Your standalone SWT application can now use the Browser widget.
Q: What do I need to run the SWT Browser inside Eclipse on Solaris?
A: The Browser is supported on OpenSolaris (x86) and Solaris 10 (SPARC). The Mozilla versions that are supported by each Eclipse release are:
  • OpenSolaris (x86)
    • Eclipse 3.5.0: Mozilla 1.7.x GTK2, XULRunner 1.8.x - 1.9.1.x
    • Eclipse 3.5.2 and newer: Mozilla 1.7.x GTK2, XULRunner 1.8.x - 1.9.2.x and 3.6.x
    • Note that a Firefox release whose contained Gecko version correlates with the Mozilla versions above can also be used. Unlike other platforms, since Sun's compiler does not produce statically-linked libraries, Firefox builds downloaded from mozilla.org can be used on Solaris.
  • Solaris 10 (SPARC)
    • Eclipse 3.5.1 and newer: the Mozilla version that is shipped with the OS in /usr/sfw/lib/
  • Solaris 11 (SPARC)
    • Eclipse 4.2 and newer: the Mozilla version 1.7.x GTK2 in /usr/sfw/lib/
    • Note that the above version is not installed by default. User needs to either install it using Solaris 10 packages or copy from solaris 10 installation
Q: How do I explicitly use Mozilla as the Browser's underlying renderer?
A: A Browser can be created with style SWT.MOZILLA to specify that its renderer must be Mozilla-based (@since 3.3). Note that SWT.MOZILLA style is deprecated in 4.8 and XULRunner is not supported in Eclipse 4.8 and newer versions.

The runtime requirements for using Mozilla-based Browsers in Eclipse/SWT 4.4 to 4.7 are listed below. Note that failure to meet these runtime requirements will cause the Browser instantiation to fail.

  • Runtime Platform:
    • Windows (x86): Any XULRunner release with version 1.8.0.x - 3.6.x, 10.x or 24.x
    • Windows (x86_64): Any XULRunner release with version 1.9.2.x - 3.6.x, 10.x or 24.x, and the Visual C++ 2010 runtime must be installed
    • OS X (32-bit): Any XULRunner release with version 1.8.1.2 - 3.6.x, 10.x or 24.x, and the JRE must be "Java for Mac OS X 10.4, Release 5" or newer
    • OS X (x86_64): Any XULRunner release with version 1.8.1.2 - 3.6.x, 10.x or 24.x
    • Linux and Solaris: See What do I need to run the SWT Browser inside Eclipse on Linux?
  • To use XULRunner it must be detectable by the Browser. For XULRunner versions 1.8.0.x - 3.6.x this is facilitated by either installing it or by explicitly specifying its location. For XULRunner versions newer than 3.6.x the only way to do this is by explicitly specifying its location.
  • The installed/specified XULRunner version must be 1.8.1.2 - 3.6.x to make use of JavaXPCOM

It is important to note that conflicts have been reported between the dependent libraries of WebKit and Mozilla. As a result it is advised that Browser instances with these respective types not be mixed in an application. If a Browser with one of these types must be used in an application then java property org.eclipse.swt.browser.DefaultType should also be set to this type to ensure that SWT.NONE-style Browsers do not cause the libraries from the other native browser renderer to be loaded (see How do I specify the default type of native renderer that is used by the Browser?).

Q: How do I explicitly use WebKit as the Browser's underlying renderer?
A: To specify that a WebKit renderer be used by a Browser instance, create it with style SWT.WEBKIT (@since 3.7). The runtime requirements for using WebKit-based Browsers are listed below. Note that failure to meet these runtime requirements will cause the Browser instantiation to fail.
  • Linux: WebKitGTK 1.2.0 or newer must be in the library load path. Examples of Linux distros that meet this requirement by default include Red Hat Enterprise Linux 6 and Ubuntu 10.04.
  • OS X: No additional runtime requirements, the default renderer is WebKit-based.
  • Windows: Eclipse/SWT 4.10 dropped 32-bit support and Webkit is no longer supported. For older versions:
    • 32-bit SWT
    • Safari must be installed
    • For OSs older than XP+SP1, the path to the Apple Application Support installation must be prepended to Windows' "Path" environment variable before running eclipse. This installation will be in a location like "C:\Program Files\Safari\Apple Application Support" or "C:\Program Files\Common Files\Apple\Apple Application Support". If more than one of these directories are found then choose the one with "Safari" in its directory ancestry.

It is important to note that conflicts have been reported between the dependent libraries of WebKit and Mozilla. As a result it is advised that Browser instances with these respective types not be mixed in an application. If a Browser with one of these types must be used in an application then java property org.eclipse.swt.browser.DefaultType should also be set to this type to ensure that SWT.NONE-style Browsers do not cause the libraries from the other native browser renderer to be loaded (see How do I specify the default type of native renderer that is used by the Browser?).

Q: How do I use the WebKit renderer on Linux-GTK?
A: In Eclipse/SWT 3.7 and newer the Browser attempts to use WebKitGTK for SWT.NONE-style Browsers created on GTK. For this to succeed, WebKitGTK 1.2.0 or newer must be in the library load path. Examples of Linux distros that meet this requirement by default include Red Hat Enterprise Linux 6 and Ubuntu 10.04. Linux installations that do not meet this requirement will fall back to using Mozilla for SWT.NONE-style Browsers.

Eclipse/SWT 3.6.x can also use WebKitGTK for SWT.NONE-style Browsers created on GTK, but the user must explicitly request this by setting java property "org.eclipse.swt.browser.UseWebKitGTK" to "true". In the absence of this property being set, Mozilla is used for all SWT.NONE-style Browsers. (Note that Eclipse/SWT 3.6.x is only able to use WebKitGTK 1.2.x; it will fail if a newer WebKitGTK release is found.)

Q: Can I view Java applets in the SWT Browser?
A: Browser support for applets varies by platform:
  • Windows: As of Eclipse/SWT 3.5, applets can be viewed in a Browser if all of the following conditions are met:
    1. For Browsers created with style SWT.NONE, the installed IE version is 7.0 or newer
    2. For Browsers created with style SWT.MOZILLA, the installed XULRunner version is 1.9.2.x or 3.6.x
    3. The installed Java plug-in is Sun JRE 1.6u10 or newer, with the Next Generation Java Plug-in enabled (this plug-in is enabled by default when the JRE is installed)
    4. The application is launched with the same JRE that provides the installed Java plug-in
    5. The application adds the JRE's plugin.jar, deploy.jar and javaws.jar jars to the JRE's boot classpath. For example, to launch eclipse: eclipse -vmargs -Xbootclasspath/a:"C:\Program Files\Java\jre6\lib\plugin.jar;C:\Program Files\Java\jre6\lib\deploy.jar;C:\Program Files\Java\jre6\lib\javaws.jar"
  • Linux (Mozilla): Applets can be viewed with Mozilla-based Browsers as long as the Mozilla Java plug-in is found at runtime. For info about adding directories to the Mozilla plug-in search path see How can my Mozilla-based Browser find my Mozilla plug-ins?
  • OS X (WebKit): Applets cannot be viewed with WebKit-based Browsers on OS X because the launching of a JRE to execute the applet collides with the JRE that is running the application.
Q: Can I specify which XULRunner installation gets used?
A: Typically a Mozilla-based Browser uses XULRunner's lookup mechanism to find a registered XULRunner at runtime, in which case a XULRunner location does not need to be specified. However if you wish to override this mechanism you can set the value of java system property org.eclipse.swt.browser.XULRunnerPath to the full path of a specific XULRunner to use. This property must be set before the first Browser instance is created.

The best opportunity for a user to set this property is by launching their application with a -D VM switch (eg.- add to the end of the eclipse.ini file: -Dorg.eclipse.swt.browser.XULRunnerPath=...).

An alternate approach that an eclipse application may use is to provide a XULRunnerInitializer implementation that sets this property. This implementation will be invoked when the first Mozilla-based Browser is about to be created. The steps to do this are:

  • Create a fragment with host plug-in org.eclipse.swt.
  • In this fragment create class org.eclipse.swt.browser.XULRunnerInitializer.
  • Implement a static initializer in this class that sets the org.eclipse.swt.browser.XULRunnerPath property. As an example, the class below will set the property to the win32 xulrunner plug-in if it is present.
    package org.eclipse.swt.browser;
    
    import java.io.*;
    import java.net.*;
    import org.eclipse.core.runtime.*;
    import org.osgi.framework.Bundle;
    
    public class XULRunnerInitializer {
        static {
            Bundle bundle = Platform.getBundle("org.mozilla.xulrunner.win32.win32.x86"); //$NON-NLS-1$
            if (bundle != null) {
                URL resourceUrl = bundle.getResource("xulrunner"); //$NON-NLS-1$
                if (resourceUrl != null) {
                    try {
                        URL fileUrl = FileLocator.toFileURL(resourceUrl);
                        File file = new File(fileUrl.toURI());
                        System.setProperty("org.eclipse.swt.browser.XULRunnerPath",file.getAbsolutePath()); //$NON-NLS-1$
                    } catch (IOException e) {
                        // log the exception
                    } catch (URISyntaxException e) {
                        // log the exception
                    }
                }
            }
        }
    }
          
Q: Can I specify which Mozilla profile gets used?
A: (@since 4.4) A profile can be specified for use by all Mozilla-based Browser instances by setting Java property org.eclipse.swt.browser.MOZ_PROFILE_PATH to the path of the profile before the first instance of a Mozilla-based Browser is created. The best opportunity for a user to set this property is by launching their application with a -D VM switch (eg.- add to the end of the eclipse.ini file: -Dorg.eclipse.swt.browser.MOZ_PROFILE_PATH=...).
Q: How does the Browser detect a native Mozilla browser to use?
A: The first Mozilla-based Browser instance performs the steps below, in order, until a native browser is found. All subsequent Mozilla-based Browser instances will use this same detected browser.
  1. If Java property org.eclipse.swt.browser.XULRunnerPath is defined then use it (see Can I specify which XULRunner installation is used?).
  2. Attempt to detect an OS-registered XULRunner in the version range 1.8.1.2 <= version < 4.0 (in order to enable JavaXPCOM use). Note that only XULRunner installations that are compiled for the same architecture as the running SWT will be considered.
  3. Attempt to detect an OS-registered XULRunner with a version earlier than 1.8.1.2 (again, the architecture must match that of SWT).
  4. (if running on Linux or Solaris, and the Browser's style is SWT.NONE) Attempt to use the native browser pointed at by OS environment variable MOZILLA_FIVE_HOME, which may be any of the browsers listed here. Note that if this environment variable is not set when eclipse is run then on linux the eclipse launcher will try to set it by checking various potential installation locations.
  5. At this point a native Mozilla browser could not be found, so an SWTError is thrown from the constructor, which should be caught and handled by the application. Subsequent attempts to create Mozilla-based Browsers will go through these detection steps again.
Q: How can I determine which installed Mozilla browser is being used to render Browser content?
A: The first Mozilla-based Browser instance performs a series of steps to detect a native browser to use. The SWT snippet below can be used to print the location of the Mozilla browser that was found.
import org.eclipse.swt.SWT;
import org.eclipse.swt.browser.*;
import org.eclipse.swt.graphics.*;
import org.eclipse.swt.widgets.*;

public class DisplayMozillaVersion {
    public static void main(String[] args) {
        Device.DEBUG = true;
        Display display = new Display();
        Shell shell = new Shell(display);
        System.out.println(">>>Snippet creating SWT.MOZILLA-style Browser");
        try {
            new Browser(shell, SWT.MOZILLA);
            System.out.println(">>>succeeded");
        } catch (Error e) {
            System.out.println(">>>This failed with the following error:");
            e.printStackTrace();
            System.out.println("\n\nSnippet creating SWT.NONE-style Browser");
            try {
                new Browser(shell, SWT.NONE);
                System.out.println(">>>succeeded");
            } catch (Error e2) {
                System.out.println(">>>This failed too, with the following error:");
                e2.printStackTrace();
            }
        }
        display.dispose();
    }
}
      
Q: How can my Mozilla-based Browser find my Mozilla plug-ins?
A: As of eclipse 3.3 the default set of Mozilla plug-in paths that are searched can be augmented by defining environment variable MOZ_PLUGIN_PATH. For example: export MOZ_PLUGIN_PATH=/usr/lib/browser-plugins.
Q: How do I use JavaXPCOM with the Browser?
A: First, ensure that you have all of the requirements listed in How do I explicitly use Mozilla as the Browser's underlying renderer?. Once these are in place then you can reference JavaXPCOM as follows:

  • If your application runs as an Eclipse plug-in:
    • download the XULRunner SDK for the XULRunner version that you will be embedding
    • add its lib/MozillaInterfaces.jar and (if present) lib/MozillaGlue.jar files to your plugin root
    • open your plug-in's META-INF/MANIFEST.MF file in the Plug-in Manifest editor
      • switch to its "Runtime" tab
      • add the jar(s) in the "Classpath" section
      • add all of the org.mozilla.* packages in the "Exported Packages" section
      • save these changes
  • If your application runs as a stand-alone application:
    • download the XULRunner SDK for the XULRunner version that you will be embedding
    • add its lib/MozillaInterfaces.jar and (if present) lib/MozillaGlue.jar files to your application's java build path
Q: Why do I get strange drawing behaviour when running 32 bit Eclipse on a 64 bit GTK platform?
A: A 64 bit Linux OS comes configured by default with 64 bit libraries. If you wish to run the 32 bit version of Eclipse, you must ensure that you have a 32 bit JRE as well as the 32 bit version of the GTK libraries. Red Hat bundles the 32 bit libraries in their installer under the "Compatibility Arch Support" package.
Q: Why does Eclipse 3.3 freeze when I open an editor on GTK 2.10 and GTK 2.12 (Linux, UNIX)?
A: There is a bug in some versions of GTK that causes certain print backends to hang.

If you do not want to upgrade your GTK to a fixed version, you can make use of the org.eclipse.swt.internal.gtk.disablePrinting flag available in Eclipse 3.3.1 maintenance builds as well as 3.4 M1 and later. To use this, you must pass the flag to eclipse on startup:
./eclipse -vmargs -Dorg.eclipse.swt.internal.gtk.disablePrinting

Q: Why doesn't SWT.RIGHT_TO_LEFT work on some GTK versions (less than 2.8)?
A: SWT relies on the Cairo graphics library to render strings and GTK started using Cairo in version 2.8.
Q: Why does the SWT_AWT bridge not work for me on AIX or Solaris?
A: The SWT_AWT bridge requires that AWT be using XToolkit, since this implements the XEmbed protocol. However by default AWT on AIX and Solaris use MToolkit. This can be easily changed as described in XToolkit on Solaris/Linux.

Back to the top