I am learning SWT and I am in need of some good material on SWT layouts. Anyone have some good material or links for SWT layouts? Thanks for any help

link|improve this question

64% accept rate
feedback

4 Answers

up vote 0 down vote accepted

The best way to learn SWT and its layouts is trying things out yourself.
But I recommend the following ressources for a start:

  • The noteworthy SWT tutorial on Zetcode
  • Furthermore the eclipse / JFace / SWT section on java2s
  • Last but not least the official SWT homepage with its examples and if you like its widget page with links to javadoc and code snippets
link|improve this answer
feedback

There is really no reason not to use MigLayout. It's the best layout manager for "hand-made" GUI. Very powerful, easy to understand and use.. There is version for Swing and SWT as well.. MigLayout website

link|improve this answer
I am slightly worried as the license is GPL. I will be using it for a proprietary application and LGPL would have been good for me. – user131476 Jul 11 '11 at 17:47
It's dual licence, so you can use GPL or BSD depending on your needs. It is licensed under the very free BSD or GPL license, whichever you prefer. – Sorceror Jul 11 '11 at 19:33
feedback

This article is pretty good: Understanding Layouts in SWT

link|improve this answer
feedback

The Definitive Guide to SWT and Jface by Robert Harris is pretty good and explains all of the basic layout in a useful ways with lots and lots of examples.

Using WindowBuilder can also help a lot, as you here see - in real-time - the consequences of your UI decisions...

The absolutely best it to try and try again...

link|improve this answer
+1 for using WindowBuilder. GridLayout and FormLayout definitely require some practice, and WindowBuilder speeds up that cycle enormously. – Jan Schiefer Jul 5 '11 at 22:48
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.