/GISforTT_API/BookmarkListFrame.xaml.cs

# · C# · 288 lines · 194 code · 48 blank · 46 comment · 23 complexity · a3348aab648f4f0d895dac96641b9cdf MD5 · raw file

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Windows;
  6. using System.Windows.Controls;
  7. using System.Windows.Data;
  8. using System.Windows.Documents;
  9. using System.Windows.Input;
  10. using System.Windows.Media;
  11. using System.Windows.Media.Imaging;
  12. using System.Windows.Navigation;
  13. using System.Windows.Shapes;
  14. using ESRI.ArcGIS.Client.Geometry;
  15. using Microsoft.Surface;
  16. using Microsoft.Surface.Presentation;
  17. using Microsoft.Surface.Presentation.Controls;
  18. using Microsoft.Surface.Presentation.Input;
  19. namespace GISforTT_API
  20. {
  21. /// <summary>
  22. /// Interaction logic for BookmarkListFrame.xaml. This
  23. /// is a ScatterViewItem that contains a list of Bookmarks.
  24. /// </summary>
  25. public partial class BookmarkListFrame : ScatterViewItem
  26. {
  27. public ItemCollection BookmarkListItems
  28. {
  29. get
  30. {
  31. return BookmarkListBox.Items;
  32. }
  33. }
  34. /// <summary>
  35. /// Creates a BookmarkListFrame. It takes a reference of
  36. /// the ScatterLayer (where the frame itself exists),
  37. /// a Point (where the frame should appear in the ScatterView),
  38. /// and the orientation of the frame itself.
  39. /// </summary>
  40. /// <param name="pt">a Point (where the frame should appear in the ScatterView)</param>
  41. /// <param name="orientation">the orientation of the frame</param>
  42. public BookmarkListFrame(Point pt, double orientation)
  43. {
  44. InitializeComponent();
  45. this.Center = pt;
  46. this.Orientation = orientation;
  47. PopulateBookmarkList();
  48. }
  49. /// <summary>
  50. ///
  51. /// Populates the list frame with
  52. /// bookmarks from the BookmarkList singleton.
  53. /// </summary>
  54. public void PopulateBookmarkList()
  55. {
  56. foreach (Bookmark tt in BookmarkList.Instance.getBookmarks())
  57. {
  58. this.AddBookmark(tt);
  59. }
  60. }
  61. /// <summary>
  62. /// Adds a Bookmark item to the BookmarkList
  63. /// </summary>
  64. /// <param name="inputBookmark">Bookmark to be added</param>
  65. public BookmarkListItem AddBookmark(Bookmark inputBookmark)
  66. {
  67. BookmarkListItem inputItem = new BookmarkListItem(inputBookmark);
  68. BookmarkListBox.Items.Add(inputItem);
  69. inputItem.Selected += new RoutedEventHandler(BookmarkListItem_Selected);
  70. return inputItem;
  71. }
  72. /// <summary>
  73. /// Removes a Bookmark from the BookmarkList
  74. /// </summary>
  75. /// <param name="deleteItem">The BookmarkListItem to be deleted</param>
  76. public void RemoveBookmarkItem(BookmarkListItem deleteItem)
  77. {
  78. if (BookmarkListBox.Items.Contains(deleteItem))
  79. BookmarkListBox.Items.Remove(deleteItem);
  80. }
  81. /// <summary>
  82. /// Event handler when an item (Bookmark) is tapped in the
  83. /// BookmarkList. When this happens, a MapFrame representing
  84. /// the tapped Bookmark appears. We also calculate where this
  85. /// MapFrame should appear. The MapFrame should be close to the
  86. /// BookmarkList.
  87. /// This was originally the contact tap handler
  88. /// </summary>
  89. /// <param name="sender"></param>
  90. /// <param name="e"></param>
  91. private void BookmarkListItem_Selected(object sender, RoutedEventArgs e)
  92. {
  93. BookmarkListItem touchedBookmarkItem = sender as BookmarkListItem;
  94. Bookmark touchedBookmark = touchedBookmarkItem.Bookmark;
  95. Point centrePoint = this.Center;
  96. /* Calculate where the map frame should go */
  97. /* by default, the map frame would appear in the centre of the screen */
  98. Point result = new Point(384, 512);
  99. Point leftPt = new Point(0, 0);
  100. Point topPt = new Point(0, 0);
  101. Point rightPt = new Point(0, 0);
  102. Point btmPt = new Point(0, 0);
  103. /* The position of the map frame depends on the orientation
  104. * of the Bookmark list itself
  105. */
  106. if (this.Orientation >= 270 && this.Orientation < 360)
  107. {
  108. double radian = Math.PI * (Math.Abs(this.Orientation - 360)) / 180.0;
  109. double y = Math.Sin(radian) * ( 20 + touchedBookmark.MapFrameWidth);
  110. double x = Math.Cos(radian) * ( 20 + touchedBookmark.MapFrameWidth);
  111. leftPt = new Point(this.Center.X - x, this.Center.Y + y);
  112. result = leftPt;
  113. if (OutOfBounds(leftPt))
  114. {
  115. x = Math.Sin(radian) * (20 + touchedBookmark.MapFrameHeight);
  116. y = Math.Cos(radian) * (20 + touchedBookmark.MapFrameHeight);
  117. topPt = new Point(this.Center.X - x, this.Center.Y - y);
  118. result = topPt;
  119. if (OutOfBounds(topPt))
  120. {
  121. y = Math.Sin(radian) * (20 + touchedBookmark.MapFrameWidth);
  122. x = Math.Cos(radian) * (20 + touchedBookmark.MapFrameWidth);
  123. rightPt = new Point(this.Center.X + x, this.Center.Y - y);
  124. result = rightPt;
  125. if (OutOfBounds(rightPt))
  126. {
  127. x = Math.Sin(radian) * (20 + touchedBookmark.MapFrameHeight);
  128. y = Math.Cos(radian) * (20 + touchedBookmark.MapFrameHeight);
  129. btmPt = new Point(this.Center.X + x, this.Center.Y + y);
  130. result = btmPt;
  131. }
  132. }
  133. }
  134. }
  135. if (this.Orientation >= 0 && this.Orientation < 90)
  136. {
  137. double radian = Math.PI * this.Orientation / 180.0;
  138. double y = Math.Sin(radian) * (20 + touchedBookmark.MapFrameWidth);
  139. double x = Math.Cos(radian) * (20 + touchedBookmark.MapFrameWidth);
  140. leftPt = new Point(this.Center.X - x, this.Center.Y - y);
  141. result = leftPt;
  142. if (OutOfBounds(leftPt))
  143. {
  144. x = Math.Sin(radian) * (touchedBookmark.MapFrameHeight);
  145. y = Math.Cos(radian) * (touchedBookmark.MapFrameHeight);
  146. topPt = new Point(this.Center.X + x, this.Center.Y - y);
  147. result = topPt;
  148. if (OutOfBounds(topPt))
  149. {
  150. y = Math.Sin(radian) * (20 + touchedBookmark.MapFrameWidth);
  151. x = Math.Cos(radian) * (20 + touchedBookmark.MapFrameWidth);
  152. rightPt = new Point(this.Center.X + x, this.Center.Y + y);
  153. result = rightPt;
  154. if (OutOfBounds(rightPt))
  155. {
  156. x = Math.Sin(radian) * (touchedBookmark.MapFrameHeight);
  157. y = Math.Cos(radian) * (touchedBookmark.MapFrameHeight);
  158. btmPt = new Point(this.Center.X - x, this.Center.Y + y);
  159. result = btmPt;
  160. }
  161. }
  162. }
  163. }
  164. if (this.Orientation >= 90 && this.Orientation < 180)
  165. {
  166. double radian = Math.PI * (Math.Abs(this.Orientation - 180)) / 180.0;
  167. double y = Math.Sin(radian) * (20 + touchedBookmark.MapFrameWidth);
  168. double x = Math.Cos(radian) * (20 + touchedBookmark.MapFrameWidth);
  169. leftPt = new Point(this.Center.X + x, this.Center.Y - y);
  170. result = leftPt;
  171. if (OutOfBounds(leftPt))
  172. {
  173. x = Math.Sin(radian) * (touchedBookmark.MapFrameHeight);
  174. y = Math.Cos(radian) * (touchedBookmark.MapFrameHeight);
  175. topPt = new Point(this.Center.X + x, this.Center.Y + y);
  176. result = topPt;
  177. if (OutOfBounds(topPt))
  178. {
  179. y = Math.Sin(radian) * (20 + touchedBookmark.MapFrameWidth);
  180. x = Math.Cos(radian) * (20 + touchedBookmark.MapFrameWidth);
  181. rightPt = new Point(this.Center.X - x, this.Center.Y + y);
  182. result = rightPt;
  183. if (OutOfBounds(rightPt))
  184. {
  185. x = Math.Sin(radian) * (touchedBookmark.MapFrameHeight);
  186. y = Math.Cos(radian) * (touchedBookmark.MapFrameHeight);
  187. btmPt = new Point(this.Center.X - x, this.Center.Y - y);
  188. result = btmPt;
  189. }
  190. }
  191. }
  192. }
  193. if (this.Orientation >= 180 && this.Orientation < 270)
  194. {
  195. double radian = Math.PI * (Math.Abs(this.Orientation - 360)) / 180.0;
  196. double y = Math.Sin(radian) * (20 + touchedBookmark.MapFrameWidth);
  197. double x = Math.Abs(Math.Cos(radian) * (20 + touchedBookmark.MapFrameWidth));
  198. leftPt = new Point(this.Center.X - x, this.Center.Y + y);
  199. result = leftPt;
  200. if (OutOfBounds(leftPt))
  201. {
  202. x = Math.Sin(radian) * (touchedBookmark.MapFrameHeight);
  203. y = Math.Abs(Math.Cos(radian) * (touchedBookmark.MapFrameHeight));
  204. topPt = new Point(this.Center.X - x, this.Center.Y + y);
  205. result = topPt;
  206. if (OutOfBounds(topPt))
  207. {
  208. y = Math.Sin(radian) * (20 + touchedBookmark.MapFrameWidth);
  209. x = Math.Abs(Math.Cos(radian) * (20 + touchedBookmark.MapFrameWidth));
  210. rightPt = new Point(this.Center.X - x, this.Center.Y - y);
  211. result = rightPt;
  212. if (OutOfBounds(rightPt))
  213. {
  214. x = Math.Sin(radian) * (touchedBookmark.MapFrameHeight);
  215. y = Math.Abs(Math.Cos(radian) * (touchedBookmark.MapFrameHeight));
  216. btmPt = new Point(this.Center.X + x, this.Center.Y - y);
  217. result = btmPt;
  218. }
  219. }
  220. }
  221. }
  222. MapFrame mf = MapFrameFactory.Instance.CreateMapFrame(touchedBookmark, result, this.Orientation - 90, true /*from a Bookmark list*/);
  223. BackgroundMapLayer.Instance.AddMapFrame(mf);
  224. }
  225. /// <summary>
  226. /// Determines if a point is outside the
  227. /// acceptable bounds of the screen.
  228. /// </summary>
  229. /// <param name="pt"></param>
  230. /// <returns></returns>
  231. private bool OutOfBounds(Point pt)
  232. {
  233. return pt.X < 200 || pt.X > 600|| pt.Y < 200 || pt.Y > 800;
  234. }
  235. private void Close_Button_Click(object sender, RoutedEventArgs e)
  236. {
  237. BackgroundMapLayer.Instance.RemoveBookmarkListFrame(this);
  238. }
  239. }
  240. }