1

我的意思是绘制一些简单的形状,如圆形、矩形图和折线连接。似乎必须在 Shell 等画布上构建 LightweightSystem。在 RCP 应用程序中,当我添加编辑器的扩展时,编辑器会扩展 org。 eclipse.ui.part.EditorPart 默认情况下。它有一个名为createPartControl的方法。这个方法有一个参数(复合父级)。

所以我写了下面的代码,它给了我一个未处理的事件循环异常

public void createPartControl(Composite parent) {
    Shell shell = parent.getShell();
    shell.open();
    Display display = shell.getDisplay();
    LightweightSystem lws = new LightweightSystem(shell);
    IFigure panel = new Figure();
    lws.setContents(panel);
    RectangleFigure node1 = new RectangleFigure();
    RectangleFigure node2 = new RectangleFigure();
    node1.setBackgroundColor(ColorConstants.red);
    node1.setBounds(new Rectangle(30, 30, 64, 36));
    node2.setBackgroundColor(ColorConstants.blue);
    node2.setBounds(new Rectangle(100, 100, 64, 36));
    PolylineConnection conn = new PolylineConnection();
    conn.setSourceAnchor(new ChopboxAnchor(node1));
    conn.setTargetAnchor(new ChopboxAnchor(node2));
    conn.setTargetDecoration(new PolygonDecoration());
    Label label = new Label("Midpoint");
    label.setOpaque(true);
    label.setBackgroundColor(ColorConstants.buttonLightest);
    label.setBorder(new LineBorder());
    conn.add(label, new MidpointLocator(conn, 0));
    panel.add(node1);
    panel.add(node2);
    panel.add(conn);
    while (!shell.isDisposed ()) { 
        if (!display.readAndDispatch ()) 
           display.sleep (); 
    }
}

那么如何解决这个问题以及如何在编辑器上绘制这些数字呢?

4

1 回答 1

1

当您想在编辑器中绘图时,您不需要像在独立的 SWT 应用程序中那样创建新的 Shell 或从事件队列分派事件;只需创建一个 Canvas 并在其中绘制。这应该可以帮助您:

public void createPartControl(Composite parent) {
    Canvas canvas = new Canvas(parent, SWT.NONE);
    LightweightSystem lws = new LightweightSystem(canvas);
    IFigure panel = new Figure();
    lws.setContents(panel);
    [...]
    panel.add(node1);
    panel.add(node2);
    panel.add(conn);
}
于 2013-01-23T05:11:22.133 回答