Top "Swt" questions

SWT: The Standard Widget Toolkit is a user interface library for Java maintained by the Eclipse Foundation.

Runnable Jar cannot find Resources and Other Libraries

I created a desktop app and I have run into a problem with my generated runnable jar. Everything works fine …

java eclipse swt executable-jar
SWT FileDialog: Selecting directories instead of files

Can I use the SWT FileDialog to select folders instead of files?

java swt
Why does an SWT Composite sometimes require a call to resize() to layout correctly?

Sometimes we encounter an SWT composite that absolutely refuses to lay itself out correctly. Often we encounter this when we …

java swt
Best practice of using flags in Java method

What's the best practice for specifying flags in a Java method? I've seen SWT using int as bitfields, like: (example …

java swt flags enumset
Best Practices - SWT Table, TableViewer, EditingSupport

I am adding a table to my main GUI. It does show up and has the data it is suppose …

java swt tableviewer
File Explorer using Java - how to go about it?

I am set to create a file explorer using Java. The aim is to emulate the behavior of the default …

java swing swt jface
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 …

java swt
Libraries for pretty charts in SWT?

I know the following libraries for drawing charts in an SWT/Eclipse RCP application: Eclipse BIRT Chart Engine (Links to …

java eclipse charts swt
How can I creating executable JAR with SWT that runs on all platforms?

SWT comes with a base JAR and one specific JAR per platform (Windows, Linux/32bit, Linux/64bit, Mac, AIX, ...). How …

java swt executable portability
Wrap abel within a composite

I have ScrolledComposite which allows only vertical scrolling. (heighthint = 400). Within this ScrolledComposite, I have another CompositeA (height may exceed 400 for …

java eclipse swt jface