java – 在JTabbedPane上单击JPopupMenu
作者:互联网
我有一个带有自定义选项卡组件的JTabbedPane.我希望能够右键单击选项卡上的任何位置并显示JPopupMenu.我遇到的问题是每个选项卡上都有死空间,JPopupMenu没有右键单击.我相信这是因为我将侦听器附加到作为Tab组件的JPanel,但JPanel并没有“填充”整个选项卡.
有没有办法将鼠标监听器附加到整个选项卡?
这是一个例子来说明我所看到的.在选项卡的黄色区域中,我可以右键单击并获得一个弹出菜单,但在选项卡的灰色区域中,不会截取右键单击.
public class TabExample {
public static void main(String[] args) {
EventQueue.invokeLater(new Runnable() {
@Override
public void run() {
JFrame frame = new JFrame();
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setBounds(100, 100, 1024, 768);
JTabbedPane pane = new JTabbedPane();
for (int i = 0; i < 15; i++) {
JPanel panel = new JPanel();
JLabel label = new JLabel("Panel " + i);
panel.add(label);
pane.addTab("", panel);
final JPanel tabComponentPanel = new JPanel(new BorderLayout());
final JLabel tabComponentLabel = new JLabel("My Tab " + i);
final JLabel tabComponentImageLabel = new JLabel();
ImageIcon icon = new ImageIcon(getImage());
tabComponentImageLabel.setHorizontalAlignment(JLabel.CENTER);
tabComponentImageLabel.setIcon(icon);
tabComponentPanel.add(tabComponentImageLabel,BorderLayout.CENTER);
tabComponentPanel.add(tabComponentLabel,BorderLayout.SOUTH);
tabComponentPanel.setBackground(Color.YELLOW);
tabComponentPanel.addMouseListener(new MouseAdapter() {
@Override
public void mouseClicked(MouseEvent e) {
if (e.getButton() == MouseEvent.BUTTON1) {
pane.setSelectedComponent(panel);
} else if (e.getButton() == MouseEvent.BUTTON3) {
JPopupMenu jPopupMenu = new JPopupMenu();
JMenuItem menuItem = new JMenuItem("Menu Item");
jPopupMenu.add(menuItem);
menuItem.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
System.out.println("Clicked ");
}
});
jPopupMenu.show(tabComponentPanel, e.getX(),
e.getY());
}
}
});
pane.setTabComponentAt(pane.indexOfComponent(panel),
tabComponentPanel);
}
frame.add(pane);
frame.setVisible(true);
}
});
}
private static BufferedImage getImage() {
BufferedImage bimage = new BufferedImage(16, 16,
BufferedImage.TYPE_BYTE_INDEXED);
Graphics2D g2d = bimage.createGraphics();
g2d.setColor(Color.red);
g2d.fill(new Ellipse2D.Float(0, 0, 16, 16));
g2d.dispose();
return bimage;
}
}
解决方法:
Is there a way to attach a mouse listener to the whole tab?
您可以将MouseListener添加到JTabbedPane.
然后在MouseEvent上,您可以使用getUI()方法获取BasicTabbedPaneUI类.这个类有一个getTabBounds(…)方法.
因此,您可以遍历所有选项卡以查看任何选项卡的边界是否与鼠标点匹配.
编辑:
BasicTabbedPaneUI有一个tabForCoordinate(…)方法,它不需要迭代逻辑.
标签:java,swing,jtabbedpane 来源: https://codeday.me/bug/20190627/1305891.html