Is it possible and good to add non dockable component like JButton, JPanel to a station?
(I need to have a station that contains dockable + non dockable components)
could you please give me an example?
I’m trying to use station.setBasePane(…) but it seems not the good choice.
It is a very bad idea because any station can remove, reshape, shuffle, etc… its Component-children at any time.
How about a Dockable without title? Overriding the two accept-methods (to ensure the dockable is not moved away) and the getDockTitle (to ensure no title is visible) would get you something like a “panel” where you can add your buttons.