Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / Orcas / QFE / wpf / src / Framework / System / Windows / Documents / ChangeBlockUndoRecord.cs / 1 / 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
- RankException.cs
- CompiledELinqQueryState.cs
- XamlTemplateSerializer.cs
- ReceiveContextCollection.cs
- QilInvokeEarlyBound.cs
- RoleGroupCollection.cs
- FixedSOMSemanticBox.cs
- InProcStateClientManager.cs
- ChildrenQuery.cs
- ListViewEditEventArgs.cs
- ItemCollection.cs
- SliderAutomationPeer.cs
- DiagnosticTrace.cs
- ProcessProtocolHandler.cs
- ReversePositionQuery.cs
- Trace.cs
- DataServiceException.cs
- SourceElementsCollection.cs
- MaskedTextProvider.cs
- Oci.cs
- VisualBrush.cs
- ObfuscationAttribute.cs
- OdbcReferenceCollection.cs
- XmlSchema.cs
- XPathException.cs
- SQLString.cs
- Common.cs
- SaveFileDialog.cs
- CommandSet.cs
- EntityViewGenerator.cs
- Mutex.cs
- FontSource.cs
- DataControlFieldHeaderCell.cs
- NamespaceMapping.cs
- ApplicationDirectoryMembershipCondition.cs
- UnionCqlBlock.cs
- BamlResourceSerializer.cs
- ParseHttpDate.cs
- DataGridLinkButton.cs
- MenuItemStyleCollectionEditor.cs
- QueryExtender.cs
- RoutedCommand.cs
- TableColumn.cs
- DbConnectionPoolCounters.cs
- ItemChangedEventArgs.cs
- Transactions.cs
- DataBoundLiteralControl.cs
- GPRECT.cs
- BamlReader.cs
- XmlIlGenerator.cs
- HwndStylusInputProvider.cs
- SrgsRulesCollection.cs
- ListViewItem.cs
- TraceContextRecord.cs
- StringConverter.cs
- UnsafeNativeMethods.cs
- DocumentSequence.cs
- IsolatedStorage.cs
- SqlGatherProducedAliases.cs
- Rule.cs
- StringAnimationUsingKeyFrames.cs
- LineMetrics.cs
- WSTrustFeb2005.cs
- NativeCompoundFileAPIs.cs
- GridProviderWrapper.cs
- GetWinFXPath.cs
- ExternalFile.cs
- LookupNode.cs
- XmlEnumAttribute.cs
- ChangeDirector.cs
- PropertyValueUIItem.cs
- ServiceOperationParameter.cs
- SQLConvert.cs
- SystemTcpConnection.cs
- ObjectQueryState.cs
- InternalsVisibleToAttribute.cs
- ObsoleteAttribute.cs
- TextServicesPropertyRanges.cs
- OpenTypeLayoutCache.cs
- TrustManagerPromptUI.cs
- FormViewDeleteEventArgs.cs
- DiscoveryVersion.cs
- WebRequest.cs
- TreeNodeConverter.cs
- ObjectListFieldCollection.cs
- StateBag.cs
- StorageEntityContainerMapping.cs
- ContentPlaceHolder.cs
- RepeatButtonAutomationPeer.cs
- TokenBasedSetEnumerator.cs
- FocusChangedEventArgs.cs
- Unit.cs
- CodeSubDirectoriesCollection.cs
- METAHEADER.cs
- EventMappingSettingsCollection.cs
- RecordManager.cs
- View.cs
- SimpleExpression.cs
- TagMapCollection.cs
- ConfigurationProperty.cs