Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / wpf / src / Framework / MS / Internal / PtsHost / ListMarkerLine.cs / 1305600 / ListMarkerLine.cs
//---------------------------------------------------------------------------- // // Copyright (C) Microsoft Corporation. All rights reserved. // // File: LineBase.cs // // Description: Text line formatter. // // History: // 02/07/2005 : ghermann - Split from Line.cs // //--------------------------------------------------------------------------- using System; using System.Diagnostics; using System.Collections; using System.Collections.Generic; using System.Windows; using System.Windows.Controls; using System.Windows.Documents; using System.Windows.Media; using System.Windows.Media.TextFormatting; using MS.Internal.Text; using MS.Internal.Documents; using MS.Internal.PtsHost.UnsafeNativeMethods; namespace MS.Internal.PtsHost { internal class ListMarkerLine : LineBase { ////// Constructor /// /// /// TextFormatter host /// /// /// Owner of the ListMarker /// internal ListMarkerLine(TextFormatterHost host, ListParaClient paraClient) : base(paraClient) { _host = host; } // ----------------------------------------------------------------- // // TextSource Implementation // // ----------------------------------------------------------------- #region TextSource Implementation ////// Return the text run at specified text source position. /// /// /// Offset of specified position /// internal override TextRun GetTextRun(int dcp) { return new ParagraphBreakRun(1, PTS.FSFLRES.fsflrEndOfParagraph); } ////// Return the text, as CharacterBufferRange, immediately before specified text source position. /// /// /// Offset of specified position /// internal override TextSpanGetPrecedingText(int dcp) { return new TextSpan ( 0, new CultureSpecificCharacterBufferRange(null, CharacterBufferRange.Empty) ); } /// /// Get Text effect index from specified position /// /// /// Offset of specified position /// ///internal override int GetTextEffectCharacterIndexFromTextSourceCharacterIndex(int dcp) { return dcp; } #endregion TextSource Implementation /// /// Create and format text line. /// /// /// DrawingContext for text line. /// /// /// LineProperties of text line /// /// /// Horizontal draw location /// /// /// Vertical baseline draw location /// internal void FormatAndDrawVisual(DrawingContext ctx, LineProperties lineProps, int ur, int vrBaseline) { System.Windows.Media.TextFormatting.TextLine line; bool mirror = (lineProps.FlowDirection == FlowDirection.RightToLeft); _host.Context = this; try { // Create line object line = _host.TextFormatter.FormatLine(_host, 0, 0, lineProps.FirstLineProps, null, new TextRunCache()); Point drawLocation = new Point(TextDpi.FromTextDpi(ur), TextDpi.FromTextDpi(vrBaseline) - line.Baseline); line.Draw(ctx, drawLocation, (mirror ? InvertAxes.Horizontal : InvertAxes.None)); line.Dispose(); } finally { // clear the context _host.Context = null; } } ////// Text formatter host /// private readonly TextFormatterHost _host; } } // 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
- StringCollection.cs
- AspNetHostingPermission.cs
- MorphHelper.cs
- OleDbPermission.cs
- ProtectedConfigurationSection.cs
- XmlSchemaAppInfo.cs
- ContextStack.cs
- WebPartZone.cs
- HtmlInputPassword.cs
- RawStylusInputCustomData.cs
- AnonymousIdentificationModule.cs
- CodeNamespaceCollection.cs
- ClosureBinding.cs
- SmtpClient.cs
- ExtractedStateEntry.cs
- EntityAdapter.cs
- Monitor.cs
- ProxyGenerator.cs
- HtmlAnchor.cs
- MainMenu.cs
- CompositeClientFormatter.cs
- RegionInfo.cs
- WebBrowserHelper.cs
- QuaternionRotation3D.cs
- ProgressBarRenderer.cs
- ContentPlaceHolder.cs
- RemoteArgument.cs
- DragCompletedEventArgs.cs
- WizardPanel.cs
- OleDbInfoMessageEvent.cs
- UpDownEvent.cs
- XmlWhitespace.cs
- Debugger.cs
- HotSpot.cs
- DataBindingList.cs
- RtType.cs
- Signature.cs
- ModuleBuilderData.cs
- ErrorStyle.cs
- CodeVariableReferenceExpression.cs
- Slider.cs
- ProfileGroupSettingsCollection.cs
- RolePrincipal.cs
- VisualStyleRenderer.cs
- XmlElementElement.cs
- DBSchemaRow.cs
- PropertyChange.cs
- CultureInfoConverter.cs
- RegisteredScript.cs
- Avt.cs
- ReadOnlyCollectionBase.cs
- Misc.cs
- ConvertEvent.cs
- Roles.cs
- BmpBitmapEncoder.cs
- IdnElement.cs
- bidPrivateBase.cs
- unsafenativemethodstextservices.cs
- XPathExpr.cs
- IdentityNotMappedException.cs
- DocumentViewerBase.cs
- EdmSchemaError.cs
- EntityParameterCollection.cs
- altserialization.cs
- DataList.cs
- Axis.cs
- ObjectStateEntry.cs
- ItemCollection.cs
- ComponentEditorPage.cs
- columnmapfactory.cs
- QueryTreeBuilder.cs
- DataTemplateSelector.cs
- CancellationHandler.cs
- ScrollData.cs
- XmlLoader.cs
- EFDataModelProvider.cs
- BevelBitmapEffect.cs
- FixedSOMGroup.cs
- UiaCoreProviderApi.cs
- OutputCache.cs
- HttpClientProtocol.cs
- CommandBindingCollection.cs
- DataBindingCollectionConverter.cs
- FrameSecurityDescriptor.cs
- Stack.cs
- Button.cs
- DockPatternIdentifiers.cs
- TypeLoadException.cs
- Semaphore.cs
- HtmlWindowCollection.cs
- ImageClickEventArgs.cs
- BinaryConverter.cs
- SecurityHelper.cs
- EntityContainerEntitySet.cs
- ObjectStateEntryBaseUpdatableDataRecord.cs
- CorrelationActionMessageFilter.cs
- BufferedReadStream.cs
- TableLayoutSettings.cs
- EventMetadata.cs
- FromRequest.cs