KeyTimeConverter.cs source code in C# .NET

Source code for the .NET framework in C#

                        

Code:

/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / Orcas / NetFXw7 / wpf / src / Core / CSharp / System / Windows / Media / Animation / KeyTimeConverter.cs / 1 / KeyTimeConverter.cs

                            //------------------------------------------------------------------------------ 
//  Microsoft Avalon
//  Copyright (c) Microsoft Corporation, 2001-2003
//
//  File: KeyTimeConverter.cs 
//-----------------------------------------------------------------------------
 
using System; 
using System.ComponentModel;
using System.ComponentModel.Design.Serialization; 
using System.Globalization;
using System.Reflection;
using System.Windows.Media.Animation;
using System.Security; 

namespace System.Windows 
{ 
    /// 
    /// 
    /// 
    public class KeyTimeConverter : TypeConverter
    {
        #region Data 

        private static char[] _percentCharacter = new char[] { '%' }; 
 
        #endregion
 
        /// 
        /// Returns whether or not this class can convert from a given type
        /// to an instance of a KeyTime.
        ///  
        public override bool CanConvertFrom(
            ITypeDescriptorContext typeDescriptorContext, 
            Type type) 
        {
            if (type == typeof(string)) 
            {
                return true;
            }
            else 
            {
                return base.CanConvertFrom( 
                    typeDescriptorContext, 
                    type);
            } 
        }

        /// 
        /// Returns whether or not this class can convert from an instance of a 
        /// KeyTime to a given type.
        ///  
        public override bool CanConvertTo( 
            ITypeDescriptorContext typeDescriptorContext,
            Type type) 
        {
            if (   type == typeof(InstanceDescriptor)
                || type == typeof(string))
            { 
                return true;
            } 
            else 
            {
                return base.CanConvertTo( 
                    typeDescriptorContext,
                    type);
            }
        } 

        ///  
        /// 
        /// 
        public override object ConvertFrom( 
            ITypeDescriptorContext typeDescriptorContext,
            CultureInfo cultureInfo,
            object value)
        { 
            string stringValue = value as string;
 
            if (stringValue != null) 
            {
                stringValue = stringValue.Trim(); 

                if (stringValue == "Uniform")
                {
                    return KeyTime.Uniform; 
                }
                else if (stringValue == "Paced") 
                { 
                    return KeyTime.Paced;
                } 
                else if (stringValue[stringValue.Length - 1] == _percentCharacter[0])
                {
                    stringValue = stringValue.TrimEnd(_percentCharacter);
 
                    double doubleValue = (double)TypeDescriptor.GetConverter(
                        typeof(double)).ConvertFrom( 
                            typeDescriptorContext, 
                            cultureInfo,
                            stringValue); 

                    if (doubleValue == 0.0)
                    {
                        return KeyTime.FromPercent(0.0); 
                    }
                    else if (doubleValue == 100.0) 
                    { 
                        return KeyTime.FromPercent(1.0);
                    } 
                    else
                    {
                        return KeyTime.FromPercent(doubleValue / 100.0);
                    } 
                }
                else 
                { 
                    TimeSpan timeSpanValue = (TimeSpan)TypeDescriptor.GetConverter(
                        typeof(TimeSpan)).ConvertFrom( 
                            typeDescriptorContext,
                            cultureInfo,
                            stringValue);
 
                    return KeyTime.FromTimeSpan(timeSpanValue);
                } 
            } 

            return base.ConvertFrom( 
                typeDescriptorContext,
                cultureInfo,
                value);
        } 

        ///  
        /// 
        /// 
        /// 
        ///     Critical: calls InstanceDescriptor ctor which LinkDemands
        ///     PublicOK: can only make an InstanceDescriptor for KeyTime, not an arbitrary class
        ///
        [SecurityCritical] 
        public override object ConvertTo(
            ITypeDescriptorContext typeDescriptorContext, 
            CultureInfo cultureInfo, 
            object value,
            Type destinationType) 
        {
            if (   value != null
                && value is KeyTime)
            { 
                KeyTime keyTime = (KeyTime)value;
 
                if (destinationType == typeof(InstanceDescriptor)) 
                {
                    MemberInfo mi; 

                    switch (keyTime.Type)
                    {
                        case KeyTimeType.Percent: 

                            mi = typeof(KeyTime).GetMethod("FromPercent", new Type[] { typeof(double) }); 
 
                            return new InstanceDescriptor(mi, new object[] { keyTime.Percent });
 
                        case KeyTimeType.TimeSpan:

                            mi = typeof(KeyTime).GetMethod("FromTimeSpan", new Type[] { typeof(TimeSpan) });
 
                            return new InstanceDescriptor(mi, new object[] { keyTime.TimeSpan });
 
                        case KeyTimeType.Uniform: 

                            mi = typeof(KeyTime).GetProperty("Uniform"); 

                            return new InstanceDescriptor(mi, null);

                        case KeyTimeType.Paced: 

                            mi = typeof(KeyTime).GetProperty("Paced"); 
 
                            return new InstanceDescriptor(mi, null);
                    } 
                }
                else if (destinationType == typeof(String))
                {
                    switch (keyTime.Type) 
                    {
                        case KeyTimeType.Uniform: 
 
                            return "Uniform";
 
                        case KeyTimeType.Paced:

                            return "Paced";
 
                        case KeyTimeType.Percent:
 
                            string returnValue = (string)TypeDescriptor.GetConverter( 
                                typeof(Double)).ConvertTo(
                                    typeDescriptorContext, 
                                    cultureInfo,
                                    keyTime.Percent * 100.0,
                                    destinationType);
 
                            return returnValue + _percentCharacter[0].ToString();
 
                        case KeyTimeType.TimeSpan: 

                            return TypeDescriptor.GetConverter( 
                                typeof(TimeSpan)).ConvertTo(
                                    typeDescriptorContext,
                                    cultureInfo,
                                    keyTime.TimeSpan, 
                                    destinationType);
                    } 
                } 
            }
 
            return base.ConvertTo(
                typeDescriptorContext,
                cultureInfo,
                value, 
                destinationType);
        } 
    } 
}

// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
// Copyright (c) Microsoft Corporation. All rights reserved.
//------------------------------------------------------------------------------ 
//  Microsoft Avalon
//  Copyright (c) Microsoft Corporation, 2001-2003
//
//  File: KeyTimeConverter.cs 
//-----------------------------------------------------------------------------
 
using System; 
using System.ComponentModel;
using System.ComponentModel.Design.Serialization; 
using System.Globalization;
using System.Reflection;
using System.Windows.Media.Animation;
using System.Security; 

namespace System.Windows 
{ 
    /// 
    /// 
    /// 
    public class KeyTimeConverter : TypeConverter
    {
        #region Data 

        private static char[] _percentCharacter = new char[] { '%' }; 
 
        #endregion
 
        /// 
        /// Returns whether or not this class can convert from a given type
        /// to an instance of a KeyTime.
        ///  
        public override bool CanConvertFrom(
            ITypeDescriptorContext typeDescriptorContext, 
            Type type) 
        {
            if (type == typeof(string)) 
            {
                return true;
            }
            else 
            {
                return base.CanConvertFrom( 
                    typeDescriptorContext, 
                    type);
            } 
        }

        /// 
        /// Returns whether or not this class can convert from an instance of a 
        /// KeyTime to a given type.
        ///  
        public override bool CanConvertTo( 
            ITypeDescriptorContext typeDescriptorContext,
            Type type) 
        {
            if (   type == typeof(InstanceDescriptor)
                || type == typeof(string))
            { 
                return true;
            } 
            else 
            {
                return base.CanConvertTo( 
                    typeDescriptorContext,
                    type);
            }
        } 

        ///  
        /// 
        /// 
        public override object ConvertFrom( 
            ITypeDescriptorContext typeDescriptorContext,
            CultureInfo cultureInfo,
            object value)
        { 
            string stringValue = value as string;
 
            if (stringValue != null) 
            {
                stringValue = stringValue.Trim(); 

                if (stringValue == "Uniform")
                {
                    return KeyTime.Uniform; 
                }
                else if (stringValue == "Paced") 
                { 
                    return KeyTime.Paced;
                } 
                else if (stringValue[stringValue.Length - 1] == _percentCharacter[0])
                {
                    stringValue = stringValue.TrimEnd(_percentCharacter);
 
                    double doubleValue = (double)TypeDescriptor.GetConverter(
                        typeof(double)).ConvertFrom( 
                            typeDescriptorContext, 
                            cultureInfo,
                            stringValue); 

                    if (doubleValue == 0.0)
                    {
                        return KeyTime.FromPercent(0.0); 
                    }
                    else if (doubleValue == 100.0) 
                    { 
                        return KeyTime.FromPercent(1.0);
                    } 
                    else
                    {
                        return KeyTime.FromPercent(doubleValue / 100.0);
                    } 
                }
                else 
                { 
                    TimeSpan timeSpanValue = (TimeSpan)TypeDescriptor.GetConverter(
                        typeof(TimeSpan)).ConvertFrom( 
                            typeDescriptorContext,
                            cultureInfo,
                            stringValue);
 
                    return KeyTime.FromTimeSpan(timeSpanValue);
                } 
            } 

            return base.ConvertFrom( 
                typeDescriptorContext,
                cultureInfo,
                value);
        } 

        ///  
        /// 
        /// 
        /// 
        ///     Critical: calls InstanceDescriptor ctor which LinkDemands
        ///     PublicOK: can only make an InstanceDescriptor for KeyTime, not an arbitrary class
        ///
        [SecurityCritical] 
        public override object ConvertTo(
            ITypeDescriptorContext typeDescriptorContext, 
            CultureInfo cultureInfo, 
            object value,
            Type destinationType) 
        {
            if (   value != null
                && value is KeyTime)
            { 
                KeyTime keyTime = (KeyTime)value;
 
                if (destinationType == typeof(InstanceDescriptor)) 
                {
                    MemberInfo mi; 

                    switch (keyTime.Type)
                    {
                        case KeyTimeType.Percent: 

                            mi = typeof(KeyTime).GetMethod("FromPercent", new Type[] { typeof(double) }); 
 
                            return new InstanceDescriptor(mi, new object[] { keyTime.Percent });
 
                        case KeyTimeType.TimeSpan:

                            mi = typeof(KeyTime).GetMethod("FromTimeSpan", new Type[] { typeof(TimeSpan) });
 
                            return new InstanceDescriptor(mi, new object[] { keyTime.TimeSpan });
 
                        case KeyTimeType.Uniform: 

                            mi = typeof(KeyTime).GetProperty("Uniform"); 

                            return new InstanceDescriptor(mi, null);

                        case KeyTimeType.Paced: 

                            mi = typeof(KeyTime).GetProperty("Paced"); 
 
                            return new InstanceDescriptor(mi, null);
                    } 
                }
                else if (destinationType == typeof(String))
                {
                    switch (keyTime.Type) 
                    {
                        case KeyTimeType.Uniform: 
 
                            return "Uniform";
 
                        case KeyTimeType.Paced:

                            return "Paced";
 
                        case KeyTimeType.Percent:
 
                            string returnValue = (string)TypeDescriptor.GetConverter( 
                                typeof(Double)).ConvertTo(
                                    typeDescriptorContext, 
                                    cultureInfo,
                                    keyTime.Percent * 100.0,
                                    destinationType);
 
                            return returnValue + _percentCharacter[0].ToString();
 
                        case KeyTimeType.TimeSpan: 

                            return TypeDescriptor.GetConverter( 
                                typeof(TimeSpan)).ConvertTo(
                                    typeDescriptorContext,
                                    cultureInfo,
                                    keyTime.TimeSpan, 
                                    destinationType);
                    } 
                } 
            }
 
            return base.ConvertTo(
                typeDescriptorContext,
                cultureInfo,
                value, 
                destinationType);
        } 
    } 
}

// 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
This book is available now!
Buy at Amazon US or
Buy at Amazon UK