我正在使用 JTabbedPane 准备一个带有一些水平选项卡的窗口,选项卡和窗口都准备好了。
现在我需要根据我的要求在级别基础上设置这些选项卡(我的逻辑根据我需要设置级别返回整数值)。
级别看起来像:
你能给些建议么?
我正在使用 JTabbedPane 准备一个带有一些水平选项卡的窗口,选项卡和窗口都准备好了。
现在我需要根据我的要求在级别基础上设置这些选项卡(我的逻辑根据我需要设置级别返回整数值)。
级别看起来像:
你能给些建议么?
只看截图:
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
public class TabHeightTest {
public JComponent makeUI() {
JTabbedPane tabbedPane = new JTabbedPane(
JTabbedPane.TOP, JTabbedPane.SCROLL_TAB_LAYOUT);
tabbedPane.setUI(new javax.swing.plaf.basic.BasicTabbedPaneUI() {
@Override protected int calculateTabHeight(
int tabPlacement, int tabIndex, int fontHeight) {
return 32;
}
@Override protected void paintTab(
Graphics g, int tabPlacement, Rectangle[] rects, int tabIndex,
Rectangle iconRect, Rectangle textRect) {
if(tabIndex==0) {
rects[tabIndex].height = 20 + 1;
rects[tabIndex].y = 32 - rects[tabIndex].height + 1;
} else if(tabIndex==1) {
rects[tabIndex].height = 26 + 1;
rects[tabIndex].y = 32 - rects[tabIndex].height + 1;
}
super.paintTab(g, tabPlacement, rects, tabIndex, iconRect, textRect);
}
});
tabbedPane.addTab("000", new JLabel("aaaaaaaaaaa"));
tabbedPane.addTab("111", new JScrollPane(new JTree()));
tabbedPane.addTab("222", new JSplitPane());
return tabbedPane;
}
public static void main(String[] args) {
EventQueue.invokeLater(new Runnable() {
@Override public void run() {
createAndShowGUI();
}
});
}
public static void createAndShowGUI() {
JFrame frame = new JFrame();
frame.setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE);
frame.getContentPane().add(new TabHeightTest().makeUI());
frame.setSize(320, 240);
frame.setLocationRelativeTo(null);
frame.setVisible(true);
}
}
选项卡边界是外观的责任。如果您可以控制它(如果不是,则无论如何都不应该尝试这种不可移植的技巧),您可以在选项卡式窗格的布局管理器中对其进行修改。
对于BasicLookAndFeel
制表符边界计算在BasicTabbedPaneUI.TabbedPaneLayout.calculateTabRects()
和中完成BasicTabbedPaneUI.TabbedPaneScrollLayout.calculateTabRects()
。对于基本 L&F 派生主题,BasicTabbedPaneUI
有一个createLayout()
方法可以被覆盖以返回具有所需行为的布局管理器。