gpt4 book ai didi

java - 更改 JTabbedPane 标题的大小

转载 作者:行者123 更新时间:2023-11-30 08:03:56 24 4
gpt4 key购买 nike

我正在使用 JTabbedPane 创建 IDE。当我向 JTabbedPane 添加选项卡时,有些标题较长,有些标题较短。这会导致标题长度相当难看,其中一些标题非常长。

我将 Pane 添加到 JTabbedPane 的示例:

codes.addTab("", icon, scroll.get(scroll.size() - 1));

当我运行程序时,会产生以下输出:

enter image description here

如您所见,较长的标题选项卡使标题选项卡变得又长又难看。当我添加太多选项卡时,会发生这种情况:

enter image description here

问题:我是否能够修复或缩放标题大小,例如限制标题的长度,因为它太长了?也可能是太多文件上的左右箭头?就像这样:

enter image description here

最佳答案

如果您想设置选项卡的大小,则会有点复杂,因为在某种程度上您应该覆盖 JTabbedPane paint() 方法系列和您使用的 LookAndFeel 的默认行为。我想说的是,它并没有你想象的那么难看,因为像 Eclipse 或 Intellij 这样的 manu IDE 也有不同长度的源文件制表符大小:

eclipse :

enter image description here

所以不用担心尺寸。

但是关于选项卡的放置,您必须使用以下方法来更改选项卡放置的布局:

tabbedPane.setTabLayoutPolicy(JTabbedPane.SCROLL_TAB_LAYOUT);

你可以在你新孵化的IDE中添加一些SplitPanes,使其变得专业。尝试以下代码片段:

import java.awt.BorderLayout;
import java.awt.Dimension;
import java.awt.Toolkit;

import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JPanel;
import javax.swing.JSplitPane;
import javax.swing.JTabbedPane;
import javax.swing.JTextArea;
import javax.swing.JToolBar;
import javax.swing.UIManager;

public class MainWindow extends JFrame {
private static final int FRAME_WIDTH = 1024;
private static final int FRAME_HEIGHT = 600;

public MainWindow() {
Dimension dim = Toolkit.getDefaultToolkit().getScreenSize();
setBounds(dim.width/2-FRAME_WIDTH/2, dim.height/2-FRAME_HEIGHT/2, FRAME_WIDTH, FRAME_HEIGHT);
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
//
this.setLayout(new BorderLayout(4, 4));
//
JToolBar toolBar = new JToolBar();
toolBar.add(new JButton("Test"));
toolBar.add(new JButton("Test"));
toolBar.add(new JButton("Test"));
toolBar.add(new JButton("Test"));
JPanel northPanel = new JPanel();
northPanel.add(toolBar);
//
JPanel southPanel = new JPanel();
JLabel statusLabel = new JLabel("Test Status...");
southPanel.add(statusLabel);
//
this.add(northPanel, BorderLayout.NORTH);
this.add(southPanel, BorderLayout.SOUTH);
//
JPanel westPanel = new JPanel(new BorderLayout());
JPanel eastPanel = new JPanel(new BorderLayout());
JSplitPane splitPane = new JSplitPane(JSplitPane.HORIZONTAL_SPLIT);
splitPane.setLeftComponent(eastPanel);
splitPane.setRightComponent(westPanel);
splitPane.setDividerLocation(250);
splitPane.setContinuousLayout(true);
this.add(splitPane, BorderLayout.CENTER);
//
JTabbedPane tabbedPane = new JTabbedPane();
tabbedPane.addTab("MyNewIdeTabbedPaneTest.java", new JTextArea());
tabbedPane.addTab("MyFrame.java", new JTextArea());
tabbedPane.addTab("JButton.java", new JTextArea());
tabbedPane.addTab("Main.java", new JTextArea());
tabbedPane.addTab("MyNewIdeTabbedPaneTest.java", new JTextArea());
tabbedPane.addTab("MyFrame.java", new JTextArea());
tabbedPane.addTab("JButton.java", new JTextArea());
tabbedPane.addTab("Main.java", new JTextArea());
tabbedPane.addTab("MyNewIdeTabbedPaneTest.java", new JTextArea());
tabbedPane.addTab("MyFrame.java", new JTextArea());
tabbedPane.addTab("JButton.java", new JTextArea());
tabbedPane.addTab("Main.java", new JTextArea());
tabbedPane.setTabLayoutPolicy(JTabbedPane.SCROLL_TAB_LAYOUT);
tabbedPane.setAutoscrolls(false);
//tabbedPane.setTabLayoutPolicy(JTabbedPane.WRAP_TAB_LAYOUT); Also try this in comparison with above line
westPanel.add(tabbedPane, BorderLayout.CENTER);
}

public static void main(String[] args) {
try {
UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
} catch (Exception e) {
e.printStackTrace();
}
MainWindow mw = new MainWindow();
mw.setVisible(true);
}
}

祝你好运。

关于java - 更改 JTabbedPane 标题的大小,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31450762/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com