tags:

views:

233

answers:

1

How do I create a docking panel in Java?

+2  A: 

If you mean to use a Swing docking framework in your application, there are some of them already existing:

However, if you mean adding a pure Java dock in the spirit of things like YzDock or other ones (The GNOME-DO extension is an other example), I think you'll have no other solution but to do it yourself. Fortunatly, there is some kind of prior art (yes, it uses text instead of images, but it's only a matter of JMenuItem/JButton contents).

Riduidel