blob: 267c3a53cc301227901ff380e4aa3a6c77f4386b [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2001, 2004 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.wst.wsdl.ui.internal.gef.util.figures;
import org.eclipse.draw2d.*;
import org.eclipse.draw2d.geometry.*;
import java.util.*;
/**
* Figures using the StackLayout as their layout manager have
* their children placed on top of one another. Order of
* placement is determined by the order in which the children
* were added, first child added placed on the bottom.
*/
public class CenterLayout extends AbstractLayout
{
public static final int ALIGNMENT_TOP = 1;
public static final int ALIGNMENT_CENTER = 2;
public static final int ALIGNMENT_BOTTOM = 3;
protected int spacing;
protected int verticalAlignment = ALIGNMENT_CENTER;
public CenterLayout(){}
public CenterLayout(int spacing){ this.spacing = spacing; }
/**
* Calculates and returns the preferred size of the input container.
* This is the size of the largest child of the container, as all
* other children fit into this size.
*
* @param figure Container figure for which preferred size is required.
* @return The preferred size of the input figure.
* @since 2.0
*/
// protected Dimension calculatePreferredSize(IFigure figure)
protected Dimension calculatePreferredSize(IFigure figure, int width, int height)
{
Dimension d = calculatePreferredClientAreaSize(figure);
// d.expand(figure.getInsets().getWidth(),
// figure.getInsets().getHeight());
d.expand(width, height);
d.union(getBorderPreferredSize(figure));
return d;
}
protected Dimension calculatePreferredClientAreaSize(IFigure figure)
{
Dimension d = new Dimension();
List children = figure.getChildren();
for (Iterator i = children.iterator(); i.hasNext(); )
{
IFigure child = (IFigure)i.next();
Dimension childSize = child.getPreferredSize();
d.height += childSize.height;
d.width = Math.max(childSize.width, d.width);
}
int childrenSize = children.size();
if (childrenSize > 0)
{
d.height += spacing * children.size() - 1;
}
return d;
}
/*
* Returns the minimum size required by the input container.
* This is the size of the largest child of the container, as all
* other children fit into this size.
*/
// TODO GEF PORT
public Dimension getMinimumSize(IFigure figure, int width, int height)
{
Dimension d = new Dimension();
List children = figure.getChildren();
IFigure child;
for (int i=0; i < children.size(); i++)
{
child = (IFigure)children.get(i);
d.union(child.getMinimumSize());
}
d.expand(figure.getInsets().getWidth(), figure.getInsets().getHeight());
return d;
}
// TODO GEF PORT
public Dimension getPreferredSize(IFigure figure, int width, int height)
{
return calculatePreferredSize(figure, figure.getInsets().getWidth(), figure.getInsets().getHeight());
}
public void layout(IFigure figure)
{
Rectangle r = figure.getClientArea();
List children = figure.getChildren();
Dimension preferredClientAreaSize = calculatePreferredClientAreaSize(figure);
int x = r.x + (r.width - preferredClientAreaSize.width) / 2;
int y = 0;
switch (getVerticalAlignment())
{
case ALIGNMENT_TOP :
{
y = r.y;
break;
}
case ALIGNMENT_CENTER :
{
y = r.y + (r.height - preferredClientAreaSize.height) / 2;
break;
}
case ALIGNMENT_BOTTOM :
{
y = r.y + (r.height - preferredClientAreaSize.height);
break;
}
}
for (Iterator i = children.iterator(); i.hasNext(); )
{
IFigure child = (IFigure)i.next();
Dimension childSize = child.getPreferredSize();
child.setBounds(new Rectangle(x, y, childSize.width, childSize.height));
y += childSize.height + spacing;
}
}
/**
* @param verticalAlignment The verticalAlignment to set.
*/
public void setVerticalAlignment(int verticalAlignment)
{
this.verticalAlignment = verticalAlignment;
}
protected int getVerticalAlignment()
{
return verticalAlignment;
}
}