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
- DataGridBoolColumn.cs
- SqlConnectionFactory.cs
- Bits.cs
- SpanIndex.cs
- SafeNativeMethods.cs
- OperationPickerDialog.designer.cs
- AnimatedTypeHelpers.cs
- MapPathBasedVirtualPathProvider.cs
- _NTAuthentication.cs
- HtmlTableCell.cs
- SingleStorage.cs
- WebBrowserNavigatingEventHandler.cs
- ListDependantCardsRequest.cs
- SqlConnectionStringBuilder.cs
- FreeFormDesigner.cs
- GuidTagList.cs
- DataGridViewMethods.cs
- PropertyDescriptorGridEntry.cs
- Trace.cs
- TabControl.cs
- RowType.cs
- GPPOINT.cs
- ServiceContractGenerationContext.cs
- PreloadHost.cs
- TrustSection.cs
- RootCodeDomSerializer.cs
- ListMarkerSourceInfo.cs
- DataServiceClientException.cs
- complextypematerializer.cs
- XPathNodePointer.cs
- MenuItem.cs
- CharacterMetricsDictionary.cs
- EtwTrackingParticipant.cs
- SessionStateContainer.cs
- SectionInput.cs
- HtmlTableCell.cs
- PropertyTabChangedEvent.cs
- TreeViewDesigner.cs
- TemplateControlParser.cs
- HelpInfo.cs
- RequestSecurityToken.cs
- VarInfo.cs
- SamlSubject.cs
- PopupControlService.cs
- FixedSOMLineCollection.cs
- ButtonFieldBase.cs
- StyleCollection.cs
- storagemappingitemcollection.viewdictionary.cs
- ConstructorNeedsTagAttribute.cs
- WSTrustDec2005.cs
- WebPartConnectVerb.cs
- _SslSessionsCache.cs
- PropertyValueUIItem.cs
- SiteMapSection.cs
- PreservationFileReader.cs
- UniqueContractNameValidationBehavior.cs
- Debugger.cs
- CapabilitiesState.cs
- PropertyHelper.cs
- Adorner.cs
- StandardBindingElement.cs
- ExpressionBuilderContext.cs
- FontFamily.cs
- XmlCharCheckingWriter.cs
- TableDetailsCollection.cs
- EndPoint.cs
- ImageAttributes.cs
- PageRequestManager.cs
- DelayedRegex.cs
- Help.cs
- ErrorItem.cs
- MsmqOutputSessionChannel.cs
- DataTrigger.cs
- SqlInfoMessageEvent.cs
- VBCodeProvider.cs
- Rule.cs
- DataGridViewTextBoxColumn.cs
- FontFamily.cs
- AggregateNode.cs
- XmlDictionaryString.cs
- MimeObjectFactory.cs
- DataGridViewRowEventArgs.cs
- HorizontalAlignConverter.cs
- ActivationWorker.cs
- DataControlImageButton.cs
- IProvider.cs
- QueryResult.cs
- RotationValidation.cs
- Array.cs
- VolatileResourceManager.cs
- ProcessHostConfigUtils.cs
- OpenFileDialog.cs
- precedingquery.cs
- TreeIterator.cs
- TypeListConverter.cs
- WindowShowOrOpenTracker.cs
- NavigationPropertyEmitter.cs
- EntityParameter.cs
- XmlRawWriter.cs
- CodeTypeReferenceExpression.cs