0

ユーザーが特定の文字を入力したときにポップアップメニューをトリガーしようとしています.私の場合はドットキーですが、何も起こりません. 私は何かを逃した。何が間違っているのか教えていただけますか?私は完全に混乱しているので

public class d extends  JPanel  {
   String phase="Some Clue ";
   final JTextArea area;
   final JPopupMenu menu;

   public d(){
       super(new BorderLayout());

       area=new JTextArea();
       area.setLineWrap(true);
       JButton button=new JButton("Clear");

       menu=new JPopupMenu();
       JMenuItem item=new JMenuItem(phase);
       menu.add(item);

       add(area,BorderLayout.NORTH);
       add(button,BorderLayout.SOUTH);
       add(menu);
  }

  public static void main(String...args){
      JComponent c=new d();
      JFrame frame=new JFrame();
      frame.setContentPane(c);
      frame.setSize(300,300);
      frame.setVisible(true);  
  }

  ActionListener listener=new ActionListener() {
    @Override
    public void actionPerformed(ActionEvent ae) {
        PopupMenu  menu=new PopupMenu();
        int pos=area.getCaretPosition();
        try {
            Rectangle r= area.modelToView(pos);
            menu.show(area, r.x, r.y);
        } catch (BadLocationException ex) {
            System.out.print(ex.toString());
        }
        KeyStroke ks=KeyStroke.getKeyStroke(KeyEvent.VK_P,0,false);
        area.registerKeyboardAction(listener, ks,JComponent.WHEN_FOCUSED);    
    }
};
4

1 に答える 1

1

これらのステートメントをクラスのコンストラクターに移動しますd

KeyStroke ks = KeyStroke.getKeyStroke(KeyEvent.VK_P, 0, false);
area.registerKeyboardAction(listener, ks, JComponent.WHEN_FOCUSED);

KeyStrokeが に登録されるようにJTextArea area

menuまた、リスナーに別の (AWT) ポップアップ メニューを作成する必要はありません。クラス レベルで宣言されたものを再利用します。

ActionListener listener = new ActionListener() {

    @Override
    public void actionPerformed(ActionEvent ae) {

        int pos = area.getCaretPosition();
        try {
            Rectangle r = area.modelToView(pos);
            menu.show(area, r.x, r.y);
        } catch (BadLocationException ex) {
            System.out.print(ex.toString());
        }

    }
};

余談: Java Naming Conventions クラスの使用は大文字で始まりPopupTestます。d

于 2013-07-19T18:20:06.787 に答える