Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 1577de4ec423dbdfdf4b2209b2b6d80b72e8da07 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
/*******************************************************************************
 * Copyright (c) 2004, 2015 IBM Corporation and others.
 *
 * This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License 2.0
 * which accompanies this distribution, and is available at
 * https://www.eclipse.org/legal/epl-2.0/
 *
 * SPDX-License-Identifier: EPL-2.0
 *
 * Contributors:
 *     IBM Corporation - initial API and implementation
 *******************************************************************************/

package org.eclipse.ui.internal.layout;

import org.eclipse.swt.graphics.Rectangle;
import org.eclipse.swt.widgets.Composite;
import org.eclipse.swt.widgets.Control;
import org.eclipse.swt.widgets.Layout;
import org.eclipse.swt.widgets.Shell;

/**
 * Contains various methods for manipulating layouts
 *
 * @since 3.0
 */
public class LayoutUtil {

	/**
	 * Should be called whenever a control's contents have changed. Will trigger a
	 * layout parent controls if necessary.
	 *
	 * @param changedControl
	 */
	public static void resize(Control changedControl) {
		Composite parent = changedControl.getParent();

		Layout parentLayout = parent.getLayout();

		if (parentLayout instanceof ICachingLayout) {
			((ICachingLayout) parentLayout).flush(changedControl);
		}

		if (parent instanceof Shell) {
			parent.layout(true);
		} else {
			Rectangle currentBounds = parent.getBounds();

			resize(parent);

			// If the parent was resized, then it has already triggered a
			// layout. Otherwise, we need to manually force it to layout again.
			if (currentBounds.equals(parent.getBounds())) {
				parent.layout(true);
			}
		}
	}
}

Back to the top