设置Java SWT shell窗口内部区域的大小

时间:2011-05-14 18:58:40

标签: java swt

在Java SWT shell窗口中,如何设置其内部大小而不是整个窗口框架大小?

例如,如果我使用shell.setSize(300,250),这将使整个窗口显示为300x250。这个300x250包括窗框的大小。

如何将内部大小(即shell窗口的内容显示区域)设置为300x250?这就是300x250,不包括窗框的宽度。

我试图减去一些偏移值,但事情是不同的操作系统有不同的窗口框架大小。因此,持续偏移是不准确的。

感谢。

4 个答案:

答案 0 :(得分:7)

根据您的问题,我理解的是您要设置Client Area的维度。在SWT术语中,它被定义为 a rectangle which describes the area of the receiver which is capable of displaying data (that is, not covered by the "trimmings").

您无法直接设置Client Area的维度,因为它没有API。虽然你可以通过一点点破解来实现这一目标。在下面的示例代码中,我希望我的客户区域为 300 by 250 。为此,我使用了shell.addShellListener()事件监听器。当shell完全处于活动状态时(参见 public void shellActivated(ShellEvent e) ),我会计算不同的边距并再次设置shell的大小。计算和重置外壳尺寸可以得到所需的外壳尺寸。

<强> >>Code:

import org.eclipse.swt.SWT;
import org.eclipse.swt.events.ShellEvent;
import org.eclipse.swt.events.ShellListener;
import org.eclipse.swt.layout.GridData;
import org.eclipse.swt.layout.GridLayout;
import org.eclipse.swt.widgets.Display;
import org.eclipse.swt.widgets.Menu;
import org.eclipse.swt.widgets.Shell;

public class MenuTest {

    public static void main (String [] args) 
    {
        Display display = new Display ();
        final Shell shell = new Shell (display);

        GridLayout layout = new GridLayout();
        layout.marginHeight = 0;
        layout.marginWidth = 0;
        layout.horizontalSpacing = 0;
        layout.verticalSpacing = 0;
        layout.numColumns = 1;
        shell.setLayout(layout);
        shell.setLayoutData(new GridData(SWT.FILL, SWT.FILL, true,true));
        final Menu bar = new Menu (shell, SWT.BAR);
        shell.setMenuBar (bar);

        shell.addShellListener(new ShellListener() {

            public void shellIconified(ShellEvent e) {
            }
            public void shellDeiconified(ShellEvent e) {
            }
            public void shellDeactivated(ShellEvent e) {
            }
            public void shellClosed(ShellEvent e) {
                System.out.println("Client Area: " + shell.getClientArea());
            }
            public void shellActivated(ShellEvent e) {
                int frameX = shell.getSize().x - shell.getClientArea().width;
                int frameY = shell.getSize().y - shell.getClientArea().height;
                shell.setSize(300 + frameX, 250 + frameY);
            }
        });     

        shell.open ();
        while (!shell.isDisposed()) {
            if (!display.readAndDispatch ()) display.sleep ();
        }
        display.dispose ();
    }
} 

答案 1 :(得分:0)

如果我说得对,你应该将内部组件的大小设置为所需的大小,并使用pack()(框架的)方法。

答案 2 :(得分:0)

import org.eclipse.swt.SWT;
import org.eclipse.swt.graphics.*;
import org.eclipse.swt.widgets.*;

public class SWTClientAreaTest
{
    Display display;
    Shell shell;
    final int DESIRED_CLIENT_AREA_WIDTH = 300;
    final int DESIRED_CLIENT_AREA_HEIGHT = 200;

    void render()
    {
        display = Display.getDefault();
        shell = new Shell(display, SWT.SHELL_TRIM | SWT.CENTER);

        Point shell_size = shell.getSize();
        Rectangle client_area = shell.getClientArea();

        shell.setSize
        (
            DESIRED_CLIENT_AREA_WIDTH + shell_size.x - client_area.width,
            DESIRED_CLIENT_AREA_HEIGHT + shell_size.y - client_area.height
        );

        shell.open();

        while (!shell.isDisposed()) 
        {
            if (!display.readAndDispatch()) 
            {
                display.sleep();
            }
        }

        display.dispose();
    }

    public static void main(String[] args)
    {
        SWTClientAreaTest appl = new SWTClientAreaTest();
        appl.render();
    }
}

答案 3 :(得分:-1)

使用 computeTrim 计算显示给定客户区所需的边界。该方法返回一个矩形,该矩形描述为参数中指定的客户区提供空间所需的边界。

在此示例中,外壳的大小设置为能够显示 100 x 200(宽 x 高)的客户区域:

Rectangle bounds = shell.computeTrim(0, 0, 100, 200);
shell.setSize(bounds.width, bounds.height);

本文描述了 SWT 用于小部件尺寸的术语: https://www.eclipse.org/articles/Article-Understanding-Layouts/Understanding-Layouts.htm