Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.


yet another java question.

I am trying to add a key listener that holds a jtabbedpane.
it should switch the tabs when ctrl + tab is received.
but the keypressed event is never sent I tried adding it to the panel and to the tabbed object - but with no success.

here is my code

SwitchTabsListener ctrlTabListener = new SwitchTabsListener(genericTabbedPanel);  
jMainFrame.addKeyListener(ctrlTabListener);  
genericTabbedPanel.addKeyListener(ctrlTabListener);  

Thanks

share|improve this question

3 Answers

up vote 10 down vote accepted

In a typical fashion, your key event is not intercepted by the correct Swing component. You have to understand that the first component below the cursor will receive the keybaord event. Were you to select a button with your keyboard, it would be this JButton that would receive the key event.

To make sure you get all those events, you don't have to register on components, but rahter by using a KeyboardFocusManager, which will receive key events wherevere they occur.

Your code then require the following elements

KeyEventDispatcher myKeyEventDispatcher = new DefaultFocusManager();
KeyboarFocusManager.getCurrentKeyboardFocusManager().addKeyEventDispatcher(myKeyEventDispatcher);

myKeyEventDispatcher will then receive calls to dispatchKeyEvent whenever a key is pressed, wherever it is in UI. This way, you can make sure your code is correctly called.

The alternative method of registering key listener would require you to use a HierarchyListener in order for your key listener to be added:removed to each and every swing component that appear to be added/removed as a child of your root component. This is not only cumbersome to write, but also really hard to debug and understand.

This is why I prefer the more brute-force, but although quite elegant way of adding application global key listener to a specific keyboard focus manager.

share|improve this answer
Thanks man. works. brute force is the way. – rails Jan 24 '11 at 11:29

Ctrl+Tab and Ctrl+Shift+Tab allow you to cycle through tabs by default in the Windows LookAndFeel:

UIManager.setLookAndFeel("com.sun.java.swing.plaf.windows.WindowsLookAndFeel");
share|improve this answer
just tried it and it didnt work for me. sorry. – rails Jan 24 '11 at 11:48

This should work. This probably does not work for you because

  1. You do not select the correct window.
  2. other component catches this event.

Here is the code I wrote for you.

public class Test {

    public static void main(String[] args) throws InterruptedException {
        JFrame f = new JFrame("aaaa");
        f.setSize(100, 100);
        f.setLocation(100, 100);
        JPanel p = new JPanel();
        f.add(p);

        f.addKeyListener(new KeyAdapter() {
            public void keyPressed(KeyEvent e) {
                System.out.println("pressed");
            }
        });

        p.addKeyListener(new KeyAdapter() {
            public void keyPressed(KeyEvent e) {
                System.out.println("pressed");
            }
        });
        f.setVisible(true);

    }

It works fine. Try to play with it and understand what is the difference between yours and my code. If you fail please send us larger snippet of your code.

share|improve this answer
core thing is he wants to capture ctrl + tab – Jigar Joshi Jan 24 '11 at 10:39
I am not sure, man. But probably you are right. Anyway, e.getKeyCode() and e.getModifiers() can help – AlexR Jan 24 '11 at 10:45

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.