CoverForm.cs 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Data;
  5. using System.Drawing;
  6. using System.IO;
  7. using System.Linq;
  8. using System.Text;
  9. using System.Threading.Tasks;
  10. using System.Windows.Forms;
  11. namespace PictureMover
  12. {
  13. public partial class CoverForm : Form
  14. {
  15. private readonly MainForm _mainForm;
  16. private string? _currentPath;
  17. public CoverForm(MainForm mainForm)
  18. {
  19. _mainForm = mainForm;
  20. InitializeComponent();
  21. MouseWheel += Form_MouseWheel;
  22. PreviewKeyDown += Form_PreviewKeyDown;
  23. }
  24. private async void Form_MouseWheel(object? sender, MouseEventArgs e)
  25. {
  26. Console.WriteLine("w " + e.Delta);
  27. if (_currentPath == null) return;
  28. await NavFile(e.Delta < 0);
  29. }
  30. private async void Form_PreviewKeyDown(object? sender, PreviewKeyDownEventArgs e)
  31. {
  32. Console.WriteLine($"k {e.KeyCode}");
  33. if (e.KeyCode == Keys.Escape) _mainForm.Close();
  34. if (_currentPath == null) return;
  35. switch (e.KeyCode)
  36. {
  37. case Keys.Home:
  38. await JumpToFile(true);
  39. break;
  40. case Keys.End:
  41. await JumpToFile(false);
  42. break;
  43. case Keys.Space:
  44. case Keys.Enter:
  45. case Keys.PageDown:
  46. await NavFile(true);
  47. break;
  48. case Keys.Back:
  49. case Keys.PageUp:
  50. await NavFile(false);
  51. break;
  52. case Keys.B:
  53. {
  54. var src = _currentPath;
  55. await NavFile(true);
  56. MoveToOuterDotSuffixDir(src, "b");
  57. break;
  58. }
  59. case Keys.S:
  60. {
  61. var src = _currentPath;
  62. await NavFile(true);
  63. MoveToOuterDotSuffixDir(src, "s");
  64. break;
  65. }
  66. case Keys.M:
  67. {
  68. var src = _currentPath;
  69. await NavFile(true);
  70. MoveToOuterDotSuffixDir(src, "m");
  71. break;
  72. }
  73. }
  74. }
  75. private void Form_DragEnter(object sender, DragEventArgs e)
  76. {
  77. if (e.Data?.GetDataPresent(DataFormats.FileDrop) != true) return;
  78. if (e.Data.GetData(DataFormats.FileDrop) is not string[] arr) return;
  79. if (arr.Length == 1 && File.Exists(arr[0])) e.Effect = DragDropEffects.Link;
  80. }
  81. private async void Form_DragDrop(object sender, DragEventArgs e)
  82. {
  83. if (e.Data?.GetData(DataFormats.FileDrop) is not string[] arr) return;
  84. if (arr.Length != 1 || !File.Exists(arr[0])) return;
  85. var path = arr[0];
  86. await ShowFileAsync(path);
  87. }
  88. private void timer1_Tick(object sender, EventArgs e)
  89. {
  90. var location = _mainForm.PointToScreen(Point.Empty);
  91. if (Location != location) Location = location;
  92. var size = _mainForm.ClientSize;
  93. if (Size != size) Size = size;
  94. }
  95. private async Task NavFile(bool isNext)
  96. {
  97. if (_currentPath == null) return;
  98. var nears = GetFilesAround(_currentPath);
  99. if (nears.Length == 0) return;
  100. var index = Array.IndexOf(nears, _currentPath);
  101. if (isNext)
  102. {
  103. var lastIndex = nears.Length - 1;
  104. if (index == lastIndex) return;
  105. var nextIndex = index + 1;
  106. if (nextIndex >= nears.Length) nextIndex = lastIndex;
  107. var next = nears[nextIndex];
  108. await ShowFileAsync(next);
  109. }
  110. else
  111. {
  112. if (index > 0)
  113. {
  114. var nextIndex = index - 1;
  115. var next = nears[nextIndex];
  116. await ShowFileAsync(next);
  117. }
  118. }
  119. }
  120. private async Task JumpToFile(bool first)
  121. {
  122. if (_currentPath == null) return;
  123. var nears = GetFilesAround(_currentPath);
  124. if (nears.Length == 0) return;
  125. var nextIndex = first ? 0 : nears.Length - 1;
  126. var next = nears[nextIndex];
  127. await ShowFileAsync(next);
  128. }
  129. private async Task ShowFileAsync(string path)
  130. {
  131. await _mainForm.webView21.EnsureCoreWebView2Async();
  132. var nears = GetFilesAround(path);
  133. if (nears.Length == 0)
  134. {
  135. _mainForm.Text = "- no file -";
  136. _mainForm.webView21.CoreWebView2.Navigate("about:blank");
  137. _currentPath = null;
  138. return;
  139. }
  140. var index = Array.IndexOf(nears, path);
  141. _mainForm.Text = $"({nears.Length}/{index + 1}) {path}";
  142. _mainForm.webView21.CoreWebView2.Navigate("file:///" + path);
  143. _currentPath = path;
  144. }
  145. private void MoveToOuterDotSuffixDir(string src, string s)
  146. {
  147. if (File.Exists(src))
  148. {
  149. var dir = Path.GetDirectoryName(src);
  150. var parentDir = Path.GetDirectoryName(dir);
  151. var name = Path.GetFileName(dir) + "." + s;
  152. var dstDir = Path.Combine(parentDir, name);
  153. if (Directory.Exists(dstDir) == false) Directory.CreateDirectory(dstDir);
  154. var dst = Path.Combine(dstDir, Path.GetFileName(src));
  155. File.Move(src, dst);
  156. }
  157. if (_currentPath == null) return;
  158. var nears = GetFilesAround(_currentPath);
  159. var index = Array.IndexOf(nears, _currentPath);
  160. _mainForm.Text = $"({nears.Length}/{index + 1}) {_currentPath}";
  161. }
  162. private static string[] GetFilesAround(string filePath)
  163. {
  164. var ext = Path.GetExtension(filePath);
  165. var dir = Path.GetDirectoryName(filePath);
  166. return Directory.GetFiles(dir, "*" + ext);
  167. }
  168. }
  169. }