Package org.gvt.action

Source Code of org.gvt.action.RemoveHighlightsAction

package org.gvt.action;

import org.eclipse.jface.action.Action;
import org.eclipse.jface.resource.ImageDescriptor;
import org.gvt.ChisioMain;
import org.gvt.editpart.ChsRootEditPart;
import org.gvt.model.CompoundModel;
import org.gvt.model.EdgeModel;
import org.gvt.model.NodeModel;

import java.util.Iterator;
import java.util.List;

/**
* Action for removing the highlight from all objects in the graph.
*
* @author Cihan Kucukkececi
*
* Copyright: I-Vis Research Group, Bilkent University, 2007
*/
public class RemoveHighlightsAction extends Action
{
  ChisioMain main;

  /**
   * Constructor
   */
  public RemoveHighlightsAction(ChisioMain main)
  {
    super("Unhighlight All");
    setImageDescriptor(ImageDescriptor.createFromFile(ChisioMain.class, "icon/unhighlight-all.png"));
    setToolTipText(getText());
    this.main = main;
  }

  public void run()
  {
    if (main.getViewer() == null) return;

    CompoundModel root = (CompoundModel) ((ChsRootEditPart)main.getViewer().
      getRootEditPart().getChildren().get(0)).getModel();

    Iterator<NodeModel> nodeIter = root.getNodes().iterator();

    while (nodeIter.hasNext())
    {
      NodeModel node = nodeIter.next();
      node.setHighlight(false);

      List<EdgeModel> edges = node.getSourceConnections();

      for (int i = 0; i < edges.size(); i++)
      {
        edges.get(i).setHighlight(false);
      }
    }
  }
}
TOP

Related Classes of org.gvt.action.RemoveHighlightsAction

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.