Hi,
Is it possible to add a button to a tabbedpane like in firefox. The green plus-button is what I want.
Thanks
Hi,
Is it possible to add a button to a tabbedpane like in firefox. The green plus-button is what I want.
Thanks
I think you should be able to manage it by building your own JTabbedPaneUI
and setting it on the JTabbedPane
using setUI
.
Your ComponentUI
has methods to get a hold of the accessible children. If you specify a JButton
and a JLabel
then you may be in business.
I haven't attempted this myself though. This is "at your own risk" :)