gpt4 book ai didi

java - 在 Canvas SWT Draw2D 中拖动图形

转载 作者:太空宇宙 更新时间:2023-11-04 14:41:01 25 4
gpt4 key购买 nike

我编写了代码,允许拖放到 Canvas 上,并支持在 Canvas 本身内拖动放置的图形。问题在于,在 Canvas 内实现拖动的代码偶尔会抛出 NullPointerException。我徒劳地尝试隔离触发案例。就方法论而言,我也看不出有什么问题。我知道这是一个渺茫的机会,但有人可以指出我解决这个问题的正确方向吗?非常感谢 *我添加了简短的可测试代码,但 NPE 仅偶尔抛出。

public class RepeatDrop
{
private Shell shell;
private Display display;
private final Label lblUnicorn;
private final Canvas canvas;

public static void main(String args[])
{
new RepeatDrop();
}

public RepeatDrop()
{
display = new Display();
shell = new Shell(display);
shell.setText("SWT Application");
shell.setLayout(new GridLayout(2, false));

Group grpPalette = new Group(shell, SWT.NONE);
grpPalette.setText("Palette");
grpPalette.setLayout(new GridLayout());
grpPalette.setLayoutData(new GridData(SWT.BEGINNING, SWT.FILL, false, true));

lblUnicorn = new Label(grpPalette, SWT.BORDER | SWT.HORIZONTAL | SWT.CENTER);
lblUnicorn.setText("UNICORN");
// ADDED A FINAL HERE!!
lblUnicorn.setAlignment(SWT.CENTER);

final Group grpCanvas = new Group(shell, SWT.NONE);
grpCanvas.setText("Canvas");
grpCanvas.setLayout(new GridLayout());
grpCanvas.setLayoutData(new GridData(SWT.FILL, SWT.FILL, true, true));

canvas = new Canvas(grpCanvas, SWT.NONE);
canvas.setLayoutData(new GridData(SWT.FILL, SWT.FILL, true, true));

LightweightSystem lws = new LightweightSystem(canvas); //
final IFigure panel = new Figure(); //
lws.setContents(panel); //

DragSource dragSource1 = new DragSource(lblUnicorn, DND.DROP_COPY);
Transfer[] transfers1 = new Transfer[] { TextTransfer.getInstance() };
dragSource1.setTransfer(transfers1);
dragSource1.addDragListener(new DragSourceListener()
{
public void dragStart(DragSourceEvent event)
{
if (lblUnicorn.getText().length() == 0)
{
event.doit = false;
}
}

public void dragSetData(DragSourceEvent event)
{
if (TextTransfer.getInstance().isSupportedType(event.dataType))
{
event.data = lblUnicorn.getText();
}
}

public void dragFinished(DragSourceEvent event)
{
}
});

Transfer[] types = new Transfer[] { TextTransfer.getInstance() };
DropTarget dropTarget = new DropTarget(canvas, DND.DROP_COPY | DND.DROP_DEFAULT);
dropTarget.setTransfer(types);

dropTarget.addDropListener(new DropTargetListener()
{
public void dragEnter(DropTargetEvent event)
{
if (event.detail == DND.DROP_DEFAULT)
{
if ((event.operations & DND.DROP_COPY) != 0)
{
event.detail = DND.DROP_COPY;
}
else
{
event.detail = DND.DROP_NONE;
}
}
}

public void dragLeave(DropTargetEvent event)
{
}

public void dragOperationChanged(DropTargetEvent event)
{
}

public void dragOver(DropTargetEvent event)
{
}

public void drop(DropTargetEvent event)
{
}

public void dropAccept(final DropTargetEvent event)
{

if (TextTransfer.getInstance().isSupportedType(event.currentDataType))
{
String d = (String) TextTransfer.getInstance().nativeToJava(event.currentDataType);

org.eclipse.swt.graphics.Point droppoint = canvas.toControl(event.x, event.y);

// DRAW 2D SECTION
RectangleFigure node1 = new RectangleFigure();
Rectangle rect = new Rectangle(droppoint.x, droppoint.y, 20, 20);
Rectangle rect2 = new Rectangle(droppoint.x, droppoint.y, 100, 25);
node1.setBounds(rect);
node1.setBackgroundColor(ColorConstants.cyan);

org.eclipse.draw2d.Label droppedName = new org.eclipse.draw2d.Label(d);
droppedName.setLocation(new Point(droppoint.x, droppoint.y)); // draw2d.
// point
droppedName.setBounds(rect2);

node1.add(droppedName);
panel.add(node1);
panel.add(droppedName);

new Dragger(node1);
new Dragger(droppedName);

canvas.redraw();
}
}
});

shell.pack();
shell.setSize(400, 300);
shell.open();

while (!shell.isDisposed())
{
if (!display.readAndDispatch())
{
display.sleep();
}
}
}

static class Dragger extends MouseMotionListener.Stub implements MouseListener
{
public Dragger(IFigure figure)
{
figure.addMouseMotionListener(this);
figure.addMouseListener(this);
}

Point last;

public void mouseReleased(MouseEvent e)
{
}

public void mouseClicked(MouseEvent e)
{
}

public void mouseDoubleClicked(MouseEvent e)
{
}

public void mousePressed(MouseEvent e)
{
last = e.getLocation();
}

public void mouseDragged(MouseEvent e)
{
Point p = e.getLocation();
Dimension delta = p.getDifference(last);
{
last = p;
Figure f = ((Figure) e.getSource());
f.setBounds(f.getBounds().getTranslated(delta.width, delta.height));
}
}
}
}

最佳答案

好吧,首先,我找到了一个可重复的过程来获取 NPE:

  1. 将两个标签(我们称之为 AB )拖到 Canvas 上
  2. 拖动A跨越B无需松开鼠标按钮
  3. NPE

好的,现在来说说 NPE 的起源:

您依赖 last在你的mouseDragged()方法。该变量首先在 mousePressed() 中设置。现在通常应该没问题,但是当您拖动 A 时超过B ,不知怎的,焦点从 A 改变至B 。但是,由于您实际上并未点击 B mouseDragged()尽管 mousePressed() 被解雇并没有导致 NPE。

现在有一个简单的方法可以通过初始化last来解决这个问题在构造函数中:

public Dragger(IFigure figure)
{
figure.addMouseMotionListener(this);
figure.addMouseListener(this);

Rectangle bounds = figure.getBounds();

last = new Point(bounds.x, bounds.y);
}

关于java - 在 Canvas SWT Draw2D 中拖动图形,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24924658/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com