/FileHatchery/FileHatchery/Browser/DirectoryBrowser.cs

https://code.google.com/p/filehatchery/ · C# · 295 lines · 258 code · 23 blank · 14 comment · 57 complexity · 87000d7f742f6ad84aa9af7c2591824a MD5 · raw file

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.IO;
  6. using System.Windows.Forms;
  7. using System.Drawing;
  8. using System.Reflection;
  9. using System.Runtime.InteropServices;
  10. namespace FileHatchery
  11. {
  12. public partial class DirectoryBrowser : IBrowser, IKeyHandler
  13. {
  14. DirectoryInfo m_CurrentDir;
  15. List<IBrowserItem> m_ItemList;
  16. Selection m_curSelection;
  17. int m_CursorIndex = -1;
  18. int m_RowSize;
  19. Algorithm.StupidSearcher m_Searcher;
  20. bool m_ShowHiddenFiles = false;
  21. public event EventHandler DirectoryChanged;
  22. public event EventHandler CursorChanged;
  23. public event EventHandler DirectoryChanging;
  24. public bool ShowHiddenFiles
  25. {
  26. get
  27. {
  28. return m_ShowHiddenFiles;
  29. }
  30. set
  31. {
  32. if (m_ShowHiddenFiles != value)
  33. {
  34. m_ShowHiddenFiles = value;
  35. Refresh();
  36. }
  37. }
  38. }
  39. public void MarkItem(IBrowserItem item)
  40. {
  41. m_curSelection.MarkItem(item);
  42. }
  43. public Selection Selection
  44. {
  45. get
  46. {
  47. return m_curSelection;
  48. }
  49. }
  50. public IEnumerable<IBrowserItem> CurSelItems
  51. {
  52. get
  53. {
  54. if (m_curSelection.Count == 0)
  55. {
  56. List<IBrowserItem> list = new List<IBrowserItem>();
  57. list.Add(Cursor);
  58. return list;
  59. }
  60. else
  61. {
  62. return m_curSelection.Context;
  63. }
  64. }
  65. }
  66. public DirectoryBrowser()
  67. {
  68. try
  69. {
  70. m_CurrentDir = null;
  71. m_curSelection = new Selection();
  72. m_Searcher = new FileHatchery.Algorithm.StupidSearcher();
  73. DirectoryChanged += delegate(object obj, EventArgs e)
  74. {
  75. m_curSelection.clear();
  76. };
  77. }
  78. catch (Exception EE)
  79. {
  80. MessageBox.Show(EE.Message);
  81. }
  82. }
  83. public IBrowserItem Cursor
  84. {
  85. get
  86. {
  87. if(m_CursorIndex < 0 || m_ItemList.Count <= m_CursorIndex) return null;
  88. return m_ItemList[CursorIndex];
  89. }
  90. set
  91. {
  92. if (value == null)
  93. {
  94. CursorIndex = -1;
  95. return;
  96. }
  97. for (int i = 0; i < m_ItemList.Count; i++)
  98. {
  99. if (m_ItemList[i] == value)
  100. {
  101. CursorIndex = i;
  102. return;
  103. }
  104. }
  105. CursorIndex = -1;
  106. }
  107. }
  108. /// <summary>
  109. /// ???? ??? ??? ?? ???.
  110. /// </summary>
  111. public void Refresh()
  112. {
  113. {
  114. var temp = DirectoryChanging;
  115. if (temp != null)
  116. temp(this, EventArgs.Empty);
  117. }
  118. string fullPath = Cursor.FullPath;
  119. ReadDirectoryContents();
  120. {
  121. EventHandler temp = DirectoryChanged;
  122. if (temp != null)
  123. temp(this, EventArgs.Empty);
  124. }
  125. SelectItem(fullPath);
  126. }
  127. /// <summary>
  128. /// ?? ??? ??? ????.
  129. /// </summary>
  130. /// <param name="fullpath">?? ??? ??</param>
  131. public void SelectItem(string fullpath)
  132. {
  133. if (Cursor.FullPath == fullpath) return;
  134. int curpos = m_ItemList.FindIndex(
  135. delegate(IBrowserItem it)
  136. {
  137. return it.FullPath == fullpath;
  138. });
  139. CursorIndex = curpos;
  140. }
  141. /// <summary>
  142. /// ?? IBrowserItem ??? ??? ????.
  143. /// </summary>
  144. /// <param name="item">??? ????? ?? ??</param>
  145. public void SelectItem(IBrowserItem item)
  146. {
  147. if (Cursor == item) return;
  148. try
  149. {
  150. int curpos = m_ItemList.FindIndex(delegate(IBrowserItem it)
  151. {
  152. return it == item;
  153. });
  154. CursorIndex = curpos;
  155. }
  156. catch (System.ArgumentNullException EE)
  157. {
  158. MessageBox.Show(EE.Message);
  159. // ignore
  160. }
  161. }
  162. public int CursorIndex
  163. {
  164. get
  165. {
  166. return m_CursorIndex;
  167. }
  168. set
  169. {
  170. IBrowserItem prevItem = Cursor, newItem = null;
  171. m_CursorIndex = value;
  172. if (m_CursorIndex < 0) m_CursorIndex = 0;
  173. if (m_CursorIndex >= m_ItemList.Count) m_CursorIndex = m_ItemList.Count - 1;
  174. if (m_CursorIndex >= 0 && m_CursorIndex < m_ItemList.Count)
  175. newItem = m_ItemList[m_CursorIndex];
  176. if (prevItem == newItem && (prevItem.State & BrowserItemState.Selected) == BrowserItemState.Selected)
  177. {
  178. return;
  179. }
  180. if(prevItem != null)
  181. prevItem.State = prevItem.State & (~BrowserItemState.Selected);
  182. if(newItem != null)
  183. newItem.State = newItem.State | BrowserItemState.Selected;
  184. EventHandler temp = CursorChanged;
  185. if (temp != null)
  186. temp(this, EventArgs.Empty);
  187. }
  188. }
  189. private void SetNewDirectory(DirectoryInfo dir)
  190. {
  191. DirectoryInfo prev = m_CurrentDir;
  192. m_CurrentDir = dir;
  193. try
  194. {
  195. var tmp1 = DirectoryChanging;
  196. if(tmp1 != null)
  197. tmp1(this, EventArgs.Empty);
  198. ReadDirectoryContents();
  199. var tmp2 = DirectoryChanged;
  200. if (tmp2 != null)
  201. tmp2(this, EventArgs.Empty);
  202. Directory.SetCurrentDirectory(dir.FullName);
  203. }
  204. catch (Exception EE)
  205. {
  206. MessageBox.Show(EE.Message);
  207. m_CurrentDir = prev;
  208. ReadDirectoryContents();
  209. }
  210. }
  211. public DirectoryInfo CurrentDir
  212. {
  213. get
  214. {
  215. return m_CurrentDir;
  216. }
  217. set
  218. {
  219. // FIXME: check really changed
  220. if (m_CurrentDir != null && value.FullName == m_CurrentDir.FullName) return;
  221. SetNewDirectory(value);
  222. }
  223. }
  224. public List<IBrowserItem> Items
  225. {
  226. get
  227. {
  228. return m_ItemList;
  229. }
  230. }
  231. private void ReadDirectoryContents()
  232. {
  233. if (m_CurrentDir == null) return;
  234. m_ItemList = new List<IBrowserItem>();
  235. if (m_CurrentDir.Parent != null)
  236. {
  237. IBrowserItem item = new DirectoryItem(m_CurrentDir.Parent, "..", this);
  238. item.State = item.State | BrowserItemState.UnMarkable;
  239. m_ItemList.Add(item);
  240. }
  241. foreach (DirectoryInfo dir in m_CurrentDir.GetDirectories())
  242. {
  243. if (ShowHiddenFiles == false && (dir.Attributes & FileAttributes.Hidden) == FileAttributes.Hidden) continue;
  244. m_ItemList.Add(new DirectoryItem(dir, dir.Name, this));
  245. }
  246. foreach (FileInfo file in m_CurrentDir.GetFiles())
  247. {
  248. if (ShowHiddenFiles == false && (file.Attributes & FileAttributes.Hidden) == FileAttributes.Hidden) continue;
  249. m_ItemList.Add(new FileItem(file, this));
  250. }
  251. //FIXME: Directory must have 1 or more contents.
  252. if (m_ItemList.Count == 0)
  253. {
  254. IBrowserItem item = new DirectoryItem(m_CurrentDir, ".", this);
  255. item.State = item.State | BrowserItemState.UnMarkable;
  256. m_ItemList.Add(item);
  257. }
  258. CursorIndex = 0;
  259. }
  260. public void Open(string npath)
  261. {
  262. try
  263. {
  264. CurrentDir = new DirectoryInfo(npath);
  265. }
  266. catch (Exception EE)
  267. {
  268. MessageBox.Show(EE.Message);
  269. }
  270. }
  271. };
  272. }