14
votes
16answers
1k 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 provid …
0
votes
Packaging Java apps for the Windows/Linux desktop.
Thanks for that, but it seems a little out of my price range. I'm really looking for something free or, at least, cheap. Hence, rolling my own is definitely an option.
…
0
votes
Packaging Java apps for the Windows/Linux desktop.
Another option I was considering: rather than writing a native launcher from scratch, Eclipse comes with the source code for its own launcher, and this could perhaps be repurposed for my app.
…
0
votes
Prevent SWT scrolledComposite from eating part of it’s children
Try setting .setMinWidth and .setMinHeight on the ScrolledComposite once the layout has been done, passing it the size of the main composite.
…
0
votes
SWT Image concatenation or tiling / mosaic
Presumably not every image is visible on screen at any one time? Perhaps a better solution would be to only load the images when they become (or are about to become) visible, disposing of them whe …
