2008-04-20 12:03:19 -04:00
package net.sourceforge.tuned.ui ;
2008-10-21 13:49:08 -04:00
import java.awt.Color ;
2008-04-20 12:03:19 -04:00
import java.awt.Dimension ;
2008-06-21 15:24:18 -04:00
import java.awt.Graphics2D ;
import java.awt.Image ;
2008-04-20 12:03:19 -04:00
import java.awt.Point ;
import java.awt.Window ;
2008-04-27 13:36:27 -04:00
import java.awt.event.ActionEvent ;
import java.awt.event.ActionListener ;
2008-06-21 15:24:18 -04:00
import java.awt.image.BufferedImage ;
2009-01-24 19:08:57 -05:00
import java.beans.PropertyChangeEvent ;
import java.beans.PropertyChangeListener ;
import java.lang.reflect.Method ;
2008-04-20 12:03:19 -04:00
import javax.swing.Action ;
2008-06-21 15:24:18 -04:00
import javax.swing.Icon ;
2008-07-30 18:37:01 -04:00
import javax.swing.ImageIcon ;
2008-04-20 12:03:19 -04:00
import javax.swing.JComponent ;
import javax.swing.JDialog ;
import javax.swing.KeyStroke ;
2008-07-30 18:37:01 -04:00
import javax.swing.SwingUtilities ;
2008-04-27 13:36:27 -04:00
import javax.swing.Timer ;
2008-04-20 12:03:19 -04:00
2009-02-09 15:56:20 -05:00
import net.sourceforge.tuned.ExceptionUtilities ;
2008-04-20 12:03:19 -04:00
2009-01-24 19:08:57 -05:00
public final class TunedUtilities {
2008-04-20 12:03:19 -04:00
2008-10-21 13:49:08 -04:00
public static final Color TRANSLUCENT = new Color ( 255 , 255 , 255 , 0 ) ;
2008-07-30 18:37:01 -04:00
public static void checkEventDispatchThread ( ) {
if ( ! SwingUtilities . isEventDispatchThread ( ) ) {
throw new IllegalStateException ( " Method must be accessed from the Swing Event Dispatch Thread, but was called on Thread \" " + Thread . currentThread ( ) . getName ( ) + " \" " ) ;
}
2008-05-03 16:43:15 -04:00
}
2008-07-30 18:37:01 -04:00
public static void putActionForKeystroke ( JComponent component , KeyStroke keystroke , Action action ) {
2008-04-20 12:03:19 -04:00
Integer key = action . hashCode ( ) ;
component . getInputMap ( JComponent . WHEN_ANCESTOR_OF_FOCUSED_COMPONENT ) . put ( keystroke , key ) ;
component . getActionMap ( ) . put ( key , action ) ;
}
public static Point getPreferredLocation ( JDialog dialog ) {
Window owner = dialog . getOwner ( ) ;
if ( owner = = null )
return new Point ( 120 , 80 ) ;
Point p = owner . getLocation ( ) ;
Dimension d = owner . getSize ( ) ;
return new Point ( p . x + d . width / 4 , p . y + d . height / 7 ) ;
}
2008-04-27 13:36:27 -04:00
2008-06-21 15:24:18 -04:00
public static Image getImage ( Icon icon ) {
2009-01-24 19:08:57 -05:00
if ( icon = = null )
return null ;
if ( icon instanceof ImageIcon )
2008-07-30 18:37:01 -04:00
return ( ( ImageIcon ) icon ) . getImage ( ) ;
2008-06-21 15:24:18 -04:00
2009-01-24 19:08:57 -05:00
// draw icon into a new image
2008-06-21 15:24:18 -04:00
BufferedImage image = new BufferedImage ( icon . getIconWidth ( ) , icon . getIconHeight ( ) , BufferedImage . TYPE_INT_ARGB ) ;
Graphics2D g2d = image . createGraphics ( ) ;
icon . paintIcon ( null , g2d , 0 , 0 ) ;
g2d . dispose ( ) ;
return image ;
}
2008-12-31 06:54:44 -05:00
public static Dimension getDimension ( Icon icon ) {
return new Dimension ( icon . getIconWidth ( ) , icon . getIconHeight ( ) ) ;
}
2008-04-27 13:36:27 -04:00
public static Timer invokeLater ( int delay , final Runnable runnable ) {
Timer timer = new Timer ( delay , new ActionListener ( ) {
@Override
public void actionPerformed ( ActionEvent e ) {
runnable . run ( ) ;
}
} ) ;
timer . setRepeats ( false ) ;
timer . start ( ) ;
return timer ;
}
2008-07-30 18:37:01 -04:00
2009-01-24 19:08:57 -05:00
public static void syncPropertyChangeEvents ( Class < ? > propertyType , String property , Object from , Object to ) {
PropertyChangeDelegate . create ( propertyType , property , from , to ) ;
}
private static class PropertyChangeDelegate implements PropertyChangeListener {
private final String property ;
private final Object target ;
private final Method firePropertyChange ;
public static PropertyChangeDelegate create ( Class < ? > propertyType , String property , Object source , Object target ) {
try {
PropertyChangeDelegate listener = new PropertyChangeDelegate ( propertyType , property , target ) ;
source . getClass ( ) . getMethod ( " addPropertyChangeListener " , PropertyChangeListener . class ) . invoke ( source , listener ) ;
return listener ;
} catch ( Exception e ) {
2009-02-09 15:56:20 -05:00
throw ExceptionUtilities . asRuntimeException ( e ) ;
2009-01-24 19:08:57 -05:00
}
}
protected PropertyChangeDelegate ( Class < ? > propertyType , String property , Object target ) throws SecurityException , NoSuchMethodException {
this . property = property ;
this . target = target ;
this . firePropertyChange = target . getClass ( ) . getMethod ( " firePropertyChange " , String . class , propertyType , propertyType ) ;
}
@Override
public void propertyChange ( PropertyChangeEvent evt ) {
if ( property . equals ( evt . getPropertyName ( ) ) ) {
try {
firePropertyChange . invoke ( target , evt . getPropertyName ( ) , evt . getOldValue ( ) , evt . getNewValue ( ) ) ;
} catch ( Exception e ) {
2009-02-09 15:56:20 -05:00
throw ExceptionUtilities . asRuntimeException ( e ) ;
2009-01-24 19:08:57 -05:00
}
}
}
}
2008-10-10 15:20:37 -04:00
/ * *
* Dummy constructor to prevent instantiation .
* /
2009-01-24 19:08:57 -05:00
private TunedUtilities ( ) {
2008-10-10 15:20:37 -04:00
throw new UnsupportedOperationException ( ) ;
2008-07-30 18:37:01 -04:00
}
2008-04-20 12:03:19 -04:00
}