/** @generated */
    private void createContents() {

      fFigureStateVariableLabelFigure = new WrappingLabel();

      fFigureStateVariableLabelFigure.setText("StateVariable");
      fFigureStateVariableLabelFigure.setMaximumSize(
          new Dimension(getMapMode().DPtoLP(10000), getMapMode().DPtoLP(50)));

      this.add(fFigureStateVariableLabelFigure);

      fStateVariableInStateConstraintsCompartmentFigure = new RectangleFigure();

      fStateVariableInStateConstraintsCompartmentFigure.setOutline(false);

      this.add(fStateVariableInStateConstraintsCompartmentFigure);

      fStateVariableOutStateConstraintsCompartmentFigure = new RectangleFigure();

      fStateVariableOutStateConstraintsCompartmentFigure.setOutline(false);

      this.add(fStateVariableOutStateConstraintsCompartmentFigure);

      fStateVariableStateUpdatesCompartmentFigure = new RectangleFigure();

      fStateVariableStateUpdatesCompartmentFigure.setOutline(false);

      this.add(fStateVariableStateUpdatesCompartmentFigure);

      fStateVariableInfluencedByCompartmentFigure = new RectangleFigure();

      fStateVariableInfluencedByCompartmentFigure.setOutline(false);

      this.add(fStateVariableInfluencedByCompartmentFigure);
    }
Beispiel #2
0
  /**
   * Constructor of ROI figure.
   *
   * @param name name of the ROI. It must be unique for this graph.
   * @param color color of the ROI.
   * @param roiListener listener on ROI updates. Can be null.
   * @param roiInfoProvider provides information for the ROI. Can be null.
   */
  public ROIFigure(
      IntensityGraphFigure intensityGraphFigure,
      String name,
      Color color,
      IROIListener roiListener,
      IROIInfoProvider roiInfoProvider) {
    this.intensityGraphFigure = intensityGraphFigure;
    this.name = name;
    this.roiListener = roiListener;
    this.roiInfoProvider = roiInfoProvider;
    setToolTip(new Label(name));
    setBackgroundColor(ColorConstants.white);
    setForegroundColor(ColorConstants.black);
    roiRectFigure =
        new RectangleFigure() {
          public boolean containsPoint(int x, int y) {
            if (!super.containsPoint(x, y)) return false;
            return !Rectangle.SINGLETON.setBounds(getBounds()).shrink(3, 3).contains(x, y);
          }
        };
    roiRectFigure.setCursor(Cursors.SIZEALL);
    roiRectFigure.setFill(false);
    roiRectFigure.setOutline(true);
    roiRectFigure.setForegroundColor(color);
    ROIRectDragger roiRectDragger = new ROIRectDragger();
    roiRectFigure.addMouseListener(roiRectDragger);
    roiRectFigure.addMouseMotionListener(roiRectDragger);
    setFocusTraversable(true);
    setRequestFocusEnabled(true);
    resizeHandlers = new ResizeHandler[HANDLERS_COUNT];
    add(roiRectFigure);
    for (int i = 0; i < HANDLERS_COUNT; i++) {
      resizeHandlers[i] = new ResizeHandler(i);
      add(resizeHandlers[i]);
    }

    addFocusListener(
        new FocusListener() {
          public void focusGained(FocusEvent fe) {
            for (Figure handler : resizeHandlers) {
              handler.setVisible(true);
            }
          }

          public void focusLost(FocusEvent fe) {
            for (Figure handler : resizeHandlers) {
              handler.setVisible(false);
            }
          }
        });
    intensityGraphFigure.addCroppedDataSizeListener(
        new ICroppedDataSizeListener() {

          public void croppedDataSizeChanged(int croppedDataWidth, int croppedDataHeight) {
            updateROIGeoBounds();
            updateChildrenBounds();
          }
        });
  }
Beispiel #3
0
  private void createContents() {
    nameLabel = new WrappingLabel();
    GridData data = GridDataFactory.fillDefaults().grab(true, false).getData();
    nameLabel.setTextPlacement(PositionConstants.WEST);
    this.add(nameLabel, data);

    /** Compartment container * */
    compartmentPane = new RectangleFigure();
    compartmentPane.setOutline(false);
    compartmentPane.setLayoutManager(new StackLayout());
    compartmentPane.setFill(false);
    this.add(compartmentPane, GridDataFactory.fillDefaults().grab(true, true).getData());
  }
    /** @generated */
    private void createContents() {

      fFigureSplitJoinLabelFigure = new WrappingLabel();
      fFigureSplitJoinLabelFigure.setText("SplitJoin");
      fFigureSplitJoinLabelFigure.setMaximumSize(
          new Dimension(getMapMode().DPtoLP(10000), getMapMode().DPtoLP(50)));

      this.add(fFigureSplitJoinLabelFigure);

      fSplitJoinComponentsCompartmentFigure = new RectangleFigure();
      fSplitJoinComponentsCompartmentFigure.setOutline(false);
      fSplitJoinComponentsCompartmentFigure.setLineWidth(1);

      this.add(fSplitJoinComponentsCompartmentFigure);
    }
    /** @generated */
    private void createContents() {

      fFigureDeploymentSetLabelFigure = new WrappingLabel();

      fFigureDeploymentSetLabelFigure.setText("DeploymentSet");
      fFigureDeploymentSetLabelFigure.setMaximumSize(
          new Dimension(getMapMode().DPtoLP(10000), getMapMode().DPtoLP(50)));

      this.add(fFigureDeploymentSetLabelFigure);

      fDeploymentSetDeploymentsCompartmentFigure = new RectangleFigure();

      fDeploymentSetDeploymentsCompartmentFigure.setOutline(false);

      this.add(fDeploymentSetDeploymentsCompartmentFigure);
    }
  /*
   * (non-Javadoc)
   *
   * @see org.eclipse.gef.editparts.AbstractGraphicalEditPart#createFigure()
   */
  @Override
  protected IFigure createFigure() {
    RectangleFigure fig = new RectangleFigure();

    counterLabel = new Label(Integer.toString(getCastedModel().getCounter()));

    fig.setLayoutManager(new XYLayout());

    fig.setFont(SWTResourceManager.getFont("Sans", 13, SWT.BOLD));
    fig.setBackgroundColor(ColorConstants.lightGray);
    fig.setOpaque(true);
    fig.setOutline(false);

    fig.add(counterLabel, new Rectangle(17, 10, 30, 30));
    fig.add(new Label("x"), new Rectangle(0, 9, 30, 30));

    return fig;
  }
Beispiel #7
0
    /** @generated */
    private void createContents() {

      fFigureMAVOClassLabelFigure = new WrappingLabel();

      fFigureMAVOClassLabelFigure.setText("");
      fFigureMAVOClassLabelFigure.setMaximumSize(
          new Dimension(getMapMode().DPtoLP(10000), getMapMode().DPtoLP(50)));

      this.add(fFigureMAVOClassLabelFigure);

      fFigureClassLabelFigure = new WrappingLabel();

      fFigureClassLabelFigure.setText("Class");
      fFigureClassLabelFigure.setMaximumSize(
          new Dimension(getMapMode().DPtoLP(10000), getMapMode().DPtoLP(50)));

      this.add(fFigureClassLabelFigure);

      fClassOperationsCompartmentFigure = new RectangleFigure();

      fClassOperationsCompartmentFigure.setOutline(false);

      this.add(fClassOperationsCompartmentFigure);
    }
    /** @generated NOT */
    private void createContents() {

      fFigureSceneTopicFigure = new WrappingLabel();
      fFigureSceneTopicFigure.setText("Untitled Scene");

      fFigureSceneTopicFigure.setFont(FFIGURESCENETOPICFIGURE_FONT);

      GridData constraintFFigureSceneTopicFigure = new GridData();
      constraintFFigureSceneTopicFigure.verticalAlignment = GridData.BEGINNING;
      constraintFFigureSceneTopicFigure.horizontalAlignment = GridData.CENTER;
      constraintFFigureSceneTopicFigure.horizontalIndent = 0;
      constraintFFigureSceneTopicFigure.horizontalSpan = 1;
      constraintFFigureSceneTopicFigure.verticalSpan = 1;
      constraintFFigureSceneTopicFigure.grabExcessHorizontalSpace = true;
      constraintFFigureSceneTopicFigure.grabExcessVerticalSpace = false;
      this.add(fFigureSceneTopicFigure, constraintFFigureSceneTopicFigure);

      RectangleFigure dialogueRectangle0 = new RectangleFigure();
      dialogueRectangle0.setFill(false);
      dialogueRectangle0.setOutline(false);
      dialogueRectangle0.setLineWidth(1);

      GridData constraintDialogueRectangle0 = new GridData();
      constraintDialogueRectangle0.verticalAlignment = GridData.BEGINNING;
      constraintDialogueRectangle0.horizontalAlignment = GridData.FILL;
      constraintDialogueRectangle0.horizontalIndent = 0;
      constraintDialogueRectangle0.horizontalSpan = 0;
      constraintDialogueRectangle0.verticalSpan = 0;
      constraintDialogueRectangle0.grabExcessHorizontalSpace = true;
      constraintDialogueRectangle0.grabExcessVerticalSpace = true;
      this.add(dialogueRectangle0, constraintDialogueRectangle0);

      GridLayout layoutDialogueRectangle0 = new GridLayout();
      layoutDialogueRectangle0.numColumns = 1;
      layoutDialogueRectangle0.makeColumnsEqualWidth = true;
      dialogueRectangle0.setLayoutManager(layoutDialogueRectangle0);

      RectangleFigure line1 = new RectangleFigure();
      // line1.setSize(400, 1);
      line1.setFill(false);
      line1.setLineWidth(2);
      line1.setForegroundColor(ColorConstants.black);
      line1.setPreferredSize(new Dimension(getMapMode().DPtoLP(100), getMapMode().DPtoLP(1)));

      GridData constraintLine1 = new GridData();
      constraintLine1.verticalAlignment = GridData.BEGINNING;
      constraintLine1.horizontalAlignment = GridData.FILL;
      constraintLine1.horizontalIndent = 0;
      constraintLine1.horizontalSpan = 0;
      constraintLine1.verticalSpan = 0;
      constraintLine1.grabExcessHorizontalSpace = true;
      constraintLine1.grabExcessVerticalSpace = false;
      dialogueRectangle0.add(line1, constraintLine1);

      fFigureDialogueFigure = new WrappingLabel();
      fFigureDialogueFigure.setTextWrap(true);
      fFigureDialogueFigure.setText("Click to edit...");
      fFigureDialogueFigure.setPreferredSize(
          new Dimension(getMapMode().DPtoLP(100), getMapMode().DPtoLP(100)));

      GridData constraintFFigureDialogueFigure = new GridData();
      constraintFFigureDialogueFigure.verticalAlignment = GridData.FILL;
      constraintFFigureDialogueFigure.horizontalAlignment = GridData.BEGINNING;
      constraintFFigureDialogueFigure.horizontalIndent = 0;
      constraintFFigureDialogueFigure.horizontalSpan = 1;
      constraintFFigureDialogueFigure.verticalSpan = 1;
      constraintFFigureDialogueFigure.grabExcessHorizontalSpace = true;
      constraintFFigureDialogueFigure.grabExcessVerticalSpace = true;
      dialogueRectangle0.add(fFigureDialogueFigure, constraintFFigureDialogueFigure);

      fFigureSketchesCompartmentFigure = new org.eclipse.draw2d.RectangleFigure();
      fFigureSketchesCompartmentFigure.setLineWidth(1);
      fFigureSketchesCompartmentFigure.setForegroundColor(
          org.eclipse.draw2d.ColorConstants.lightGray);

      org.eclipse.draw2d.GridData constraintFFigureSketchesCompartmentFigure =
          new org.eclipse.draw2d.GridData();
      // constraintFFigureSketchesCompartmentFigure.verticalAlignment =
      // org.eclipse.draw2d.GridData.FILL;
      constraintFFigureSketchesCompartmentFigure.horizontalAlignment =
          org.eclipse.draw2d.GridData.FILL;
      constraintFFigureSketchesCompartmentFigure.horizontalIndent = 0;
      constraintFFigureSketchesCompartmentFigure.horizontalSpan = 1;
      constraintFFigureSketchesCompartmentFigure.verticalSpan = 1;
      constraintFFigureSketchesCompartmentFigure.grabExcessHorizontalSpace = true;
      // constraintFFigureSketchesCompartmentFigure.grabExcessVerticalSpace = true;
      this.add(fFigureSketchesCompartmentFigure, constraintFFigureSketchesCompartmentFigure);
    }
    /** @generated */
    private void createContents() {

      ScalablePolygonShape deepHistoryFigure_Letter0 = new ScalablePolygonShape();
      deepHistoryFigure_Letter0.addPoint(
          new Point(getMapMode().DPtoLP(0), getMapMode().DPtoLP(40)));
      deepHistoryFigure_Letter0.addPoint(
          new Point(getMapMode().DPtoLP(0), getMapMode().DPtoLP(20)));
      deepHistoryFigure_Letter0.addPoint(
          new Point(getMapMode().DPtoLP(40), getMapMode().DPtoLP(20)));
      deepHistoryFigure_Letter0.addPoint(
          new Point(getMapMode().DPtoLP(40), getMapMode().DPtoLP(40)));
      deepHistoryFigure_Letter0.addPoint(
          new Point(getMapMode().DPtoLP(40), getMapMode().DPtoLP(0)));
      deepHistoryFigure_Letter0.addPoint(
          new Point(getMapMode().DPtoLP(40), getMapMode().DPtoLP(20)));
      deepHistoryFigure_Letter0.addPoint(
          new Point(getMapMode().DPtoLP(0), getMapMode().DPtoLP(20)));
      deepHistoryFigure_Letter0.addPoint(new Point(getMapMode().DPtoLP(0), getMapMode().DPtoLP(0)));
      deepHistoryFigure_Letter0.setFill(true);
      deepHistoryFigure_Letter0.setLineWidth(1);
      deepHistoryFigure_Letter0.setPreferredSize(
          new Dimension(getMapMode().DPtoLP(15), getMapMode().DPtoLP(15)));
      deepHistoryFigure_Letter0.setMaximumSize(
          new Dimension(getMapMode().DPtoLP(15), getMapMode().DPtoLP(15)));

      GridData constraintDeepHistoryFigure_Letter0 = new GridData();
      constraintDeepHistoryFigure_Letter0.verticalAlignment = GridData.FILL;
      constraintDeepHistoryFigure_Letter0.horizontalAlignment = GridData.FILL;
      constraintDeepHistoryFigure_Letter0.horizontalIndent = 0;
      constraintDeepHistoryFigure_Letter0.horizontalSpan = 1;
      constraintDeepHistoryFigure_Letter0.verticalSpan = 1;
      constraintDeepHistoryFigure_Letter0.grabExcessHorizontalSpace = true;
      constraintDeepHistoryFigure_Letter0.grabExcessVerticalSpace = true;
      this.add(deepHistoryFigure_Letter0, constraintDeepHistoryFigure_Letter0);

      RectangleFigure deepHistoryFigure_AsteriskContainer0 = new RectangleFigure();
      deepHistoryFigure_AsteriskContainer0.setFill(false);
      deepHistoryFigure_AsteriskContainer0.setOutline(false);
      deepHistoryFigure_AsteriskContainer0.setLineWidth(1);
      deepHistoryFigure_AsteriskContainer0.setPreferredSize(
          new Dimension(getMapMode().DPtoLP(15), getMapMode().DPtoLP(15)));
      deepHistoryFigure_AsteriskContainer0.setMinimumSize(
          new Dimension(getMapMode().DPtoLP(15), getMapMode().DPtoLP(15)));
      deepHistoryFigure_AsteriskContainer0.setBorder(
          new MarginBorder(
              getMapMode().DPtoLP(0),
              getMapMode().DPtoLP(2),
              getMapMode().DPtoLP(5),
              getMapMode().DPtoLP(0)));

      GridData constraintDeepHistoryFigure_AsteriskContainer0 = new GridData();
      constraintDeepHistoryFigure_AsteriskContainer0.verticalAlignment = GridData.FILL;
      constraintDeepHistoryFigure_AsteriskContainer0.horizontalAlignment = GridData.FILL;
      constraintDeepHistoryFigure_AsteriskContainer0.horizontalIndent = 0;
      constraintDeepHistoryFigure_AsteriskContainer0.horizontalSpan = 1;
      constraintDeepHistoryFigure_AsteriskContainer0.verticalSpan = 1;
      constraintDeepHistoryFigure_AsteriskContainer0.grabExcessHorizontalSpace = true;
      constraintDeepHistoryFigure_AsteriskContainer0.grabExcessVerticalSpace = true;
      this.add(
          deepHistoryFigure_AsteriskContainer0, constraintDeepHistoryFigure_AsteriskContainer0);

      deepHistoryFigure_AsteriskContainer0.setLayoutManager(new StackLayout());

      ScalablePolygonShape deepHistoryFigure_Asterisk1 = new ScalablePolygonShape();
      deepHistoryFigure_Asterisk1.addPoint(
          new Point(getMapMode().DPtoLP(10), getMapMode().DPtoLP(7)));
      deepHistoryFigure_Asterisk1.addPoint(
          new Point(getMapMode().DPtoLP(30), getMapMode().DPtoLP(33)));
      deepHistoryFigure_Asterisk1.addPoint(
          new Point(getMapMode().DPtoLP(20), getMapMode().DPtoLP(20)));
      deepHistoryFigure_Asterisk1.addPoint(
          new Point(getMapMode().DPtoLP(30), getMapMode().DPtoLP(7)));
      deepHistoryFigure_Asterisk1.addPoint(
          new Point(getMapMode().DPtoLP(10), getMapMode().DPtoLP(33)));
      deepHistoryFigure_Asterisk1.addPoint(
          new Point(getMapMode().DPtoLP(20), getMapMode().DPtoLP(20)));
      deepHistoryFigure_Asterisk1.addPoint(
          new Point(getMapMode().DPtoLP(40), getMapMode().DPtoLP(20)));
      deepHistoryFigure_Asterisk1.addPoint(
          new Point(getMapMode().DPtoLP(0), getMapMode().DPtoLP(20)));
      deepHistoryFigure_Asterisk1.addPoint(
          new Point(getMapMode().DPtoLP(20), getMapMode().DPtoLP(20)));
      deepHistoryFigure_Asterisk1.setFill(true);
      deepHistoryFigure_Asterisk1.setLineWidth(1);

      deepHistoryFigure_AsteriskContainer0.add(deepHistoryFigure_Asterisk1);
    }
    /** @generated */
    private void createContents() {

      RectangleFigure innerRectangle0 = new RectangleFigure();

      innerRectangle0.setFill(false);
      innerRectangle0.setOutline(false);

      this.add(innerRectangle0);

      GridLayout layoutInnerRectangle0 = new GridLayout();
      layoutInnerRectangle0.numColumns = 4;
      layoutInnerRectangle0.makeColumnsEqualWidth = false;
      layoutInnerRectangle0.horizontalSpacing = 0;
      layoutInnerRectangle0.verticalSpacing = 0;
      layoutInnerRectangle0.marginWidth = 3;
      layoutInnerRectangle0.marginHeight = 0;
      innerRectangle0.setLayoutManager(layoutInnerRectangle0);

      fFigureMethodNameFigure = new WrappingLabel();

      fFigureMethodNameFigure.setText("");

      fFigureMethodNameFigure.setFont(FFIGUREMETHODNAMEFIGURE_FONT);

      GridData constraintFFigureMethodNameFigure = new GridData();
      constraintFFigureMethodNameFigure.verticalAlignment = GridData.CENTER;
      constraintFFigureMethodNameFigure.horizontalAlignment = GridData.BEGINNING;
      constraintFFigureMethodNameFigure.horizontalIndent = 0;
      constraintFFigureMethodNameFigure.horizontalSpan = 1;
      constraintFFigureMethodNameFigure.verticalSpan = 1;
      constraintFFigureMethodNameFigure.grabExcessHorizontalSpace = false;
      constraintFFigureMethodNameFigure.grabExcessVerticalSpace = false;
      innerRectangle0.add(fFigureMethodNameFigure, constraintFFigureMethodNameFigure);

      fFigureMethodPotencyFigure = new WrappingLabel();

      fFigureMethodPotencyFigure.setText("");

      fFigureMethodPotencyFigure.setFont(FFIGUREMETHODPOTENCYFIGURE_FONT);

      fFigureMethodPotencyFigure.setBorder(
          new MarginBorder(
              getMapMode().DPtoLP(0),
              getMapMode().DPtoLP(0),
              getMapMode().DPtoLP(10),
              getMapMode().DPtoLP(0)));

      GridData constraintFFigureMethodPotencyFigure = new GridData();
      constraintFFigureMethodPotencyFigure.verticalAlignment = GridData.CENTER;
      constraintFFigureMethodPotencyFigure.horizontalAlignment = GridData.BEGINNING;
      constraintFFigureMethodPotencyFigure.horizontalIndent = 0;
      constraintFFigureMethodPotencyFigure.horizontalSpan = 1;
      constraintFFigureMethodPotencyFigure.verticalSpan = 1;
      constraintFFigureMethodPotencyFigure.grabExcessHorizontalSpace = false;
      constraintFFigureMethodPotencyFigure.grabExcessVerticalSpace = false;
      innerRectangle0.add(fFigureMethodPotencyFigure, constraintFFigureMethodPotencyFigure);

      fFigureMethodInputFigure = new WrappingLabel();

      fFigureMethodInputFigure.setText("");

      fFigureMethodInputFigure.setFont(FFIGUREMETHODINPUTFIGURE_FONT);

      GridData constraintFFigureMethodInputFigure = new GridData();
      constraintFFigureMethodInputFigure.verticalAlignment = GridData.CENTER;
      constraintFFigureMethodInputFigure.horizontalAlignment = GridData.BEGINNING;
      constraintFFigureMethodInputFigure.horizontalIndent = 0;
      constraintFFigureMethodInputFigure.horizontalSpan = 1;
      constraintFFigureMethodInputFigure.verticalSpan = 1;
      constraintFFigureMethodInputFigure.grabExcessHorizontalSpace = false;
      constraintFFigureMethodInputFigure.grabExcessVerticalSpace = false;
      innerRectangle0.add(fFigureMethodInputFigure, constraintFFigureMethodInputFigure);

      fFigureMethodOutputFigure = new WrappingLabel();

      fFigureMethodOutputFigure.setText("");

      fFigureMethodOutputFigure.setFont(FFIGUREMETHODOUTPUTFIGURE_FONT);

      GridData constraintFFigureMethodOutputFigure = new GridData();
      constraintFFigureMethodOutputFigure.verticalAlignment = GridData.CENTER;
      constraintFFigureMethodOutputFigure.horizontalAlignment = GridData.BEGINNING;
      constraintFFigureMethodOutputFigure.horizontalIndent = 0;
      constraintFFigureMethodOutputFigure.horizontalSpan = 1;
      constraintFFigureMethodOutputFigure.verticalSpan = 1;
      constraintFFigureMethodOutputFigure.grabExcessHorizontalSpace = false;
      constraintFFigureMethodOutputFigure.grabExcessVerticalSpace = false;
      innerRectangle0.add(fFigureMethodOutputFigure, constraintFFigureMethodOutputFigure);
    }