1

我有两个问题,也许有人可以给我一个想法,我该怎么做

我创建了从 AbstractCustomFeature 扩展的新“testFeature”,并且可以在我的图表中调用它。我怎样才能得到一个包含图表中所有元素的列表?(我想在开始和以后更新它们的名称和颜色)

我的第二个问题是:我正在尝试将一些元素添加到图表中,而无需从调色板中拖放它们。

例如,我在图中保存了一些元素,而我的“模型说我错过了图中的 3 个元素”。我想编写一个自定义功能,只需单击一/两次即可在 Graphiti 图中绘制/放置缺少的元素,也许我需要在这部分使用 Zest?但一开始我只想放置一些元素而不将它们从调色板中删除,我该怎么做?

也许有人可以给我方向?

谢谢你的帮助!

4

2 回答 2

2

如何获取包含图中所有元素的列表?

Diagram是一个ContainerShape,你可以调用getChildren()来检索所有的形状

将一些元素添加到图表中,而无需从调色板中拖放它们。

对象是否已经在 EMF 模型中创建,并且您只希望它在图表中添加其图形对应项?如果是这样,您需要实例化并自己执行相应的XXXAddFeature类。

在其他地方(更有可能,如果您想模仿调色板中的一些拖放操作),您必须调用正确的XXXCreateFeature,这会将元素添加(“创建”,用 Graphiti 的说法)模型(通常是创建主体将在最后调用addGraphicalRepresentation()它还将通过在内部调用适当的XXXAddFeature)将相应的图形元素添加到图表中。

于 2013-05-21T19:31:13.153 回答
0

行!这是我的解决方案:

class testFeature extends AbstractCustomFeature {
    //...
      public void execute(ICustomContext context) {
          Diagram diagram = getDiagram();                     //get Diagram
          EList<Shape> diagramChildren= diagram.getChildren();//get List with all Children's
          Iterator<Shape> it = diagramChildren.iterator();    //Build iterator for this List


          //go through all objects which are in the Diagram
          while (it.hasNext()) {
              Shape testObjekt = it.next();                                                 
              PictogramElement pe =  testObjekt.getGraphicsAlgorithm().getPictogramElement(); 
              Object bo = getBusinessObjectForPictogramElement(pe);
              //BUILD YOUR EMF & GRAPHITI projects together!!!!
              //otherwise you get always false after editor restart
              if (bo instanceof graphicElement) {
                  graphicElement sElement = (graphicElement)bo;
                  if(pe instanceof ContainerShape){
                      RoundedRectangle testR= (RoundedRectangle) pe.getGraphicsAlgorithm();
                      //testR is my RoundedRectangle like in help tutorial

                      //changes are possible here:
                      //...

                      ContainerShape cs = (ContainerShape) pe;
                      for (Shape shape : cs.getChildren()) {
                        //set Name
                          if (shape.getGraphicsAlgorithm() instanceof Text) {
                              Text text = (Text) shape.getGraphicsAlgorithm();
                                text.setValue("new name!");
                          }
                          //set Line color
                          if (shape.getGraphicsAlgorithm() instanceof Polyline) {
                              Polyline polyline = (Polyline)shape.getGraphicsAlgorithm();
                              polyline.setForeground(manageColor(myColorGreen));
                              polyline.setLineWidth(3);
                          }
                      }
                  }
              }
          }
于 2013-05-22T14:33:31.303 回答