Ejemplo n.º 1
0
 public ChapterRepresentation()
 {
     Graphics = new EditorGraphics(WorkflowEditorColorPalette.GetDefaultPalette());
 }
Ejemplo n.º 2
0
 /// <inheritdoc />
 public TransitionElement(EditorGraphics editorGraphics, ExitJoint start, EntryJoint destination) : base(editorGraphics, false, start)
 {
     Destination = destination;
     Start       = start;
     renderer    = new TransitionRenderer(this, editorGraphics.ColorPalette);
 }
Ejemplo n.º 3
0
 public ExitJoint(EditorGraphics editorGraphics, GraphicalElement parent = null) : base(editorGraphics, true, parent)
 {
     renderer = new ExitJointRenderer(this, editorGraphics.ColorPalette);
 }
Ejemplo n.º 4
0
 public CreateTransitionButton(EditorGraphics editorGraphics, GraphicalElement parent = null) : base(editorGraphics, true, parent)
 {
     renderer = new CreateTransitionButtonRenderer(this, editorGraphics.ColorPalette);
 }
Ejemplo n.º 5
0
 public AddStepButton(EditorGraphics editorGraphics, GraphicalElement parent = null) : base(editorGraphics, true, parent)
 {
     renderer = new AddStepButtonRenderer(this, editorGraphics.ColorPalette);
 }
Ejemplo n.º 6
0
 public EntryNode(EditorGraphics owner) : base(owner, true)
 {
     renderer = new EntryNodeRenderer(this, owner.ColorPalette);
 }
Ejemplo n.º 7
0
 public WorkflowEditorGrid(EditorGraphics editorGraphics, float cellSize) : base(editorGraphics, false)
 {
     renderer          = new WorkflowEditorGridRenderer(this);
     renderer.CellSize = cellSize;
 }
Ejemplo n.º 8
0
 public WorkflowEditorGrid(EditorGraphics editorGraphics) : base(editorGraphics, false)
 {
     renderer = new WorkflowEditorGridRenderer(this);
 }