Package net.helipilot50.stocktrade.displayproject

Source Code of net.helipilot50.stocktrade.displayproject.FunctionKeyAction

/*
Copyright (c) 2003-2009 ITerative Consulting Pty Ltd. All Rights Reserved.

Redistribution and use in source and binary forms, with or without modification, are permitted
provided that the following conditions are met:

o Redistributions of source code must retain the above copyright notice, this list of conditions and
the following disclaimer.
 
o Redistributions in binary form must reproduce the above copyright notice, this list of conditions
and the following disclaimer in the documentation and/or other materials provided with the distribution.
   
o This jcTOOL Helper Class software, whether in binary or source form may not be used within,
or to derive, any other product without the specific prior written permission of the copyright holder

 
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING,
BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.


*/
package net.helipilot50.stocktrade.displayproject;

import java.awt.event.ActionEvent;
import java.util.Hashtable;

import javax.swing.AbstractAction;

import net.helipilot50.stocktrade.framework.EventHandle;
import net.helipilot50.stocktrade.framework.ParameterHolder;


/**
* An action that represents a function key press
*
*/
@SuppressWarnings("serial")
public class FunctionKeyAction extends AbstractAction {
    protected int keyID = 0;
    protected Object sink = null;
    public FunctionKeyAction(int keyID, Object sink) {
        this.keyID = keyID;
        this.sink = sink;
    }
    @SuppressWarnings("unchecked")
  public void actionPerformed(ActionEvent e) {

        int modifiers = 0;
        if ((e.getModifiers() & ActionEvent.CTRL_MASK) > 0)
            modifiers = modifiers | Constants.KM_CTRL;
        if ((e.getModifiers() & ActionEvent.SHIFT_MASK) > 0)
            modifiers = modifiers | Constants.KM_SHIFT;
        if ((e.getModifiers() & ActionEvent.ALT_MASK) > 0)
            modifiers = modifiers | Constants.KM_ALT_OPTION;
        if ((e.getModifiers() & ActionEvent.META_MASK) > 0)
            modifiers = modifiers | Constants.KM_CMD;

        Hashtable qq_Params = new Hashtable();
        qq_Params.put( "keyID", new ParameterHolder(this.keyID) );
        qq_Params.put( "modifier", new ParameterHolder(modifiers) );
        FocusHelper.functionKeyActivate(new EventHandle(sink, "FunctionKeyPress", qq_Params));
        // AD:2/9/2008 If the F1 key is pressed also post HelpRequest to be consistent with Forte
        // Investigated using a separate KeyAction and KeyListeners but neither functioned exactly like Forte.
        // Having a separate HelpRequestKeyAction overrode the FunctionKeyPress.
        // KeyListeners needed to have focus to work correctly.
        if (this.keyID == Constants.FN_F1) {
            FocusHelper.functionKeyActivate(new EventHandle(sink, "HelpRequest"));
    }

    }

}
TOP

Related Classes of net.helipilot50.stocktrade.displayproject.FunctionKeyAction

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.