-
Notifications
You must be signed in to change notification settings - Fork 137
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixes #1317
- Loading branch information
Showing
1 changed file
with
68 additions
and
0 deletions.
There are no files selected for viewing
68 changes: 68 additions & 0 deletions
68
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,68 @@ | ||
/******************************************************************************* | ||
* 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. | ||
* | ||
* @since 2.1 | ||
*/ | ||
class TabFolderLayout extends Layout { | ||
|
||
/* | ||
* @see org.eclipse.swt.widgets.Layout#computeSize(org.eclipse.swt.widgets.Composite, int, int, boolean) | ||
*/ | ||
@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); | ||
|
||
} | ||
|
||
/* | ||
* @see org.eclipse.swt.widgets.Layout#layout(org.eclipse.swt.widgets.Composite, boolean) | ||
*/ | ||
@Override | ||
protected void layout (Composite composite, boolean flushCache) { | ||
Rectangle rect= composite.getClientArea(); | ||
|
||
Control[] children = composite.getChildren(); | ||
for (Control c : children) { | ||
c.setBounds(rect); | ||
} | ||
} | ||
} |