Swing BoxLayout问题与JComboBox没有使用setXXXSize



这是一个SSCCE:

import java.awt.Color;
import java.awt.Dimension;
import javax.swing.Box;
import javax.swing.BoxLayout;
import javax.swing.JButton;
import javax.swing.JComboBox;
import javax.swing.JFrame;
import javax.swing.JPanel;

public class BoxLayoutTest extends JFrame {
    public BoxLayoutTest(){
        JPanel main = new JPanel();
        main.setLayout(new BoxLayout(main, BoxLayout.Y_AXIS));
        main.setBackground(Color.red);
        this.add(main);
        JPanel northPanel = new JPanel();
        JPanel middle = new JPanel();
        middle.setLayout(new BoxLayout(middle, BoxLayout.X_AXIS));
        middle.add(new JButton("FOO"));
        middle.add(Box.createHorizontalGlue());
        JPanel aPanel = new JPanel();
        aPanel.setBackground(Color.black);
            JComboBox b = new JComboBox();
    //b.setPreferredSize(new Dimension(100,16)); //uncomment this to see the layout I would like to achieve
    //b.setMaximumSize(new Dimension(100,16));
        //middle.add(b); //uncomment this line 
        middle.setBackground(Color.green);
        northPanel.setBackground(Color.blue);
        main.add(northPanel);
        main.add(middle);
        main.add(Box.createVerticalGlue());
        this.setSize(800,600);
        this.setResizable(true);
        this.setVisible(true);
    }
    public static void main(String[] args) {
        new BoxLayoutTest();
    }
}

我试图重构一些类我写了一段时间前,当我不知道使用setXXXSize方法的组件是错误的。使用可调整大小的框架,我想达到的结果如下:

  1. northPanel应该保持在顶部,并根据帧大小的修改改变它的大小(似乎工作得很好)
  2. 我放置JButton的绿色面板应该保持JButton的最大尺寸,并保持在上面的蓝色面板下方(如果我只把JButtons放在面板内,这就可以了)。

如果我将JComboBox放在绿色面板中(尝试取消SSCCE中的行注释),就会出现问题。我猜JComboBox没有指定最大尺寸,所以它会随着帧拉伸。在以前的错误版本的代码中,我在JComboBox上使用setxxxSize方法来限制它的尺寸(尝试取消setxxxSize方法上的行注释来查看它)。

我的问题是:
  1. 是否有可能在不调用setXXXSize()方法的情况下使用BoxLayout实现相同的结果?
  2. 如果是,如何处理?
  3. 是否有任何其他的LayoutManager,我可以用它来获得这种效果?

请告诉我正确的方向

JComboBox在报告无界最大高度时行为不当(与JTextField相同):不应该显示超过一行。补救方法相同:子类化并返回一个合理的高度

        JComboBox b = new JComboBox() {
            /** 
             * @inherited <p>
             */
            @Override
            public Dimension getMaximumSize() {
                Dimension max = super.getMaximumSize();
                max.height = getPreferredSize().height;
                return max;
            }
        };

只是为了好玩,这里有一个使用MigLayout的片段(这是我个人目前最喜欢的:-)

    // two panels as placeholders
    JPanel northPanel = new JPanel();
    northPanel.setBackground(Color.YELLOW);
    JPanel southPanel = new JPanel();
    southPanel.setBackground(Color.YELLOW);
    // layout with two content columns
    LC layoutContraints = new LC().wrapAfter(2)
            .debug(1000);
    AC columnContraints = new AC()
    // first column pref, followed by greedy gap
            .size("pref").gap("push")
            // second
            .size("pref");
    // three rows, top/bottom growing, middle pref
    AC rowContraints = new AC()
       .grow().gap().size("pref").gap().grow();
    MigLayout layout = new MigLayout(layoutContraints, columnContraints,
            rowContraints);
    JPanel main = new JPanel(layout);
    main.setBackground(Color.WHITE);
    // add top spanning columns and growing
    main.add(northPanel, "spanx, grow");
    main.add(new JButton("FOO"));
    // well-behaved combo: max height == pref height
    JComboBox combo = new JComboBox() {
        @Override
        public Dimension getMaximumSize() {
            Dimension max = super.getMaximumSize();
            max.height = getPreferredSize().height;
            return max;
        }
    };
    // set a prototype to keep it from constantly adjusting
    combo.setPrototypeDisplayValue("somethingaslongasIwant");
    main.add(combo);
    // add top spanning columns and growing
    main.add(southPanel, "spanx, grow");

我一直认为在jdk中使用布局管理器并不容易。它们要么太简单和不灵活,要么网格布局太麻烦。相反,我开始使用jgoodies表单布局,从此再也没有回头。看看吧。它非常简单易用。这里有一个链接:

http://www.jgoodies.com/freeware/forms/

务必把白皮书通读一遍。

现在,google也为我们提供了一个用于formlayout的WYSISWG编辑器作为eclipse的插件。这让生活变得轻松了很多很多。

http://code.google.com/javadevtools/wbpro/palettes/swing_palette.html

相关内容

  • 没有找到相关文章

最新更新