0

我想在连接的开始或结束位置添加标签。但是在这里我没有找到除ManhattanMidpointLocator之外的定位器。那么我该怎么做呢?如何在连接的位置放置标签?
请在下面找到我的代码,

draw2d.LabelConnection = function() {
  draw2d.Connection.call(this);
  this.sourcePort = null;
  this.targetPort = null;
  this.lineSegments = [];
  this.setColor(new draw2d.Color(0, 255, 0));
  this.setLineWidth(2);

  var label = new draw2d.Label("Message");
  label.setBackgroundColor(new draw2d.Color(230, 230, 250));
  label.setBorder(new draw2d.LineBorder(1));
  this.addFigure(label, new draw2d.Locator());
};

draw2d.LabelConnection.prototype = new draw2d.Connection();
draw2d.LabelConnection.prototype.type = "draw2d.LabelConnection";

上面的代码在 (0,0) 位置显示标签。请帮帮我。

4

3 回答 3

0

我不确定您所说的“任何位置”是什么意思,但是如果您实现自己的定位器,那将非常简单。

查看ManhattanMidpointLocator 的代码。在重定位功能中,您了解画布上连接的所有信息。从那里你只需发明一个标签位置的计算。

于 2012-07-16T05:35:07.063 回答
0

现在使用 Graphiti 代替 Draw2D,但定位器的代码应如下所示(未经测试):

draw2d.StartConnectionLocator=function(/*:draw2d.Connection*/ connection)
{
  draw2d.ConnectionLocator.call(this,connection);
};
draw2d.StartConnectionLocator.prototype.relocate=function(/*:draw2d.Figure*/ target)
{
   var conn = this.getConnection();

   var points = conn.getPoints();
   var index = Math.floor((points.getSize() -2) / 2);
   if (points.getSize() <= index+1)
      return; 

   var startPoint = points.get(0);
   var myPosition = new draw2d.Point();
   myPosition.x = startPoint.x +5;
   myPosition.y = startPoint.y +5;

   target.setPosition(myPosition.x,myPosition.y);
};
于 2012-07-16T08:12:40.643 回答
0

采用:

Connection.getStartPoint()来确定连接的起点,而不是检索连接的所有段。

问候

于 2012-07-16T10:03:51.027 回答