Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / Orcas / NetFXw7 / wpf / src / Framework / MS / Internal / PtsHost / TextFormatterHost.cs / 1 / TextFormatterHost.cs
//---------------------------------------------------------------------------- // // Copyright (C) Microsoft Corporation. All rights reserved. // // File: ContainerParagraph.cs // // Description: TextFormatter host. // // History: // 05/05/2003 : grzegorz - moving from Avalon branch. // //--------------------------------------------------------------------------- using System; using System.Diagnostics; using System.Windows; using System.Windows.Media; using System.Windows.Media.TextFormatting; namespace MS.Internal.PtsHost { // --------------------------------------------------------------------- // TextFormatter host. // --------------------------------------------------------------------- internal sealed class TextFormatterHost : TextSource { internal TextFormatterHost(TextFormatter textFormatter) { if(textFormatter == null) { TextFormatter = TextFormatter.FromCurrentDispatcher(); } else { TextFormatter = textFormatter; } } //-------------------------------------------------------------------- // GetTextRun //------------------------------------------------------------------- public override TextRun GetTextRun(int textSourceCharacterIndex) { Debug.Assert(Context != null, "TextFormatter host is not initialized."); Debug.Assert(textSourceCharacterIndex >= 0, "Character index must be non-negative."); return Context.GetTextRun(textSourceCharacterIndex); } //-------------------------------------------------------------------- // GetPrecedingText //-------------------------------------------------------------------- public override TextSpanGetPrecedingText(int textSourceCharacterIndexLimit) { Debug.Assert(Context != null, "TextFormatter host is not initialized."); Debug.Assert(textSourceCharacterIndexLimit >= 0, "Character index must be non-negative."); return Context.GetPrecedingText(textSourceCharacterIndexLimit); } /// /// TextFormatter to map a text source character index to a text effect character index /// /// text source character index ///the text effect index corresponding to the text effect character index public override int GetTextEffectCharacterIndexFromTextSourceCharacterIndex( int textSourceCharacterIndex ) { Debug.Assert(Context != null, "TextFormatter host is not initialized."); Debug.Assert(textSourceCharacterIndex>= 0, "Character index must be non-negative."); return Context.GetTextEffectCharacterIndexFromTextSourceCharacterIndex(textSourceCharacterIndex); } //------------------------------------------------------------------- // TextFormatterHost context, object responsible for providing // formatting information. //-------------------------------------------------------------------- internal LineBase Context; //------------------------------------------------------------------- // TextFormatter. //------------------------------------------------------------------- internal TextFormatter TextFormatter; } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved. //---------------------------------------------------------------------------- // // Copyright (C) Microsoft Corporation. All rights reserved. // // File: ContainerParagraph.cs // // Description: TextFormatter host. // // History: // 05/05/2003 : grzegorz - moving from Avalon branch. // //--------------------------------------------------------------------------- using System; using System.Diagnostics; using System.Windows; using System.Windows.Media; using System.Windows.Media.TextFormatting; namespace MS.Internal.PtsHost { // --------------------------------------------------------------------- // TextFormatter host. // --------------------------------------------------------------------- internal sealed class TextFormatterHost : TextSource { internal TextFormatterHost(TextFormatter textFormatter) { if(textFormatter == null) { TextFormatter = TextFormatter.FromCurrentDispatcher(); } else { TextFormatter = textFormatter; } } //-------------------------------------------------------------------- // GetTextRun //------------------------------------------------------------------- public override TextRun GetTextRun(int textSourceCharacterIndex) { Debug.Assert(Context != null, "TextFormatter host is not initialized."); Debug.Assert(textSourceCharacterIndex >= 0, "Character index must be non-negative."); return Context.GetTextRun(textSourceCharacterIndex); } //-------------------------------------------------------------------- // GetPrecedingText //-------------------------------------------------------------------- public override TextSpanGetPrecedingText(int textSourceCharacterIndexLimit) { Debug.Assert(Context != null, "TextFormatter host is not initialized."); Debug.Assert(textSourceCharacterIndexLimit >= 0, "Character index must be non-negative."); return Context.GetPrecedingText(textSourceCharacterIndexLimit); } /// /// TextFormatter to map a text source character index to a text effect character index /// /// text source character index ///the text effect index corresponding to the text effect character index public override int GetTextEffectCharacterIndexFromTextSourceCharacterIndex( int textSourceCharacterIndex ) { Debug.Assert(Context != null, "TextFormatter host is not initialized."); Debug.Assert(textSourceCharacterIndex>= 0, "Character index must be non-negative."); return Context.GetTextEffectCharacterIndexFromTextSourceCharacterIndex(textSourceCharacterIndex); } //------------------------------------------------------------------- // TextFormatterHost context, object responsible for providing // formatting information. //-------------------------------------------------------------------- internal LineBase Context; //------------------------------------------------------------------- // TextFormatter. //------------------------------------------------------------------- internal TextFormatter TextFormatter; } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- ToolStripContainerDesigner.cs
- ResourcePermissionBase.cs
- BatchStream.cs
- PageHandlerFactory.cs
- VariantWrapper.cs
- ParameterReplacerVisitor.cs
- TemplateNameScope.cs
- PrinterUnitConvert.cs
- BamlLocalizationDictionary.cs
- DataBindingExpressionBuilder.cs
- NamedPermissionSet.cs
- StorageMappingItemCollection.cs
- XamlTypeMapperSchemaContext.cs
- LocalBuilder.cs
- loginstatus.cs
- EventToken.cs
- DataBindingExpressionBuilder.cs
- CheckBoxStandardAdapter.cs
- HitTestFilterBehavior.cs
- Parser.cs
- CodeNamespace.cs
- EntityContainerEmitter.cs
- DataServiceOperationContext.cs
- ComponentCache.cs
- DivideByZeroException.cs
- TextStore.cs
- BasicViewGenerator.cs
- ZeroOpNode.cs
- ACE.cs
- ChangePassword.cs
- RightsManagementInformation.cs
- ProcessRequestArgs.cs
- Drawing.cs
- MessageHeaderException.cs
- StyleHelper.cs
- TypedTableHandler.cs
- SemanticBasicElement.cs
- HyperLinkDesigner.cs
- TimelineGroup.cs
- RenderDataDrawingContext.cs
- ScopelessEnumAttribute.cs
- CodeArrayIndexerExpression.cs
- Baml6Assembly.cs
- ListViewItem.cs
- SourceFileInfo.cs
- SecurityTokenRequirement.cs
- HyperLinkColumn.cs
- ScrollViewer.cs
- TransactionFormatter.cs
- InOutArgument.cs
- TabRenderer.cs
- GetCertificateRequest.cs
- HostedElements.cs
- Permission.cs
- TextEffect.cs
- InitializerFacet.cs
- SHA1.cs
- prompt.cs
- CachedTypeface.cs
- SmtpNegotiateAuthenticationModule.cs
- FormatControl.cs
- TagMapInfo.cs
- ImageList.cs
- ChtmlFormAdapter.cs
- MenuRendererStandards.cs
- GC.cs
- VisualStyleElement.cs
- DecimalAnimationBase.cs
- DirectoryInfo.cs
- UserNameSecurityTokenProvider.cs
- ReachDocumentReferenceCollectionSerializer.cs
- TraceSection.cs
- ErrorFormatter.cs
- HttpStreamXmlDictionaryReader.cs
- WebConfigurationFileMap.cs
- XmlDocumentType.cs
- NamespaceQuery.cs
- TreeViewEvent.cs
- ManagementOperationWatcher.cs
- Input.cs
- HtmlInputButton.cs
- DataGridColumnStyleMappingNameEditor.cs
- TemplateComponentConnector.cs
- SqlResolver.cs
- WindowsStreamSecurityUpgradeProvider.cs
- PeerName.cs
- DependencyPropertyDescriptor.cs
- SMSvcHost.cs
- IFlowDocumentViewer.cs
- AutoScrollHelper.cs
- WindowsNonControl.cs
- CompilerGeneratedAttribute.cs
- XPathPatternBuilder.cs
- Guid.cs
- JulianCalendar.cs
- FragmentQueryKB.cs
- XmlUTF8TextReader.cs
- DbProviderManifest.cs
- StandardCommandToolStripMenuItem.cs
- BindingManagerDataErrorEventArgs.cs