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
2010-03-12 08:47:42