Code:
/ 4.0 / 4.0 / 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. //---------------------------------------------------------------------------- // // 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
![Network programming in C#, Network Programming in VB.NET, Network Programming in .NET](/images/book.jpg)
This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- TreeNodeCollection.cs
- ProcessProtocolHandler.cs
- EntityDataSourceEntitySetNameItem.cs
- sqlinternaltransaction.cs
- LicenseException.cs
- InputGestureCollection.cs
- IndexedEnumerable.cs
- ButtonPopupAdapter.cs
- SqlFunctionAttribute.cs
- DataTable.cs
- RenderData.cs
- StandardCommandToolStripMenuItem.cs
- ExpressionStringBuilder.cs
- FocusTracker.cs
- JournalEntry.cs
- CustomErrorCollection.cs
- IdnElement.cs
- CategoriesDocument.cs
- ZoomPercentageConverter.cs
- HtmlTableRowCollection.cs
- MessageDecoder.cs
- SystemIPGlobalStatistics.cs
- EventMappingSettingsCollection.cs
- DataComponentMethodGenerator.cs
- HtmlInputControl.cs
- MultiView.cs
- CallSite.cs
- UnsafeNativeMethods.cs
- LocatorBase.cs
- GeometryCollection.cs
- CanonicalFormWriter.cs
- WindowsFormsLinkLabel.cs
- BulletChrome.cs
- FixedBufferAttribute.cs
- SettingsContext.cs
- StrongNameUtility.cs
- ControlType.cs
- ComplexTypeEmitter.cs
- DataGridViewTopLeftHeaderCell.cs
- DiffuseMaterial.cs
- ColorAnimationBase.cs
- XmlSchemaSimpleContentExtension.cs
- BindingMAnagerBase.cs
- XmlSerializerNamespaces.cs
- Paragraph.cs
- PropertiesTab.cs
- Constraint.cs
- StartUpEventArgs.cs
- ClipboardProcessor.cs
- Rotation3DKeyFrameCollection.cs
- ViewBox.cs
- RelativeSource.cs
- ScrollChrome.cs
- AppDomainAttributes.cs
- JsonMessageEncoderFactory.cs
- Evaluator.cs
- CmsInterop.cs
- HtmlImageAdapter.cs
- VirtualPath.cs
- DbConnectionStringCommon.cs
- IPEndPointCollection.cs
- WebPartEditorApplyVerb.cs
- TextTreeRootNode.cs
- WorkflowMessageEventArgs.cs
- TemplateNameScope.cs
- SectionVisual.cs
- ConfigsHelper.cs
- NamespaceMapping.cs
- FilteredDataSetHelper.cs
- ArglessEventHandlerProxy.cs
- TypeInfo.cs
- KeyValueConfigurationCollection.cs
- DictionaryTraceRecord.cs
- XmlNamespaceMappingCollection.cs
- TextRangeSerialization.cs
- EventDescriptorCollection.cs
- ButtonBase.cs
- DrawListViewSubItemEventArgs.cs
- SqlGatherProducedAliases.cs
- DebugController.cs
- AttachmentCollection.cs
- EntitySet.cs
- DropShadowEffect.cs
- MethodBuilderInstantiation.cs
- ScrollChrome.cs
- AdornedElementPlaceholder.cs
- MiniParameterInfo.cs
- ContextMenuStrip.cs
- ObfuscateAssemblyAttribute.cs
- XmlDocumentFragment.cs
- FactoryRecord.cs
- Int16AnimationBase.cs
- ElementInit.cs
- ExchangeUtilities.cs
- TextFormatter.cs
- SafeNativeMethods.cs
- CannotUnloadAppDomainException.cs
- ZipIOBlockManager.cs
- TransactionOptions.cs
- SchemaAttDef.cs