java jpanel移动_java – 在jPanel周围拖动/移动形状

昨天我问一个关于如何绘制一个边界框以保持内部形状以及如何拖放所选形状的问题.

第一个问题解决了.但我在移动形状方面遇到了一些麻烦.是否有任何特定的转换来移动jPanel周围的形状?

我有这个代码:

public boolean drag(MouseEvent e) {

if(points.isEmpty()) //if point's vector is empty

return false;

if(!selected)

return false;

int x = e.getX(), y = e.getX();

if (!dragging)

lastMovePoint.setLocation(x, y);

dragging = true;

int deslocX = 0;

int deslocY = 0;

int oldX = -1;

int oldY = -1;

int size = points.size();

for(int i = 0; i < size; i++) {

oldX = lastMovePoint.x;

oldY = lastMovePoint.y;

deslocX = x - oldX;

deslocY = y - oldY;

points.set(i, new Point(points.get(i).x + deslocX, points.get(i).y + deslocY));

//set the vector of points so that when there is a repaint() it repaints the shape with the new

//coordinates

}

lastMovePoint.setLocation(x, y); //set the location of the old point

return true;

}

此方法由侦听器mouseDragged调用,并在成功时返回true.我想要做的是添加前一个拖拽点和实际值之间的差异.

当我运行此代码时,我遇到了一个问题:

形状只向右/向左,向上和向下不起作用……

.

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值