/Silverlight.3/Microsoft.WebAnalytics/Microsoft.WebAnalytics.DeepZoom/TrackMultiScaleImage.cs

# · C# · 118 lines · 66 code · 15 blank · 37 comment · 0 complexity · 14304582f9892aea101b0643df2079dc MD5 · raw file

  1. // <copyright file="TrackMultiScaleImage.cs" company="Microsoft">
  2. // Copyright (c) 2010 Microsoft All Rights Reserved
  3. // </copyright>
  4. // <author>Microsoft</author>
  5. // <email>mischero@microsoft.com</email>
  6. // <date>2010-01-01</date>
  7. // <summary>Web analytics service behavior class definition</summary>
  8. namespace Microsoft.WebAnalytics.Media
  9. {
  10. using System;
  11. using System.Collections.ObjectModel;
  12. using System.ComponentModel.Composition;
  13. using System.Linq;
  14. using System.Windows;
  15. using System.Windows.Controls;
  16. using System.Windows.Interactivity;
  17. using System.Windows.Markup;
  18. using Microsoft.WebAnalytics;
  19. /// <summary>
  20. /// <img src="../media/Microsoft.WebAnalytics.Media.TrackMultiScaleImage.24x24.png"/>
  21. /// Track Deep Zoom Events
  22. /// </summary>
  23. [ContentProperty("Locations")]
  24. public class TrackMultiScaleImage : Behavior<MultiScaleImage>
  25. {
  26. /// <summary>
  27. /// Initializes a new instance of the TrackMultiScaleImage class.
  28. /// </summary>
  29. public TrackMultiScaleImage()
  30. {
  31. this.Locations = new ObservableCollection<MultiScaleImageLocation>();
  32. }
  33. #region Properties
  34. /// <summary>
  35. /// Gets the locations to track
  36. /// </summary>
  37. public ObservableCollection<MultiScaleImageLocation> Locations { get; private set; }
  38. /// <summary>
  39. /// Gets or sets the event Logging method
  40. /// </summary>
  41. [Import("Log")]
  42. public Action<AnalyticsEvent> Log { get; set; }
  43. #endregion
  44. #region Methods
  45. /// <summary>
  46. /// Attach events and initialize parts
  47. /// </summary>
  48. protected override void OnAttached()
  49. {
  50. base.OnAttached();
  51. #if WINDOWS_PHONE
  52. CompositionInitializer.SatisfyImports(this);
  53. #else
  54. PartInitializer.SatisfyImports(this);
  55. #endif
  56. this.AssociatedObject.ViewportChanged += new RoutedEventHandler(this.OnViewportChanged);
  57. }
  58. /// <summary>
  59. /// Detach events
  60. /// </summary>
  61. protected override void OnDetaching()
  62. {
  63. base.OnDetaching();
  64. this.AssociatedObject.ViewportChanged -= new RoutedEventHandler(this.OnViewportChanged);
  65. }
  66. #endregion
  67. #region Implementation
  68. /// <summary>
  69. /// Use the Pythagorean Theorum to get the distance between two points
  70. /// </summary>
  71. /// <param name="p1">the first point</param>
  72. /// <param name="p2">the second point</param>
  73. /// <returns>the distance between the two points</returns>
  74. private static double Distance(Point p1, Point p2)
  75. {
  76. return Math.Sqrt(Math.Pow(p1.X - p2.X, 2) + Math.Pow(p1.Y - p2.Y, 2));
  77. }
  78. /// <summary>
  79. /// Viewport changed event handler
  80. /// </summary>
  81. /// <param name="sender">the multiscale image</param>
  82. /// <param name="e">the routed event argument</param>
  83. private void OnViewportChanged(object sender, RoutedEventArgs e)
  84. {
  85. var hitLocations = from location in this.Locations
  86. where Math.Abs(this.AssociatedObject.ViewportWidth - location.ViewportWidth) <= location.WidthTolerance &&
  87. Distance(this.AssociatedObject.ViewportOrigin, location.ViewportOrigin) <= location.OriginTolerance
  88. select new AnalyticsEvent()
  89. {
  90. EventArgs = location.CustomProperties,
  91. Name = "LocationNear",
  92. ObjectName = this.AssociatedObject.Name,
  93. ObjectType = this.AssociatedObject.GetType().ToString(),
  94. ActionValue = location.Name,
  95. };
  96. foreach (var logEvent in hitLocations)
  97. {
  98. this.Log(logEvent);
  99. }
  100. }
  101. #endregion
  102. }
  103. }