web-dev-qa-db-fra.com

Comment masquer un composite SWT pour qu'il ne prenne pas de place?

J'ai besoin de cacher un composite (et tous les enfants à l'intérieur). Il suffit de définir setVisible(false) pour conserver l’espace du composite.

Composite outer = new Composite(parent, SWT.NONE);      
outer.setLayout(new GridLayout(1,false));
outer.setLayoutData(new GridData(GridData.FILL_BOTH) );

Composite compToHide = new MyComposite(outer, SWT.NONE);        
compToHide.setLayout(new GridLayout());
compToHide.setVisible(false);
20
yuris

Voici un code qui fait ce que vous voulez. J'utilise fondamentalement GridData#exclude en combinaison avec Control#setVisible(boolean) pour masquer/afficher la Composite:

public static void main(String[] args)
{
    Display display = new Display();
    final Shell shell = new Shell(display);
    Shell.setText("StackOverflow");
    Shell.setLayout(new GridLayout(1, true));

    Button hideButton = new Button(Shell, SWT.Push);
    hideButton.setText("Toggle");

    final Composite content = new Composite(Shell, SWT.NONE);
    content.setLayout(new GridLayout(3, false));

    final GridData data = new GridData(SWT.FILL, SWT.FILL, true, true);
    content.setLayoutData(data);

    for(int i = 0; i < 10; i++)
    {
        new Label(content, SWT.NONE).setText("Label " + i);
    }

    hideButton.addListener(SWT.Selection, new Listener()
    {
        @Override
        public void handleEvent(Event arg0)
        {
            data.exclude = !data.exclude;
            content.setVisible(!data.exclude);
            content.getParent().pack();
        }
    });

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

Avant de se cacher:

enter image description here

Après avoir caché:

enter image description here

22
Baz

Définissez un GridData pour votre contrôle, puis après vous: control.setVisible(false) do gridData.exclude=true

1
ACV