/*
* Copyright (C) 2004 TiongHiang Lee
*
* This library 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 library 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 library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
* Email: thlee@onemindsoft.org
*/
package org.onemind.swingweb.mapinput.peerdelegate.java.awt;
import java.awt.CheckboxMenuItem;
import java.awt.event.ActionEvent;
import java.awt.event.ItemEvent;
import java.util.Map;
import java.util.logging.Logger;
import org.onemind.awtbridge.input.BridgeInputContext;
import org.onemind.awtbridge.peer.BridgePeer;
import org.onemind.swingweb.mapinput.peerdelegate.MapInputDelegate;
/**
* The checkbox menu item input delegate
* @author TiongHiang Lee (thlee@onemindsoft.org)
*
*/
public class CheckboxMenuItemInputDelegate extends MenuItemInputDelegate
{
/** the logger * */
private static final Logger _logger = Logger.getLogger(CheckboxMenuItemInputDelegate.class.getName());
/** the instance **/
public static MapInputDelegate INSTANCE = new CheckboxMenuItemInputDelegate();
/**
* Process the input of the peer from the input form
* @param peer the peer
* @param context the context
* @param inputForm the inputform
*/
public void processInput(BridgePeer peer, BridgeInputContext context, Map inputForm)
{
if (hasEvent(peer, inputForm))
{
_logger.finest("Input for " + peer);
CheckboxMenuItem item = (CheckboxMenuItem) peer.getComponentObject();
item.setState(!item.getState());
postEvent(context, new ActionEvent(item, ActionEvent.ACTION_PERFORMED, item.getActionCommand()));
postEvent(context, new ItemEvent(item, ItemEvent.ITEM_STATE_CHANGED, item, (item.getState()
? ItemEvent.SELECTED
: ItemEvent.DESELECTED)));
} else
{
_logger.finest("No input for " + peer);
}
}
}