Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / Orcas / SP / wpf / src / Framework / MS / Internal / PtsHost / ListMarkerLine.cs / 1 / 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. //---------------------------------------------------------------------------- // // 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
- XmlCodeExporter.cs
- CorrelationScope.cs
- FontNamesConverter.cs
- DrawingContextDrawingContextWalker.cs
- WebService.cs
- SafeSecurityHandles.cs
- MsmqIntegrationSecurity.cs
- SelectionItemPattern.cs
- DataBinding.cs
- DataRecordInfo.cs
- HtmlWindowCollection.cs
- VisualState.cs
- ListBox.cs
- SystemInfo.cs
- ColumnMapCopier.cs
- _OSSOCK.cs
- ListCommandEventArgs.cs
- CollectionBase.cs
- ADConnectionHelper.cs
- OleDbErrorCollection.cs
- RuntimeVariableList.cs
- AttachInfo.cs
- XmlDictionaryReader.cs
- KerberosTicketHashIdentifierClause.cs
- ToolStripSystemRenderer.cs
- InfoCardArgumentException.cs
- CacheSection.cs
- MiniConstructorInfo.cs
- BindingSource.cs
- WebPartZone.cs
- Publisher.cs
- ControlParameter.cs
- StylusPointPropertyInfoDefaults.cs
- FixedSOMFixedBlock.cs
- TokenBasedSet.cs
- dtdvalidator.cs
- AssertFilter.cs
- LayoutTable.cs
- EdmToObjectNamespaceMap.cs
- SharedConnectionInfo.cs
- MailMessage.cs
- WSUtilitySpecificationVersion.cs
- AuthenticationModuleElementCollection.cs
- GridItemPatternIdentifiers.cs
- MasterPageCodeDomTreeGenerator.cs
- XmlNodeChangedEventManager.cs
- RowTypeElement.cs
- XmlValueConverter.cs
- HttpListenerResponse.cs
- XmlNamespaceManager.cs
- DeflateStream.cs
- CanExecuteRoutedEventArgs.cs
- TransformerTypeCollection.cs
- figurelengthconverter.cs
- IndentedTextWriter.cs
- SecurityElement.cs
- AuthorizationSection.cs
- ProcessDesigner.cs
- TailPinnedEventArgs.cs
- ChannelBinding.cs
- StatusBarItemAutomationPeer.cs
- DbConnectionFactory.cs
- SqlBulkCopyColumnMappingCollection.cs
- MappingItemCollection.cs
- DefaultPropertyAttribute.cs
- PersianCalendar.cs
- StylusEditingBehavior.cs
- ExtenderControl.cs
- SqlVisitor.cs
- PageCatalogPart.cs
- SecurityRequiresReviewAttribute.cs
- Image.cs
- SplineQuaternionKeyFrame.cs
- AsymmetricSignatureDeformatter.cs
- ModelVisual3D.cs
- ComponentSerializationService.cs
- ManipulationInertiaStartingEventArgs.cs
- GPPOINTF.cs
- ColumnHeaderConverter.cs
- Rectangle.cs
- SchemaImporterExtension.cs
- DataGridViewAutoSizeModeEventArgs.cs
- FunctionNode.cs
- ObservableDictionary.cs
- OperandQuery.cs
- XamlFxTrace.cs
- ObjectPropertyMapping.cs
- WaitingCursor.cs
- LazyTextWriterCreator.cs
- ContentPresenter.cs
- MembershipSection.cs
- FontFamily.cs
- Task.cs
- AttachedPropertyDescriptor.cs
- DockPatternIdentifiers.cs
- ControlParameter.cs
- HandlerMappingMemo.cs
- XsdValidatingReader.cs
- StringInfo.cs
- X509RawDataKeyIdentifierClause.cs