Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / wpf / src / Framework / System / Windows / Documents / ChangeBlockUndoRecord.cs / 1305600 / ChangeBlockUndoRecord.cs
//---------------------------------------------------------------------------- // // File: ChangeBlockUndoRecord.cs // // Description: Undo wrapper for any edit on or through a TextRange or // TextContainer. // //--------------------------------------------------------------------------- using System; using System.Windows; using MS.Internal; using MS.Internal.Documents; namespace System.Windows.Documents { // Undo wrapper for any edit on or through a TextRange or TextContainer. internal class ChangeBlockUndoRecord { //----------------------------------------------------- // // Constructors // //----------------------------------------------------- #region Constructors // Constructor, called when a change block is opening. internal ChangeBlockUndoRecord(ITextContainer textContainer, string actionDescription) { if (textContainer.UndoManager != null) { _undoManager = textContainer.UndoManager; if (_undoManager.IsEnabled) { // Don't bother opening an undo unit if the owning control is // still being initialized (ie, programmatic load by parser). if (textContainer.TextView != null) { // Don't bother opening a new undo unit if we're already nested // inside another. if (_undoManager.OpenedUnit == null) { if (textContainer.TextSelection != null) { _parentUndoUnit = new TextParentUndoUnit(textContainer.TextSelection); } else { _parentUndoUnit = new ParentUndoUnit(actionDescription); } _undoManager.Open(_parentUndoUnit); } } else { // If the owning control isn't initialized (parser is still running), // don't add anything to the undo record. Instead, clear it. _undoManager.Clear(); } } } } #endregion Constructors //------------------------------------------------------ // // Internal Methods // //----------------------------------------------------- #region Internal Methods // Called when a change block is closing. internal void OnEndChange() { // Commit our undo unit. if (_parentUndoUnit != null) { IParentUndoUnit openedUnit; if (_parentUndoUnit.Container is UndoManager) { openedUnit = ((UndoManager)_parentUndoUnit.Container).OpenedUnit; } else { openedUnit = ((IParentUndoUnit)_parentUndoUnit.Container).OpenedUnit; } // UIElementPropertyUndoUnit can clear the undo stack if a change is made to a databound property if (openedUnit == _parentUndoUnit) { if (_parentUndoUnit is TextParentUndoUnit) { ((TextParentUndoUnit)_parentUndoUnit).RecordRedoSelectionState(); } Invariant.Assert(_undoManager != null); _undoManager.Close(_parentUndoUnit, (_parentUndoUnit.LastUnit != null) ? UndoCloseAction.Commit : UndoCloseAction.Discard); } } } #endregion Internal Methods //------------------------------------------------------ // // Private Fields // //------------------------------------------------------ #region Private Fields private readonly UndoManager _undoManager; private readonly IParentUndoUnit _parentUndoUnit; #endregion Private Fields } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved. //---------------------------------------------------------------------------- // // File: ChangeBlockUndoRecord.cs // // Description: Undo wrapper for any edit on or through a TextRange or // TextContainer. // //--------------------------------------------------------------------------- using System; using System.Windows; using MS.Internal; using MS.Internal.Documents; namespace System.Windows.Documents { // Undo wrapper for any edit on or through a TextRange or TextContainer. internal class ChangeBlockUndoRecord { //----------------------------------------------------- // // Constructors // //----------------------------------------------------- #region Constructors // Constructor, called when a change block is opening. internal ChangeBlockUndoRecord(ITextContainer textContainer, string actionDescription) { if (textContainer.UndoManager != null) { _undoManager = textContainer.UndoManager; if (_undoManager.IsEnabled) { // Don't bother opening an undo unit if the owning control is // still being initialized (ie, programmatic load by parser). if (textContainer.TextView != null) { // Don't bother opening a new undo unit if we're already nested // inside another. if (_undoManager.OpenedUnit == null) { if (textContainer.TextSelection != null) { _parentUndoUnit = new TextParentUndoUnit(textContainer.TextSelection); } else { _parentUndoUnit = new ParentUndoUnit(actionDescription); } _undoManager.Open(_parentUndoUnit); } } else { // If the owning control isn't initialized (parser is still running), // don't add anything to the undo record. Instead, clear it. _undoManager.Clear(); } } } } #endregion Constructors //------------------------------------------------------ // // Internal Methods // //----------------------------------------------------- #region Internal Methods // Called when a change block is closing. internal void OnEndChange() { // Commit our undo unit. if (_parentUndoUnit != null) { IParentUndoUnit openedUnit; if (_parentUndoUnit.Container is UndoManager) { openedUnit = ((UndoManager)_parentUndoUnit.Container).OpenedUnit; } else { openedUnit = ((IParentUndoUnit)_parentUndoUnit.Container).OpenedUnit; } // UIElementPropertyUndoUnit can clear the undo stack if a change is made to a databound property if (openedUnit == _parentUndoUnit) { if (_parentUndoUnit is TextParentUndoUnit) { ((TextParentUndoUnit)_parentUndoUnit).RecordRedoSelectionState(); } Invariant.Assert(_undoManager != null); _undoManager.Close(_parentUndoUnit, (_parentUndoUnit.LastUnit != null) ? UndoCloseAction.Commit : UndoCloseAction.Discard); } } } #endregion Internal Methods //------------------------------------------------------ // // Private Fields // //------------------------------------------------------ #region Private Fields private readonly UndoManager _undoManager; private readonly IParentUndoUnit _parentUndoUnit; #endregion Private Fields } } // 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
- XmlNamespaceMapping.cs
- TemplateControlParser.cs
- KeyNameIdentifierClause.cs
- Baml2006Reader.cs
- HashCoreRequest.cs
- DataSourceHelper.cs
- RawTextInputReport.cs
- WindowsRebar.cs
- InlineCollection.cs
- _ContextAwareResult.cs
- ReadOnlyDataSourceView.cs
- XmlHierarchicalEnumerable.cs
- SoapHttpTransportImporter.cs
- ToolbarAUtomationPeer.cs
- ObjectSet.cs
- AssemblyInfo.cs
- ApplicationInfo.cs
- DataTableTypeConverter.cs
- XsdDuration.cs
- DesignConnectionCollection.cs
- SchemaObjectWriter.cs
- Item.cs
- DocumentViewerHelper.cs
- TrustSection.cs
- ThreadInterruptedException.cs
- CalendarItem.cs
- InternalResources.cs
- ChameleonKey.cs
- tibetanshape.cs
- CalendarAutomationPeer.cs
- KeyedCollection.cs
- WebException.cs
- XmlCharacterData.cs
- XmlSchemaNotation.cs
- ComProxy.cs
- ECDiffieHellman.cs
- SiblingIterators.cs
- StateWorkerRequest.cs
- ConfigurationPropertyAttribute.cs
- ZipIOExtraFieldElement.cs
- TextFormatter.cs
- WebEventCodes.cs
- InstallerTypeAttribute.cs
- SourceElementsCollection.cs
- mediaeventshelper.cs
- SerialPort.cs
- ResourceWriter.cs
- SizeFConverter.cs
- SqlDataSourceDesigner.cs
- PersonalizableAttribute.cs
- TreeIterator.cs
- DeviceFiltersSection.cs
- PolicyException.cs
- StandardRuntimeEnumValidator.cs
- LeftCellWrapper.cs
- MimeBasePart.cs
- ProviderIncompatibleException.cs
- RelationHandler.cs
- COM2TypeInfoProcessor.cs
- ExpressionConverter.cs
- TraceFilter.cs
- ObjectPersistData.cs
- HttpNamespaceReservationInstallComponent.cs
- DataGridViewColumnCollection.cs
- ReferenceConverter.cs
- Compilation.cs
- ExpressionHelper.cs
- safex509handles.cs
- HwndAppCommandInputProvider.cs
- ReliableChannelListener.cs
- LogPolicy.cs
- SQLChars.cs
- BitStream.cs
- mansign.cs
- TemplatedWizardStep.cs
- MsmqIntegrationSecurityMode.cs
- ExtensionFile.cs
- StyleSheetDesigner.cs
- Int64Converter.cs
- DataGridState.cs
- ListBase.cs
- ServiceSecurityContext.cs
- PageAdapter.cs
- DesignOnlyAttribute.cs
- SpanIndex.cs
- CompilerTypeWithParams.cs
- DataSet.cs
- MimeMultiPart.cs
- Latin1Encoding.cs
- Help.cs
- HttpModuleCollection.cs
- CapacityStreamGeometryContext.cs
- DecimalKeyFrameCollection.cs
- SystemFonts.cs
- InstanceDataCollectionCollection.cs
- SpecialTypeDataContract.cs
- DataGridViewCellStyle.cs
- LoginView.cs
- DataGridViewRowsAddedEventArgs.cs
- DefinitionBase.cs