Ejemplo n.º 1
0
        private void ConversionCompleted(List <string> converted, Arguments arguments)
        {
            if (InvokeRequired)
            {
                BeginInvoke(new Action(() => ConversionCompleted(converted, arguments)));
                return;
            }

            if (converted.Count > 0)
            {
                var  afterConvert = arguments.AfterConvert;
                bool confirm      = true;

                if (afterConvert == AfterConvert.Ask)
                {
                    confirm = false;

                    var taskDialog = TaskDialogEx.CreateDialog("Do you want to deleted the converted audio files?", $"{converted.Count} files were converted successfully.", TaskDialogIcon.Information);

                    taskDialog.CommonButtons           = TaskDialogCommonButtons.Cancel;
                    taskDialog.AllowDialogCancellation = true;
                    taskDialog.Buttons = new[]
                    {
                        new TaskDialogButton
                        {
                            ButtonText = "Move to Recycle Bin",
                            ButtonId   = 1
                        },
                        new TaskDialogButton
                        {
                            ButtonText = "Delete Permanently",
                            ButtonId   = 2
                        }
                    };
                    taskDialog.UseCommandLinks = true;

                    var result = taskDialog.Show(this);

                    switch (result)
                    {
                    case 1:
                        afterConvert = AfterConvert.Recycle;
                        break;

                    case 2:
                        afterConvert = AfterConvert.Delete;
                        break;
                    }
                }

                if (afterConvert != AfterConvert.Ask)
                {
                    DeleteConverted(converted, afterConvert == AfterConvert.Recycle, confirm);
                }
            }

            Dispose();
        }
Ejemplo n.º 2
0
 private void MainForm_FormClosing(object sender, FormClosingEventArgs e)
 {
     if (e.CloseReason == CloseReason.UserClosing)
     {
         var result = TaskDialogEx.Confirm(this, "Are you sure you want to cancel conversion?");
         if (result != DialogResult.Yes)
         {
             e.Cancel = true;
         }
     }
 }
Ejemplo n.º 3
0
        private void StartConversion(Arguments arguments)
        {
            string path = Path.GetFullPath(arguments.Directory);

            if (path[path.Length - 1] == Path.DirectorySeparatorChar)
            {
                path = path.Substring(0, path.Length - 1);
            }

            var files = new List <string>();

            ProgressForm.Show(this, Text, progress =>
            {
                progress.SetLabel("Finding files to convert");
                progress.SetProgress(-1);

                foreach (string fileName in Directory.GetFiles(path, "*.wav", SearchOption.AllDirectories))
                {
                    if (!fileName.StartsWith(path, StringComparison.OrdinalIgnoreCase))
                    {
                        throw new Exception("Expected found path to start with prefix");
                    }
                    string subFileName = fileName.Substring(path.Length);

                    if (Include(subFileName, arguments))
                    {
                        files.Add(fileName);
                    }
                }
            });

            if (files.Count == 0)
            {
                TaskDialogEx.Error(this, "Found no files to convert.", icon: TaskDialogIcon.Information);
                Dispose();
                return;
            }

            var controls = QueueFiles(files);

            var result = TaskDialogEx.Confirm(this, $"Found {files.Count} to convert. Do you want to start the conversion?", icon: TaskDialogIcon.Information);

            if (result != DialogResult.Yes)
            {
                Dispose();
                return;
            }

            StartConversion(files, controls, arguments);
        }
Ejemplo n.º 4
0
        private void MainForm_Shown(object sender, EventArgs e)
        {
            Arguments arguments;

            try
            {
                arguments = Arguments.Parse(_args);
            }
            catch (Exception ex)
            {
                TaskDialogEx.Error(this, "Failed to parse arguments.", ex.Message);
                Dispose();
                return;
            }

            StartConversion(arguments);
        }