Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / Orcas / QFE / wpf / src / Framework / MS / Internal / PtsHost / UpdateRecord.cs / 1 / 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 : grzegorz - 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 : grzegorz - 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
- AffineTransform3D.cs
- DecoderExceptionFallback.cs
- TableItemStyle.cs
- WizardPanel.cs
- MdbDataFileEditor.cs
- ArithmeticException.cs
- UnionExpr.cs
- DeleteMemberBinder.cs
- ScriptHandlerFactory.cs
- GeometryDrawing.cs
- Focus.cs
- TimeSpan.cs
- DataObjectPastingEventArgs.cs
- SamlNameIdentifierClaimResource.cs
- TreeViewImageKeyConverter.cs
- streamingZipPartStream.cs
- MultiBinding.cs
- SystemParameters.cs
- ProcessThread.cs
- _TimerThread.cs
- DataGridViewCellLinkedList.cs
- SymDocumentType.cs
- XsltLoader.cs
- DataFormats.cs
- SymbolMethod.cs
- BooleanToVisibilityConverter.cs
- OutputCacheModule.cs
- DataGridViewIntLinkedList.cs
- CapabilitiesState.cs
- SymLanguageVendor.cs
- FileAuthorizationModule.cs
- Label.cs
- PathNode.cs
- ChannelManager.cs
- DesignerVerb.cs
- AudioBase.cs
- FilterElement.cs
- MediaElement.cs
- AttachedPropertyBrowsableForChildrenAttribute.cs
- TextRunProperties.cs
- CacheSection.cs
- ListDictionaryInternal.cs
- RectValueSerializer.cs
- XsltConvert.cs
- Opcode.cs
- ContainerTracking.cs
- CodeStatementCollection.cs
- ZipFileInfo.cs
- AuthenticationModuleElementCollection.cs
- DataTableNewRowEvent.cs
- VirtualizingPanel.cs
- MyContact.cs
- XmlNavigatorStack.cs
- _NetRes.cs
- ActiveXContainer.cs
- Timer.cs
- TypedDataSetSchemaImporterExtension.cs
- HttpTransportSecurity.cs
- IdentityNotMappedException.cs
- SafeCertificateStore.cs
- CodeCompileUnit.cs
- FamilyCollection.cs
- SQLDoubleStorage.cs
- ConstNode.cs
- Dictionary.cs
- CustomLineCap.cs
- Pair.cs
- DurableEnlistmentState.cs
- CompilerHelpers.cs
- ToolStrip.cs
- DBCSCodePageEncoding.cs
- StreamAsIStream.cs
- WebPartTransformerAttribute.cs
- CheckableControlBaseAdapter.cs
- FileChangesMonitor.cs
- ElapsedEventArgs.cs
- ResolveNameEventArgs.cs
- ParameterBuilder.cs
- SafeWaitHandle.cs
- DashStyles.cs
- DragAssistanceManager.cs
- DataGridViewCellStyleConverter.cs
- GridItemPattern.cs
- SmiMetaData.cs
- Guid.cs
- ScrollProperties.cs
- ErrorHandler.cs
- NumericPagerField.cs
- HtmlHead.cs
- IssuanceLicense.cs
- Number.cs
- XamlParser.cs
- MDIWindowDialog.cs
- BufferModeSettings.cs
- Itemizer.cs
- ObjectQuery_EntitySqlExtensions.cs
- FixedDocument.cs
- PropertyValue.cs
- EventHandlerList.cs
- HtmlTableCellCollection.cs