dockable side panels

http://mtgrares.blogspot.com/2009/04/new-version.html
however, since this is not the intention of JToolBar, the options are limited: at each side, there can only be one tool bar.
it can be easily incorporated in the code, by:
snippets from GuiDisplay3#initComponents()
https://jdocking.dev.java.net/
http://www.infonode.net/index.html?idw
haven't looked at any of them though
i thought that a possible way to do this would be JToolBar: It allows to place things dockable in the border of a border layout, with the option for moving it out of the window (enabling more efficient use of multi-screen environments)Tim said...
Feature request:
Is there any way the right hand panel (the one that contains card information and picture) could be removed?
Could it:
be incorporated into a different column?
be changed into a panel that only appears while your mouse is over a card?
be made dockable?
be made minimizable?
It would give you a lot more play area real-estate...
April 27, 2009 7:28 AM
however, since this is not the intention of JToolBar, the options are limited: at each side, there can only be one tool bar.
it can be easily incorporated in the code, by:
snippets from GuiDisplay3#initComponents()
- Code: Select all
...
JPanel left = ...
...
JToolBar bar = new JToolBar();
bar.add(left);
getContentPane().add(bar, BorderLayout.WEST);
...
JPanel right = ...
...
bar = new JToolBar();
bar.add(right);
getContentPane().add(bar, BorderLayout.EAST);
...
https://jdocking.dev.java.net/
http://www.infonode.net/index.html?idw
haven't looked at any of them though