Skip to main content


Eclipse Community Forums
Forum Search:

Search      Help    Register    Login    Home
Home » Eclipse Projects » Standard Widget Toolkit (SWT) » ExpandItem(ExpandItem: parent layout appears incorrect on Expand/Collaps events)
ExpandItem [message #1782191] Tue, 20 February 2018 10:48
Julia Kurde is currently offline Julia KurdeFriend
Messages: 91
Registered: November 2011
Location: Berlin, Germany
Member
Hello,

I have the following snipped with a GridLayout and two Composites, an upper one and a lower one. The lower one is an ExpandBar with one Item. When the Item is collapsed, the parent should layout so that the available vertical space is grabbed by the upper composite. Correspondingly, when the the Item is expanded, it should get the space it needs.
package probieren.julia.layout;
import org.eclipse.swt.SWT;
import org.eclipse.swt.layout.FillLayout;
import org.eclipse.swt.layout.GridData;
import org.eclipse.swt.layout.GridLayout;
import org.eclipse.swt.widgets.Composite;
import org.eclipse.swt.widgets.Display;
import org.eclipse.swt.widgets.Event;
import org.eclipse.swt.widgets.ExpandBar;
import org.eclipse.swt.widgets.ExpandItem;
import org.eclipse.swt.widgets.Listener;
import org.eclipse.swt.widgets.Shell;

public class MyLayoutExpandBar {
	public static void main (String [] args) {
		final Display display = new Display ();
		Shell shell = new Shell (display);
		shell.setLayout (new FillLayout());

		final Composite parent = new Composite (shell, SWT.BORDER);
		parent.setLayout(new GridLayout());
		
		Composite comp = new Composite(parent, SWT.BORDER);
		comp.setLayoutData(new GridData(SWT.FILL, SWT.FILL, true, true));
		
		ExpandBar expandBar = new ExpandBar (parent, SWT.V_SCROLL);
		expandBar.setLayoutData(new GridData(SWT.FILL, SWT.END, true, false));

		ExpandItem item = new ExpandItem (expandBar, SWT.NONE);
		item.setText("Expand Item");
		item.setHeight(200);
		item.setExpanded(true);

		/* Listener */
		expandBar.addListener(SWT.Expand, new Listener() {
			
			@Override
			public void handleEvent(Event event) {
				display.asyncExec(new Runnable() {
					
					@Override
					public void run() {
						parent.layout();
					}
				});
			}
		});
		expandBar.addListener(SWT.Collapse, new Listener() {
			
			@Override
			public void handleEvent(Event event) {
				display.asyncExec(new Runnable() {
					
					@Override
					public void run() {
						parent.layout();
					}
				});
			}
		});
		shell.setText("Shell");
		shell.setSize(300, 300);
		shell.open ();

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

On Windows the snipped works, but on Linux (in my case Ubuntu 16.04 LTS) the size of the ExpandBar after a Collaps/Expand event is not yet updated when parent.layout() is called. So the hight of the ExpandBar is small when it is expanded and large when it is collapsed (just opposite as it should!).
After the parent is resized, e.g. by resizing the shell, the layout appears correctly.

Does anyone know, how to make this work correctly?
Thanks,
Julia
Previous Topic:Failed to open both Excel document and SWT application with Win32OLE embedded objects same time.
Next Topic:In linux table viewer columns are not getting hidden which are in the scrolled area.
Goto Forum:
  


Current Time: Mon May 06 22:00:05 GMT 2024

Powered by FUDForum. Page generated in 5.03826 seconds
.:: Contact :: Home ::.

Powered by: FUDforum 3.0.2.
Copyright ©2001-2010 FUDforum Bulletin Board Software

Back to the top