Home
last modified time | relevance | path

Searched refs:ActivityDesigner (Results 1 – 25 of 78) sorted by relevance

1234

/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.WorkflowServices/System/Workflow/ComponentModel/Design/
H A DDesignerPainter.cs24 public static CompositeActivityDesigner GetRootDesigner(ActivityDesigner designer) in GetRootDesigner()
38 …public static void PaintDesigner(ActivityDesigner activityDesigner, ActivityDesignerPaintEventArgs… in PaintDesigner()
48 ActivityDesigner parentDesigner = activityDesigner.ParentDesigner; in PaintDesigner()
73 private static bool IsBranchVisible(ActivityDesigner activityDesigner) in IsBranchVisible()
75 ActivityDesigner currentDesigner = activityDesigner; in IsBranchVisible()
76 ActivityDesigner parentDesigner = activityDesigner.ParentDesigner; in IsBranchVisible()
95 …private static bool IsInsidePreviewDesignerBranch(ActivityDesigner activityDesigner, out bool visi… in IsInsidePreviewDesignerBranch()
98 ActivityDesigner currentDesigner = activityDesigner; in IsInsidePreviewDesignerBranch()
99 ActivityDesigner parentDesigner = activityDesigner.ParentDesigner; in IsInsidePreviewDesignerBranch()
123 …private static void PaintDesignerInternal(ActivityDesigner activityDesigner, ActivityDesignerPaint… in PaintDesignerInternal()
H A DFindSimilarActivitiesVerb.cs22 List<ActivityDesigner> matchingActivityDesigner;
24 ActivityDesigner owner;
26 …public FindSimilarActivitiesVerb(ActivityDesigner designer, ActivityComparer<TActivity> matchMaker… in FindSimilarActivitiesVerb()
40 ActivityDesigner activityDesigner = designerVerb.owner; in OnInvoke()
41 …List<ActivityDesigner> highlightedDesigners = designerVerb.GetMatchingActivityDesigners(activityDe… in OnInvoke()
46 private ActivityDesigner GetDesigner(Activity activity) in GetDesigner()
50 return designerHost.GetDesigner(activity as IComponent) as ActivityDesigner; in GetDesigner()
53 … private List<ActivityDesigner> GetMatchingActivityDesigners(ActivityDesigner activityDesigner) in GetMatchingActivityDesigners()
56 matchingActivityDesigner = new List<ActivityDesigner>(); in GetMatchingActivityDesigners()
H A DActivityDesignerHighlighter.cs23 private ActivityDesigner owner;
25 public ActivityDesignerHighlighter(ActivityDesigner owner) in ActivityDesignerHighlighter()
47 public void Highlight(List<ActivityDesigner> highlightedDesigners) in Highlight()
61 …yphProvider(designerHost.GetDesigner(designerHost.RootComponent) as ActivityDesigner, highlightedD… in Highlight()
167 private List<ActivityDesigner> highlightedDesigners;
170 private ActivityDesigner rootDesigner;
172 …public HighlightGlyphProvider(ActivityDesigner rootDesigner, List<ActivityDesigner> highlightedDes… in HighlightGlyphProvider()
179 public List<ActivityDesigner> HighlightedDesigners
191 public ActivityDesigner RootDesigner
197 public ActivityDesignerGlyphCollection GetGlyphs(ActivityDesigner activityDesigner) in GetGlyphs()
H A DHighlightOverlayGlyph.cs23 private List<ActivityDesigner> highlightedDesigners;
24 public HighlightOverlayGlyph(Rectangle bounds, List<ActivityDesigner> highlightedDesigners) in HighlightOverlayGlyph()
36 public List<ActivityDesigner> HighlightedDesigners
42 …id OnPaint(Graphics graphics, bool activated, AmbientTheme ambientTheme, ActivityDesigner designer) in OnPaint()
57 foreach (ActivityDesigner highlightedDesigner in HighlightedDesigners) in OnPaint()
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Workflow.ComponentModel/AuthoringOM/Design/MessageFilters/
H A DGlyphManager.cs106 protected virtual void OnActivate(ActivityDesigner designer) in OnActivate()
110 internal void DrawActivated(Graphics graphics, ActivityDesigner designer) in DrawActivated()
115 internal void Draw(Graphics graphics, ActivityDesigner designer) in Draw()
120 internal void Activate(ActivityDesigner designer) in Activate()
141 private ActivityDesigner activeDesigner = null;
286 ActivityDesigner newActiveDesigner = null; in RefreshActiveGlyph()
339 foreach (ActivityDesigner designer in containedDesigners) in GlyphFromPoint()
371 List<ActivityDesigner> designerList = new List<ActivityDesigner>(); in GetActivityDesigners()
374 ActivityDesigner rootDesigner = ActivityDesigner.GetSafeRootDesigner(ParentView); in GetActivityDesigners()
390 foreach (ActivityDesigner activityDesigner in designers) in GetActivityDesigners()
[all …]
H A DWindowManager.cs18 private ActivityDesigner currentActiveDesigner = null;
151 … IDesigner designer = ActivityDesigner.GetDesigner(selectedComponent) as IDesigner; in OnMouseDoubleClick()
300ActivityDesigner designer = ActivityDesigner.GetDesigner(selectionService.PrimarySelection as Acti… in OnKeyDown()
312 ActivityDesigner designerWithFocus = GetDesignerWithFocus(); in OnKeyDown()
322 ActivityDesigner designerWithFocus = GetDesignerWithFocus(); in OnKeyUp()
331 ActivityDesigner designerWithFocus = GetDesignerWithFocus(); in OnScroll()
378 ActivityDesigner designerWithFocus = GetDesignerWithFocus(); in ProcessMessage()
394 private ActivityDesigner GetDesignerWithFocus() in GetDesignerWithFocus()
396 ActivityDesigner designerWithFocus = null; in GetDesignerWithFocus()
403 designerWithFocus = ActivityDesigner.GetDesigner(primarySelection as Activity); in GetDesignerWithFocus()
[all …]
H A DResizingMessageFilter.cs16 private ActivityDesigner designerToResize = null;
36 ActivityDesigner designer = GetDesignerToResize(logicalPoint, out sizingEdge); in OnMouseDown()
63 ActivityDesigner designer = GetDesignerToResize(logicalPoint, out sizingEdge); in OnMouseMove()
151 private ActivityDesigner GetDesignerToResize(Point point, out DesignerEdges sizingEdge) in GetDesignerToResize()
153 ActivityDesigner designerToResize = null; in GetDesignerToResize()
165ActivityDesigner potentialResizableDesigner = ActivityDesigner.GetDesigner(activity); in GetDesignerToResize()
189 private DesignerEdges GetSizingEdge(ActivityDesigner designer, Point point) in GetSizingEdge()
207 private bool CanResizeDesigner(ActivityDesigner designer) in CanResizeDesigner()
224 private void SetResizableDesigner(ActivityDesigner designer, DesignerEdges sizingEdge) in SetResizableDesigner()
268 …private void UpdateDesignerSize(Point point, ActivityDesigner designerToSize, DesignerEdges sizing… in UpdateDesignerSize()
H A DConnectionManager.cs480 …internal static FreeformActivityDesigner GetConnectorContainer(ActivityDesigner associatedDesigner) in GetConnectorContainer()
487 ActivityDesigner connectedDesigner = associatedDesigner; in GetConnectorContainer()
501 …Point sourceConnectionPoint, ConnectionPoint activeConnectionPoint, ActivityDesigner activityDesig… in GetSnappableConnectionPoints()
512 List<ActivityDesigner> designersToCheck = new List<ActivityDesigner>(); in GetSnappableConnectionPoints()
518 foreach (ActivityDesigner designer in designersToCheck) in GetSnappableConnectionPoints()
564 …nectionPoint[] GetHighlightableConnectionPoints(Point currentPoint, ActivityDesigner activityDesig… in GetHighlightableConnectionPoints()
567 List<ActivityDesigner> designersToCheck = new List<ActivityDesigner>(); in GetHighlightableConnectionPoints()
575 foreach (ActivityDesigner designer in designersToCheck) in GetHighlightableConnectionPoints()
600 …ActivityDesignerGlyphCollection IDesignerGlyphProvider.GetGlyphs(ActivityDesigner activityDesigner) in IDesignerGlyphProvider.GetGlyphs()
H A DFreeFormDragDropManager.cs104 …text != null && MessageHitTestContext.AssociatedDesigner != null && ActivityDesigner.GetParentDesi… in OnMouseMove()
193 ActivityDesigner previewDesigner = ActivityDesigner.GetDesigner(activity); in CreateDragFeedbackImages()
195 previewDesigner = ActivityDesigner.CreateDesigner(ParentView, activity); in CreateDragFeedbackImages()
252 ActivityDesigner designerToMove = ActivityDesigner.GetDesigner(activityToMove); in GetDesignerLocations()
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Workflow.ComponentModel/AuthoringOM/Design/
H A DFreeFormDesigner.cs608ActivityDesigner designerToMove = ActivityDesigner.GetDesigner(movingActivity); in MoveActivities()
629ActivityDesigner activityDesigner = (current is Activity) ? ActivityDesigner.GetDesigner(current a… in GetNextSelectableObject()
682ActivityDesigner designerToRemove = ActivityDesigner.GetDesigner(activityToRemove); in OnContainedActivitiesChanging()
891 ActivityDesigner designerToMove = ActivityDesigner.GetDesigner(e.Activities[i]); in OnDragDrop()
917 ActivityDesigner designer = ActivityDesigner.GetDesigner(activity); in InsertActivities()
984 ActivityDesigner designer = ActivityDesigner.GetDesigner(selectedActivity); in OnKeyDown()
1311 ActivityDesigner designer = ActivityDesigner.GetDesigner(activity); in GetLocation()
1319 ActivityDesigner designer = ActivityDesigner.GetDesigner(activity); in SetLocation()
1340 ActivityDesigner designer = ActivityDesigner.GetDesigner(activity); in GetSize()
1348 ActivityDesigner designer = ActivityDesigner.GetDesigner(activity); in SetSize()
[all …]
H A DCompositeActivityDesigner.cs133 List<ActivityDesigner> designers = new List<ActivityDesigner>();
149ActivityDesigner activityDesigner = ActivityDesigner.GetDesigner(activity);
391 List<ActivityDesigner> childDesigners = new List<ActivityDesigner>();
519 ActivityDesigner designer = ActivityDesigner.GetDesigner(activity); in RemoveActivities()
681 List<ActivityDesigner> intersectingDesigners = new List<ActivityDesigner>(); in GetIntersectingDesigners()
873 ActivityDesigner designer = ActivityDesigner.GetDesigner(activity); in CanMoveActivities()
910 ActivityDesigner designer = ActivityDesigner.GetDesigner(activity); in MoveActivities()
997 ActivityDesigner designer = ActivityDesigner.GetDesigner(activity); in CanRemoveActivities()
1090 ActivityDesigner activityDesigner = containedDesigners[i] as ActivityDesigner; in HitTest()
1476 ActivityDesigner designer = ActivityDesigner.GetDesigner(e.Component as Activity); in OnComponentAdded()
[all …]
H A DStructuredCompositeActivityDesigner.cs56 List<ActivityDesigner> containedDesigners = new List<ActivityDesigner>();
57 ActivityDesigner activeDesigner = ActiveDesigner;
65 List<ActivityDesigner> designersToRemove = new List<ActivityDesigner>();
92 ActivityDesigner activeDesigner = ActiveDesigner;
104 ActivityDesigner activeDesigner = ActiveDesigner;
164 ActivityDesigner activeDesigner = ActiveDesigner;
245 internal ActivityDesigner ActiveDesigner
288 List<ActivityDesigner> mappedDesigners = new List<ActivityDesigner>();
369 ActivityDesigner activeDesigner = ActiveDesigner; in EnsureVisibleContainedDesigner()
407 ActivityDesigner activeDesigner = ActiveDesigner; in GetNextSelectableObject()
[all …]
H A DParallelActivityDesigner.cs136 ReadOnlyCollection<ActivityDesigner> containedDesigners = ContainedDesigners; in GetNextSelectableObject()
137 ActivityDesigner activityDesigner = ActivityDesigner.GetDesigner(obj as Activity); in GetNextSelectableObject()
225 foreach (ActivityDesigner activityDesigner in ContainedDesigners) in OnLayoutPosition()
249 foreach (ActivityDesigner activityDesigner in ContainedDesigners) in OnLayoutSize()
261 foreach (ActivityDesigner activityDesigner in ContainedDesigners) in OnLayoutSize()
288 ActivityDesigner firstDesigner = containedDesigners[0]; in GetDropTargets()
294 ActivityDesigner designer1 = containedDesigners[i]; in GetDropTargets()
297 ActivityDesigner designer2 = containedDesigners[i + 1]; in GetDropTargets()
342 ActivityDesigner firstDesigner = containedDesigners[0]; in DrawParallelConnectors()
378 foreach (ActivityDesigner activityDesigner in containedDesigners) in DrawParallelConnectors()
[all …]
H A DActivityDesignerAccessibleObject.cs37 private ActivityDesigner activityDesigner;
43 public ActivityDesignerAccessibleObject(ActivityDesigner activityDesigner) in ActivityDesignerAccessibleObject()
182ActivityDesigner activityDesigner = ActivityDesigner.GetDesigner(compositeDesigner.GetNextSelectab… in Navigate()
210 … if (this.ActivityDesigner.Activity != null && this.ActivityDesigner.Activity.Site != null) in GetService()
211 return this.ActivityDesigner.Activity.Site.GetService(serviceType); in GetService()
216 protected ActivityDesigner ActivityDesigner property in System.Workflow.ComponentModel.Design.ActivityDesignerAccessibleObject
H A DSequentialActivityDesigner.cs186 ReadOnlyCollection<ActivityDesigner> containedDesigners = ContainedDesigners; in GetConnectors()
202 ActivityDesigner startDesigner = containedDesigners[0] as ActivityDesigner; in GetConnectors()
219 ActivityDesigner designerFrom = containedDesigners[i]; in GetConnectors()
220 ActivityDesigner designerTo = containedDesigners[i + 1]; in GetConnectors()
232 ActivityDesigner endDesigner = containedDesigners[containedDesigners.Count - 1]; in GetConnectors()
343 ReadOnlyCollection<ActivityDesigner> containedDesigners = ContainedDesigners; in GetNextSelectableObject()
354ActivityDesigner activityDesigner = ActivityDesigner.GetDesigner(obj as Activity); in GetNextSelectableObject()
370ActivityDesigner activityDesigner = ActivityDesigner.GetDesigner(obj as Activity); in GetNextSelectableObject()
460 foreach (ActivityDesigner activityDesigner in ContainedDesigners) in OnLayoutPosition()
482 foreach (ActivityDesigner activityDesigner in ContainedDesigners) in OnLayoutSize()
[all …]
H A DActivityPreviewDesigner.cs101 public ActivityDesigner PreviewedDesigner
113 public override ReadOnlyCollection<ActivityDesigner> ContainedDesigners
119 List<ActivityDesigner> containedDesigners = new List<ActivityDesigner>();
345ActivityDesigner activityDesigner = ActivityDesigner.GetDesigner(activity);
386ActivityDesigner activityDesigner = (itemInfo != null) ? ActivityDesigner.GetDesigner(itemInfo.Use… in HitTest()
413 public override bool IsContainedDesignerVisible(ActivityDesigner containedDesigner) in IsContainedDesignerVisible()
822ActivityDesigner selectedDesigner = ActivityDesigner.GetDesigner(selectionService.PrimarySelection… in OnSelectionChanged()
829 ActivityDesigner designer = selectedDesigner; in OnSelectionChanged()
932 public override Rectangle GetBounds(ActivityDesigner designer, bool activated) in GetBounds()
1004 protected override void OnActivate(ActivityDesigner designer) in OnActivate()
[all …]
H A DActivityDesigner.cs30 #region ActivityDesigner Class
43 public class ActivityDesigner : IDisposable, class
87 public ActivityDesigner() in ActivityDesigner() method in System.Workflow.ComponentModel.Design.ActivityDesigner
91 ~ActivityDesigner() in ~ActivityDesigner()
1073 Queue<ActivityDesigner> designers = new Queue<ActivityDesigner>(); in GetPreviewImage()
1930 ActivityDesigner designer = null; in GetDesigner()
1965 ActivityDesigner activityDesigner = ActivityDesigner.GetDesigner(obj as Activity); in GetParentDesigner()
1975 ActivityDesigner activityDesigner = new ActivityDesigner(); in CreateTransientDesigner()
2050 ActivityDesigner containedDesigner = ActivityDesigner.GetDesigner(activity); in GetVisible()
2229 ActivityDesigner designer = ActivityDesigner.GetDesigner(e.Component as Activity); in OnComponentRenamed()
[all …]
H A DSequenceDesignerAccessibleObject.cs44 …SequentialActivityDesigner sequentialActivityDesigner = base.ActivityDesigner as SequentialActivit… in GetChild()
49 …return new SequentialConnectorAccessibleObject(base.ActivityDesigner as SequentialActivityDesigner… in GetChild()
56 …SequentialActivityDesigner sequentialActivityDesigner = base.ActivityDesigner as SequentialActivit… in GetChildCount()
78 CompositeActivityDesigner compositeDesigner = this.ActivityDesigner.ParentDesigner; in Navigate()
81 … nextSelectableObj = compositeDesigner.GetNextSelectableObject(this.ActivityDesigner.Activity, nav… in Navigate()
218ActivityDesigner activityDesigner = ActivityDesigner.GetDesigner(nextSelectableObj as Activity); in Navigate()
H A DXomlDesignerLoader.cs229 ActivityDesigner rootDesigner = ActivityDesigner.GetRootDesigner(LoaderHost); in OnEndLoad()
241 …else if (InDebugMode || (ActivityDesigner.GetRootDesigner(LoaderHost) != null && ActivityDesigner.… in OnEndLoad()
298 ActivityDesigner rootDesigner = null; in LoadDesignerLayout()
301 … rootDesigner = designerHost.GetDesigner(designerHost.RootComponent) as ActivityDesigner; in LoadDesignerLayout()
453 IWorkflowRootDesigner rootDesigner = ActivityDesigner.GetSafeRootDesigner(LoaderHost); in LoadDesignerLayoutFromResource()
468 IWorkflowRootDesigner rootDesigner = ActivityDesigner.GetSafeRootDesigner(LoaderHost); in LoadDesignerLayout()
485 ActivityDesigner rootDesigner = ActivityDesigner.GetSafeRootDesigner(LoaderHost); in SaveDesignerLayout()
741ActivityDesigner activityDesigner = ActivityDesigner.GetDesigner(args.CurrentActivity); in OnRefreshTypes()
856 ActivityDesigner activityDesigner = null; in OnRefreshTasks()
860 activityDesigner = ActivityDesigner.GetDesigner(obj as Activity); in OnRefreshTasks()
[all …]
H A DDesignerInterfaces.cs488 ActivityDesignerGlyphCollection GetGlyphs(ActivityDesigner activityDesigner); in GetGlyphs()
508 ActivityDesignerVerbCollection GetVerbs(ActivityDesigner activityDesigner); in GetVerbs()
571 private ActivityDesigner activityDesigner = null;
597 public HitTestInfo(ActivityDesigner designer, HitTestLocations location) in HitTestInfo()
610 public ActivityDesigner AssociatedDesigner
769 private ActivityDesigner activityDesigner;
776 public DesignerAction(ActivityDesigner activityDesigner, int actionId, string text) in DesignerAction()
789 … public DesignerAction(ActivityDesigner activityDesigner, int actionId, string text, Image image) in DesignerAction()
873 private ActivityDesigner activityDesigner = null;
879 …public ActivityDesignerVerb(ActivityDesigner activityDesigner, DesignerVerbGroup verbGroup, string… in ActivityDesignerVerb()
[all …]
H A DSecondaryViewProvider.cs147 public override ActivityDesigner AssociatedDesigner
151ActivityDesigner mappedDesigner = UserData[UserDataKey_Designer] as ActivityDesigner;
161 mappedDesigner = ActivityDesigner.GetDesigner(activity);
203 ActivityDesigner designer = ActivityDesigner.GetDesigner(activity); in OnActivate()
H A DCompositeDesignerAccessibleObject.cs51 … CompositeActivityDesigner compositeDesigner = base.ActivityDesigner as CompositeActivityDesigner;
59 … CompositeActivityDesigner compositeDesigner = base.ActivityDesigner as CompositeActivityDesigner; in GetChild()
68 … CompositeActivityDesigner compositeDesigner = base.ActivityDesigner as CompositeActivityDesigner; in GetChildCount()
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Workflow.Activities/Designers/
H A DStateDesigner.Layouts.cs89 private ActivityDesigner _activityDesigner;
94 public Layout(ActivityDesigner activityDesigner) in Layout()
112 public ActivityDesigner ActivityDesigner property in System.Workflow.Activities.StateDesigner.Layout
197 public Layout GetLayout(ActivityDesigner designer) in GetLayout()
199 if (this.ActivityDesigner == designer) in GetLayout()
471 ActivityDesigner activityDesigner = this.ActivityDesigner; in OnPaint()
605 ActivityDesigner activityDesigner = this.ActivityDesigner; in OnPaint()
848 string text = this.ActivityDesigner.Text; in OnLayoutSize()
860 string text = this.ActivityDesigner.Text; in OnPaint()
904 Image image = this.ActivityDesigner.Image; in OnPaint()
[all …]
H A DStateDesigner.Helpers.cs36 List<ActivityDesigner> _ordered;
37 … internal ContainedDesignersParser(ReadOnlyCollection<ActivityDesigner> containedDesigners) in ContainedDesignersParser()
39 foreach (ActivityDesigner designer in containedDesigners) in ContainedDesignersParser()
73 public List<ActivityDesigner> Ordered
79 _ordered = new List<ActivityDesigner>();
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Workflow.ComponentModel/AuthoringOM/Design/Glyphs/
H A DSelectionGlyph.cs15 public override Rectangle GetBounds(ActivityDesigner designer, bool activated) in GetBounds()
25 …id OnPaint(Graphics graphics, bool activated, AmbientTheme ambientTheme, ActivityDesigner designer) in OnPaint()
40 public virtual Rectangle[] GetGrabHandles(ActivityDesigner designer) in GetGrabHandles()
50 ActivityDesigner parentDesigner = designer.ParentDesigner; in GetGrabHandles()

1234