What did I do wrong?
Here is an excerpt from my code:
public void createPartControl(Composite parent) {
parent.setLayout(new FillLayout());
ScrolledComposite scrollBox = new ScrolledComposite(parent, SWT.V_SCROLL);
scrollBox.setExpandHorizontal(true);
mParent = new Composite(scrollBox, SWT.NONE);
scrollBox.setContent(mParent);
FormLayout layout = new FormLayout();
mParent.setLayout(layout);
// Adds a bunch of controls here
mParent.layout();
mParent.setSize(mParent.computeSize(SWT.DEFAULT, SWT.DEFAULT, true));
}
...but it clips the last button:
bigbrother82: That didn't work.
SCdF: I tried your suggestion, and now the scrollbars are gone. I need to work some more on that.
This is a common hurdle when using
ScrolledComposite
. When it gets so small that the scroll bar must be shown, the client control has to shrink horizontally to make room for the scroll bar. This has the side effect of making some labels wrap lines, which moved the following controls farther down, which increased the minimum height needed by the content composite.You need to listen for width changes on the content composite (
mParent
), compute the minimum height again given the new content width, and callsetMinHeight()
on the scrolled composite with new height.In listening for size changes, note that we ignore any resize events where the width stays the same. This is because changes in the height of the content do not affect the minimum height of the content, as long as the width is the same.
Try setting .setMinWidth and .setMinHeight on the ScrolledComposite once the layout has been done, passing it the size of the main composite.
If I am not mistaken you need to swap the
and
so that you have:
Don't you need to recompute the size of the scrollBox after the layout?