24 references to LocatorManager
PresentationFramework (24)
src\Framework\System\Windows\Annotations\AnnotationHelper.cs (10)
224
TextSelectionProcessor rangeProcessor = service.
LocatorManager
.GetSelectionProcessor(typeof(TextRange)) as TextSelectionProcessor;
225
TextSelectionProcessor anchorProcessor = service.
LocatorManager
.GetSelectionProcessor(typeof(TextAnchor)) as TextSelectionProcessor;
246
FixedPageProcessor processor = service.
LocatorManager
.GetSubTreeProcessorForLocatorPart(FixedPageProcessor.CreateLocatorPart(0)) as FixedPageProcessor;
699
IList<ContentLocatorBase> locators = service.
LocatorManager
.GenerateLocators(textRange);
702
TextSelectionProcessor rangeProcessor = service.
LocatorManager
.GetSelectionProcessor(typeof(TextRange)) as TextSelectionProcessor;
703
TextSelectionProcessor anchorProcessor = service.
LocatorManager
.GetSelectionProcessor(typeof(TextAnchor)) as TextSelectionProcessor;
741
FixedPageProcessor processor = service.
LocatorManager
.GetSubTreeProcessorForLocatorPart(FixedPageProcessor.CreateLocatorPart(0)) as FixedPageProcessor;
804
object anchor = service.
LocatorManager
.ResolveLocator(annot.Anchors[0].ContentLocators[0], 0, service.Root, out level);
807
attachedAnnotations.Add(new AttachedAnnotation(service.
LocatorManager
, annot, annot.Anchors[0], anchor, level));
1079
IList<ContentLocatorBase> locators = service.
LocatorManager
.GenerateLocators(selection);
src\Framework\System\Windows\Annotations\AnnotationService.cs (9)
397
IList<IAttachedAnnotation> attachedAnnotations =
LocatorManager
.ProcessSubTree(element);
826
IList<IAttachedAnnotation> attachedAnnotations =
LocatorManager
.ProcessSubTree(_root);
1017
attachedAnnotations =
LocatorManager
.ProcessSubTree(_root);
1407
this.
LocatorManager
,
1513
this.
LocatorManager
,
1613
flowRangeProcessor = this.
LocatorManager
.GetSelectionProcessor(typeof(TextRange)) as TextSelectionProcessor;
1616
flowAnchorProcessor = this.
LocatorManager
.GetSelectionProcessor(typeof(TextAnchor)) as TextSelectionProcessor;
1622
fixedProcessor = this.
LocatorManager
.GetSubTreeProcessorForLocatorPart(FixedPageProcessor.CreateLocatorPart(0)) as FixedPageProcessor;
1665
attachedAnchor =
LocatorManager
.FindAttachedAnchor(_root,
src\Framework\System\Windows\Controls\Primitives\DocumentViewerBase.cs (5)
1403
service.
LocatorManager
.RegisterSelectionProcessor(new FixedTextSelectionProcessor(), typeof(TextRange));
1404
service.
LocatorManager
.RegisterSelectionProcessor(new FixedTextSelectionProcessor(), typeof(TextAnchor));
1416
service.
LocatorManager
.RegisterSelectionProcessor(new TextSelectionProcessor(), typeof(TextRange));
1417
service.
LocatorManager
.RegisterSelectionProcessor(new TextSelectionProcessor(), typeof(TextAnchor));
1418
service.
LocatorManager
.RegisterSelectionProcessor(new TextViewSelectionProcessor(), typeof(DocumentViewerBase));