Tagged Questions
SWT: The Standard Widget Toolkit SWT 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 it must distribute the appropriate library for each target operating system. The word "Standard" in the name is more wishful thinking than anything els...
39
votes
10answers
18k views
Java Desktop application: SWT vs. Swing
I'm a web developer at day and thinking about building my first real desktop application. The idea is to build a tool that automates a very repetitive task in a web application where no API is ...
25
votes
15answers
4k views
Packaging Java apps for the Windows/Linux desktop
I am writing an application in Java for the desktop using the Eclipse SWT library for GUI rendering. I think SWT helps Java get over the biggest hurdle for acceptance on the desktop: namely providing ...
24
votes
8answers
2k views
Java GUI frameworks. What to choose? Swing, SWT, AWT, SwingX, JGoodies, JavaFX, Apache Pivot?
There is quite a lot of gui frameworks out there for java, but what is reckognized as todays framework of choice?
The following is my understanding of the different frameworks, please correct me if ...
16
votes
2answers
10k views
how to make a jar file that include dll files
i bought a third-party java library which include a jar file and two dll files. i wrote my own java program which invoke the third-party jar file. now my question is how can i package all my code ...
15
votes
4answers
4k views
Create cross platform Java SWT Application
I have written a Java GUI using SWT. I package the application using an ANT script (fragment below).
<jar destfile="./build/jars/swtgui.jar" filesetmanifest="mergewithoutmain">
...
14
votes
3answers
9k views
Setting Colors in SWT
This is pretty simple, I come from a swing/awt background.
I'm just wondering what the proper way to set the background color for a SWT widget is?
I've been trying:
widget.setBackGround( );
...
13
votes
2answers
1k views
MouseDown events are not delivered until MouseUp when a Drag Source is present
I have a mouse listener. It has some code to respond to mouseUp and mouseDown events. This works correctly.
However, as soon as I add a DragSource, my mouseDown event is no longer delivered -- until ...
13
votes
3answers
3k views
SWT - OS agnostic way to get monospaced font
Is there a way in SWT to get a monospaced font simply, that works across various operating systems?
For example. this works on Linux, but not Windows:
Font mono = new Font(parent.getDisplay(), ...
12
votes
6answers
4k views
What is the best OpenGL java binding?
I am trying to achieve better performance for my Java SWT application, and I just found out it is possible to use OpenGL in SWT. It seems there are more than one Java binding for OpenGL. Which one do ...
11
votes
1answer
788 views
Drag & drop not working on Mac
I'm trying to make it possible to drag files from the Finder into my SWT application. On Windows and Ubuntu, the following bit of code works:
public class DndTest {
public static void main(final ...
11
votes
4answers
6k views
SWT on Windows 64-bit
My application throws the exception below.
Exception in thread "main"
java.lang.UnsatisfiedLinkError: Cannot
load 32-bit SW T libraries on 64-bit
JVM.
How to solve this? What is the name ...
10
votes
3answers
1k views
Is it possible to use SWT from Jython?
The SWT-Gui looks very nice.
Is there an easy way to use it in Jython ?
10
votes
9answers
5k views
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 an article on how to use it)
JFreeChart
Which other libraries are there for ...
9
votes
1answer
187 views
SWT TrayItem.setImage does not scale properly in Mac status bar
On my cross-platform SWT Java application, I'm using TrayItem's setImages() function to set the dock and status bar icon. The icon is a 128x128 transparent PNG. The status and tray icons are ...
9
votes
1answer
811 views
Embedding Office in Java
I'm trying to get Office 2007/2010 application embedded inside a Java application using SWT using the following code:
import java.awt.Canvas;
import javax.swing.JFrame;
import org.eclipse.swt.SWT;
...
9
votes
7answers
725 views
Custom SWT controls and layouts
What custom controls and layouts for SWT/JFace do you use?
Preferably, list one per answer.
9
votes
3answers
1k views
SWT/JFace or Eclipse RCP?
Which are the reasons to choose the Eclipse Rich Client Platform as the base of my application, instead of just using SWT/JFace?
9
votes
7answers
2k views
which library better for faster java application swt or swing?
which library better for faster java application swt or swing?
8
votes
4answers
2k views
How do you force a java swt program to “move itself to the foreground”?
Currently with swt, I sometimes want a program to arbitrarily come to the foreground (like an alarm clock might).
Typically the following works (jruby):
@shell.setMinimized(false)
@shell.forceActive
...
8
votes
4answers
3k views
Compare SWT with SWING
Is swt faster than swing?
Where can i get good tutorials
about swt?
it easy to migrate from swing
to swt?
8
votes
5answers
4k views
Qt Jambi vs SWT for cross-platform GUI development
I'm currently involved in a project developing applications primarily for Linux (Fedora 10). However, it might be the case later on that we will have to port these applications to Mac OS X and Windows ...
7
votes
2answers
308 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
2answers
910 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
1answer
766 views
Is there a standard or open-source tag cloud implementation for SWT?
I need functionality for displaying and allowing selections of tags in SWT. Something that uses space efficiently, and ideally allows scaling of tags.
Is there a tag cloud widget or is there one that ...
7
votes
4answers
712 views
Make JFace Window blink in taskbar or get users attention?
Hi folks
I wonder someone has any idea how to solve this:
In my Java Eclipse plugin there are some processes which take some time. Therefore the user might minimize the window and let the process run ...
7
votes
3answers
698 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 ...
6
votes
1answer
151 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
2answers
443 views
What is the most functional and ready-to-use SWT API in Scala?
Is there a Scala SWT wrapper/API that has the most features and is most ready to be used? I see a couple what appear to be informal wrappers but can't tell if they're maintained. Also, one or two I ...
6
votes
1answer
802 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 ...
6
votes
8answers
761 views
What should I choose SWT or Swing to program GUI in Java?
I need to create a GUI application in Java. I just realized that I have different optional ways to go (SWT and Swing are among them).
I have already found out that there is a lot of discussions about ...
6
votes
1answer
829 views
SWT: Native status bars
Is there a way to create native status bars in SWT like those found in Windows applications:
I have seen status bars simulated using labels, but I am more interested in a true solution.
6
votes
5answers
2k views
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 can I create an executable JAR that will select the correct platform JAR at runtime?
...
6
votes
4answers
1k 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 ...
6
votes
3answers
1k 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
3answers
4k views
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 have called dispose on a composite, and then replaced it with another; ...
6
votes
4answers
5k views
How do you build an SWT application with Maven
I trying to learn swt, and I use maven for all my builds and eclipse for my IDE. When getting the swt jars out of the maven repository, I get:
Exception in thread "main" ...
6
votes
5answers
11k views
Possible causes of Java VM EXCEPTION_ACCESS_VIOLATION?
When a Java VM crashes with an EXCEPTION_ACCESS_VIOLATION and produces an hs_err_pidXXX.log file, what does that indicate? The error itself is basically a null pointer exception. Is it always caused ...
6
votes
2answers
4k 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
4answers
5k views
Prevent SWT scrolledComposite from eating part of it's children
What did I do wrong?
Here is an excerpt from my code:
public void createPartControl(Composite parent) {
parent.setLayout(new FillLayout());
ScrolledComposite scrollBox = new ...
5
votes
1answer
73 views
Events are causing a chain reaction
I'm using an Eclipse RCP based framework that suffers from an inefficient event model. Specifically, events emitted by controls often 'cascade'. For example, a control will emit a COLOR_CHANGED event ...
5
votes
1answer
169 views
How to enable embedded javascript debugger in SWT browser?
I want to embed a JavaScript debugger in a SWT browser.
I'm using the SWT.MOZILLA flag for creating the browser. Since the JavaScript application I'm loading is complex, I need to have some JS ...
5
votes
1answer
318 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 ...
5
votes
2answers
418 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 ...
5
votes
2answers
287 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
2answers
557 views
How do I resize the dropdown of a combobox?
Background:
I am doing some UI work in an eclipse environment where I fill a combo control with some values. The string values have an different length and often a length greater than the combo ...
5
votes
2answers
883 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
290 views
Changing the look and feel of an SWT tabs
I'm using SWT CTabFolder to build tabs in my application. I kind of dislike the visual appearance of tabs, it too Eclipse-like. Is there a way to change the aspects of tabs? I'd like to change the ...
5
votes
2answers
2k views
Future of GUI development in Java? [closed]
Considering that
Sun/Oracle decided to not develop Swing any further after they "invented" JavaFX
JavaFX doesn't really work and some consider it a failure already
the not really ...
5
votes
3answers
329 views
usage of maven tycho-p2-plugin with SWT
how do I build a swt application using the eclipse p2 repository and the maven tycho-p2-plugin?
5
votes
2answers
1k views
SWT problem with syncExec()
this is my first question on stackoverflow (sorry about my english). I'll try to explain the problem as well I can.
I have an swt application with a foreground jade application in which I have a ...