• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Liutauras Vilda
  • Ron McLeod
  • Jeanne Boyarsky
  • Paul Clapham
Sheriffs:
  • Junilu Lacar
  • Tim Cooke
Saloon Keepers:
  • Carey Brown
  • Stephan van Hulst
  • Tim Holloway
  • Peter Rooke
  • Himai Minh
Bartenders:
  • Piet Souris
  • Mikalai Zaikin

To anyone who has tried using Eclipse SWT...

 
Ranch Hand
Posts: 1365
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Plain and simple: does it allow you to write easier to understand/maintain code than Swing?
 
Ranch Hand
Posts: 672
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I just wrote a few simple SWT apps. My feeling is that it is easier than SWING. You also need jface on top of SWT to make things even easier.
SWT can�t do everything that SWING does. But it enough for most applications.
A few things good about SWT:
1.SWT is very fast.
2.SWT look and feel is very loyal to the platform. They are just beautiful.
3.With SWT one can write plug-ins for Eclipse which provides a powerful environment for build applications.
 
Ranch Hand
Posts: 2166
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Bruce,
could you point to some useful resources regarding swt.
I have tried it one night and found it quite confusing.
 
Bartender
Posts: 4121
IntelliJ IDE Spring Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Both eclipse.org and IBM DeveloperWorks have some helpful articles on programming using SWT and JFace.

Personally, I haven't used SWT much, so I'll have to defer any comments on the original question until I've used it more...
[ March 07, 2003: Message edited by: Nathan Pruett ]
 
Bruce Jin
Ranch Hand
Posts: 672
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
These 3 tutorial are marvelous for SWT beginners:
http://www-106.ibm.com/developerworks/opensource/library/os-ecgui1/
http://www-106.ibm.com/developerworks/opensource/library/os-ecgui2/
http://www-106.ibm.com/developerworks/opensource/library/os-ecgui3/
Of course, www.eclipse.org.
 
Ranch Hand
Posts: 15304
6
Mac OS X IntelliJ IDE Chrome
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I have a proposition. And this would just be for fun. I may have a go at it. Or maybe someone has already done this.
Mirror the application in the above mentioned tutorial using SWING.
I would be interested in seeing the difference between the 2 side by side in terms of amount of code, complexity, and performance.
Any takers?
 
Ranch Hand
Posts: 71
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Originally posted by Gregg Bolinger:
I have a proposition. And this would just be for fun. I may have a go at it. Or maybe someone has already done this.
Mirror the application in the above mentioned tutorial using SWING.
I would be interested in seeing the difference between the 2 side by side in terms of amount of code, complexity, and performance.
Any takers?


Gregg,
http://blog.xesoft.com/page/jon.lipsky/20030204#swt_and_swing_another_screenshot
regards,
Raj
 
reply
    Bookmark Topic Watch Topic
  • New Topic