-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathForm1.cs
More file actions
457 lines (396 loc) · 17.6 KB
/
Form1.cs
File metadata and controls
457 lines (396 loc) · 17.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
using System.Diagnostics;
using System.Globalization;
using System.Threading;
using AudioConverter.Core;
using AudioConverter.Helpers;
using AudioConverter.Models;
namespace AudioConverter
{
public partial class Form1 : Form
{
private readonly Core.Converter _converter;
private CancellationTokenSource _mainCts = new();
private bool _isConverting = false;
public Form1()
{
InitializeComponent();
_converter = new Core.Converter();
_converter.JobProgress += OnJobProgress;
dgvJobs.DragEnter += dgvJobs_DragEnter;
dgvJobs.DragDrop += dgvJobs_DragDrop;
dgvJobs.CellClick += dgvJobs_CellClick;
SetupAppearance();
this.Load += Form1_Load;
this.FormClosing += Form1_FormClosing;
}
private void OnJobProgress(Guid jobId, ConversionStatus status, string message, double progress)
{
if (this.InvokeRequired)
{
this.Invoke(() => OnJobProgress(jobId, status, message, progress));
return;
}
foreach (DataGridViewRow row in dgvJobs.Rows)
{
if (row.Tag is ConversionJob job && job.Id == jobId)
{
row.Cells["Progress"].Value = progress;
row.Cells["Status"].Value = message;
bool inProgress = status == ConversionStatus.InProgress;
if (inProgress)
{
row.Cells["Cancel"].Value = "Cancel";
row.Cells["Cancel"].Style.BackColor = Color.DarkRed;
row.Cells["Cancel"].Style.ForeColor = Color.White;
}
else
{
row.Cells["Cancel"].Value = string.Empty;
row.Cells["Cancel"].Style.BackColor = row.DefaultCellStyle.BackColor;
row.Cells["Cancel"].Style.ForeColor = row.DefaultCellStyle.ForeColor;
}
if (status == ConversionStatus.Completed || status == ConversionStatus.Failed || status == ConversionStatus.Cancelled)
{
job.Cts?.Dispose();
job.Cts = null;
}
break;
}
}
}
private void SetupAppearance()
{
this.BackColor = System.Drawing.ColorTranslator.FromHtml("#023047");
this.ForeColor = Color.White;
this.FormBorderStyle = FormBorderStyle.FixedSingle;
this.MaximizeBox = false;
this.StartPosition = FormStartPosition.CenterScreen;
var labels = new[] { labelSampleRate, labelChannels, labelBitDepth, labelOutputFolder, labelOutputFormat };
foreach (var label in labels)
{
label.Font = new Font("Segoe UI", 9F, FontStyle.Bold);
label.ForeColor = Color.White;
}
var comboBoxes = new[] { comboBoxSampleRate, comboBoxChannels, comboBoxBitDepth, comboBoxOutputFormat };
foreach (var cb in comboBoxes)
{
cb.BackColor = System.Drawing.ColorTranslator.FromHtml("#0B2027");
cb.ForeColor = Color.White;
cb.FlatStyle = FlatStyle.Flat;
}
textOutputFolder.BackColor = System.Drawing.ColorTranslator.FromHtml("#0B2027");
textOutputFolder.ForeColor = Color.White;
textOutputFolder.BorderStyle = BorderStyle.FixedSingle;
}
private void SetupJobsGrid()
{
dgvJobs.AutoGenerateColumns = false;
dgvJobs.Columns.Clear();
dgvJobs.AutoSizeColumnsMode = DataGridViewAutoSizeColumnsMode.Fill; // Let columns fill space intelligently
var fileNameCol = new DataGridViewTextBoxColumn
{
Name = "FileName",
HeaderText = LocalizationManager.GetString("ListView_File") ?? "File",
DataPropertyName = "FileName",
ReadOnly = true,
AutoSizeMode = DataGridViewAutoSizeColumnMode.Fill, // Fill remaining space
Resizable = DataGridViewTriState.False
};
fileNameCol.DefaultCellStyle.Alignment = DataGridViewContentAlignment.MiddleLeft;
var progressCol = new DataGridViewProgressColumn
{
Name = "Progress",
HeaderText = LocalizationManager.GetString("ListView_Progress") ?? "Progress",
DataPropertyName = "Progress",
ReadOnly = true,
Width = 100, // User requested 100px
AutoSizeMode = DataGridViewAutoSizeColumnMode.None, // Ensure fixed width
Resizable = DataGridViewTriState.False
};
progressCol.DefaultCellStyle.Alignment = DataGridViewContentAlignment.MiddleRight;
var statusCol = new DataGridViewTextBoxColumn
{
Name = "Status",
HeaderText = LocalizationManager.GetString("ListView_Status") ?? "Status",
DataPropertyName = "StatusMessage",
ReadOnly = true,
Width = 80, // User requested 80px
AutoSizeMode = DataGridViewAutoSizeColumnMode.None, // Ensure fixed width
Resizable = DataGridViewTriState.False
};
statusCol.DefaultCellStyle.Alignment = DataGridViewContentAlignment.MiddleLeft;
var cancelCol = new DataGridViewButtonColumn
{
Name = "Cancel",
HeaderText = LocalizationManager.GetString("ListView_Cancel") ?? "Cancel",
UseColumnTextForButtonValue = true,
Width = 80, // User requested 80px
AutoSizeMode = DataGridViewAutoSizeColumnMode.None, // Ensure fixed width
FlatStyle = FlatStyle.Flat,
Resizable = DataGridViewTriState.False
};
cancelCol.DefaultCellStyle.ForeColor = Color.Black;
cancelCol.DefaultCellStyle.BackColor = dgvJobs.DefaultCellStyle.BackColor;
cancelCol.DefaultCellStyle.Alignment = DataGridViewContentAlignment.MiddleCenter;
dgvJobs.Columns.AddRange(fileNameCol, progressCol, statusCol, cancelCol);
}
private void Form1_Load(object? sender, EventArgs e)
{
LocalizationManager.CurrentLanguage = CultureInfo.CurrentCulture.TwoLetterISOLanguageName;
LocalizationManager.ApplyLocalization(this);
SetupJobsGrid();
LoadImages();
PopulateOptions();
buttonAddFiles.Click += ButtonAddFiles_Click;
buttonConvert.Click += ButtonConvert_Click;
buttonInfo.Click += ButtonInfo_Click;
buttonExit.Click += ButtonExit_Click;
buttonSelectFolder.Click += ButtonSelectFolder_Click;
}
private void Form1_FormClosing(object? sender, FormClosingEventArgs e)
{
if (_mainCts != null && !_mainCts.IsCancellationRequested)
{
_mainCts.Cancel();
}
_converter.JobProgress -= OnJobProgress;
foreach (DataGridViewRow row in dgvJobs.Rows)
{
if (row.Tag is ConversionJob job)
{
job.Cts?.Dispose();
}
}
_mainCts?.Dispose();
}
private void LoadImages()
{
try
{
Image? titleImage = ImageUtils.CargarImagenDesdeRecurso("titulo.png");
if (titleImage != null) this.pictureBoxTitle.Image = titleImage;
Image? buttonImage = ImageUtils.CargarImagenDesdeRecurso("boton.png");
if (buttonImage != null)
{
var buttons = new[] { buttonAddFiles, buttonConvert, buttonInfo, buttonExit, buttonSelectFolder };
foreach (var btn in buttons)
{
btn.BackgroundImage = buttonImage;
btn.BackgroundImageLayout = ImageLayout.Stretch;
}
}
var assembly = System.Reflection.Assembly.GetExecutingAssembly();
using (Stream? iconStream = assembly.GetManifestResourceStream("AudioConverter.images.icon.ico"))
{
if (iconStream != null) this.Icon = new Icon(iconStream);
}
}
catch (Exception ex)
{
CustomMessageBoxForm.Show(this, $"Error loading images: {ex.Message}", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
}
}
private void PopulateOptions()
{
comboBoxSampleRate.Items.AddRange(new object[] { "44100 Hz", "48000 Hz", "88200 Hz", "96000 Hz" });
comboBoxSampleRate.SelectedIndex = 1;
comboBoxChannels.Items.AddRange(new object[] { "Stereo", "Mono" });
comboBoxChannels.SelectedIndex = 0;
comboBoxBitDepth.Items.AddRange(new object[] { "16-bit", "24-bit" });
comboBoxBitDepth.SelectedIndex = 0;
comboBoxOutputFormat.Items.AddRange(new object[] { "WAV", "MP3", "FLAC" });
comboBoxOutputFormat.SelectedIndex = 0;
}
private void AddFileToQueue(string filePath)
{
var options = new ConversionOptions
{
SampleRate = int.Parse(comboBoxSampleRate.Text.Split(' ')[0]),
Channels = comboBoxChannels.Text == "Stereo" ? 2 : 1,
BitDepth = int.Parse(comboBoxBitDepth.Text.Split('-')[0]),
OutputFormat = comboBoxOutputFormat.Text
};
var job = new ConversionJob(filePath, options);
_converter.AddJob(job);
var rowIdx = dgvJobs.Rows.Add(Path.GetFileName(filePath), 0.0, "Pending", "");
dgvJobs.Rows[rowIdx].Tag = job;
}
private void ButtonAddFiles_Click(object? sender, EventArgs e)
{
using (var ofd = new OpenFileDialog())
{
ofd.Filter = "Audio/Video Files|*.mp3;*.mp4;*.m4a;*.aac;*.flac;*.ogg;*.wma;*.wav;*.mov;*.mkv|All Files|*.*";
ofd.Multiselect = true;
if (ofd.ShowDialog() == DialogResult.OK)
{
foreach (string file in ofd.FileNames)
{
AddFileToQueue(file);
}
}
}
}
private async void ButtonConvert_Click(object? sender, EventArgs e)
{
if (dgvJobs.Rows.Count == 0)
{
CustomMessageBoxForm.Show(this, LocalizationManager.GetString("Conversion_NoFiles") ?? "No files to convert. Please add files first.", "Error", MessageBoxButtons.OK, MessageBoxIcon.Warning);
return;
}
_isConverting = true;
ToggleControls(false);
try
{
// Dispose the old CTS if it exists and create a new one for the new batch.
_mainCts?.Dispose();
_mainCts = new CancellationTokenSource();
// Create linked CTS for each job so we can cancel them individually
foreach (DataGridViewRow row in dgvJobs.Rows)
{
if (row.Tag is ConversionJob job && (job.Status == ConversionStatus.Pending || job.Status == ConversionStatus.Failed))
{
job.Cts = CancellationTokenSource.CreateLinkedTokenSource(_mainCts.Token);
}
}
var batchResult = await _converter.StartConversionAsync(textOutputFolder.Text, _mainCts.Token);
if (batchResult == Core.BatchConversionStatus.Cancelled)
{
CustomMessageBoxForm.Show(this,
LocalizationManager.GetString("Conversion_Cancelled") ?? "Conversion process cancelled.",
LocalizationManager.GetString("Conversion_Title_Cancelled") ?? "Conversion Cancelled",
MessageBoxButtons.OK,
MessageBoxIcon.Warning);
}
else
{
CustomMessageBoxForm.Show(this,
LocalizationManager.GetString("Conversion_Finished") ?? "Conversion process finished.",
LocalizationManager.GetString("Conversion_Title") ?? "Conversion Completed",
MessageBoxButtons.OK,
MessageBoxIcon.Information);
}
}
finally
{
_isConverting = false;
ToggleControls(true);
}
}
private void ButtonInfo_Click(object? sender, EventArgs e)
{
using (var aboutBox = new AboutBoxForm())
{
aboutBox.ShowDialog(this);
}
}
private void ButtonExit_Click(object? sender, EventArgs e)
{
this.Close();
}
private void ButtonSelectFolder_Click(object? sender, EventArgs e)
{
using (var fbd = new FolderBrowserDialog())
{
if (fbd.ShowDialog() == DialogResult.OK)
{
textOutputFolder.Text = fbd.SelectedPath;
}
}
}
private void dgvJobs_DragEnter(object? sender, DragEventArgs e)
{
if (e.Data != null && e.Data.GetDataPresent(DataFormats.FileDrop))
{
e.Effect = DragDropEffects.Copy;
}
else
{
e.Effect = DragDropEffects.None;
}
}
private void dgvJobs_DragDrop(object? sender, DragEventArgs e)
{
if (_isConverting) return;
if (e.Data != null)
{
string[]? files = e.Data.GetData(DataFormats.FileDrop) as string[];
if (files != null)
{
foreach (string file in files)
{
AddFileToQueue(file);
}
}
}
}
private void dgvJobs_CellClick(object? sender, DataGridViewCellEventArgs e)
{
if (e.RowIndex < 0 || e.ColumnIndex != dgvJobs.Columns["Cancel"].Index)
return;
if (dgvJobs.Rows[e.RowIndex].Tag is ConversionJob job)
{
if (job.Status == ConversionStatus.InProgress)
{
// Show confirmation dialog before canceling and removing.
var confirmResult = CustomMessageBoxForm.Show(
this,
LocalizationManager.GetString("Confirm_CancelJob_Message") ?? "Are you sure you want to cancel this job and remove it from the list?",
LocalizationManager.GetString("Confirm_CancelJob_Title") ?? "Confirm Cancellation",
MessageBoxButtons.YesNo,
MessageBoxIcon.Question);
if (confirmResult == DialogResult.Yes)
{
Logger.Log($"[UI] User confirmed cancellation for job {job.Id} (File: {Path.GetFileName(job.InputFilePath)}).");
job.Cts?.Cancel(); // Trigger cancellation in the worker.
// Important: Remove the job from the internal list in Converter immediately
_converter.RemoveJob(job.Id);
dgvJobs.Rows.RemoveAt(e.RowIndex); // Remove from the UI grid
}
else
{
Logger.Log($"[UI] User cancelled cancellation for job {job.Id}.");
}
}
else
{
Logger.Log($"[UI] Job {job.Id} (File: {Path.GetFileName(job.InputFilePath)}) is not in progress. Current status: {job.Status}. Cannot cancel.");
}
}
}
private void ToggleControls(bool enabled)
{
buttonAddFiles.Enabled = enabled;
buttonConvert.Enabled = enabled;
buttonSelectFolder.Enabled = enabled;
comboBoxSampleRate.Enabled = enabled;
comboBoxChannels.Enabled = enabled;
comboBoxBitDepth.Enabled = enabled;
comboBoxOutputFormat.Enabled = enabled;
}
protected override bool ProcessCmdKey(ref Message msg, Keys keyData)
{
if (keyData == Keys.Delete)
{
if (_isConverting) return true; // Block delete operations during conversion
if (dgvJobs.SelectedRows.Count > 0)
{
var rowsToRemove = dgvJobs.SelectedRows.Cast<DataGridViewRow>().ToList();
foreach (DataGridViewRow row in rowsToRemove)
{
if (row.Tag is ConversionJob job)
{
if (job.Status == ConversionStatus.InProgress)
{
job.Cts?.Cancel(); // Cancel if it's running
}
_converter.RemoveJob(job.Id);
dgvJobs.Rows.Remove(row);
}
}
return true;
}
}
return base.ProcessCmdKey(ref msg, keyData);
}
}
}