blob: 876c9a59fe9d00089ccff40978b670057a51c862 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to you 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.pivot.wtk;
/**
* Component key listener interface.
*/
public interface ComponentKeyListener {
/**
* Component key listener adapter.
*/
public static class Adapter implements ComponentKeyListener {
@Override
public boolean keyTyped(Component component, char character) {
return false;
}
@Override
public boolean keyPressed(Component component, int keyCode, Keyboard.KeyLocation keyLocation) {
return false;
}
@Override
public boolean keyReleased(Component component, int keyCode,
Keyboard.KeyLocation keyLocation) {
return false;
}
}
/**
* Called when a key has been typed.
*
* @param component Component that has the focus, that is receiving this key.
* @param character The decoded character that was typed.
* @return <tt>true</tt> to consume the event; <tt>false</tt> to allow it to
* propagate.
*/
public boolean keyTyped(Component component, char character);
/**
* Called when a key has been pressed.
*
* @param component Component that has the focus.
* @param keyCode The key code for the key that was pressed.
* @param keyLocation Location value for the key (left or right for shift keys, etc.).
* @return <tt>true</tt> to consume the event; <tt>false</tt> to allow it to
* propagate.
*/
public boolean keyPressed(Component component, int keyCode, Keyboard.KeyLocation keyLocation);
/**
* Called when a key has been released.
*
* @param component Component that has the focus, that is receiving this key event.
* @param keyCode Code for the key that was released.
* @param keyLocation Location of the key.
* @return <tt>true</tt> to consume the event; <tt>false</tt> to allow it to
* propagate.
*/
public boolean keyReleased(Component component, int keyCode, Keyboard.KeyLocation keyLocation);
}