# HG changeset patch # User ymh # Date 1253016817 -7200 # Node ID 0662bd606c28386edea336be4b08de86300dfe8a # Parent 1ec0ef228158d7bd1a9dbf8a3f0af24f295d0736# Parent c724ac22918191246ae07cff4ea75d19a9fe4b3d Merge diff -r c724ac229181 -r 0662bd606c28 src/FingersDance.Data/Annotation.cs --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/src/FingersDance.Data/Annotation.cs Tue Sep 15 14:13:37 2009 +0200 @@ -0,0 +1,57 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; + +namespace FingersDance.Data +{ + class AnnotationAddedEventArg : EventArgs + { + private float _tcBegin; + private float _dur; + private String _gestureType; + + public float tcBegin + { + get { return this._tcBegin; } + } + public float dur + { + get { return this._dur; } + } + public String gestureType + { + get { return this._gestureType; } + } + + public AnnotationAddedEventArg(float tcBegin, float dur, String gestureType) { + + this._tcBegin = tcBegin; + this._dur = dur; + this._gestureType = gestureType; + + } + + } + + class Annotation + { + private float tcBegin; + private float dur; + private string gestureType; + + public event EventHandler AnnotationAdded; + + public Annotation(float tcBeginPar, float durPar, string gesturePar) + { + this.tcBegin = tcBeginPar; + this.dur = durPar; + this.gestureType = gesturePar; + + AnnotationAdded(this, new AnnotationAddedEventArg(tcBegin, dur, gestureType)); + + } + + } + +} diff -r c724ac229181 -r 0662bd606c28 src/FingersDance.Data/Cutting.cs --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/src/FingersDance.Data/Cutting.cs Tue Sep 15 14:13:37 2009 +0200 @@ -0,0 +1,20 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; + +namespace FingersDance.Data +{ + class Cutting + { + private List annotList; + private string title; + + public Cutting(string titlePar, List annotListPar) + { + this.title = titlePar; + this.annotList = annotListPar; + + } + } +} diff -r c724ac229181 -r 0662bd606c28 src/FingersDance.Data/FingersDance.Data.csproj --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/src/FingersDance.Data/FingersDance.Data.csproj Tue Sep 15 14:13:37 2009 +0200 @@ -0,0 +1,83 @@ + + + + Debug + AnyCPU + 9.0.30729 + 2.0 + {EAF384DB-2AE4-4132-839D-60F9DAFDEAD8} + Library + Properties + FingersDance.Data + FingersDance.Data + v3.5 + 512 + + + + + true + full + false + bin\Debug\ + DEBUG;TRACE + prompt + 4 + + + pdbonly + true + bin\Release\ + TRACE + prompt + 4 + + + + + 3.5 + + + 3.5 + + + 3.5 + + + + + + + + + + + + + ResXFileCodeGenerator + Resources.Designer.cs + Designer + + + True + Resources.resx + + + SettingsSingleFileGenerator + Settings.Designer.cs + + + True + Settings.settings + True + + + + + \ No newline at end of file diff -r c724ac229181 -r 0662bd606c28 src/FingersDance.Data/Properties/AssemblyInfo.cs --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/src/FingersDance.Data/Properties/AssemblyInfo.cs Tue Sep 15 14:13:37 2009 +0200 @@ -0,0 +1,36 @@ +using System.Reflection; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +// General Information about an assembly is controlled through the following +// set of attributes. Change these attribute values to modify the information +// associated with an assembly. +[assembly: AssemblyTitle("FingersDance.Data")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("")] +[assembly: AssemblyProduct("FingersDance.Data")] +[assembly: AssemblyCopyright("Copyright © 2009")] +[assembly: AssemblyTrademark("")] +[assembly: AssemblyCulture("")] + +// Setting ComVisible to false makes the types in this assembly not visible +// to COM components. If you need to access a type in this assembly from +// COM, set the ComVisible attribute to true on that type. +[assembly: ComVisible(false)] + +// The following GUID is for the ID of the typelib if this project is exposed to COM +[assembly: Guid("a7b4d932-8279-4886-93f6-f8c08153d504")] + +// Version information for an assembly consists of the following four values: +// +// Major Version +// Minor Version +// Build Number +// Revision +// +// You can specify all the values or you can default the Build and Revision Numbers +// by using the '*' as shown below: +// [assembly: AssemblyVersion("1.0.*")] +[assembly: AssemblyVersion("1.0.0.0")] +[assembly: AssemblyFileVersion("1.0.0.0")] diff -r c724ac229181 -r 0662bd606c28 src/FingersDance.Data/Properties/Resources.Designer.cs --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/src/FingersDance.Data/Properties/Resources.Designer.cs Tue Sep 15 14:13:37 2009 +0200 @@ -0,0 +1,71 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:2.0.50727.4927 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace FingersDance.Data.Properties +{ + + + /// + /// A strongly-typed resource class, for looking up localized strings, etc. + /// + // This class was auto-generated by the StronglyTypedResourceBuilder + // class via a tool like ResGen or Visual Studio. + // To add or remove a member, edit your .ResX file then rerun ResGen + // with the /str option, or rebuild your VS project. + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "2.0.0.0")] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] + internal class Resources + { + + private static global::System.Resources.ResourceManager resourceMan; + + private static global::System.Globalization.CultureInfo resourceCulture; + + [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] + internal Resources() + { + } + + /// + /// Returns the cached ResourceManager instance used by this class. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + internal static global::System.Resources.ResourceManager ResourceManager + { + get + { + if ((resourceMan == null)) + { + global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("FingersDance.Data.Properties.Resources", typeof(Resources).Assembly); + resourceMan = temp; + } + return resourceMan; + } + } + + /// + /// Overrides the current thread's CurrentUICulture property for all + /// resource lookups using this strongly typed resource class. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + internal static global::System.Globalization.CultureInfo Culture + { + get + { + return resourceCulture; + } + set + { + resourceCulture = value; + } + } + } +} diff -r c724ac229181 -r 0662bd606c28 src/FingersDance.Data/Properties/Resources.resx --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/src/FingersDance.Data/Properties/Resources.resx Tue Sep 15 14:13:37 2009 +0200 @@ -0,0 +1,117 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + \ No newline at end of file diff -r c724ac229181 -r 0662bd606c28 src/FingersDance.Data/Properties/Settings.Designer.cs --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/src/FingersDance.Data/Properties/Settings.Designer.cs Tue Sep 15 14:13:37 2009 +0200 @@ -0,0 +1,30 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:2.0.50727.4927 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace FingersDance.Data.Properties +{ + + + [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "9.0.0.0")] + internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase + { + + private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings()))); + + public static Settings Default + { + get + { + return defaultInstance; + } + } + } +} diff -r c724ac229181 -r 0662bd606c28 src/FingersDance.Data/Properties/Settings.settings --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/src/FingersDance.Data/Properties/Settings.settings Tue Sep 15 14:13:37 2009 +0200 @@ -0,0 +1,7 @@ + + + + + + + diff -r c724ac229181 -r 0662bd606c28 src/FingersDance.ViewModel/AnnotationViewModel.cs --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/src/FingersDance.ViewModel/AnnotationViewModel.cs Tue Sep 15 14:13:37 2009 +0200 @@ -0,0 +1,48 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; + +namespace FingersDance.ViewModel +{ + class AnnotationViewModel : ViewModelBase + { + private float _tcBegin; + private float _dur; + private String _gestureType; + + public float tcBegin + { + get { return _tcBegin; } + set { + if (value == _tcBegin || float.IsNaN(value)) + return; + _tcBegin = value; + base.OnPropertyChanged("TcBegin"); + } + } + public float dur + { + get { return _dur; } + set + { + if (value == _dur || float.IsNaN(value)) + return; + _dur = value; + base.OnPropertyChanged("Dur"); + } + } + public String gestureType + { + get { return _gestureType; } + set + { + if (value == _gestureType || String.IsNullOrEmpty(value)) + return; + _gestureType = value; + base.OnPropertyChanged("GestureType"); + } + } + + } +} diff -r c724ac229181 -r 0662bd606c28 src/FingersDance.ViewModel/CuttingViewModel.cs --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/src/FingersDance.ViewModel/CuttingViewModel.cs Tue Sep 15 14:13:37 2009 +0200 @@ -0,0 +1,34 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; + +namespace FingersDance.ViewModel +{ + class CuttingViewModel : ViewModelBase + { + private string _title; + private List _annotList = new List(); + + public String Title + { + get { return _title; } + set + { + if (value == _title || String.IsNullOrEmpty(value)) + return; + _title = value; + base.OnPropertyChanged("Title"); + } + } + public List AnnotList + { + get { return _annotList; } + set + { + _annotList = value; + base.OnPropertyChanged("AnnotList"); + } + } + } +} diff -r c724ac229181 -r 0662bd606c28 src/FingersDance.ViewModel/FingersDance.ViewModels.csproj --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/src/FingersDance.ViewModel/FingersDance.ViewModels.csproj Tue Sep 15 14:13:37 2009 +0200 @@ -0,0 +1,84 @@ + + + + Debug + AnyCPU + 9.0.30729 + 2.0 + {E81BB080-0598-43AC-90CE-54D6570C4E9E} + Library + Properties + FingersDance.ViewModel + FingersDance.ViewModel + v3.5 + 512 + + + + + true + full + false + bin\Debug\ + DEBUG;TRACE + prompt + 4 + + + pdbonly + true + bin\Release\ + TRACE + prompt + 4 + + + + + 3.5 + + + 3.5 + + + 3.5 + + + + + + + + + + + + + ResXFileCodeGenerator + Resources.Designer.cs + Designer + + + True + Resources.resx + + + SettingsSingleFileGenerator + Settings.Designer.cs + + + True + Settings.settings + True + + + + + + \ No newline at end of file diff -r c724ac229181 -r 0662bd606c28 src/FingersDance.ViewModel/Properties/AssemblyInfo.cs --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/src/FingersDance.ViewModel/Properties/AssemblyInfo.cs Tue Sep 15 14:13:37 2009 +0200 @@ -0,0 +1,36 @@ +using System.Reflection; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +// General Information about an assembly is controlled through the following +// set of attributes. Change these attribute values to modify the information +// associated with an assembly. +[assembly: AssemblyTitle("FingersDance.ViewModel")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("")] +[assembly: AssemblyProduct("FingersDance.ViewModel")] +[assembly: AssemblyCopyright("Copyright © 2009")] +[assembly: AssemblyTrademark("")] +[assembly: AssemblyCulture("")] + +// Setting ComVisible to false makes the types in this assembly not visible +// to COM components. If you need to access a type in this assembly from +// COM, set the ComVisible attribute to true on that type. +[assembly: ComVisible(false)] + +// The following GUID is for the ID of the typelib if this project is exposed to COM +[assembly: Guid("5b2dc01c-66aa-41f1-8b74-137876b290d0")] + +// Version information for an assembly consists of the following four values: +// +// Major Version +// Minor Version +// Build Number +// Revision +// +// You can specify all the values or you can default the Build and Revision Numbers +// by using the '*' as shown below: +// [assembly: AssemblyVersion("1.0.*")] +[assembly: AssemblyVersion("1.0.0.0")] +[assembly: AssemblyFileVersion("1.0.0.0")] diff -r c724ac229181 -r 0662bd606c28 src/FingersDance.ViewModel/Properties/Resources.Designer.cs --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/src/FingersDance.ViewModel/Properties/Resources.Designer.cs Tue Sep 15 14:13:37 2009 +0200 @@ -0,0 +1,71 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:2.0.50727.4927 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace FingersDance.ViewModel.Properties +{ + + + /// + /// A strongly-typed resource class, for looking up localized strings, etc. + /// + // This class was auto-generated by the StronglyTypedResourceBuilder + // class via a tool like ResGen or Visual Studio. + // To add or remove a member, edit your .ResX file then rerun ResGen + // with the /str option, or rebuild your VS project. + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "2.0.0.0")] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] + internal class Resources + { + + private static global::System.Resources.ResourceManager resourceMan; + + private static global::System.Globalization.CultureInfo resourceCulture; + + [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] + internal Resources() + { + } + + /// + /// Returns the cached ResourceManager instance used by this class. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + internal static global::System.Resources.ResourceManager ResourceManager + { + get + { + if ((resourceMan == null)) + { + global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("FingersDance.ViewModel.Properties.Resources", typeof(Resources).Assembly); + resourceMan = temp; + } + return resourceMan; + } + } + + /// + /// Overrides the current thread's CurrentUICulture property for all + /// resource lookups using this strongly typed resource class. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + internal static global::System.Globalization.CultureInfo Culture + { + get + { + return resourceCulture; + } + set + { + resourceCulture = value; + } + } + } +} diff -r c724ac229181 -r 0662bd606c28 src/FingersDance.ViewModel/Properties/Resources.resx --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/src/FingersDance.ViewModel/Properties/Resources.resx Tue Sep 15 14:13:37 2009 +0200 @@ -0,0 +1,117 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + \ No newline at end of file diff -r c724ac229181 -r 0662bd606c28 src/FingersDance.ViewModel/Properties/Settings.Designer.cs --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/src/FingersDance.ViewModel/Properties/Settings.Designer.cs Tue Sep 15 14:13:37 2009 +0200 @@ -0,0 +1,30 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:2.0.50727.4927 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace FingersDance.ViewModel.Properties +{ + + + [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "9.0.0.0")] + internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase + { + + private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings()))); + + public static Settings Default + { + get + { + return defaultInstance; + } + } + } +} diff -r c724ac229181 -r 0662bd606c28 src/FingersDance.ViewModel/Properties/Settings.settings --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/src/FingersDance.ViewModel/Properties/Settings.settings Tue Sep 15 14:13:37 2009 +0200 @@ -0,0 +1,7 @@ + + + + + + + diff -r c724ac229181 -r 0662bd606c28 src/FingersDance.ViewModel/ViewModelBase.cs --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/src/FingersDance.ViewModel/ViewModelBase.cs Tue Sep 15 14:13:37 2009 +0200 @@ -0,0 +1,127 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.ComponentModel; +using System.Diagnostics; + +namespace FingersDance.ViewModel +{ + /// + /// Base class for all ViewModel classes in the application. + /// It provides support for property change notifications + /// and has a DisplayName property. This class is abstract. + /// + public abstract class ViewModelBase : INotifyPropertyChanged, IDisposable + { + #region Constructor + + protected ViewModelBase() + { + } + + #endregion // Constructor + + #region DisplayName + + /// + /// Returns the user-friendly name of this object. + /// Child classes can set this property to a new value, + /// or override it to determine the value on-demand. + /// + public virtual string DisplayName { get; protected set; } + + #endregion // DisplayName + + #region Debugging Aides + + /// + /// Warns the developer if this object does not have + /// a public property with the specified name. This + /// method does not exist in a Release build. + /// + [Conditional("DEBUG")] + [DebuggerStepThrough] + public void VerifyPropertyName(string propertyName) + { + // Verify that the property name matches a real, + // public, instance property on this object. + if (TypeDescriptor.GetProperties(this)[propertyName] == null) + { + string msg = "Invalid property name: " + propertyName; + + if (this.ThrowOnInvalidPropertyName) + throw new Exception(msg); + else + Debug.Fail(msg); + } + } + + /// + /// Returns whether an exception is thrown, or if a Debug.Fail() is used + /// when an invalid property name is passed to the VerifyPropertyName method. + /// The default value is false, but subclasses used by unit tests might + /// override this property's getter to return true. + /// + protected virtual bool ThrowOnInvalidPropertyName { get; private set; } + + #endregion // Debugging Aides + + #region INotifyPropertyChanged Members + + /// + /// Raised when a property on this object has a new value. + /// + public event PropertyChangedEventHandler PropertyChanged; + + /// + /// Raises this object's PropertyChanged event. + /// + /// The property that has a new value. + protected virtual void OnPropertyChanged(string propertyName) + { + this.VerifyPropertyName(propertyName); + + PropertyChangedEventHandler handler = this.PropertyChanged; + if (handler != null) + { + var e = new PropertyChangedEventArgs(propertyName); + handler(this, e); + } + } + + #endregion // INotifyPropertyChanged Members + + #region IDisposable Members + + /// + /// Invoked when this object is being removed from the application + /// and will be subject to garbage collection. + /// + public void Dispose() + { + this.OnDispose(); + } + + /// + /// Child classes can override this method to perform + /// clean-up logic, such as removing event handlers. + /// + protected virtual void OnDispose() + { + } + +#if DEBUG + /// + /// Useful for ensuring that ViewModel objects are properly garbage collected. + /// + ~ViewModelBase() + { + string msg = string.Format("{0} ({1}) ({2}) Finalized", this.GetType().Name, this.DisplayName, this.GetHashCode()); + System.Diagnostics.Debug.WriteLine(msg); + } +#endif + + #endregion // IDisposable Member + } +} diff -r c724ac229181 -r 0662bd606c28 src/FingersDance.Views/FingersDance.Views.csproj --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/src/FingersDance.Views/FingersDance.Views.csproj Tue Sep 15 14:13:37 2009 +0200 @@ -0,0 +1,113 @@ + + + + Debug + AnyCPU + 9.0.30729 + 2.0 + {0B308B6E-7B1E-46C0-ACC7-0B7EFC4D0B2C} + Library + Properties + FingersDance.Views + FingersDance.Views + v3.5 + 512 + + + 3.0.1927.0 + + + true + full + false + bin\Debug\ + DEBUG;TRACE + prompt + 4 + + + pdbonly + true + bin\Release\ + TRACE + prompt + 4 + + + + + + + 3.0 + + + 3.0 + + + + 3.5 + + + 3.5 + + + 3.5 + + + + + + + + 3.0 + + + 3.0 + + + + + + ResXFileCodeGenerator + Resources.Designer.cs + Designer + + + True + Resources.resx + + + SettingsSingleFileGenerator + Settings.Designer.cs + + + True + Settings.settings + True + + + TimelineAnnotationView.xaml + + + TimelineView.xaml + + + + + Designer + MSBuild:Compile + + + Designer + MSBuild:Compile + + + + + \ No newline at end of file diff -r c724ac229181 -r 0662bd606c28 src/FingersDance.Views/Properties/AssemblyInfo.cs --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/src/FingersDance.Views/Properties/AssemblyInfo.cs Tue Sep 15 14:13:37 2009 +0200 @@ -0,0 +1,36 @@ +using System.Reflection; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +// General Information about an assembly is controlled through the following +// set of attributes. Change these attribute values to modify the information +// associated with an assembly. +[assembly: AssemblyTitle("FingersDance.Views")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("")] +[assembly: AssemblyProduct("FingersDance.Views")] +[assembly: AssemblyCopyright("Copyright © 2009")] +[assembly: AssemblyTrademark("")] +[assembly: AssemblyCulture("")] + +// Setting ComVisible to false makes the types in this assembly not visible +// to COM components. If you need to access a type in this assembly from +// COM, set the ComVisible attribute to true on that type. +[assembly: ComVisible(false)] + +// The following GUID is for the ID of the typelib if this project is exposed to COM +[assembly: Guid("d351f5a0-928a-45cd-a25a-1f0bfb35a8f0")] + +// Version information for an assembly consists of the following four values: +// +// Major Version +// Minor Version +// Build Number +// Revision +// +// You can specify all the values or you can default the Build and Revision Numbers +// by using the '*' as shown below: +// [assembly: AssemblyVersion("1.0.*")] +[assembly: AssemblyVersion("1.0.0.0")] +[assembly: AssemblyFileVersion("1.0.0.0")] diff -r c724ac229181 -r 0662bd606c28 src/FingersDance.Views/Properties/Resources.Designer.cs --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/src/FingersDance.Views/Properties/Resources.Designer.cs Tue Sep 15 14:13:37 2009 +0200 @@ -0,0 +1,71 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:2.0.50727.4927 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace FingersDance.Views.Properties +{ + + + /// + /// A strongly-typed resource class, for looking up localized strings, etc. + /// + // This class was auto-generated by the StronglyTypedResourceBuilder + // class via a tool like ResGen or Visual Studio. + // To add or remove a member, edit your .ResX file then rerun ResGen + // with the /str option, or rebuild your VS project. + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "2.0.0.0")] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] + internal class Resources + { + + private static global::System.Resources.ResourceManager resourceMan; + + private static global::System.Globalization.CultureInfo resourceCulture; + + [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] + internal Resources() + { + } + + /// + /// Returns the cached ResourceManager instance used by this class. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + internal static global::System.Resources.ResourceManager ResourceManager + { + get + { + if ((resourceMan == null)) + { + global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("FingersDance.Views.Properties.Resources", typeof(Resources).Assembly); + resourceMan = temp; + } + return resourceMan; + } + } + + /// + /// Overrides the current thread's CurrentUICulture property for all + /// resource lookups using this strongly typed resource class. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + internal static global::System.Globalization.CultureInfo Culture + { + get + { + return resourceCulture; + } + set + { + resourceCulture = value; + } + } + } +} diff -r c724ac229181 -r 0662bd606c28 src/FingersDance.Views/Properties/Resources.resx --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/src/FingersDance.Views/Properties/Resources.resx Tue Sep 15 14:13:37 2009 +0200 @@ -0,0 +1,117 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + \ No newline at end of file diff -r c724ac229181 -r 0662bd606c28 src/FingersDance.Views/Properties/Settings.Designer.cs --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/src/FingersDance.Views/Properties/Settings.Designer.cs Tue Sep 15 14:13:37 2009 +0200 @@ -0,0 +1,30 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:2.0.50727.4927 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace FingersDance.Views.Properties +{ + + + [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "9.0.0.0")] + internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase + { + + private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings()))); + + public static Settings Default + { + get + { + return defaultInstance; + } + } + } +} diff -r c724ac229181 -r 0662bd606c28 src/FingersDance.Views/Properties/Settings.settings --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/src/FingersDance.Views/Properties/Settings.settings Tue Sep 15 14:13:37 2009 +0200 @@ -0,0 +1,7 @@ + + + + + + + diff -r c724ac229181 -r 0662bd606c28 src/FingersDance.Views/TimelineAnnotationView.xaml --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/src/FingersDance.Views/TimelineAnnotationView.xaml Tue Sep 15 14:13:37 2009 +0200 @@ -0,0 +1,16 @@ + + + + + + + \ No newline at end of file diff -r c724ac229181 -r 0662bd606c28 src/FingersDance.Views/TimelineAnnotationView.xaml.cs --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/src/FingersDance.Views/TimelineAnnotationView.xaml.cs Tue Sep 15 14:13:37 2009 +0200 @@ -0,0 +1,27 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Windows; +using System.Windows.Controls; +using System.Windows.Data; +using System.Windows.Documents; +using System.Windows.Input; +using System.Windows.Media; +using System.Windows.Media.Imaging; +using System.Windows.Navigation; +using System.Windows.Shapes; + +namespace FingersDance.Views +{ + /// + /// Interaction logic for TimelineAnnotationView.xaml + /// + public partial class TimelineAnnotationView : UserControl + { + public TimelineAnnotationView() + { + InitializeComponent(); + } + } +} diff -r c724ac229181 -r 0662bd606c28 src/FingersDance.Views/TimelineView.xaml --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/src/FingersDance.Views/TimelineView.xaml Tue Sep 15 14:13:37 2009 +0200 @@ -0,0 +1,20 @@ + + + + + + + + + + + + diff -r c724ac229181 -r 0662bd606c28 src/FingersDance.Views/TimelineView.xaml.cs --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/src/FingersDance.Views/TimelineView.xaml.cs Tue Sep 15 14:13:37 2009 +0200 @@ -0,0 +1,27 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Windows; +using System.Windows.Controls; +using System.Windows.Data; +using System.Windows.Documents; +using System.Windows.Input; +using System.Windows.Media; +using System.Windows.Media.Imaging; +using System.Windows.Navigation; +using System.Windows.Shapes; + +namespace FingersDance.Views +{ + /// + /// Interaction logic for TimelineView.xaml + /// + public partial class TimelineView : UserControl + { + public TimelineView() + { + InitializeComponent(); + } + } +} diff -r c724ac229181 -r 0662bd606c28 src/FingersDance.sln --- a/src/FingersDance.sln Mon Sep 14 23:49:47 2009 +0200 +++ b/src/FingersDance.sln Tue Sep 15 14:13:37 2009 +0200 @@ -27,6 +27,12 @@ EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "FingersDance.Debug", "FingersDance.Debug\FingersDance.Debug.csproj", "{148FE4AA-2C30-4D08-9291-BF22023F0AAA}" EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "FingersDance.Data", "FingersDance.Data\FingersDance.Data.csproj", "{EAF384DB-2AE4-4132-839D-60F9DAFDEAD8}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "FingersDance.ViewModels", "FingersDance.ViewModel\FingersDance.ViewModels.csproj", "{E81BB080-0598-43AC-90CE-54D6570C4E9E}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "FingersDance.Views", "FingersDance.Views\FingersDance.Views.csproj", "{0B308B6E-7B1E-46C0-ACC7-0B7EFC4D0B2C}" +EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Any CPU = Debug|Any CPU @@ -131,6 +137,24 @@ {148FE4AA-2C30-4D08-9291-BF22023F0AAA}.Release|Any CPU.ActiveCfg = Release|Any CPU {148FE4AA-2C30-4D08-9291-BF22023F0AAA}.Release|Any CPU.Build.0 = Release|Any CPU {148FE4AA-2C30-4D08-9291-BF22023F0AAA}.Release|x86.ActiveCfg = Release|Any CPU + {EAF384DB-2AE4-4132-839D-60F9DAFDEAD8}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {EAF384DB-2AE4-4132-839D-60F9DAFDEAD8}.Debug|Any CPU.Build.0 = Debug|Any CPU + {EAF384DB-2AE4-4132-839D-60F9DAFDEAD8}.Debug|x86.ActiveCfg = Debug|Any CPU + {EAF384DB-2AE4-4132-839D-60F9DAFDEAD8}.Release|Any CPU.ActiveCfg = Release|Any CPU + {EAF384DB-2AE4-4132-839D-60F9DAFDEAD8}.Release|Any CPU.Build.0 = Release|Any CPU + {EAF384DB-2AE4-4132-839D-60F9DAFDEAD8}.Release|x86.ActiveCfg = Release|Any CPU + {E81BB080-0598-43AC-90CE-54D6570C4E9E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {E81BB080-0598-43AC-90CE-54D6570C4E9E}.Debug|Any CPU.Build.0 = Debug|Any CPU + {E81BB080-0598-43AC-90CE-54D6570C4E9E}.Debug|x86.ActiveCfg = Debug|Any CPU + {E81BB080-0598-43AC-90CE-54D6570C4E9E}.Release|Any CPU.ActiveCfg = Release|Any CPU + {E81BB080-0598-43AC-90CE-54D6570C4E9E}.Release|Any CPU.Build.0 = Release|Any CPU + {E81BB080-0598-43AC-90CE-54D6570C4E9E}.Release|x86.ActiveCfg = Release|Any CPU + {0B308B6E-7B1E-46C0-ACC7-0B7EFC4D0B2C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {0B308B6E-7B1E-46C0-ACC7-0B7EFC4D0B2C}.Debug|Any CPU.Build.0 = Debug|Any CPU + {0B308B6E-7B1E-46C0-ACC7-0B7EFC4D0B2C}.Debug|x86.ActiveCfg = Debug|Any CPU + {0B308B6E-7B1E-46C0-ACC7-0B7EFC4D0B2C}.Release|Any CPU.ActiveCfg = Release|Any CPU + {0B308B6E-7B1E-46C0-ACC7-0B7EFC4D0B2C}.Release|Any CPU.Build.0 = Release|Any CPU + {0B308B6E-7B1E-46C0-ACC7-0B7EFC4D0B2C}.Release|x86.ActiveCfg = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE