Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
/*
* Copyright (c) 2016, Metron, Inc.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* * Neither the name of Metron, Inc. nor the
* names of its contributors may be used to endorse or promote products
* derived from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
* DISCLAIMED. IN NO EVENT SHALL METRON, INC. BE LIABLE FOR ANY
* DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
package com.metsci.glimpse.docking;
import static java.lang.Math.round;
import java.awt.Component;
import java.awt.Point;
import java.awt.event.MouseEvent;
import java.util.Iterator;
import java.util.List;
import java.util.ListIterator;
import javax.swing.BorderFactory;
import javax.swing.Box;
import javax.swing.SwingUtilities;
import javax.swing.border.Border;
/**
* These utility methods aren't specific to docking, but are used internally by
* the docking code. They are kept out of DockingUtils not to hide them, but to
* avoid static-import collisions with other utility classes.
*
*/
public class MiscUtils
{
public static class IntAndIndex
{
public final int value;
public final int index;
public IntAndIndex( int value, int index )
{
this.value = value;
this.index = index;
}
}
public static IntAndIndex minValueAndIndex( int... vs )
{
int iBest = -1;
int vBest = Integer.MAX_VALUE;
for ( int i = 0; i < vs.length; i++ )
{
int v = vs[i];
if ( v < vBest )
{
iBest = i;
vBest = v;
}
}
return new IntAndIndex( vBest, iBest );
}
@SuppressWarnings( "unchecked" )
public static T getAncestorOfClass( Class extends T> clazz, Component c )
{
return ( T ) SwingUtilities.getAncestorOfClass( clazz, c );
}
public static Point convertPointFromScreen( Point pOnScreen, Component c )
{
Point pInC = new Point( pOnScreen );
SwingUtilities.convertPointFromScreen( pInC, c );
return pInC;
}
public static Point convertPointToScreen( Component c, Point pInC )
{
Point pOnScreen = new Point( pInC );
SwingUtilities.convertPointToScreen( pOnScreen, c );
return pOnScreen;
}
public static Point pointRelativeToAncestor( MouseEvent ev, Component ancestor )
{
int i = ev.getX( );
int j = ev.getY( );
for ( Component c = ev.getComponent( ); c != ancestor; c = c.getParent( ) )
{
i += c.getX( );
j += c.getY( );
}
return new Point( i, j );
}
public static Border createEmptyBorder( int size )
{
return BorderFactory.createEmptyBorder( size, size, size, size );
}
public static Box createVerticalBox( Component... cs )
{
Box box = Box.createVerticalBox( );
for ( Component c : cs )
box.add( c );
return box;
}
public static int iround( double d )
{
return round( ( float ) d );
}
public static boolean areEqual( Object a, Object b )
{
return ( a == b || ( a != null && a.equals( b ) ) );
}
public static Iterable reversed( final List list )
{
return new Iterable( )
{
public Iterator iterator( )
{
return new Iterator( )
{
final ListIterator it = list.listIterator( list.size( ) );
public boolean hasNext( )
{
return it.hasPrevious( );
}
public T next( )
{
return it.previous( );
}
public void remove( )
{
it.remove( );
}
};
}
};
}
}