如何设置对话框相对于标题宽度的宽度?

时间:2012-09-20 16:50:43

标签: java swing width jframe jdialog

我有一个JDialog,里面只有几个组件。我想让对话框尽可能小。目前我正在使用pack()。这会产生意想不到的效果,即减少对话框的宽度,使标题不再完全在视图中。我希望对话框的宽度始终足够大,以便标题始终完全在视图中。

我正在使用摇摆。我意识到标题栏的外观/字体是由OS决定的。我宁愿坚持使用swing,所以目前我正计划根据JLabel的字体计算标题字符串的宽度。然后我将我的一个组件的最小宽度设置为相等。

有没有更好的方法来打包JDialog,同时保持其标题可见?

2 个答案:

答案 0 :(得分:6)

 public static void adjustWidthForTitle(JDialog dialog)
{
    // make sure that the dialog is not smaller than its title
    // this is not an ideal method, but I can't figure out a better one
    Font defaultFont = UIManager.getDefaults().getFont("Label.font");
    int titleStringWidth = SwingUtilities.computeStringWidth(new JLabel().getFontMetrics(defaultFont),
            dialog.getTitle());

    // account for titlebar button widths. (estimated)
    titleStringWidth += 110;

    // set minimum width
    Dimension currentPreferred = dialog.getPreferredSize();

    // +10 accounts for the three dots that are appended when the title is too long
    if(currentPreferred.getWidth() + 10 <= titleStringWidth)
    {
        dialog.setPreferredSize(new Dimension(titleStringWidth, (int) currentPreferred.getHeight()));

    }
}

编辑: 在阅读链接中的trashgod帖子后,我调整了我的解决方案以覆盖getPreferredSize方法。我认为这种方式比我之前的静态方法更好。使用静态方法,我不得不在pack()三明治中调整它。包(),调节(),pack()的。这个isy不需要特别考虑pack()。

JDialog dialog = new JDialog()
    {
        @Override
        public Dimension getPreferredSize()
        {
            Dimension retVal = super.getPreferredSize();

            String title = this.getTitle();

            if(title != null)
            {
                Font defaultFont = UIManager.getDefaults().getFont("Label.font");
                int titleStringWidth = SwingUtilities.computeStringWidth(new JLabel().getFontMetrics(defaultFont),
                        title);

                // account for titlebar button widths. (estimated)
                titleStringWidth += 110;

                // +10 accounts for the three dots that are appended when
                // the title is too long
                if(retVal.getWidth() + 10 <= titleStringWidth)
                {
                    retVal = new Dimension(titleStringWidth, (int) retVal.getHeight());
                }
            }
            return retVal;
        }

    };

答案 1 :(得分:1)

1)使用FontMetrics找出标题的宽度

2)添加一个代表窗口图标和X(关闭)按钮的数字(你应该猜到)。

3)使用上面的值设置对话框的宽度。

您无法找到所需的确切宽度尺寸,但这是一种很好的猜测方式。