/* * Freeplane - mind map editor * Copyright (C) 2009 Dimitry Polivaev * * This file author is Dimitry Polivaev * * This program 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 2 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 General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ package org.freeplane.core.ui.components; import java.awt.event.KeyEvent; import java.beans.PropertyChangeEvent; import java.beans.PropertyChangeListener; import javax.swing.Action; import javax.swing.JRadioButtonMenuItem; import javax.swing.KeyStroke; import org.freeplane.core.ui.IFreeplaneAction; import org.freeplane.core.ui.SelectableAction; /** * @author Dimitry Polivaev * Feb 23, 2009 */ public class JAutoRadioButtonMenuItem extends JRadioButtonMenuItem implements PropertyChangeListener, IKeyBindingManager { /** * */ private static final long serialVersionUID = 1L; private PropertyChangeListener defaultPropertyChanegListener; public JAutoRadioButtonMenuItem(final IFreeplaneAction a) { super(); setModel(new ActionToggleButtonModel(a)); setAction(a); } @Override protected void configurePropertiesFromAction(Action a) { super.configurePropertiesFromAction(a); setSelected(((IFreeplaneAction)a).isSelected()); } @Override protected PropertyChangeListener createActionPropertyChangeListener(final Action a) { defaultPropertyChanegListener = super.createActionPropertyChangeListener(a); return this; }; public void propertyChange(final PropertyChangeEvent e) { if (e.getPropertyName().equals(SelectableAction.SELECTION_PROPERTY)) { final Boolean isSelected = (Boolean) e.getNewValue(); setSelected(isSelected.booleanValue()); } else { defaultPropertyChanegListener.propertyChange(e); } } private boolean isKeyBindingProcessed = false; @Override protected boolean processKeyBinding(final KeyStroke ks, final KeyEvent e, final int condition, final boolean pressed) { try { isKeyBindingProcessed = true; return super.processKeyBinding(ks, e, condition, pressed); } finally { isKeyBindingProcessed = false; } } public boolean isKeyBindingProcessed() { return isKeyBindingProcessed; } }