Skip to main content
summaryrefslogtreecommitdiffstats
blob: 78b1928e50eae9798321750f561e9e62b7d24ece (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
/*******************************************************************************
 * Copyright (c) 2004, 2007 Boeing.
 * 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:
 *     Boeing - initial API and implementation
 *******************************************************************************/
package org.eclipse.osee.framework.ui.branch.graph.parts;

import org.eclipse.draw2d.BorderLayout;
import org.eclipse.draw2d.IFigure;
import org.eclipse.draw2d.Panel;
import org.eclipse.draw2d.geometry.Rectangle;
import org.eclipse.gef.EditPolicy;
import org.eclipse.gef.editparts.AbstractGraphicalEditPart;
import org.eclipse.gef.editpolicies.SelectionEditPolicy;
import org.eclipse.osee.framework.ui.branch.graph.figure.TxFigure;
import org.eclipse.osee.framework.ui.branch.graph.model.TxModel;
import org.eclipse.osee.framework.ui.branch.graph.utility.GraphFigureConstants;

/**
 * @author Roberto E. Escobar
 */
public class TxEditPart extends AbstractGraphicalEditPart {

   protected IFigure createFigure() {
      IFigure figure = new Panel();
      figure.setLayoutManager(new BorderLayout());

      TxModel txModel = (TxModel) getModel();
      GraphEditPart graphEditPart = (GraphEditPart) getParent().getParent();
      TxFigure txFigure = graphEditPart.getTxFigure(txModel);

      figure.add(txFigure, BorderLayout.CENTER);

      Rectangle rect =
            new Rectangle(GraphFigureConstants.TX_X_OFFSET + GraphFigureConstants.PLUS_MINUS_PADDING * 2,
                  10 + GraphFigureConstants.BRANCH_HEIGHT + txModel.getIndex() * GraphFigureConstants.TX_Y_OFFSET,
                  GraphFigureConstants.TX_WIDTH, GraphFigureConstants.TX_HEIGHT);
      ((AbstractGraphicalEditPart) getParent()).getFigure().getLayoutManager().setConstraint(txFigure, rect);

      return txFigure;
   }

   protected void refreshVisuals() {
      getFigure().setSize(GraphFigureConstants.TX_WIDTH, GraphFigureConstants.TX_HEIGHT);
      TxModel txModel = (TxModel) getModel();
      GraphEditPart graphEditPart = (GraphEditPart) getParent().getParent();
      TxFigure txFigure = graphEditPart.getTxFigure(txModel);
      txFigure.setSelected(getSelected() != SELECTED_NONE);
      graphEditPart.setConnectionVisibility();
   }

   protected void createEditPolicies() {
      installEditPolicy(EditPolicy.SELECTION_FEEDBACK_ROLE, new SelectionEditPolicy() {
         protected void hideSelection() {
            refreshVisuals();
         }

         protected void showSelection() {
            refreshVisuals();
         }
      });
   }

}

Back to the top