/* ========================
* JSynoptic : a free Synoptic editor
* ========================
*
* Project Info: http://jsynoptic.sourceforge.net/index.html
*
* This program is free software; you can redistribute it and/or modify it under the terms
* of the GNU Lesser General Public License as published by the Free Software Foundation;
* either version 2.1 of the License, or (at your option) any later version.
*
* This program 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
* program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
* Boston, MA 02111-1307, USA.
*
* (C) Copyright 2001-2007, by :
* Corporate:
* EADS Astrium
* Individual:
* Claude Cazenave
*
* $Id: CheckBox.java,v 1.1 2008/02/11 14:09:28 cazenave Exp $
*
* Changes
* -------
* 24 janv. 08 : Initial public release
*
*/
package jsynoptic.plugins.java3d.panels;
import javax.media.j3d.SceneGraphObject;
import javax.swing.JCheckBox;
import javax.swing.event.ChangeEvent;
import javax.swing.event.ChangeListener;
import jsynoptic.plugins.java3d.edit.PropertyEdit;
/**
*
*/
public class CheckBox <T extends SceneGraphObject> extends JCheckBox implements PropertyEdit.UndoRedoListener,
PropertiesPanel.Editor<T,Boolean>{
PropertyEdit<T, Boolean> _editor;
public CheckBox(){
addChangeListener(new ChangeListener(){
@Override
public void stateChanged(ChangeEvent e) {
_editor.setNewValue(isSelected());
}
});
}
@Override
public void edit(PropertyEdit<T,Boolean> editor){
if(_editor!=null){
_editor.removeListener(this);
}
_editor= editor;
if(_editor!=null){
_editor.addListener(this);
setSelected(_editor.getPropertyValue());
}
}
@Override
public void undoRedoPerfomed(boolean isUndo) {
setSelected(_editor.getPropertyValue());
}
}