-
Notifications
You must be signed in to change notification settings - Fork 143
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'eclipse-platform:master' into issue_882_noId
- Loading branch information
Showing
1 changed file
with
64 additions
and
0 deletions.
There are no files selected for viewing
64 changes: 64 additions & 0 deletions
64
bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/layout/TabFolderLayout.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
/******************************************************************************* | ||
* Copyright (c) 2000, 2005 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.swt.layout; | ||
|
||
import org.eclipse.swt.*; | ||
import org.eclipse.swt.graphics.*; | ||
import org.eclipse.swt.widgets.*; | ||
|
||
/** | ||
* This layout controls the position and size of the children of a tab folder. | ||
* In addition this layout can be used for any component that wants | ||
* TabFolder-Like behaviour (e.g. only showing all component at the full size | ||
* of the composite stacked onto each other) | ||
* | ||
* @since 3.128 | ||
*/ | ||
public class TabFolderLayout extends Layout { | ||
|
||
@Override | ||
protected Point computeSize (Composite composite, int wHint, int hHint, boolean flushCache) { | ||
if (wHint != SWT.DEFAULT && hHint != SWT.DEFAULT) | ||
return new Point(wHint, hHint); | ||
|
||
Control [] children = composite.getChildren (); | ||
int count = children.length; | ||
int maxWidth = 0, maxHeight = 0; | ||
for (int i=0; i<count; i++) { | ||
Control child = children [i]; | ||
Point pt = child.computeSize (SWT.DEFAULT, SWT.DEFAULT, flushCache); | ||
maxWidth = Math.max (maxWidth, pt.x); | ||
maxHeight = Math.max (maxHeight, pt.y); | ||
} | ||
|
||
if (wHint != SWT.DEFAULT) | ||
maxWidth= wHint; | ||
if (hHint != SWT.DEFAULT) | ||
maxHeight= hHint; | ||
|
||
return new Point(maxWidth, maxHeight); | ||
|
||
} | ||
|
||
@Override | ||
protected void layout (Composite composite, boolean flushCache) { | ||
Rectangle rect= composite.getClientArea(); | ||
|
||
Control[] children = composite.getChildren(); | ||
for (Control c : children) { | ||
c.setBounds(rect); | ||
} | ||
} | ||
} |