gpt4 book ai didi

java - Swing 布局管理器/解决方案来替换动态创建和嵌套的分割 Pane ?

转载 作者:行者123 更新时间:2023-11-30 04:38:32 27 4
gpt4 key购买 nike

我正在开发一个文本编辑器,用户可以在其中自由地将编辑器窗口垂直或水平划分任意次数(即划分为任意数量的 Pane )。单个窗口可以垂直和水平划分(例如,2 行、一个包含 3 列等)。每个 Pane 都包含 JScrollPane 内的 JTextArea 和状态栏。

到目前为止,我的方法是使用嵌套的 JSplitPanes。我一直在努力安排分割 Pane 分隔线,以便窗口中的空间在所有垂直或水平分割 Pane 之间平均分配。我已经非常接近正确,但我不得不在很多地方使用 setPreferredSize() ( Should I avoid the use of set[Preferred|Maximum|Minimum]Size methods in Java Swing? )。

我想知道采用完全不同的方法是否会更容易/更好。 MultiSplitPane看起来很诱人...

最适合我的情况的布局/方法是什么?

最佳答案

现在我正在对您想要的进行一些假设。我想您问是否有一种简单的方法可以动态添加具有相同宽度/高度的文本 Pane (垂直或水平分割,但不混合两者)。

水平分割示例

Screenshot Horizontal Split

垂直分割示例

Screenshot Vertical Split

如果是这种情况,我建议使用 BoxLayout - 它几乎不需要任何配置即可完成此操作。

import java.awt.*;
import java.awt.event.*;
import javax.swing.*;

public class SplitablePanel extends Box{

Box container;
Dimension minSize = new Dimension(400, 300);

public SplitablePanel(int axis){
super(BoxLayout.Y_AXIS);

//Container that holds all the text areas
container = new Box(axis);
container.setAlignmentX(Box.LEFT_ALIGNMENT);
add(container);

JTextArea text = new JTextArea();
container.add(new JScrollPane(text));

//Button to add another pane
JButton split = new JButton("Split");
split.setAlignmentX(Box.LEFT_ALIGNMENT);
split.addActionListener(new ActionListener(){

@Override
public void actionPerformed(ActionEvent e) {
JTextArea text = new JTextArea();
container.add(new JScrollPane(text));
revalidate();
}});
add(split);

//Button To switch Axis - more for demo purposes
JButton axisChanger = new JButton("Change Axis");
axisChanger.setAlignmentX(Box.LEFT_ALIGNMENT);
axisChanger.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
Box newContainer;
if(((BoxLayout)container.getLayout()).getAxis() == BoxLayout.X_AXIS){
newContainer = Box.createVerticalBox();
} else{
newContainer = Box.createHorizontalBox();
}

for(Component c : container.getComponents()){
container.remove(c);
newContainer.add(c);
}
remove(container);
add(newContainer, 0);
container = newContainer;
container.setAlignmentX(Box.LEFT_ALIGNMENT);
revalidate();
}
});
add(axisChanger);

}

@Override
public Dimension getPreferredSize() {
Dimension result = super.getPreferredSize();
result.width = result.width > minSize.width ? result.width : minSize.width;
result.height = result.height > minSize.height ? result.height : minSize.height;
return result;
}

public static void main(String[] args) {
final JFrame frame = new JFrame();
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.add(new SplitablePanel(BoxLayout.X_AXIS));
frame.pack();
frame.setLocationRelativeTo(null);
frame.setVisible(true);
}

}

关于java - Swing 布局管理器/解决方案来替换动态创建和嵌套的分割 Pane ?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12848566/

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