Code:
/ DotNET / DotNET / 8.0 / untmp / WIN_WINDOWS / lh_tools_devdiv_wpf / Windows / wcp / Core / System / Windows / Media / Animation / ClockController.cs / 1 / ClockController.cs
//------------------------------------------------------------------------------ // Microsoft Windows Client Platform // Copyright (c) Microsoft Corporation, 2004 // // File: ClockController.cs //----------------------------------------------------------------------------- using MS.Internal; using MS.Utility; using System; using System.Collections; using System.Collections.Generic; using System.ComponentModel; using System.Diagnostics; using System.Runtime.InteropServices; using System.Windows.Threading; using System.Windows; using System.Windows.Media.Composition; using System.Windows.Markup; using SR=MS.Internal.PresentationCore.SR; using SRID=MS.Internal.PresentationCore.SRID; namespace System.Windows.Media.Animation { ////// Provides access to interactive methods for a given Clock. /// public sealed class ClockController : DispatcherObject { #region Data private Clock _owner; #endregion // Data #region Constructors ////// Creates an instance of ClockController. /// /// /// The Clock that owns this collection. /// internal ClockController(Clock owner) { Debug.Assert(owner != null, "ClockController must have a non-null owner."); _owner = owner; } #endregion // Constructors #region Methods ////// Schedules a begin at the next tick. /// ////// // Internally, Begin works similarly to Seek, in that it preschedules a seek in // the Clock to the zero position. public void Begin() { _owner.InternalBegin(); } ///If the Clock is not enabled then this method has no effect.
/// ///This method has no effect on the timing tree until the next time /// a tick is processed. As a side-effect, the appropriate events will also /// not be raised until then.
////// Moves this clock to the end of its active period and then performs /// whatever behavior is specified by the FillBehavior property. /// ////// // Internally, SkipToFill works similarly to Seek, in that it preschedules a seek in // the Clock to the Fill position. public void SkipToFill() { _owner.InternalSkipToFill(); } ///This method only has an effect if the Clock's CurrentState is ClockState.Active.
///This method has no effect on the timing tree until the next time /// a tick is processed. As a side-effect, the appropriate events will also /// not be raised until then.
////// Pauses the Clock and its children. /// ////// ///This method stops this Clock from moving. As a side effect, /// the Clocks's children are also paused. The Clock remains /// paused until one of the following events take place:
//////
/// ///- /// The Clock is allowed to continue with a call to the ///
///method. /// - /// The Clock is restarted or ended with a call to the ///
///or methods. /// - /// The Clock is restarted due to a scheduled begin time. ///
///- /// The Clock is removed from the timing tree. ///
///This method has no effect if the Clock is not active, or is currently paused.
///public void Pause() { _owner.InternalPause(); } /// /// Allows a Clock to progress again after a call to ///. /// /// ///Resuming a Clock also automatically resumes all of the Clock's children.
/// ///This method has no effect if the Clock is not active and in the paused /// state. In addition, only a Clock that was previously explicitly paused with /// a call to
/// ///can be resumed with this method. For more details, see the remarks for the
////// method. public void Resume() { _owner.InternalResume(); } /// /// Seeks a Clock to a new position. /// /// /// The seek offset, measured in the Clock's simple time frame of /// reference. The meaning of this parameter depends on the value of the origin parameter. /// /// /// The meaning of the offset parameter. See theenumeration /// for possible values. /// /// /// public void Seek(TimeSpan offset, TimeSeekOrigin origin) { // IF YOU CHANGE THIS CODE: // This code is very similar to that in SeekAlignedToLastTick and is duplicated // in each method so that exceptions will be thrown from the public // method the user has called. You probably need to change both methods. if (!TimeEnumHelper.IsValidTimeSeekOrigin(origin)) { throw new InvalidEnumArgumentException(SR.Get(SRID.Enum_Invalid, "TimeSeekOrigin")); } if (origin == TimeSeekOrigin.Duration) { Duration duration = _owner.ResolvedDuration; if (!duration.HasTimeSpan) { // Can't seek relative to the Duration if it has been specified as Forever or if // it has not yet been resolved. throw new InvalidOperationException(SR.Get(SRID.Timing_SeekDestinationIndefinite)); } else { offset = offset + duration.TimeSpan; } } // Any offset greater than zero is OK here. If it's past the effective // duration it means execute the FillBehavior. if (offset < TimeSpan.Zero) { throw new InvalidOperationException(SR.Get(SRID.Timing_SeekDestinationNegative)); } _owner.InternalSeek(offset); } ///If the Clock is a container, its children's Clocks are also updated accordingly.
/// ///The seek is measured in the Clock's simple time frame of reference, meaning that the /// actual wall-clock playback time skipped (or replayed) may be different than that specified /// by the offset parameter, if time manipulations from the Speed, Acceleration or Deceleration /// properties are in effect for this Clock.
/// ///The seek operation may only span the current simple duration of the Clock. Seeking to a /// time earlier than the begin time positions the Clock at the begin point, whereas /// seeking beyond the end simply puts the Clock at the end point.
////// Process all information that occured until now /// public void SeekAlignedToLastTick(TimeSpan offset, TimeSeekOrigin origin) { // IF YOU CHANGE THIS CODE: // This code is very similar to that in Seek and is duplicated // in each method so that exceptions will be thrown from the public // method the user has called. You probably need to change both methods. if (!TimeEnumHelper.IsValidTimeSeekOrigin(origin)) { throw new InvalidEnumArgumentException(SR.Get(SRID.Enum_Invalid, "TimeSeekOrigin")); } if (origin == TimeSeekOrigin.Duration) { Duration duration = _owner.ResolvedDuration; if (!duration.HasTimeSpan) { // Can't seek relative to the Duration if it has been specified as Forevor or if // it has not yet been resolved. throw new InvalidOperationException(SR.Get(SRID.Timing_SeekDestinationIndefinite)); } else { offset = offset + duration.TimeSpan; } } // Any offset greater than zero is OK here. If it's past the effective // duration it means execute the FillBehavior. if (offset < TimeSpan.Zero) { throw new InvalidOperationException(SR.Get(SRID.Timing_SeekDestinationNegative)); } _owner.InternalSeekAlignedToLastTick(offset); } ////// Interactively stops the Clock. /// ////// This takes the Clock out of its active or fill period and leaves it /// in the off state. It may be reactivated with an interactive Begin(). /// public void Stop() { _owner.InternalStop(); } ////// Interactively moves the Clock into a Completed state, fires Remove event. /// ////// This takes the Clock out of its active or fill period and leaves it /// in the off state. It may be reactivated with an interactive Begin(). /// public void Remove() { _owner.InternalRemove(); } #endregion // Methods #region Properties ////// Returns the Clock controlled by this ClockController class. /// public Clock Clock { get { return _owner; } } ////// Returns or sets the interactive speed for the Clock. /// public double SpeedRatio { get { return _owner.InternalGetSpeedRatio(); } set { if (value < 0 || value > double.MaxValue || double.IsNaN(value)) { throw new ArgumentException(SR.Get(SRID.Timing_InvalidArgFinitePositive), "value"); } _owner.InternalSetSpeedRatio(value); } } #endregion // Properties } } // 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
- Bidi.cs
- IFlowDocumentViewer.cs
- FixedSOMSemanticBox.cs
- EmbeddedMailObjectsCollection.cs
- RenderingEventArgs.cs
- EventHandlers.cs
- XmlSchemaImporter.cs
- DataGridViewColumnStateChangedEventArgs.cs
- FileLogRecord.cs
- DynamicQueryStringParameter.cs
- FileIOPermission.cs
- keycontainerpermission.cs
- OdbcDataReader.cs
- TraceUtils.cs
- ProfileParameter.cs
- ErrorReporting.cs
- SiteMapNodeCollection.cs
- DbException.cs
- QilNode.cs
- autovalidator.cs
- FtpWebRequest.cs
- AttributeTableBuilder.cs
- PointAnimationUsingPath.cs
- TickBar.cs
- PngBitmapDecoder.cs
- QilFactory.cs
- RuntimeArgumentHandle.cs
- DataTemplate.cs
- Pair.cs
- UserNameServiceElement.cs
- ServiceNotStartedException.cs
- QueryCacheEntry.cs
- VScrollBar.cs
- ReferencedCollectionType.cs
- CodePageUtils.cs
- GrowingArray.cs
- PrePrepareMethodAttribute.cs
- WindowsRichEditRange.cs
- FontDifferentiator.cs
- StrongNamePublicKeyBlob.cs
- NodeLabelEditEvent.cs
- MdiWindowListItemConverter.cs
- PropertyChangedEventArgs.cs
- SessionStateModule.cs
- HttpListener.cs
- CustomAttributeBuilder.cs
- WindowsEditBox.cs
- Vector3dCollection.cs
- PenCursorManager.cs
- DataContractAttribute.cs
- GACMembershipCondition.cs
- Quaternion.cs
- DispatcherBuilder.cs
- DtdParser.cs
- InvalidMessageContractException.cs
- SchemaNamespaceManager.cs
- XsltContext.cs
- Rights.cs
- AssemblyInfo.cs
- CodeMemberProperty.cs
- TemplateControlParser.cs
- EUCJPEncoding.cs
- TextShapeableCharacters.cs
- ServiceMetadataBehavior.cs
- XmlNamespaceManager.cs
- WebProxyScriptElement.cs
- CaseInsensitiveComparer.cs
- EntityDataSourceChangedEventArgs.cs
- SafeThemeHandle.cs
- TypeDescriptionProviderAttribute.cs
- TableSectionStyle.cs
- StrongNameUtility.cs
- DefaultMemberAttribute.cs
- ExtenderProvidedPropertyAttribute.cs
- AccessibilityApplicationManager.cs
- LinqDataSourceSelectEventArgs.cs
- DataSourceGroupCollection.cs
- ToolStripCodeDomSerializer.cs
- SafeLibraryHandle.cs
- GlyphCollection.cs
- DataControlPagerLinkButton.cs
- XmlWriter.cs
- ParseHttpDate.cs
- StateMachineSubscription.cs
- TraceEventCache.cs
- CuspData.cs
- PrintController.cs
- ConsumerConnectionPoint.cs
- SessionState.cs
- Byte.cs
- RadioButton.cs
- DefaultMemberAttribute.cs
- MessageSmuggler.cs
- DocumentNUp.cs
- Listen.cs
- ThreadTrace.cs
- TriggerAction.cs
- ProfileEventArgs.cs
- VerbConverter.cs
- TheQuery.cs