我编写了一个自定义的glasspane组件,并将其设置为我的JFrame
和JDialog
类。
我不会在自定义玻璃窗中拦截鼠标事件,因为我不需要,也因为GUI上有许多组件,例如树木,弹出窗口等使得拦截和转发鼠标事件变得复杂。
一切正常 - 只要我在框架/对话框中的任何其他组件(例如getMousePosition()
)上调用JPanel
,它就会返回null
。
在我的JFrame
和JDialog
课程中,我将平板玻璃设置为disabled
(但visible
)并且大部分都有效。我需要做什么才能使getMousePosition()
方法返回正确的值,而不必将鼠标事件监听器添加到glasspane组件。
演示此问题的示例代码。
import java.awt.BorderLayout;
import java.awt.Color;
import java.awt.Dimension;
import java.awt.Graphics;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.awt.event.MouseEvent;
import java.awt.event.MouseMotionListener;
import javax.swing.JButton;
import javax.swing.JComponent;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JPanel;
public class GlassPaneExample
{
private JPanel panel;
private JButton btn;
private JLabel response;
private int counter = 0;
GlassPaneExample()
{
buildUI();
}
private void buildUI()
{
JFrame frame = new JFrame("GlassPane Example");
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.add(getPanel());
frame.setGlassPane(new MyGlassPane());
frame.getGlassPane().setVisible(true);
frame.getGlassPane().setEnabled(false);
frame.setPreferredSize(new Dimension(200, 220));
frame.pack();
frame.setLocationRelativeTo(null);
frame.setVisible(true);
}
JPanel getPanel()
{
panel = new JPanel(new BorderLayout());
panel.addMouseMotionListener(new MouseMotionListener() {
@Override
public void mouseDragged(MouseEvent e)
{
}
@Override
public void mouseMoved(MouseEvent e)
{
System.out.println("mousePosition : " + panel.getMousePosition());
System.out.println("mousePosition(true) : " + panel.getMousePosition(true));
}
});
btn = new JButton("Click here...");
btn.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent e)
{
response.setText("Button click number " + getButtonClickCount());
}
});
response = new JLabel();
response.setToolTipText("Response label");
panel.add(btn, BorderLayout.NORTH);
panel.add(response, BorderLayout.SOUTH);
return panel;
}
private int getButtonClickCount()
{
return counter++;
}
public static void main(String[] arg)
{
new GlassPaneExample();
}
class MyGlassPane extends JComponent
{
protected void paintComponent(Graphics g)
{
super.paintComponent(g);
g.setColor(Color.GREEN);
g.fillRect(10,40,120,120);
}
}
}
如果您注释掉3条线以将玻璃板添加到框架,则鼠标位置点将正确打印出来。 这是一个简单的例子来说明问题,我上面已经说过,我不想将鼠标监听器添加到自定义玻璃板组件中,因为它会引入其他复杂情况。