All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.mchange.v2.beans.swing.SetPropertyElementBoundButtonModel Maven / Gradle / Ivy

There is a newer version: 0.3.1
Show newest version
/*
 * Distributed as part of mchange-commons-java v.0.2.3
 *
 * Copyright (C) 2012 Machinery For Change, Inc.
 *
 * Author: Steve Waldman 
 *
 * This library is free software; you can redistribute it and/or modify
 * it under the terms of the GNU Lesser General Public License version 2.1, as 
 * published by the Free Software Foundation.
 *
 * This software 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 Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public License
 * along with this software; see the file LICENSE.  If not, write to the
 * Free Software Foundation, Inc., 59 Temple Place, Suite 330,
 * Boston, MA 02111-1307, USA.
 */


package com.mchange.v2.beans.swing;

import java.awt.*;
import java.awt.event.*;
import java.beans.*;
import java.util.*;
import javax.swing.*;
import javax.swing.event.*;
import com.mchange.v2.beans.BeansUtils;

class SetPropertyElementBoundButtonModel implements ButtonModel
{
    Object                          putativeElement;
    ButtonModel                     inner;
    PropertyComponentBindingUtility pcbu;

    public static void bind(AbstractButton[] buttons, Object[] elements, Object bean, String setPropName) throws IntrospectionException
    {
	for (int i = 0, len = buttons.length; i < len; ++i)
	    {
		AbstractButton doMe = buttons[i];
		doMe.setModel( new SetPropertyElementBoundButtonModel( doMe.getModel(), bean, setPropName, elements[i] ) );
	    }
    }  

    public SetPropertyElementBoundButtonModel( ButtonModel inner, Object bean, String propName, Object putativeElement )
	throws IntrospectionException
    {	
	this.inner = inner;
	this.putativeElement = putativeElement;
	this.pcbu  = new PropertyComponentBindingUtility( new MyHbi(), bean, propName, false ); 
	pcbu.resync();
    }

    public boolean isArmed()
    { return inner.isArmed(); }

    public boolean isSelected()
    { return inner.isSelected(); }

    public boolean isEnabled()
    { return inner.isEnabled(); }

    public boolean isPressed()
    { return inner.isPressed(); }

    public boolean isRollover()
    { return inner.isRollover(); }

    public void setArmed(boolean armed)
    { inner.setArmed( armed ); }

    public void setSelected(boolean selected)
    { inner.setSelected( selected ); }

    public void setEnabled(boolean enabled)
    { inner.setEnabled( enabled ); }

    public void setPressed(boolean pressed)
    { inner.setPressed( pressed ); }

    public void setRollover(boolean rollover)
    { inner.setRollover( rollover ); }

    public void setMnemonic(int mnemonic)
    { inner.setMnemonic( mnemonic ); }

    public int getMnemonic()
    { return inner.getMnemonic(); }

    public void setActionCommand(String actionCommand)
    { inner.setActionCommand( actionCommand ); }

    public String getActionCommand()
    { return inner.getActionCommand(); }

    public void setGroup(ButtonGroup group)
    { inner.setGroup( group ); }

    public Object[] getSelectedObjects()
    { return inner.getSelectedObjects(); }

    public void addActionListener(ActionListener listener)
    { inner.addActionListener( listener ); }

    public void removeActionListener(ActionListener listener)
    { inner.removeActionListener( listener ); }

    public void addItemListener(ItemListener listener)
    { inner.addItemListener( listener );}

    public void removeItemListener(ItemListener listener)
    { inner.removeItemListener( listener );}

    public void addChangeListener(ChangeListener listener)
    { inner.addChangeListener( listener );}

    public void removeChangeListener(ChangeListener listener)
    { inner.removeChangeListener( listener );}

    class MyHbi implements HostBindingInterface
	{
	    public void syncToValue( PropertyEditor editor, Object newVal )
	    {
		if (newVal == null)
		    setSelected(false);
		else
		    setSelected( ((Set) newVal).contains( putativeElement ) );
	    }
	    
	    public void addUserModificationListeners()
	    {
		ActionListener al = new ActionListener()
		    {
			public void actionPerformed( ActionEvent evt )
			{ pcbu.userModification(); }
		    };
		addActionListener( al );
	    }
	    
	    public Object fetchUserModification( PropertyEditor editor, Object oldValue )
	    {
		Set modSet;
		if (oldValue == null)
		    {
			if (! isSelected())
			    return null;
			else
			    modSet = new HashSet();
		    }
		else
		    modSet = new HashSet((Set) oldValue);

		if ( isSelected() )
		    modSet.add( putativeElement );
		else
		    modSet.remove( putativeElement );

		return modSet;
	    }
	    
	    public void alertErroneousInput()
	    { Toolkit.getDefaultToolkit().beep(); }
	};
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy