したがって、私が必要とする機能は、展開時に右クリックできるコンボボックスであり、ポップアップメニューにさまざまなアクションが表示されます。
そのために、次のコンストラクターで JCombobox を拡張しました。
public HistoryComboBox(DefaultComboBoxModel model) {
super(model);
super.setUI(new BasicComboBoxUI(this){
@Override protected ComboPopup createPopup() {
return new HistoryComboPopup(comboBox);
}
});
また、BasicComboPopup を拡張し、mouselistener を持つクラス HistoryComboPopup を作成しました。
@Override
protected MouseListener createListMouseListener() {
if (handler2 == null)
handler2 = new Handler2();
return handler2;
}
private class Handler2 implements MouseListener {
@Override
public void mouseClicked(MouseEvent e) {
JPopupMenu popup = new JPopupMenu();
...
popup.show();
}
}
ポップアップが機能し、メニューのクリックを処理できます。唯一の問題は、JPopupMenu を開くとコンボボックスが閉じ、右クリックした項目が表示されなくなることです。
私は現在、これについて何をすべきか考えていないので、どんな助けも大歓迎です.
編集:コンパイル可能な例をマッシュアップしました:
public class MainPanel extends JPanel{
public MainPanel() {
super(new BorderLayout());
JComboBox combo1 = makeComboBox(5);
combo1.setUI(new BasicComboBoxUI() {
@Override protected ComboPopup createPopup() {
return new HistoryComboPopup(comboBox);
}
});
add(combo1,BorderLayout.NORTH);
}
private static JComboBox makeComboBox(int size) {
DefaultComboBoxModel model = new DefaultComboBoxModel();
for(int i=0;i<size;i++) {
model.addElement("No."+i);
}
return new JComboBox(model);
}
public static void main(String[] args) {
EventQueue.invokeLater(new Runnable() {
@Override public void run() {
JFrame frame = new JFrame("DisableRightClick");
frame.setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE);
frame.getContentPane().add(new MainPanel());
frame.pack();
frame.setLocationRelativeTo(null);
frame.setVisible(true);
}
});
}
}
class HistoryComboPopup extends BasicComboPopup {
private Handler2 handler2;
@Override
public void uninstallingUI() {
super.uninstallingUI();
handler2 = null;
}
public HistoryComboPopup(JComboBox combo) {
super(combo);
}
@Override
protected MouseListener createListMouseListener() {
if (handler2 == null)
handler2 = new Handler2();
return handler2;
}
private class Handler2 implements MouseListener {
@Override public void mouseEntered(MouseEvent e) {}
@Override public void mouseExited(MouseEvent e) {}
@Override public void mouseClicked(MouseEvent e) {}
@Override public void mousePressed(MouseEvent e) {}
@Override
public void mouseReleased(MouseEvent e) {
if (SwingUtilities.isRightMouseButton(e)) {
JPopupMenu popup = new JPopupMenu();
JMenuItem copymethod = new JMenuItem("copy");
copymethod.addMouseListener(new MouseAdapter() {
@Override
public void mousePressed(MouseEvent e) {
System.out.println("copy clicked");
}
});
popup.add(copymethod);
popup.show(HistoryComboPopup.this,
e.getXOnScreen() - HistoryComboPopup.this.getLocationOnScreen().x,
e.getYOnScreen() - HistoryComboPopup.this.getLocationOnScreen().y);
} else {
comboBox.setSelectedIndex(list.getSelectedIndex());
comboBox.setPopupVisible(false);
}
}
}
}