JMapViewer:setMovementMouseButton() 方法的奇怪行为
JMapViewer: strange behavior of setMovementMouseButton() method
我正在尝试将鼠标按钮更改为从右按钮向左平移地图视图。
有一个简单的代码可以在单击鼠标左键后更改按钮:
public class Map extends JMapViewer {
public Map() {
new DefaultMapController(this){
public void mousePressed(MouseEvent e) {
this.setMovementMouseButton(MouseEvent.BUTTON1);
}
};
}
}
主要class:
public class JMapViewerDemo {
public static void main(String[] args) {
JFrame f = new JFrame();
f.add(new Map());
f.setSize(800, 600);
f.setVisible(true);
f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
}
}
令人惊讶的是,代码不起作用(没有重新分配)。为什么?但是,调用父 class 方法后
public void mousePressed(MouseEvent e) {
super.mousePressed(e); //Calling the parent-class method
this.setMovementMouseButton(MouseEvent.BUTTON1);
}
观察到以下行为:
单击鼠标左键。拖动时没有重新分配
已经完成(同样的情况)。
松开鼠标左键。
再次单击鼠标左键。拖动时,平移分配给鼠标左键。
我觉得这种行为很奇怪。可能是我用错了这个方法...
如何直接改变平移按钮,不用松开再点击?感谢您的帮助...
看到的结果并不出乎意料,但它们可能有点违反直觉:您的示例改变了 DefaultMapController
在 中的内部状态 您的 mousePressed()
。相反,保存对自定义控制器的引用,以便您可以根据需要更改首选按钮:
JMapViewer map = new JMapViewer();
DefaultMapController dmc = new DefaultMapController(map){…};
dmc.setMovementMouseButton(MouseEvent.BUTTON1);
在桌面应用程序中,您可以让用户 select 使用单选按钮选择首选鼠标按钮,并将所选值保存在用户 Preferences
中,如图 . Also consider overriding getPreferredSize()
, as shown 所示,而不是调用 setSize()
.
我正在尝试将鼠标按钮更改为从右按钮向左平移地图视图。
有一个简单的代码可以在单击鼠标左键后更改按钮:
public class Map extends JMapViewer {
public Map() {
new DefaultMapController(this){
public void mousePressed(MouseEvent e) {
this.setMovementMouseButton(MouseEvent.BUTTON1);
}
};
}
}
主要class:
public class JMapViewerDemo {
public static void main(String[] args) {
JFrame f = new JFrame();
f.add(new Map());
f.setSize(800, 600);
f.setVisible(true);
f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
}
}
令人惊讶的是,代码不起作用(没有重新分配)。为什么?但是,调用父 class 方法后
public void mousePressed(MouseEvent e) {
super.mousePressed(e); //Calling the parent-class method
this.setMovementMouseButton(MouseEvent.BUTTON1);
}
观察到以下行为:
单击鼠标左键。拖动时没有重新分配 已经完成(同样的情况)。
松开鼠标左键。
再次单击鼠标左键。拖动时,平移分配给鼠标左键。
我觉得这种行为很奇怪。可能是我用错了这个方法...
如何直接改变平移按钮,不用松开再点击?感谢您的帮助...
看到的结果并不出乎意料,但它们可能有点违反直觉:您的示例改变了 DefaultMapController
在 中的内部状态 您的 mousePressed()
。相反,保存对自定义控制器的引用,以便您可以根据需要更改首选按钮:
JMapViewer map = new JMapViewer();
DefaultMapController dmc = new DefaultMapController(map){…};
dmc.setMovementMouseButton(MouseEvent.BUTTON1);
在桌面应用程序中,您可以让用户 select 使用单选按钮选择首选鼠标按钮,并将所选值保存在用户 Preferences
中,如图 getPreferredSize()
, as shown setSize()
.