How can I adjust the height of a Tab's Title

Dear friends,I setup several Tab in a panel, but I think the title height of each Tabbed panel is too high, is there any parameter I can set to change their height?Thankssunny
[203 byte] By [sunnymanmana] at [2007-11-26 19:36:35]
# 1
Use the appropriate [url http://java.sun.com/docs/books/tutorial/uiswing/layout/visual.html]Layout Manager[/url] or combination of Layout Managers.
camickra at 2007-7-9 22:12:36 > top of Java-index,Desktop,Core GUI APIs...
# 2
Sorry, I did nor describe clearly,It is the hight of Tab's Title,which is on the upper left corner of each Tab I hope to change, It is not the height of Tab,Regardssunny
sunnymanmana at 2007-7-9 22:12:36 > top of Java-index,Desktop,Core GUI APIs...
# 3
what's in the tab - just text? text and icon?post a demo of the problem, just a JTabbedPane with a single tab.
Michael_Dunna at 2007-7-9 22:12:36 > top of Java-index,Desktop,Core GUI APIs...
# 4
UIManager.put("TabbedPane.tabInsets", new Insets(40, 40, 40, 40) );
camickra at 2007-7-9 22:12:36 > top of Java-index,Desktop,Core GUI APIs...
# 5

My code as follows,

It is ICON, not text, but Title is too high, I hope to reduce to icon's height:

final JTabbedPane tabbedPane = new JTabbedPane();

tabbedPane.setTabPlacement(SwingConstants.LEFT);

panel.add(tabbedPane, BorderLayout.CENTER);

tabbedPane.addTab("", SwingResourceManager.getIcon(TestTabPaneSub_1.class, "images/boy.JPG"),

Thanks

sunny

sunnymanmana at 2007-7-9 22:12:36 > top of Java-index,Desktop,Core GUI APIs...
# 6
Do you want to resize the icon itself, or want the container to fit the icon?Did you try replacing the title " " to null?I'm lazy I didn't try your code ;p
Icycoola at 2007-7-9 22:12:36 > top of Java-index,Desktop,Core GUI APIs...
# 7
Dear friend:I want the container to fit the icon, because I can see there is a margin space between my icon and container, I also try replacing the title " " to null, but no effect.any other advice?Thanks so much.sunny
sunnymanmana at 2007-7-9 22:12:36 > top of Java-index,Desktop,Core GUI APIs...
# 8
I don't know much, but this might help you:JTabbedPane.setUI(TabbedPaneUI ui)[url= http://72.5.124.55/j2se/1.4.2/docs/api/javax/swing/plaf/basic/BasicTabbedPaneUI.html]Class BasicTabbedPaneUI[/url]
Icycoola at 2007-7-9 22:12:36 > top of Java-index,Desktop,Core GUI APIs...