-
Enhancement
-
Resolution: Unresolved
-
P4
-
None
-
5.0
-
Cause Known
-
x86
-
windows_xp
A DESCRIPTION OF THE REQUEST :
There is already a defualt button for when you press enter on a JFrame, there shoulqd be a defualt cancel button for when the user presses escape
JUSTIFICATION :
This is the way most if not all operating systems handel the esc key, and as of now, I need to loop through and add the key listener to all the compoenents.
EXPECTED VERSUS ACTUAL BEHAVIOR :
EXPECTED -
fires ActionPerformed on the defualtCancelButton set using JFrame.setDefualtCancelButton
ACTUAL -
this feature does not exist yet
CUSTOMER SUBMITTED WORKAROUND :
public static void setupEscCancel(final JFrame frame){
KeyListener cancelKeyListener=new KeyListener() {
public void keyTyped(KeyEvent e) {}
public void keyPressed(KeyEvent e) {}
public void keyReleased(KeyEvent e) {if (e.getKeyCode()==27) frame.dispose();}};
addListenerToContainedComponents(frame.getRootPane(),cancelKeyListener);
}
public static void addListenerToContainedComponents(Container componentToAddTo,KeyListener keyListener) {
for (Component component : componentToAddTo.getComponents()) {
if (component instanceof Container)
addListenerToContainedComponents((Container) component, keyListener);
component.addKeyListener(keyListener);
}
}
###@###.### 2005-06-17 12:02:37 GMT
There is already a defualt button for when you press enter on a JFrame, there shoulqd be a defualt cancel button for when the user presses escape
JUSTIFICATION :
This is the way most if not all operating systems handel the esc key, and as of now, I need to loop through and add the key listener to all the compoenents.
EXPECTED VERSUS ACTUAL BEHAVIOR :
EXPECTED -
fires ActionPerformed on the defualtCancelButton set using JFrame.setDefualtCancelButton
ACTUAL -
this feature does not exist yet
CUSTOMER SUBMITTED WORKAROUND :
public static void setupEscCancel(final JFrame frame){
KeyListener cancelKeyListener=new KeyListener() {
public void keyTyped(KeyEvent e) {}
public void keyPressed(KeyEvent e) {}
public void keyReleased(KeyEvent e) {if (e.getKeyCode()==27) frame.dispose();}};
addListenerToContainedComponents(frame.getRootPane(),cancelKeyListener);
}
public static void addListenerToContainedComponents(Container componentToAddTo,KeyListener keyListener) {
for (Component component : componentToAddTo.getComponents()) {
if (component instanceof Container)
addListenerToContainedComponents((Container) component, keyListener);
component.addKeyListener(keyListener);
}
}
###@###.### 2005-06-17 12:02:37 GMT