SWT: The Standard Widget Toolkit is a user interface library for Java maintained by the Eclipse Foundation. SWT uses native widgets wherever possible to provide a look and feel consistent with the host platform. SWT is a third-party library (not included in the JVM) and applications that rely on ...
7
votes
4answers
9k views
How to update a GUI from another thread in Java
I am writing a desktop application using SWT. What is the simplest way to update GUI controls from another thread?
7
votes
6answers
7k views
How to get JavaDoc for SWT and JFace in Eclipse?
I'm a newbie to Eclipse and can't figure out how to get the JavaDocs for SWT and JFace to show up when I am editing.
How do I do this? Thanks!
7
votes
2answers
806 views
Scrolled composite with slow to repaint content looks ugly
I am implementing a Gantt component for SWT and this takes a bit to repaint (like, 200 ms for the whole visible part of the diagram).
Now, when I scroll, I only repaint what is needed regarding the ...
7
votes
3answers
2k views
Programatically Scroll an SWT Table horizontally
Similar question, but not exactly the same.
table.showColumn() is helpful, but the scrolling only has the granularity of the column width. But I want a more precise control of the scroll location.
...
7
votes
4answers
2k views
SWT and blinking
I need the ability to have a blinking (red, maybe more colors) background for rows in a TableViewer/TreeViewer. What are the best options?
There may be more than one row blinking, the blinking MUST ...
7
votes
3answers
945 views
Java SWT interop with COM - putting a float[] into a Variant?
In my Java SWT application I'm hosting an 3rd party ActiveX control. I'm using OleClientSite to do this.
// Ah, this works. :-)
OleAutomation comObject = new OleAutomation(...);
There are 2 easy ...
7
votes
1answer
536 views
SWT: Table with cells that span columns
In a Java desktop app with SWT-based GUI, we have a table in which some rows must span multiple columns. This was solved with the approach shown in this official SWT Snippet: Snippet239.java
However, ...
6
votes
3answers
1k views
is there an equivalent in Java for fieldset (HTML)?
Is there an element in Java (i.e. Swing/AWT or SWT) that is equivalent to the HTML element fieldset? Thanks
6
votes
2answers
11k views
GUI Builder for Eclipse Juno
Do you know any GUI builder for SWT, which is compatible with Eclipse Juno (4.2)?
6
votes
1answer
1k views
What does JFace add to SWT?
What is the difference betweem the following:
TreeViewer & Tree
TableViewer & Table
TreeViewerColumn & TreeColumn
4.TableViewerColumn & TableColumn
When to use viewer & regular ...
6
votes
2answers
3k views
SWT table: auto resize all columns
Qt solution is a single call to resizeColumnsToContent(), in .NET one can use TextRenderer.MeasureText(), JTable could use AUTO_RESIZE_ALL_COLUMNS.
In SWT, is there a way to programmaticaly resize ...
6
votes
1answer
2k views
SWT Invalid Thread Access on Mac OSX (Eclipse Helios)
I have the simplest of all simple SWT programs (it doesn't even display hello world yet):
package com.samples.swt.first;
import org.eclipse.swt.widgets.Display;
import org.eclipse.swt.widgets.Shell;
...
6
votes
2answers
1k views
How to implement a Google-chrome-like title bar for Java SWT application
I have inherited development of a Java/SWT application running on Windows only. One of the feature requests that I need to scope is a Google-chrome-type title bar in place of the SWT windows title ...
6
votes
2answers
6k views
How to have a Label inherite a Composite's GC in SWT
I'm writing an app and our designer's want to user gradient's for some of the backgrounds on a few of our composite's.
I wrote the following code:
composite.addListener (SWT.Paint, new Listener () ...
6
votes
2answers
5k views
How can I get my basic SWT application to exit properly in Mac OS X 10.5.6?
I have the following SWT test code:
public static void main(String[] args) {
shell = new Shell();
shell.setText(APP_NAME + " " + APP_VERSION);
shell.addShellListener(new ShellListener() {
...
6
votes
1answer
6k views
swt browser No more handles Error
I wrote a simple program. just a CTabFolder and a WelcomTab inherent from CTabItem. I want to fill my WelcomeTab by a browser which render my htmls. at the init() method of WelcomeTab I Create a ...
6
votes
3answers
13k views
java.lang.UnsatisfiedLinkError: Cannot load 64-bit SWT libraries on 32-bit JVM in Windows x86 machine
I've just started using swt (windows x86_x64 compatible version).
when i run a sample code snippet in eclipse, I am getting the following error...
Exception in thread "main" ...
6
votes
1answer
349 views
Different rendering in SWT Browser with setText and setUrl
I'm trying to write an Eclipse plugin that displays some information as an HTML page. For this I want to use SWT Browser widget. The problem is that when I set browser's content via setText, nth-child ...
6
votes
3answers
3k views
HTML Editor with Java and And webkit - SWT Browser
i want to add WYSIWYG HTML editor to my Java program.
my idea is to do Something like this
but not with python - with Java.
i know about couple of options and their problems :
HTMLEditorKit - not ...
6
votes
1answer
409 views
Is there a styleguide for developing SWT applications?
I'm not a proficient GUI developer, and I have no talent for design. Is there a comprehensive style guide for developing SWT applications? I'm especially interested in standards for developing ...
6
votes
3answers
2k views
SWT Syntax highlighting widget
Anyone know of an SWT widget that can be a text editor with support for syntax highlighting? I'm aware of the StyledText widget but I'm hoping that somebody has already written some libraries so one ...
6
votes
1answer
480 views
Using multiple progress bars for multiple threads without jamming the GUI
I am writing an Eclipse RCP application in which multiple threads will update the user on progress each through its own progress bar in the GUI. I have been told that to allow each to individually ...
6
votes
1answer
1k views
How to bundle Webkit into Eclipse?
Eclipse 3.7 (Indigo) now allows using Webkit as an underlying renderer for the SWT browser component. Nevertheless, runtime requirements say that Safari must be installed on the target machine. Is ...
6
votes
2answers
667 views
Why isn't text anti-aliasing working, while using a SWT GC to draw text?
Right now my goal is to have anti-aliased text on my Labels. If my research was correct, SWT Labels do not natively support anti-aliasing on text, so my current workaround attempt is to create an ...
6
votes
1answer
1k views
How to change SWT Tree plus/minus icons
I am working on a SWT Tree similar to the one here, however, I want to be able to show + signs in some cases instead of - for an expanded tree item. Is this possible ?
If not, is there Windows API ...
5
votes
4answers
6k views
maven project: SWT 3.5 dependency: any official public repo?
Well, in short, I may need to grab new SWT version instead of 3.3 we're using for now. The project now has only this dependency and builds fine:
<dependency>
...
5
votes
5answers
2k views
Java Swing or SWT: easy way to build a desktop UI “wizard” — suggestions?
I'm an experienced Java programmer. Used to do a lot of Swing by hand with Eclipse, but been mostly into web stuff for the past couple years.
I have to build a desktop UI, a kind of wizard-y thing, ...
5
votes
2answers
4k views
How to hide/delete column in SWT table
Which approach to use to have ability to hide/delete columns in the table in SWT (in Eclipse plugin in particular)?
A cannot transfer this functionality to rows, since I need insert and hide(or ...
5
votes
6answers
7k views
How do I add an icon as a classpath resource to an SWT window created with WindowBuilder?
I'm trying to add an external icon from an *.ico file to a window that I'm creating using the WindowBuilder design window.
I can select the shell, which brings up an "image" properties field.
That ...
5
votes
2answers
203 views
Create Closure from Generic in Scala
I'm trying to do something that I'm not sure if Scala's type system will allow me to do.
I basically want to create a closure from a generic definition and return that closure, while executing a ...
5
votes
1answer
2k views
Scrolling SWT Table programmatically
How to do vertical scroll of SWT table programatically?
I'm implementing search function on the table. When an item was found then it will be scrolled to the item found.
5
votes
1answer
3k views
How can I add a hyperlink to a SWT/Jface Dialog
How can I make a hyperlink in a jface Dialog that when clicked opens the link in the default web browser. A full example would be useful. I know there is a org.eclipse.jface.text.hyperlink package but ...
5
votes
3answers
470 views
Scala SWT project with SBT
How do you create Scala SWT project in SBT?
I know that you can use GIT repositories:
RootProject(uri("http://git.eclipse.org/gitroot/platform/eclipse.platform.swt.binaries.git"))
But I don't know ...
5
votes
1answer
3k views
Swt combobox name/key pair
I want to have the text say one thing, but have the value say another
Text Key
But it only takes a string for adding items.
How do Java programmers typically store text/id pairs in comboboxes
5
votes
4answers
399 views
Is there a nice way to abstract the GUI so SWT or Swing can be used?
I'm writing an application that has an SWT GUI currently, but would like the end-users to be able to choose between SWT and Swing. I've experimented with abstracting the GUI details before at ...
5
votes
1answer
3k views
Styling a SWT label to be italic
How would I go about styling a SWT label created along the following lines so it is displayed italicised?
Label label = formToolkit.createLabel(composite, "My label name");
5
votes
4answers
5k views
Looking for a Combo(Viewer) in SWT/JFace which supports autocomplete
I'm looking for a Combo(Viewer) in SWT/JFace which supports autocomplete / type-ahead, i.e. the user can enter a couple of characters and the drop down list should show all matching elements.
5
votes
2answers
2k views
Swing versus SWT
What should I be looking at when choosing between SWT and Swing?
I've had a little experience with both, but I'm interested in:
layouts/layout managers;
data binding;
pre-built controls;
ease of ...
5
votes
4answers
5k views
How can I specify an Eclipse .classpath entry for specific O/S platform?
I am working on an SWT project as part of a team. We are constantly breaking each others build environment because Eclipses .classpath file is checked into version control and we include different SWT ...
5
votes
3answers
2k views
Java SWT: wrapping syncExec and asyncExec to clean up code
I have a Java Application using SWT as the toolkit, and I'm getting tired of all the ugly boiler plate code it takes to update a GUI element.
Just to set a disabled button to be enabled I have to go ...
5
votes
4answers
3k views
org.eclipse.swt.widgets.Button click from code
I am trying to click Button from code. I am tying to do the following:
class MyMouseAdapter extends MouseAdapter
{
public void mouseDown(MouseEvent evt)
{
...
5
votes
3answers
4k views
SWT/JFace: remove widgets
Group group = new Group(parent, SWT.NONE);
StyledText comment = new StyledText(group, SWT.BORDER_DASH);
This creates a group with a text area inside.
How can I later delete the text (remove it from ...
5
votes
2answers
462 views
Runnable jar doesn't see resources and other libraries
I created a desktop app and I have a problem with generate runnable jar. In Eclipse everything works but when I will generate jar it shows only the swt components (menu, tabs..)
where other libraries ...
5
votes
4answers
5k views
How to get Eclipse SWT Browser component running on Ubuntu 11.04 (Natty Narwhal) with Webkit?
I use the SWT Browser control in my Eclipse RCP application. On Linux Ubuntu 10.10 this depends on the user having installed xulrunner-1.9.2. This works fine.
However, on Ubuntu 11.04 I find that it ...
5
votes
2answers
744 views
Swing to SWT conversion: which disadvantages?
We are considering to port our Swing applications to SWT/JFace to get a more native look and feel, more UI rendering speed and less bugs.
Is there anybody who already has done such a port and wants ...
5
votes
1answer
1k views
Changing order of children of an SWT Composite
In my case I have two children of a SashForm, but the question applies to all Composites.
class MainWindow {
Sashform sashform;
Tree child1 = null;
Table child2 = null;
...
5
votes
1answer
160 views
SWT application : Java heap space: java.lang.OutOfMemory
I have a SWT application which accepts the java type project and do some parsing mechanism on all the file, it was working fine but in large project which have a huge count of file it starts ...
5
votes
1answer
1k views
Do I need to explicitly dispose SWT Shells?
I have been told and have read that SWT Objects must be explicitly disposed by calling their dispose method. However, in my own testing with the following code, I have noted that at least Shells ...
5
votes
2answers
2k views
Problems with loading resources during execution
Here's the background of the underlying problem, I am collaborating with a group on a project which uses Swt libraries and I am trying to package the software for deployment. As it turns out SWT is ...
5
votes
1answer
308 views
How would one use IDecorationContext api from Eclipse JFace
Is there an example out there for using IDecorationContext for label decorations?
By the looks of it, IDecorationContext class seems to provide some sort of contextual decoration support, but for the ...

