0
votes
1answer
28 views

SWT: Running an application developed on OSX in Windows

I have an SWT application that I've developed on OSX, so it contains the Mac version of the SWT libraries. Now I need to run this application on a Windows machine. I export the application to a .jar ...
1
vote
0answers
20 views

Get Active Shell in SWT, even if the Shell is not on focus

Display.getActiveShell() seems to only consider a Shell as active if it's focused. If at the moment another application has focus that means Display.getActiveShell() returns null. I need a method ...
0
votes
1answer
161 views

Running SWT APP under windows outside Eclipse

I am trying to build a package to run my SWT app outside eclipse. Under linux i've succefuly manage to run under bash. But when I try to run under windows I am getting the following error: ...
1
vote
0answers
78 views

Windows: Can a GDI handle outlive the process which created it?

I am trying to track down the cause of a Windows-only problem in my SWT application, which sometimes runs into the following error: org.eclipse.swt.SWTError: No more handles Tracing the line which ...
2
votes
1answer
1k views

Could not load SWT library on Windows 32-bit

I am almost done with one Java project that I have been developing on Linux. Now I need to build and test it on Windows. So I have installed Eclipse on Windows XP 32-bit, and imported my project. All ...
5
votes
3answers
413 views

Why can't I drop files on to Eclipse / SWT Drop Target from a CD in windows

In my Eclipse RCP application I have a TreeViewer that is a drop target for files, it works fine in most circumstances, however when I try and drag files stored on a CD ROM from windows explorer to ...
0
votes
1answer
209 views

some jar files run via double click, and some don't

I started to use SWT (eclipse.org/swt). Exporting my project to a run-able jar only runs through a command line, i.e. java -jar filename.jar. However does not work when I double click it. But in the ...
3
votes
4answers
749 views

SWT GC: Color not correctly drawn on Windows

Still looking for a solution I have the following problem: I use SWT GC to draw figures contained in GraphNodes to a Zest Graph. As far as Linux and MacOS are concerned, everything works fine. But ...
0
votes
1answer
2k views

Can't install SWT plugin in Eclipse 3.7.1 from any of the repositories

I'm using Eclipse 3.7.1 Indigo (Java EE IDE) on Windows 7 (32bit). I wanted to install WindowBuilder for building GUI java apps and so far I tried following repositories to install WindowBuilder or ...
1
vote
1answer
336 views

SWT, using a transparent drag image against an animated background on Windows

I have a custom widget based on Canvas that displays some items that the user can drag sort. When the user drags something, I am using an Image of the dragged item as the drag image: final DragSource ...
0
votes
1answer
125 views

SWT Tree under Windows XP not visible

I am developing an Eclipse RCP application and have a strange problem: I open da new dialog window using final Shell dialog = new Shell(Display.getCurrent()); and display a tree (Tree tree_indicators ...
2
votes
2answers
2k views

Where does SWT write dll files on windows?

I cannot find on the Internet where SWT tries to write the dll files. I have a computer where the jar does not run only because SWT cannot write DLLs. UPDATE 1 ...
0
votes
2answers
842 views

Set SWT Check/Radio Button Foreground color in Windows

This is not a duplicate of How to set SWT button foreground color?. It's more like a follow up. I wrote follow-up questions as comments, but did not get any responses, so I thought I'd try to put it ...
0
votes
1answer
84 views

How to reduce the number of runs returned from Uniscribe ScriptItemize

I am using a Java SWT StyledText control to display some text on Windows. However, the performance sucks because the text I am displaying has lots of commas. Here is an example of a line of text I am ...
1
vote
2answers
744 views

SWT on Windows: scroll control at cursor (not focused one)

We are in the process of converting a Swing application to SWT and it's already usable. What drives me really nuts is that with SWT (in contrast to Swing) on Windows only the focused control (e.g. ...
0
votes
1answer
343 views

Does windows XP support unicode button text in an SWT Java program?

I have included a couple of unicode arrows in my SWT Java UI and have just noticed that my Windows XP machine doesn't render these characters. XP : 7 : Does Windows XP not support unicode UI text ...
0
votes
0answers
327 views

JFreeChart with SWT Eclipse 3.6.2 Windows 7 MouseWheelListener Problem

I'm trying to add MouseWheelZoom functionality to my Eclipse RCP (3.6.2) JFreeChart View and use this peace of code: chart4Me.googlecode.com It works fine in Ubuntu 11.04 (32/64bit). However it ...
5
votes
1answer
835 views

SWT - How to debug “No more handles”

from time to time I am haunted by the "org.eclipse.swt.SWTError: No more handles". I already know tools like GDIView, to watch the number of handles allocated, but now I wonder if there is a better ...
5
votes
3answers
2k views

Combining Aero Glass effects and SWT

As a pet project, I've been playing with the concept of integrating Aero Glass effects into my SWT application. Ɓukasz Milewski has an excellent blog post explaining how this can be accomplished, ...
0
votes
1answer
524 views

SWT browser doesn't scroll

I've implemented an SWT Browser on my Windows 7 machine as follows: Browser browser; try { browser = new Browser(parent, SWT.NONE); browser.setUrl(url); } catch (final SWTError e) { ...
1
vote
1answer
558 views

How to stop expanding an infinite SWT Tree upon pressing “*”

I have an SWT Tree in my application that contains an infinite data structure. Upon expanding an item, I generate its children. On Windows though, users can press "*", triggering an "expand all ...
21
votes
4answers
23k 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 ...
1
vote
1answer
390 views

Prevent drop down list options scrolling on Windows in SWT

One of the drop down lists in my Java SWT application has 8 fixed options. When I click on it only 5 first options are visible and I have to scroll the list down to view the rest. Is there any way to ...
0
votes
3answers
1k views

How to make Shell to allways be on top at runtime in SWT?

I'd like to implement "Always on top" configuration option in my application that takes effect immediately. I know that I can call Shell constructor with ON_TOP style. Is there a way to do that at ...
9
votes
5answers
12k views

SWT No More Handles

Windows XP has the limit 10000 user handles for each process and total 32000 for each desktop session. However, when I run 4 or 5 SWT process, each consuming no more than 2000 user handles, the SWT No ...
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 ...
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 ...