CoverForm.cs 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186
  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. }
  67. }
  68. private void Form_DragEnter(object sender, DragEventArgs e)
  69. {
  70. if (e.Data?.GetDataPresent(DataFormats.FileDrop) != true) return;
  71. if (e.Data.GetData(DataFormats.FileDrop) is not string[] arr) return;
  72. if (arr.Length == 1 && File.Exists(arr[0])) e.Effect = DragDropEffects.Link;
  73. }
  74. private async void Form_DragDrop(object sender, DragEventArgs e)
  75. {
  76. if (e.Data?.GetData(DataFormats.FileDrop) is not string[] arr) return;
  77. if (arr.Length != 1 || !File.Exists(arr[0])) return;
  78. var path = arr[0];
  79. await ShowFileAsync(path);
  80. }
  81. private void timer1_Tick(object sender, EventArgs e)
  82. {
  83. var location = _mainForm.PointToScreen(Point.Empty);
  84. if (Location != location) Location = location;
  85. var size = _mainForm.ClientSize;
  86. if (Size != size) Size = size;
  87. }
  88. private async Task NavFile(bool isNext)
  89. {
  90. if (_currentPath == null) return;
  91. var nears = GetFilesAround(_currentPath);
  92. if (nears.Length == 0) return;
  93. var index = Array.IndexOf(nears, _currentPath);
  94. if (isNext)
  95. {
  96. var lastIndex = nears.Length - 1;
  97. if (index == lastIndex) return;
  98. var nextIndex = index + 1;
  99. if (nextIndex >= nears.Length) nextIndex = lastIndex;
  100. var next = nears[nextIndex];
  101. await ShowFileAsync(next);
  102. }
  103. else
  104. {
  105. if (index > 0)
  106. {
  107. var nextIndex = index - 1;
  108. var next = nears[nextIndex];
  109. await ShowFileAsync(next);
  110. }
  111. }
  112. }
  113. private async Task JumpToFile(bool first)
  114. {
  115. if (_currentPath == null) return;
  116. var nears = GetFilesAround(_currentPath);
  117. if (nears.Length == 0) return;
  118. var nextIndex = first ? 0 : nears.Length - 1;
  119. var next = nears[nextIndex];
  120. await ShowFileAsync(next);
  121. }
  122. private async Task ShowFileAsync(string path)
  123. {
  124. await _mainForm.webView21.EnsureCoreWebView2Async();
  125. var nears = GetFilesAround(path);
  126. if (nears.Length == 0)
  127. {
  128. _mainForm.Text = "- no file -";
  129. _mainForm.webView21.CoreWebView2.Navigate("about:blank");
  130. _currentPath = null;
  131. return;
  132. }
  133. var index = Array.IndexOf(nears, path);
  134. _mainForm.Text = $"({nears.Length}/{index + 1}) {path}";
  135. _mainForm.webView21.CoreWebView2.Navigate("file:///" + path);
  136. _currentPath = path;
  137. }
  138. private void MoveToOuterDotSuffixDir(string src, string s)
  139. {
  140. if (File.Exists(src))
  141. {
  142. var dir = Path.GetDirectoryName(src);
  143. var parentDir = Path.GetDirectoryName(dir);
  144. var name = Path.GetFileName(dir) + "." + s;
  145. var dstDir = Path.Combine(parentDir, name);
  146. if (Directory.Exists(dstDir) == false) Directory.CreateDirectory(dstDir);
  147. var dst = Path.Combine(dstDir, Path.GetFileName(src));
  148. File.Move(src, dst);
  149. }
  150. if (_currentPath == null) return;
  151. var nears = GetFilesAround(_currentPath);
  152. var index = Array.IndexOf(nears, _currentPath);
  153. _mainForm.Text = $"({nears.Length}/{index + 1}) {_currentPath}";
  154. }
  155. private static string[] GetFilesAround(string filePath)
  156. {
  157. var ext = Path.GetExtension(filePath);
  158. var dir = Path.GetDirectoryName(filePath);
  159. return Directory.GetFiles(dir, "*" + ext);
  160. }
  161. }
  162. }