/descry/SocialTimeline/Timeline/objects/Views.cs

# · C# · 158 lines · 116 code · 24 blank · 18 comment · 7 complexity · b3ef894d9771b2f001fb3f27fc3466a4 MD5 · raw file

  1. /* ****************************************************************************
  2. *
  3. * Copyright (c) Microsoft Corporation.
  4. *
  5. * This source code is subject to terms and conditions of the Microsoft Public License. A
  6. * copy of the license can be found at http://go.microsoft.com/fwlink/?LinkID=131993. If
  7. * you cannot locate the Microsoft Public License, please send an email to
  8. * mixon@microsoft.com. By using this source code in any fashion, you are agreeing to
  9. * be bound by the terms of the Microsoft Public License.
  10. *
  11. * You must not remove this notice, or any other, from this software.
  12. *
  13. *
  14. * ***************************************************************************/
  15. using System;
  16. using System.Collections.ObjectModel;
  17. using System.ComponentModel;
  18. namespace MIXOnline.Descry
  19. {
  20. public enum Unit { FifteenMinute, Hour, HalfDay, Day, Week, Month, Year };
  21. public class View : INotifyPropertyChanged
  22. {
  23. private Unit _unit;
  24. public Unit Unit
  25. {
  26. get { return _unit; }
  27. set { _unit = value; }
  28. }
  29. private string _name;
  30. public string Name
  31. {
  32. get { return _name; }
  33. set { _name = value; }
  34. }
  35. private TimeSpan _timeSpan;
  36. public TimeSpan TimeSpan
  37. {
  38. get { return _timeSpan; }
  39. set { _timeSpan = value; }
  40. }
  41. private int _columns;
  42. public int Intervals
  43. {
  44. get { return _columns; }
  45. set { _columns = value; }
  46. }
  47. private bool _isChecked;
  48. public bool IsChecked
  49. {
  50. get { return _isChecked; }
  51. set
  52. {
  53. _isChecked = value;
  54. NotifyPropertyChanged("IsChecked");
  55. }
  56. }
  57. #region INotifyPropertyChanged Members
  58. public event PropertyChangedEventHandler PropertyChanged;
  59. private void NotifyPropertyChanged(String info)
  60. {
  61. if (PropertyChanged != null)
  62. {
  63. PropertyChanged(this, new PropertyChangedEventArgs(info));
  64. }
  65. }
  66. #endregion
  67. }
  68. public class Views : ObservableCollection<View>
  69. {
  70. public Views()
  71. {
  72. //this.Add(new View() { Name = "FifteenMinute", Unit = Unit.FifteenMinute, TimeSpan = new TimeSpan(0, 0, 15, 0), Intervals = 15 });
  73. this.Add(new View() { Name = "Hour", Unit = Unit.Hour, TimeSpan = new TimeSpan(0, 1, 0, 0), Intervals = 12 });
  74. this.Add(new View() { Name = "Day", Unit = Unit.Day, TimeSpan = new TimeSpan(1, 0, 0, 0), Intervals = 12, IsChecked = true});
  75. //this.Add(new View() { Name = "HalfDay", Unit = Unit.HalfDay, TimeSpan = new TimeSpan(0, 12, 0, 0), Intervals = 12 });
  76. this.Add(new View() { Name = "Week", Unit = Unit.Week, TimeSpan = new TimeSpan(7, 0, 0, 0), Intervals = 7 }); // one per day
  77. this.Add(new View() { Name = "Month", Unit = Unit.Month, TimeSpan = new TimeSpan(31, 0, 0, 0), Intervals = 31 }); // since they're 31 days we'll round up so index works better.
  78. this.Add(new View() { Name = "Year", Unit = Unit.Year, TimeSpan = new TimeSpan(366, 0, 0, 0), Intervals = 12 });
  79. }
  80. public static View GetViewForUnits(Unit unit)
  81. {
  82. foreach (View view in new Views())
  83. {
  84. if (view.Unit == unit)
  85. return view;
  86. }
  87. return null;
  88. }
  89. public View GetView(string viewname)
  90. {
  91. foreach (View view in this)
  92. {
  93. if (view.Name == viewname)
  94. return view;
  95. }
  96. return null;
  97. }
  98. private int _selectedIndex = 0;
  99. public int SelectedIndex
  100. {
  101. get { return _selectedIndex; }
  102. set { _selectedIndex = value; }
  103. }
  104. static public DateTime GetStartingTimeForView(View view)
  105. {
  106. DateTime result = DateTime.Now;
  107. DateTime now = DateTime.Now;
  108. switch (view.Unit)
  109. {
  110. case Unit.FifteenMinute:
  111. result = new DateTime(now.Year, now.Month, now.Day, now.Hour, 0, 0); // TODO: starting time
  112. break;
  113. case Unit.Day:
  114. result = now.Date; // starting time is at beginning of day
  115. break;
  116. case Unit.Hour:
  117. result = new DateTime(now.Year, now.Month, now.Day, now.Hour, 0, 0); // starting time is at beginning of hour
  118. break;
  119. case Unit.Month:
  120. result = new DateTime(now.Year, now.Month, 1, 0, 0, 0); // starting time is at beginning of month
  121. break;
  122. case Unit.Week:
  123. result = new DateTime(now.Year, now.Month, now.Day) - new TimeSpan((int)now.DayOfWeek, 0, 0, 0); // figure out what day of the week it is and start the week on Sunday
  124. break;
  125. case Unit.Year:
  126. result = new DateTime(now.Year, 1, 1); // starting time is at beginning of year
  127. break;
  128. //case Unit.HalfDay:
  129. //break;
  130. }
  131. return result;
  132. }
  133. }
  134. }