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 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154
|
namespace System.Workflow.Activities
{
using System;
using System.Text;
using System.Reflection;
using System.Collections;
using System.Collections.ObjectModel;
using System.CodeDom;
using System.ComponentModel;
using System.ComponentModel.Design;
using System.Drawing;
using System.Drawing.Drawing2D;
using System.Drawing.Design;
using System.Workflow.ComponentModel;
using System.Workflow.ComponentModel.Design;
using System.Runtime.Serialization;
using System.Diagnostics;
#region Class ConditionalToolboxItem
[Serializable]
internal sealed class IfElseToolboxItem : ActivityToolboxItem
{
public IfElseToolboxItem(Type type)
: base(type)
{
}
private IfElseToolboxItem(SerializationInfo info, StreamingContext context)
{
Deserialize(info, context);
}
protected override IComponent[] CreateComponentsCore(IDesignerHost designerHost)
{
CompositeActivity conditionalActivity = new IfElseActivity();
conditionalActivity.Activities.Add(new IfElseBranchActivity());
conditionalActivity.Activities.Add(new IfElseBranchActivity());
return (IComponent[])new IComponent[] { conditionalActivity };
}
}
#endregion
#region Class ConditionalDesigner
[ActivityDesignerTheme(typeof(IfElseDesignerTheme))]
internal sealed class IfElseDesigner : ParallelActivityDesigner
{
#region Properties and Methods
public override bool CanInsertActivities(HitTestInfo insertLocation, ReadOnlyCollection<Activity> activitiesToInsert)
{
foreach (Activity activity in activitiesToInsert)
{
if (!(activity is IfElseBranchActivity))
return false;
}
return base.CanInsertActivities(insertLocation, activitiesToInsert);
}
public override bool CanRemoveActivities(ReadOnlyCollection<Activity> activitiesToRemove)
{
if ((ContainedDesigners.Count - activitiesToRemove.Count) < 1)
return false;
return true;
}
public override bool CanMoveActivities(HitTestInfo moveLocation, ReadOnlyCollection<Activity> activitiesToMove)
{
if ((ContainedDesigners.Count - activitiesToMove.Count) < 1)
{
if (moveLocation != null && moveLocation.AssociatedDesigner != this)
return false;
}
return true;
}
protected override CompositeActivity OnCreateNewBranch()
{
return new IfElseBranchActivity();
}
protected override void OnPaint(ActivityDesignerPaintEventArgs e)
{
base.OnPaint(e);
if (!Expanded || ContainedDesigners.Count == 0 || this != ActiveView.AssociatedDesigner)
return;
CompositeDesignerTheme compositeDesignerTheme = e.DesignerTheme as CompositeDesignerTheme;
Debug.Assert(compositeDesignerTheme != null);
if (compositeDesignerTheme == null)
return;
//Draw the Icon and Text
Rectangle bounds = Bounds;
Rectangle imageRectangle = ImageRectangle;
Rectangle diamondRectangle = Rectangle.Empty;
diamondRectangle.Width = compositeDesignerTheme.ConnectorSize.Height - 2 * e.AmbientTheme.Margin.Height + 2;
diamondRectangle.Height = diamondRectangle.Width;
diamondRectangle.X = bounds.Left + bounds.Width / 2 - diamondRectangle.Width / 2;
diamondRectangle.Y = bounds.Top + TitleHeight + (compositeDesignerTheme.ConnectorSize.Height * 3 / 2 - diamondRectangle.Height) / 2 + 1;
using (GraphicsPath decisionDiamond = GetDiamondPath(diamondRectangle))
{
e.Graphics.FillPath(compositeDesignerTheme.ForegroundBrush, decisionDiamond);
e.Graphics.DrawPath(compositeDesignerTheme.ForegroundPen, decisionDiamond);
}
diamondRectangle.Y = bounds.Bottom - compositeDesignerTheme.ConnectorSize.Height * 3 / 2 + (compositeDesignerTheme.ConnectorSize.Height * 3 / 2 - diamondRectangle.Height) / 2 + 1;
using (GraphicsPath decisionDiamond = GetDiamondPath(diamondRectangle))
{
e.Graphics.FillPath(compositeDesignerTheme.ForegroundBrush, decisionDiamond);
e.Graphics.DrawPath(compositeDesignerTheme.ForegroundPen, decisionDiamond);
}
}
private GraphicsPath GetDiamondPath(Rectangle rectangle)
{
Point[] diamondPoints =
{
new Point(rectangle.Left + rectangle.Width / 2, rectangle.Top),
new Point(rectangle.Right - 1, rectangle.Top + rectangle.Height / 2),
new Point(rectangle.Left + rectangle.Width / 2, rectangle.Bottom - 1),
new Point(rectangle.Left, rectangle.Top + rectangle.Height / 2),
new Point(rectangle.Left + rectangle.Width / 2, rectangle.Top)
};
GraphicsPath diamondPath = new GraphicsPath();
diamondPath.AddLines(diamondPoints);
diamondPath.CloseFigure();
return diamondPath;
}
#endregion
}
#endregion
#region IfElseDesignerTheme
internal sealed class IfElseDesignerTheme : CompositeDesignerTheme
{
public IfElseDesignerTheme(WorkflowTheme theme)
: base(theme)
{
this.ShowDropShadow = false;
this.ConnectorStartCap = LineAnchor.None;
this.ConnectorEndCap = LineAnchor.None;
this.ForeColor = Color.FromArgb(0xFF, 0x00, 0x64, 0x00);
this.BorderColor = Color.FromArgb(0xFF, 0xE0, 0xE0, 0xE0);
this.BorderStyle = DashStyle.Dash;
this.BackColorStart = Color.FromArgb(0x00, 0x00, 0x00, 0x00);
this.BackColorEnd = Color.FromArgb(0x00, 0x00, 0x00, 0x00);
}
}
#endregion
}
|