blob: 0aa08e8ced32d579f4ddcc8a8415a80a83c0c3e6 [file] [log] [blame]
/*
* Copyright 2002-2004 The Apache Software Foundation
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.commons.jelly.tags.swing;
import java.awt.event.KeyEvent;
import java.awt.event.KeyListener;
import org.apache.commons.jelly.JellyTagException;
import org.apache.commons.jelly.Script;
import org.apache.commons.jelly.TagSupport;
import org.apache.commons.jelly.XMLOutput;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
public class KeyListenerTag extends TagSupport
{
protected static final Log log = LogFactory.getLog(KeyListenerTag.class);
protected String var;
protected Script pressed;
protected Script typed;
protected Script released;
public KeyListenerTag()
{
super();
}
public void setVar(String var)
{
this.var = var;
}
public void setPressed(Script pressed)
{
this.pressed = pressed;
}
public void setReleased(Script released)
{
this.released = released;
}
public void setTyped(Script typed)
{
this.typed = typed;
}
public void doTag(final XMLOutput output) throws JellyTagException
{
// now lets add this action to its parent if we have one
ComponentTag tag = (ComponentTag)findAncestorWithClass(ComponentTag.class);
if (tag != null)
{
KeyListener listener = new KeyListener()
{
public void keyTyped(KeyEvent e)
{
invokeScript(output, e, typed);
}
public void keyPressed(KeyEvent e)
{
invokeScript(output, e, pressed);
}
public void keyReleased(KeyEvent e)
{
invokeScript(output, e, released);
}
};
tag.addKeyListener(listener);
}
}
protected void invokeScript(XMLOutput output, KeyEvent event, Script script)
{
if (var != null)
{
// define a variable of the event
context.setVariable(var, event);
}
try
{
if (script != null)
{
script.run(context, output);
}
else
{
// invoke the body
invokeBody(output);
}
}
catch (Exception e)
{
log.error("Caught exception processing window event: " + event, e);
}
}
}