Package org.eclipse.sapphire.ui.swt.gef.presentation

Source Code of org.eclipse.sapphire.ui.swt.gef.presentation.ShapeFactoryPresentation

/******************************************************************************
* Copyright (c) 2014 Oracle
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
*    Shenxue Zhou - initial implementation and ongoing maintenance
*    Ling Hao - [383924]  Flexible diagram node shapes
******************************************************************************/

package org.eclipse.sapphire.ui.swt.gef.presentation;

import java.util.ArrayList;
import java.util.List;

import org.eclipse.sapphire.FilteredListener;
import org.eclipse.sapphire.Listener;
import org.eclipse.sapphire.ui.diagram.editor.ShapeAddEvent;
import org.eclipse.sapphire.ui.diagram.editor.ShapeDeleteEvent;
import org.eclipse.sapphire.ui.diagram.editor.ShapeFactoryPart;
import org.eclipse.sapphire.ui.diagram.editor.ShapePart;
import org.eclipse.sapphire.ui.diagram.editor.ShapeReorderEvent;
import org.eclipse.sapphire.ui.swt.gef.model.DiagramResourceCache;
import org.eclipse.sapphire.ui.swt.gef.model.ShapeFactoryModel;

/**
* @author <a href="mailto:shenxue.zhou@oracle.com">Shenxue Zhou</a>
* @author <a href="mailto:ling.hao@oracle.com">Ling Hao</a>
*/

public class ShapeFactoryPresentation extends ShapePresentation
{
  private List<ShapePresentation> children;
  private ShapePresentation separator;
  private int index;
  private Listener shapeReorderListener;
  private Listener shapeAddListener;
  private Listener shapeDeleteListener;

  public ShapeFactoryPresentation(DiagramPresentation parent, ShapeFactoryPart shapeFactoryPart,
      DiagramResourceCache resourceCache)
  {
    super(parent, shapeFactoryPart, resourceCache);
   
    this.children = new ArrayList<ShapePresentation>();
    if (shapeFactoryPart.visible())
    {
      ShapePresentation childPresentation = null;
      for (ShapePart shapePart : shapeFactoryPart.getChildren())
      {
        childPresentation = ShapePresentationFactory.createShapePresentation(this, shapePart, resourceCache);
        this.children.add(childPresentation);
      }
    }
    if (shapeFactoryPart.getSeparator() != null)
    {
      this.separator = ShapePresentationFactory.createShapePresentation(this, shapeFactoryPart.getSeparator(), resourceCache);
      this.separator.setSeparator(true);
    }
  }
 
  public void init(final ShapeFactoryModel model) {
    shapeReorderListener = new FilteredListener<ShapeReorderEvent>() {
      @Override
      protected void handleTypedEvent(ShapeReorderEvent event) {
        model.handleReorderShapes(part());
      }
    };
    part().attach(shapeReorderListener);
   
    shapeAddListener = new FilteredListener<ShapeAddEvent>() {
      @Override
      protected void handleTypedEvent(ShapeAddEvent event) {
        model.handleAddShape(part());
      }
    };
    part().attach(shapeAddListener);

    shapeDeleteListener = new FilteredListener<ShapeDeleteEvent>() {
      @Override
      protected void handleTypedEvent(ShapeDeleteEvent event) {
        model.handleDeleteShape(part());
      }
    };
    part().attach(shapeDeleteListener);
  }
 
 
  @Override
  public ShapeFactoryPart part()
  {
    return (ShapeFactoryPart) super.part();
  }

  public List<ShapePresentation> getChildren()
  {
    return this.children;
  }
 
  public void refreshChildren()
  {
    List<ShapePresentation> refreshedChildren = new ArrayList<ShapePresentation>();
    ShapeFactoryPart shapeFactoryPart = (ShapeFactoryPart) part();
    if (shapeFactoryPart.visible())
    {
      for (ShapePart shapePart : shapeFactoryPart.getChildren())
      {
        ShapePresentation childPresentation = getChildShapePresentation(shapePart);
        if (childPresentation == null)
        {
          childPresentation = ShapePresentationFactory.createShapePresentation(this, shapePart, getResourceCache());
        }
        refreshedChildren.add(childPresentation);
      }   
    }
    this.children = refreshedChildren;
  }
 
  private ShapePresentation getChildShapePresentation(ShapePart shapePart) {
    for (ShapePresentation presentation : getChildren()) {
      if (presentation.part() == shapePart) {
        return presentation;
      }
    }
    return null;
  }

  public ShapePresentation getSeparator()
  {
    return this.separator;
  }
 
  public int getIndex() {
    return index;
  }

  public void setIndex(int index) {
    this.index = index;
  }

  @Override
  public void dispose()
  {
    super.dispose();
   
    part().detach(shapeReorderListener);
    part().detach(shapeAddListener);
    part().detach(shapeDeleteListener);
   
    for (ShapePresentation shapePresentation : getChildren())
    {
      shapePresentation.dispose();
    }
  } 
}
TOP

Related Classes of org.eclipse.sapphire.ui.swt.gef.presentation.ShapeFactoryPresentation

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.