Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

GUI framework Java

I am looking for some framework or toolkit (style drag and drop) for creating gui in Java. I need to do quite complex application with dockings, toolbars, tables etc.

Which one would be best?

like image 883
joseph Avatar asked Mar 04 '10 18:03

joseph


3 Answers

The Netbeans Platform might be what you are looking for, it is based on Swing, and the Netbeans IDE can be a showcase for it, check http://platform.netbeans.org/
I think the equivalent on SWT is http://www.eclipse.org/platform/

like image 121
clyfe Avatar answered Sep 27 '22 21:09

clyfe


If you're looking for a GUI builder, NetBeans has a decent one. Otherwise, you can just write it yourself in Swing or SWT?

like image 30
Amir Afghani Avatar answered Sep 27 '22 22:09

Amir Afghani


Start reading Swing Architecture and then use Netbeans UI builder and finally complement it with JIDE Software libraries.

JIDE have several libraries, for instance:

JIDE Docking:

alt text

JIDE Grids:

alt text

And many more. The only inconvenient I see is, you need a good understanding on how does Swing works before using it ( or you can acquire that knowledge in the process )

like image 31
OscarRyz Avatar answered Sep 27 '22 20:09

OscarRyz