Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / wpf / src / Framework / MS / Internal / PtsHost / UpdateRecord.cs / 1305600 / UpdateRecord.cs
//---------------------------------------------------------------------------- // // Copyright (C) Microsoft Corporation. All rights reserved. // // File: UpdateRecord.cs // // Description: Contains information about current state of upate process // in the current container paragraph. // // History: // 05/05/2003 : [....] - moving from Avalon branch. // //--------------------------------------------------------------------------- using System; using System.Diagnostics; using MS.Internal.PtsHost.UnsafeNativeMethods; namespace MS.Internal.PtsHost { // --------------------------------------------------------------------- // Contains information about current state of upate process in the // current container paragraph. // --------------------------------------------------------------------- internal sealed class UpdateRecord { // ------------------------------------------------------------------ // Constructor // ----------------------------------------------------------------- internal UpdateRecord() { Dtr = new DirtyTextRange(0,0,0); FirstPara = SyncPara = null; ChangeType = PTS.FSKCHANGE.fskchNone; Next = null; InProcessing = false; } // ------------------------------------------------------------------ // Merge with next update record. // ------------------------------------------------------------------ internal void MergeWithNext() { Debug.Assert(Next != null); // This is the last UR, cannot merge with next. // Merge DTRs int delta = Next.Dtr.StartIndex - Dtr.StartIndex; // Dtr.StartIndex is not changing Dtr.PositionsAdded += delta + Next.Dtr.PositionsAdded; Dtr.PositionsRemoved += delta + Next.Dtr.PositionsRemoved; // Reasign [....] point and next UpdateRecord SyncPara = Next.SyncPara; Next = Next.Next; } // ----------------------------------------------------------------- // Dirty text range. // ------------------------------------------------------------------ internal DirtyTextRange Dtr; // ----------------------------------------------------------------- // The first paragraph affected by the change. // ----------------------------------------------------------------- internal BaseParagraph FirstPara; // ----------------------------------------------------------------- // The first paragraph not affected by DTR, synchronization point for // update process. // ------------------------------------------------------------------ internal BaseParagraph SyncPara; // ----------------------------------------------------------------- // Type of the change (none, new, inside). // ------------------------------------------------------------------ internal PTS.FSKCHANGE ChangeType; // ------------------------------------------------------------------ // Next UpdateRecord. // ----------------------------------------------------------------- internal UpdateRecord Next; // ------------------------------------------------------------------ // Update record is in processing mode? // ----------------------------------------------------------------- internal bool InProcessing; } } // 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
- DependencyObjectProvider.cs
- AccessDataSourceView.cs
- ping.cs
- Trace.cs
- IEnumerable.cs
- DataControlLinkButton.cs
- MailSettingsSection.cs
- Geometry.cs
- QueuePropertyVariants.cs
- SqlXmlStorage.cs
- TemplateControlBuildProvider.cs
- DrawToolTipEventArgs.cs
- RtfFormatStack.cs
- ScrollBarRenderer.cs
- PopupControlService.cs
- TemplateXamlParser.cs
- EditorZoneAutoFormat.cs
- RealizationContext.cs
- Column.cs
- ExpressionSelection.cs
- MemoryMappedView.cs
- DataProviderNameConverter.cs
- ControlBuilderAttribute.cs
- PersistenceTypeAttribute.cs
- XmlEnumAttribute.cs
- AttributeData.cs
- XmlSchemaSubstitutionGroup.cs
- RIPEMD160.cs
- ReturnEventArgs.cs
- RootDesignerSerializerAttribute.cs
- ComponentChangedEvent.cs
- XmlPreloadedResolver.cs
- ChangeDirector.cs
- FontCacheUtil.cs
- WebRequestModuleElementCollection.cs
- LoadWorkflowByKeyAsyncResult.cs
- SafeNativeMethods.cs
- BitmapEffectDrawing.cs
- DoubleAnimationBase.cs
- ContextMarshalException.cs
- NavigatingCancelEventArgs.cs
- WebControlAdapter.cs
- UserValidatedEventArgs.cs
- ItemCheckedEvent.cs
- StyleTypedPropertyAttribute.cs
- EntityDataSourceWizardForm.cs
- NamespaceCollection.cs
- DataControlLinkButton.cs
- RewritingSimplifier.cs
- ErrorFormatterPage.cs
- SoapExtensionTypeElementCollection.cs
- entityreference_tresulttype.cs
- HashAlgorithm.cs
- RoutedEventConverter.cs
- XmlConvert.cs
- Expressions.cs
- ColumnHeaderCollectionEditor.cs
- ToolStripRendererSwitcher.cs
- ListViewUpdateEventArgs.cs
- GridLengthConverter.cs
- CngKeyBlobFormat.cs
- StringOutput.cs
- listitem.cs
- DBSqlParserColumn.cs
- BindingGroup.cs
- DocumentViewer.cs
- MTConfigUtil.cs
- EventManager.cs
- RegisteredScript.cs
- DependencyPropertyDescriptor.cs
- DataGridViewMethods.cs
- EventBuilder.cs
- DragEvent.cs
- RuleCache.cs
- DataGridViewAdvancedBorderStyle.cs
- SqlNamer.cs
- ShapeTypeface.cs
- PropertyNames.cs
- ColumnCollection.cs
- KnowledgeBase.cs
- Separator.cs
- ConnectionStringsExpressionBuilder.cs
- SqlRewriteScalarSubqueries.cs
- SourceLocation.cs
- SqlReorderer.cs
- ZipIOExtraField.cs
- CookieParameter.cs
- XmlTypeAttribute.cs
- UxThemeWrapper.cs
- LineVisual.cs
- MailHeaderInfo.cs
- HwndTarget.cs
- EFAssociationProvider.cs
- StaticExtension.cs
- MessageQueuePermission.cs
- DrawingImage.cs
- SafeHandles.cs
- TreeViewCancelEvent.cs
- D3DImage.cs
- LogLogRecordEnumerator.cs