Search Results

0
votes

Packaging Java apps for the Windows/Linux desktop.

I have used JSmooth in the past, and still have luck with it. The UI is pretty buggy, but I only use that for building the config file once, and then I build from Ant after that. What issu …
0
votes

SWT Link flickers with gradient background

Have you tried passing SWT.NO_BACKGROUND to your Link widget? It might get a little strange... and you may have to do a little more work to get the gui drawing properly, but that would be my first …
1
vote

Java - change focus on key press

final Text textBox = new Text(shell, SWT.NONE); textBox.addKeyListener(new KeyAdapter() { public void keyPressed(KeyEvent arg0) { if (textBox.getText().equals("") == false) { textBox …
0
votes

SWT/JFace: remove widgets

Another option is to use a StackLayout to switch between underlying contr …
3
votes

JFace question: How do I select all items in a ListSelectionDialog?

List elementsToSelect = ... dialog.setInitialElementSelections(elementsToSelect); …
-1
votes

Strange Classpath, .NoClassDefFoundError errors

Not a solution specifically, but it sounds like you are duplicating a lot of functionality that is already present in One-Jar. …
0
votes

Aligning text and image in an SWT Button?

This appears to be an SWT limitation (at least in Windows). Prior to 3.2, setting both an Image and Text on a button was not possible. Reading through that …