blob: bc050403177adfec4246e247788bc50283d1b118 [file] [log] [blame]
/*
* Copyright 2000-2009 JetBrains s.r.o.
*
* 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.
*/
/*
* Created by IntelliJ IDEA.
* User: Anna.Kozlova
* Date: 31-Aug-2006
* Time: 19:20:48
*/
package com.intellij.openapi.keymap.impl.ui;
import javax.swing.*;
import java.awt.event.KeyEvent;
public class ShortcutTextField extends JTextField {
private KeyStroke myKeyStroke;
public ShortcutTextField() {
enableEvents(KeyEvent.KEY_EVENT_MASK);
setFocusTraversalKeysEnabled(false);
}
protected void processKeyEvent(KeyEvent e) {
if (e.getID() == KeyEvent.KEY_PRESSED) {
int keyCode = e.getKeyCode();
if (
keyCode == KeyEvent.VK_SHIFT ||
keyCode == KeyEvent.VK_ALT ||
keyCode == KeyEvent.VK_CONTROL ||
keyCode == KeyEvent.VK_ALT_GRAPH ||
keyCode == KeyEvent.VK_META
){
return;
}
setKeyStroke(KeyStroke.getKeyStroke(keyCode, e.getModifiers()));
}
}
public void setKeyStroke(KeyStroke keyStroke) {
myKeyStroke = keyStroke;
setText(KeyboardShortcutDialog.getTextByKeyStroke(keyStroke));
updateCurrentKeyStrokeInfo();
}
protected void updateCurrentKeyStrokeInfo() {
}
public KeyStroke getKeyStroke() {
return myKeyStroke;
}
}