com.alee.extended.layout.HorizontalOverflowLayout Maven / Gradle / Ivy
The newest version!
/*
* This file is part of WebLookAndFeel library.
*
* WebLookAndFeel library is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* WebLookAndFeel library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with WebLookAndFeel library. If not, see .
*/
package com.alee.extended.layout;
import java.awt.*;
/**
* @author Mikle Garin
*/
public class HorizontalOverflowLayout extends AbstractLayoutManager
{
protected int overflow;
public HorizontalOverflowLayout ( final int overflow )
{
this.overflow = overflow;
}
public int getOverflow ()
{
return overflow;
}
public void setOverflow ( final int overflow )
{
this.overflow = overflow;
}
@Override
public Dimension preferredLayoutSize ( final Container container )
{
return getLayoutSize ( container, false );
}
@Override
public Dimension minimumLayoutSize ( final Container container )
{
return getLayoutSize ( container, true );
}
@Override
public void layoutContainer ( final Container container )
{
// Required size
final Dimension required = preferredLayoutSize ( container );
// Available size (limiting width to required)
final Dimension available = new Dimension ( required.width, container.getSize ().height );
final boolean min = required.width < available.width;
final Insets insets = container.getInsets ();
int x = insets.left;
final int y = insets.top;
final int h = Math.max ( available.height, required.height ) - insets.top - insets.bottom;
final int xsWidth = available.width - required.width;
final int count = container.getComponentCount ();
for ( int i = 0; i < count; i++ )
{
final Component c = container.getComponent ( i );
if ( c.isVisible () )
{
int w = min ? c.getMinimumSize ().width : c.getPreferredSize ().width;
if ( xsWidth > 0 )
{
w += w * xsWidth / required.width;
}
c.setBounds ( x, y, w, h );
x += w - overflow;
}
}
}
protected Dimension getLayoutSize ( final Container container, final boolean min )
{
final int count = container.getComponentCount ();
final Dimension size = new Dimension ( 0, 0 );
for ( int i = 0; i < count; i++ )
{
final Component c = container.getComponent ( i );
final Dimension tmp = min ? c.getMinimumSize () : c.getPreferredSize ();
size.height = Math.max ( tmp.height, size.height );
size.width += tmp.width;
if ( i != 0 )
{
size.width -= overflow;
}
}
final Insets border = container.getInsets ();
size.width += border.left + border.right;
size.height += border.top + border.bottom;
return size;
}
}