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 ...
21
votes
5answers
10k 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">
...
32
votes
2answers
24k 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 ...
86
votes
12answers
46k 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 ...
145
votes
9answers
60k views
Java GUI frameworks. What to choose? Swing, SWT, AWT, SwingX, JGoodies, JavaFX, Apache Pivot? [closed]
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 ...
17
votes
5answers
5k 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(), ...
0
votes
2answers
1k views
SWT - Tableviewer adding a remove button to a column in the table
Is it possible to add a remove button to a cell in a table? I have a table with 5 columns, I would like to add a 6th column. I want the 6th column to have a remove button in each row.
Example Row:
...
15
votes
10answers
8k 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
2answers
9k views
Invalid Thread Access Error with Java SWT
I have a simple Java SWT app in Java so far but the weird thing is when I try to launch a messagebox/alert box upon listening to an event fired by one of my own classes, I get an error saying "Invalid ...
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?
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
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 ...
3
votes
1answer
408 views
How to make SWT/JFace dialogs which show similar behaviour(layouts) under all window resolutions
The JFace Dialogs I have created show difference in layouts under different resolutions.How to create dialog in JFace or SWT which show same layout under all resolutions just like the dialogs used in ...
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 ...
10
votes
4answers
18k 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 ...
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 ...
27
votes
16answers
7k 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 ...
8
votes
4answers
5k 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?
3
votes
2answers
3k views
RCP with SWT.Browser and XULRunner
I'm developing an RCP application (Windows) with SWT.Browser (SWT.MOZILLA):
Browser browser = new Browser(parent, SWT.MOZILLA);
It's working fine with the old XULRunner 3.6.23 and the installation ...
9
votes
2answers
8k views
Running SWT based, cross-platform jar properly on a Mac
I have been working on a SWT-based project which is intended to be deployed as Java Web Start, and thus be used on multiple platforms.
So far I have managed to tackle the exporting problem that ...
8
votes
3answers
8k 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; ...
9
votes
5answers
5k 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?
...
11
votes
2answers
12k views
Change just the font size in SWT
I need to use a larger font for one of the labels.
label.setFont( new Font(display,"Arial", 14, SWT.BOLD ) );
but obviously Arial is not always the default font. I want to change just the size and ...
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.
4
votes
1answer
2k views
Testing SWT-GUI whith SWTBot
i want to test a simple swt gui application with swtbot. unfortunatly i have no idea how to start. there are several tutorials which describe the testing of an eclipse plug-in but i could not find ...
3
votes
2answers
2k views
How to draw over child elements of a Composite in SWT?
I understand to draw on a Composite, you can add a paint listener, but that results in drawing under the children. What if I want to draw over the top of children?
The following draws a line, but ...
1
vote
1answer
726 views
Deploying an SWT application on Java Webstart
Is it possible to deploy SWT applications using JNLP. Especially loading the swt native library (dll in Windows, so in Linux)? Any links? I found one at IBM Developer Works, however it just describes ...
21
votes
3answers
22k 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( );
...
10
votes
4answers
4k 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
...
4
votes
3answers
1k views
How to add Hyperlink in SWT Table`s column?
How to add Hyperlink in SWT Table column ?
I`m using org.eclipse.swt.widgets.Table class.
Is there any way to do this without using TableViewer, JFace ?
I tried this way but not working correctly ...
4
votes
3answers
1k views
SWT-like GUI toolkit for C or C++
Do you know any cross-platform GUI toolkit like swt for C (using default widgets in each operating system = right pics on eclipse.org/swt) ? There is an implementation of swt for D language called DWT ...
2
votes
1answer
248 views
What are the main things that an experienced Java SWT programmer should be aware of when moving to Swing?
What are the major differences which may be encountered? Any major differences in application design? Threading models? The way you go about constructing GUIs? Any features of SWT which aren't ...
2
votes
2answers
772 views
SWT Browser widget: html source inside jar?
I want to implement a help system for my tiny SWT desktop application.
I've thought about a SWT browser widget containing a single html markup page and a set of anchors to navigate (there are only ...
2
votes
1answer
2k views
Adding item to Eclipse text viewer context menu
I am developing a plugin for eclipse. In this plugin I need to be able to add an item to the context menu in the text editor. So far I have been unsuccessful in this, does anyone know how to add this ...
1
vote
2answers
747 views
SWT components relayout after visibility set to false
Lets say if I have a GridLayout composite with column = 1. (Something like a vertical flow layout)
I have added Label 1, Label 2, Label 3 to this composite, and they will appear accordingly.
...
1
vote
2answers
457 views
Fatal error running an SWT application from OpenOffice
I have an OpenOffice Java addon application. I'm calling SWT from an XActionListener. Loading of SWT is done dynamically using a special class loader. The SWT window displays well, but when I hit the ...
1
vote
1answer
1k views
Java Observer/Observable pattern does not Notify
I am trying to build a simple Java application with SWT using the MVC pattern. I would like to be able to automatically update the view when something happens in the background so I am trying to use ...
3
votes
1answer
1k views
Windows 7 SWT Table selected row highlight color
Is there a way to set the background color of a highlighted row of a SWT Table (FULL_SELECTION style) in Windows 7's Aero theme? It appears that it's a derived, lighter color from the background color ...
3
votes
2answers
883 views
Is there a SWT debugger/spy?
I'm trying to debug my SWT dialog (in an Eclipse plugin.) I'd like to find out why the layout is the way it is, and where the borders are between the controls. I've seen the SWT Spy plugin ...
3
votes
2answers
4k views
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 explorer as closely as possible, whatever may be the underlying OS.
I have done NO GUI programming in ...
3
votes
2answers
468 views
Does SWT distribute a JAR that works on any supported operating system?
The SWT project currently maintains one distributable for each supported operating system. For example:
swt-3.4.2-win32-win32-x86.zip
swt-3.4.2-gtk-linux-x86.zip
swt-3.4.2-carbon-macosx.zip
Is ...
2
votes
6answers
197 views
java button pressed for 3 seconds
I created a button and I want these:
When the user clicks the button, it stays pressed like 3 seconds. After 3 seconds the button should be again look pressable. So the user cannot click the button ...
2
votes
1answer
223 views
Set/Get values for RadioGroupFieldEditor in SWT
I'm trying to add a RadioGroupFieldEditor in an Eclipse RCP application I'm developing, but seem unable to do two key things:
set the value for the radio button (i.e. when the dialog/window is ...
2
votes
1answer
275 views
How to move up/down an item in a table
Following is an UI:
There is an Up button and a down button in the UI, when clicking the Up/down button, the selected item(e.g. lib/logger.jar) in the left table(I assume it is a table, because I ...
2
votes
2answers
2k views
Non-Modal JFace Dialog?
Simply put: Is there any way to create non-modal JFace dialog? I've tried calling setShellStyle to no avail. If I remember right this isn't a problem in swing - is this a shortcoming of SWT, or am I ...
2
votes
2answers
1k views
Problems With SWT on Mac
I've got a java project that uses an SWT UI and I'm having trouble deploying it on any Mac OS X computers. The program itself works perfectly on Windows when it is either run from within Eclipse or ...
2
votes
2answers
3k views
Animated GIF in SWT table/tree viewer cell
http://www.java2s.com/Code/Java/SWT-JFace-Eclipse/DisplayananimatedGIF.htm describes how to display an animated GIF in SWT - in general. While the code works and is easily comprehensible I'm facing ...
2
votes
1answer
464 views
SWT DropTargetListener has empty event data under Mac OS X
I'm currently experiencing a weird platform inconsistency between Mac OS X and Windows/Linux.
I've implemented an SWT DropTargetListener and tried to analyze the data dropped in the dragEnter method. ...
2
votes
6answers
5k views
Is there an RTF display widget in SWT
I would like to display an RTF document in an SWT (actually Eclipse RCP) application.
I know there is a Swing widget for displaying and editing RTF text, but it is Swing and quite alien in look and ...
1
vote
2answers
1k views
How to open files in Java Swing without JFileChooser
I'm using Java Swing (GUI) and I want to add a button to my project for opening files .
I don't like the JFileChooser since it opens a small window for browsing through the files
of the ...
1
vote
2answers
1k views
JFreeChart: Add and sync a srollbar when zooming a chart (Eclipse plugin / SWT)
I am using JFreeChart library to plot something in an Eclipse view and currently my code for view initialization looks as follows:
@Override
public void createPartControl(Composite parent)
{
...