Package org.onemind.swingweb.mapinput.peerdelegate.java.awt

Source Code of org.onemind.swingweb.mapinput.peerdelegate.java.awt.FrameInputDelegate

/*
* 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.*;
import java.awt.Frame;
import java.util.Map;
import java.util.logging.Logger;
import org.onemind.awtbridge.input.BridgeInputContext;
import org.onemind.awtbridge.input.InputException;
import org.onemind.awtbridge.peer.BridgeComponentPeer;
import org.onemind.swingweb.mapinput.peerdelegate.MapInputDelegate;
/**
* The frame input delegate
* @author TiongHiang Lee (thlee@onemindsoft.org)
*
*/
public class FrameInputDelegate extends WindowInputDelegate
{

    /** the logger **/
    private static final Logger _logger = Logger.getLogger(FrameInputDelegate.class.getName());

    /** the instance **/
    public static MapInputDelegate INSTANCE = new FrameInputDelegate();

    /**
     * {@inheritDoc}
     */
    public void processInput(BridgeComponentPeer peer, BridgeInputContext context, Map inputForm) throws InputException
    {
        Frame f = (Frame) peer.getComponent();
        if (f.getMenuBar() != null)
        {
            context.handleInput(f.getMenuBar(), inputForm);
        }
        super.processInput(peer, context, inputForm);
    }

    public void processWindowEvent(BridgeComponentPeer peer, BridgeInputContext context, Map inputForm)
    {
        Frame f = (Frame) peer.getComponent();
        String value = (String) inputForm.get(peer.getId());
        if ("maximize".equals(value))
        {
            if (f.getMaximizedBounds() == null)
            {
                Dimension screenDim = context.getContext().getScreenSize();
                f.setMaximizedBounds(new Rectangle(0, 0, (int)screenDim.getWidth(), (int)screenDim.getHeight()));               
            }
            //alternate the bounds
            Rectangle current = f.getBounds();
            f.setBounds(f.getMaximizedBounds());
            f.setMaximizedBounds(current);
            if (f.getExtendedState() == Frame.NORMAL)
            {
                f.setExtendedState(Frame.MAXIMIZED_BOTH);
            } else
            {
                f.setExtendedState(Frame.NORMAL);
            }
            f.validate();
        } else if ("minimize".equals(value))
        {
            if (f.getExtendedState() == Frame.ICONIFIED)
            {
                f.setExtendedState(Frame.NORMAL);
            } else
            {
                f.setExtendedState(Frame.ICONIFIED);
            }
        } else
        {
            super.processWindowEvent(peer, context, inputForm);
        }
        return;
    }
}
TOP

Related Classes of org.onemind.swingweb.mapinput.peerdelegate.java.awt.FrameInputDelegate

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.