OSDN Git Service

LinGui: don't disable subme 10 when psy-rd is 0
[handbrake-jp/handbrake-jp-git.git] / win / C# / frmMain.cs
index 69e850a..b6b156c 100644 (file)
@@ -22,7 +22,7 @@ namespace Handbrake
     public partial class frmMain : Form\r
     {\r
         // Objects which may be used by one or more other objects *************\r
-        QueueHandler encodeQueue = new QueueHandler();\r
+        EncodeAndQueueHandler encodeQueue = new EncodeAndQueueHandler();\r
         PresetsHandler presetHandler = new PresetsHandler();\r
         QueryGenerator queryGen = new QueryGenerator();\r
 \r
@@ -31,8 +31,10 @@ namespace Handbrake
         private DVD thisDVD;\r
         private frmQueue queueWindow;\r
         private frmPreview qtpreview;\r
+        private frmActivityWindow ActivityWindow;\r
         private Form splash;\r
         public string sourcePath;\r
+        private string lastAction;\r
 \r
         // Delegates **********************************************************\r
         private delegate void UpdateWindowHandler();\r
@@ -117,6 +119,9 @@ namespace Handbrake
             if (Properties.Settings.Default.tooltipEnable)\r
                 ToolTip.Active = true;\r
 \r
+            // Register with Growl (if not using Growl for the encoding completion action, this wont hurt anything)\r
+            GrowlCommunicator.Register();\r
+\r
             //Finished Loading\r
             lblStatus.Text = "Loading Complete!";\r
             Application.DoEvents();\r
@@ -164,7 +169,7 @@ namespace Handbrake
                 DialogResult result = MessageBox.Show("HandBrake has detected unfinished items on the queue from the last time the application was launched. Would you like to recover these?", "Queue Recovery Possible", MessageBoxButtons.YesNo, MessageBoxIcon.Question);\r
 \r
                 if (result == DialogResult.Yes)\r
-                    encodeQueue.recoverQueue("hb_queue_recovery.xml"); // Start Recovery\r
+                    encodeQueue.LoadQueueFromFile("hb_queue_recovery.xml"); // Start Recovery\r
                 else\r
                 {\r
                     // Remove the Queue recovery file if the user doesn't want to recovery the last queue.\r
@@ -188,9 +193,9 @@ namespace Handbrake
                 this.Resize += new EventHandler(frmMain_Resize);\r
 \r
             // Handle Encode Start / Finish / Pause\r
-            encodeQueue.OnEncodeEnded += new EventHandler(encodeEnded);\r
-            encodeQueue.OnPaused += new EventHandler(encodePaused);\r
-            encodeQueue.OnEncodeStart += new EventHandler(encodeStarted);\r
+            encodeQueue.CurrentJobCompleted += new EventHandler(encodeEnded);\r
+            encodeQueue.QueuePauseRequested += new EventHandler(encodePaused);\r
+            encodeQueue.NewJobStarted += new EventHandler(encodeStarted);\r
 \r
             // Handle a file being draged onto the GUI.\r
             this.DragEnter += new DragEventHandler(frmMain_DragEnter);\r
@@ -207,7 +212,7 @@ namespace Handbrake
             check_optimiseMP4.CheckedChanged += new EventHandler(changePresetLabel);\r
 \r
             // Picture Settings\r
-            PictureSettings.PictureSettingsChanged += new EventHandler(changePresetLabel);\r
+            //PictureSettings.PictureSettingsChanged += new EventHandler(changePresetLabel);\r
 \r
             // Filter Settings\r
             Filters.FilterSettingsChanged += new EventHandler(changePresetLabel);\r
@@ -235,7 +240,7 @@ namespace Handbrake
             check_optimiseMP4.CheckedChanged -= new EventHandler(changePresetLabel);\r
 \r
             // Picture Settings\r
-            PictureSettings.PictureSettingsChanged -= new EventHandler(changePresetLabel);\r
+            //PictureSettings.PictureSettingsChanged -= new EventHandler(changePresetLabel);\r
 \r
             // Filter Settings\r
             Filters.FilterSettingsChanged -= new EventHandler(changePresetLabel);\r
@@ -281,10 +286,7 @@ namespace Handbrake
                 else\r
                 {\r
                     if (fileList[0] != "")\r
-                    {\r
-                        setupGUIforScan(fileList[0]);\r
                         startScan(fileList[0]);\r
-                    }\r
                     else\r
                         UpdateSourceLabel();\r
                 }\r
@@ -367,9 +369,39 @@ namespace Handbrake
         {\r
             loadNormalPreset();\r
         }\r
+        private void mnu_importMacPreset_Click(object sender, EventArgs e)\r
+        {\r
+            Import imp = new Import();\r
+            if (openPreset.ShowDialog() == DialogResult.OK)\r
+            {\r
+                QueryParser parsed = imp.importMacPreset(openPreset.FileName);\r
+                if (presetHandler.checkIfUserPresetExists(parsed.PresetName + " (Imported)"))\r
+                {\r
+                    DialogResult result = MessageBox.Show("This preset appears to already exist. Would you like to overwrite it?", "Overwrite preset?",\r
+                                                           MessageBoxButtons.YesNo, MessageBoxIcon.Warning);\r
+                    if (result == DialogResult.Yes)\r
+                    {\r
+                        PresetLoader.presetLoader(this, parsed, parsed.PresetName, parsed.UsesPictureSettings);\r
+                        presetHandler.updatePreset(parsed.PresetName + " (Imported)", queryGen.generateCLIQuery(this, 0, null),\r
+                                                   parsed.UsesPictureSettings);\r
+                    }\r
+                }\r
+                else\r
+                {\r
+                    PresetLoader.presetLoader(this, parsed, parsed.PresetName, parsed.UsesPictureSettings);\r
+                    presetHandler.addPreset(parsed.PresetName, queryGen.generateCLIQuery(this, 0, null), parsed.UsesPictureSettings);\r
+\r
+                    if (presetHandler.addPreset(parsed.PresetName + " (Imported)", queryGen.generateCLIQuery(this, 0, null), parsed.UsesPictureSettings))\r
+                    {\r
+                        TreeNode preset_treeview = new TreeNode(parsed.PresetName + " (Imported)") { ForeColor = Color.Black };\r
+                        treeView_presets.Nodes.Add(preset_treeview);\r
+                    }\r
+                }\r
+            }\r
+        }\r
         private void btn_new_preset_Click(object sender, EventArgs e)\r
         {\r
-            Form preset = new frmAddPreset(this, queryGen.generateTheQuery(this), presetHandler);\r
+            Form preset = new frmAddPreset(this, queryGen.generateCLIQuery(this, 0, null), presetHandler);\r
             preset.ShowDialog();\r
         }\r
         #endregion\r
@@ -389,6 +421,7 @@ namespace Handbrake
         }\r
         private void mnu_UpdateCheck_Click(object sender, EventArgs e)\r
         {\r
+            lbl_updateCheck.Visible = true;\r
             Main.BeginCheckForUpdates(new AsyncCallback(updateCheckDoneMenu), false);\r
         }\r
         private void updateCheckDoneMenu(IAsyncResult result)\r
@@ -399,14 +432,12 @@ namespace Handbrake
                 Invoke(new MethodInvoker(() => updateCheckDoneMenu(result)));\r
                 return;\r
             }\r
-\r
             UpdateCheckInformation info;\r
-\r
             try\r
             {\r
                 // Get the information about the new build, if any, and close the window\r
                 info = Main.EndCheckForUpdates(result);\r
-                lbl_updateCheck.Visible = true;\r
+\r
                 if (info.NewVersionAvailable && info.BuildInformation != null)\r
                 {\r
                     frmUpdater updateWindow = new frmUpdater(info.BuildInformation);\r
@@ -618,10 +649,10 @@ namespace Handbrake
                 if (result == DialogResult.Yes)\r
                 {\r
                     // Pause The Queue\r
-                    encodeQueue.pauseEncodeQueue();\r
+                    encodeQueue.RequestPause();\r
 \r
                     // Allow the CLI to exit cleanly\r
-                    Win32.SetForegroundWindow((int)encodeQueue.encodeHandler.processHandle);\r
+                    Win32.SetForegroundWindow((int)encodeQueue.processHandle);\r
                     SendKeys.Send("^C");\r
 \r
                     // Update the GUI\r
@@ -630,9 +661,44 @@ namespace Handbrake
             }\r
             else\r
             {\r
-                if (encodeQueue.count() != 0 || (!string.IsNullOrEmpty(sourcePath) && string.IsNullOrEmpty(text_destination.Text)))\r
+                if (encodeQueue.Count != 0 || (!string.IsNullOrEmpty(sourcePath) && !string.IsNullOrEmpty(text_destination.Text)))\r
                 {\r
-                    String query = rtf_query.Text != "" ? rtf_query.Text : queryGen.generateTheQuery(this);\r
+                    string generatedQuery = queryGen.generateCLIQuery(this, 0, null);\r
+                    string specifiedQuery = rtf_query.Text != "" ? rtf_query.Text : queryGen.generateCLIQuery(this, 0, null);\r
+                    string query = string.Empty;\r
+\r
+                    // Check to make sure the generated query matches the GUI settings\r
+                    if (Properties.Settings.Default.PromptOnUnmatchingQueries && !string.IsNullOrEmpty(specifiedQuery) && generatedQuery != specifiedQuery)\r
+                    {\r
+                        DialogResult result = MessageBox.Show("The query under the \"Query Editor\" tab " +\r
+                            "does not match the current GUI settings. Because the manual query takes " +\r
+                            "priority over the GUI, your recently updated settings will not be taken " +\r
+                            "into account when encoding this job." + Environment.NewLine + Environment.NewLine +\r
+                            "Do you want to replace the manual query with the GUI-generated query?",\r
+                            "Manual Query does not Match GUI",\r
+                            MessageBoxButtons.YesNoCancel, MessageBoxIcon.Asterisk,\r
+                            MessageBoxDefaultButton.Button3);\r
+\r
+                        switch (result)\r
+                        {\r
+                            case DialogResult.Yes:\r
+                                // Replace the manual query with the generated one\r
+                                query = generatedQuery;\r
+                                rtf_query.Text = generatedQuery;\r
+                                break;\r
+                            case DialogResult.No:\r
+                                // Use the manual query\r
+                                query = specifiedQuery;\r
+                                break;\r
+                            case DialogResult.Cancel:\r
+                                // Don't start the encode\r
+                                return;\r
+                        }\r
+                    }\r
+                    else\r
+                    {\r
+                        query = generatedQuery;\r
+                    }\r
 \r
                     DialogResult overwrite = DialogResult.Yes;\r
                     if (text_destination.Text != "")\r
@@ -641,15 +707,17 @@ namespace Handbrake
 \r
                     if (overwrite == DialogResult.Yes)\r
                     {\r
-                        if (encodeQueue.count() == 0)\r
-                            encodeQueue.add(query, sourcePath, text_destination.Text);\r
+                        if (encodeQueue.Count == 0)\r
+                            encodeQueue.AddJob(query, sourcePath, text_destination.Text);\r
 \r
                         queueWindow.setQueue();\r
-                        if (encodeQueue.count() > 1)\r
+                        if (encodeQueue.Count > 1)\r
                             queueWindow.Show(false);\r
 \r
                         setEncodeStarted(); // Encode is running, so setup the GUI appropriately\r
-                        encodeQueue.startEncode(); // Start The Queue Encoding Process\r
+                        if (ActivityWindow != null)\r
+                            ActivityWindow.setLogView(false);\r
+                        encodeQueue.StartEncodeQueue(); // Start The Queue Encoding Process\r
                         lastAction = "encode";   // Set the last action to encode - Used for activity window.\r
                     }\r
                     this.Focus();\r
@@ -664,20 +732,20 @@ namespace Handbrake
                 MessageBox.Show("No source or destination selected.", "Warning", MessageBoxButtons.OK, MessageBoxIcon.Warning);\r
             else\r
             {\r
-                String query = queryGen.generateTheQuery(this);\r
+                String query = queryGen.generateCLIQuery(this, 0, null);\r
                 if (rtf_query.Text != "")\r
                     query = rtf_query.Text;\r
 \r
-                if (encodeQueue.checkDestinationPath(text_destination.Text))\r
+                if (encodeQueue.CheckForDestinationDuplicate(text_destination.Text))\r
                 {\r
                     DialogResult result = MessageBox.Show("There is already a queue item for this destination path. \n\n If you continue, the encode will be overwritten. Do you wish to continue?",\r
                   "Warning", MessageBoxButtons.YesNo, MessageBoxIcon.Warning);\r
                     if (result == DialogResult.Yes)\r
-                        encodeQueue.add(query, sourcePath, text_destination.Text);\r
+                        encodeQueue.AddJob(query, sourcePath, text_destination.Text);\r
 \r
                 }\r
                 else\r
-                    encodeQueue.add(query, sourcePath, text_destination.Text);\r
+                    encodeQueue.AddJob(query, sourcePath, text_destination.Text);\r
 \r
                 queueWindow.Show();\r
             }\r
@@ -709,8 +777,9 @@ namespace Handbrake
         private void btn_ActivityWindow_Click(object sender, EventArgs e)\r
         {\r
             String file = lastAction == "scan" ? "last_scan_log.txt" : "last_encode_log.txt";\r
+            if (ActivityWindow == null)\r
+                ActivityWindow = new frmActivityWindow(file, encodeQueue, this);\r
 \r
-            frmActivityWindow ActivityWindow = new frmActivityWindow(file, encodeQueue, this);\r
             ActivityWindow.Show();\r
         }\r
         #endregion\r
@@ -747,92 +816,57 @@ namespace Handbrake
         //Source\r
         private void btn_dvd_source_Click(object sender, EventArgs e)\r
         {\r
-            // Enable the creation of chapter markers.\r
-            Check_ChapterMarkers.Enabled = true;\r
-\r
-            // Set the last action to scan. \r
-            // This is used for tracking which file to load in the activity window\r
-            lastAction = "scan";\r
-            sourcePath = string.Empty;\r
-\r
             if (DVD_Open.ShowDialog() == DialogResult.OK)\r
-            {\r
-                String filename = DVD_Open.SelectedPath;\r
-\r
-                if (filename.StartsWith("\\"))\r
-                {\r
-                    MessageBox.Show(\r
-                        "Sorry, HandBrake does not support UNC file paths. \nTry mounting the share as a network drive in My Computer",\r
-                        "Warning", MessageBoxButtons.OK, MessageBoxIcon.Warning);\r
-                    UpdateSourceLabel();\r
-                }\r
-                else\r
-                {\r
-                    if (filename != "")\r
-                    {\r
-                        sourcePath = Path.GetFullPath(filename);\r
-                        setupGUIforScan(filename);\r
-                        startScan(filename);\r
-                    } else\r
-                        UpdateSourceLabel();\r
-                }\r
-            }\r
+                selectSource(DVD_Open.SelectedPath, 1);\r
             else\r
                 UpdateSourceLabel();\r
         }\r
         private void btn_file_source_Click(object sender, EventArgs e)\r
         {\r
-            // Set the last action to scan. \r
-            // This is used for tracking which file to load in the activity window\r
-            lastAction = "scan";\r
-            sourcePath = string.Empty;\r
-\r
             if (ISO_Open.ShowDialog() == DialogResult.OK)\r
-            {\r
-                String filename = ISO_Open.FileName;\r
-                if (filename.StartsWith("\\"))\r
-                    MessageBox.Show(\r
-                        "Sorry, HandBrake does not support UNC file paths. \nTry mounting the share as a network drive in My Computer",\r
-                        "Warning", MessageBoxButtons.OK, MessageBoxIcon.Warning);\r
-                else\r
-                {\r
-                    if (filename != "")\r
-                    {\r
-                        sourcePath = Path.GetFileName(filename);\r
-                        setupGUIforScan(filename);\r
-                        startScan(filename);\r
-                    } else\r
-                        UpdateSourceLabel();\r
-                }\r
-            }\r
-            UpdateSourceLabel();\r
+                selectSource(ISO_Open.FileName, 2);\r
+            else\r
+                UpdateSourceLabel();\r
         }\r
         private void mnu_dvd_drive_Click(object sender, EventArgs e)\r
         {\r
-            // Enable the creation of chapter markers.\r
+            if (!mnu_dvd_drive.Text.Contains("VIDEO_TS")) return;\r
+            string[] path = mnu_dvd_drive.Text.Split(' ');\r
+            selectSource(path[0], 3);\r
+        }\r
+        private void selectSource(string file, int type)\r
+        {\r
             Check_ChapterMarkers.Enabled = true;\r
-\r
-            // Set the last action to scan. \r
-            // This is used for tracking which file to load in the activity window\r
             lastAction = "scan";\r
             sourcePath = string.Empty;\r
 \r
-            if (mnu_dvd_drive.Text.Contains("VIDEO_TS"))\r
+            if (file == string.Empty) // Must have a file or path\r
             {\r
-                string[] path = mnu_dvd_drive.Text.Split(' ');\r
-                String filename = path[0];\r
-                sourcePath = Path.GetFullPath(filename);\r
-                setupGUIforScan(filename);\r
-                startScan(filename);\r
+                UpdateSourceLabel();\r
+                return;\r
             }\r
 \r
-            // If there are no titles in the dropdown menu then the scan has obviously failed. Display an error message explaining to the user.\r
-            if (drp_dvdtitle.Items.Count == 0)\r
-                MessageBox.Show("No Title(s) found. Please make sure you have selected a valid, non-copy protected source.\nYour Source may be copy protected, badly mastered or a format which HandBrake does not support. \nPlease refer to the Documentation and FAQ (see Help Menu).", "Error", MessageBoxButtons.OK, MessageBoxIcon.Hand);\r
-\r
-            UpdateSourceLabel();\r
+            if (file.StartsWith("\\")) // NO UNC Paths\r
+            {\r
+                MessageBox.Show(\r
+                    "Sorry, HandBrake does not support UNC file paths. \nTry mounting the share as a network drive in My Computer",\r
+                    "Warning", MessageBoxButtons.OK, MessageBoxIcon.Warning);\r
+                UpdateSourceLabel();\r
+                return;\r
+            }\r
 \r
-            lbl_encode.Text = "";\r
+            switch (type) // Start the scan\r
+            {\r
+                case 1: // btn_dvd_source_Click()\r
+                case 3: // mnu_dvd_drive_Click()\r
+                    sourcePath = Path.GetFullPath(file);\r
+                    startScan(file);\r
+                    break;\r
+                case 2: // btn_file_source_Click()\r
+                    sourcePath = Path.GetFileName(file);\r
+                    startScan(file);\r
+                    break;\r
+            }\r
         }\r
         private void drp_dvdtitle_Click(object sender, EventArgs e)\r
         {\r
@@ -842,9 +876,8 @@ namespace Handbrake
         private void drp_dvdtitle_SelectedIndexChanged(object sender, EventArgs e)\r
         {\r
             unRegisterPresetEventHandler();\r
-            // Reset some values on the form\r
-            PictureSettings.lbl_Aspect.Text = "Select a Title";\r
-            //lbl_RecomendedCrop.Text = "Select a Title";\r
+\r
+            PictureSettings.lbl_Aspect.Text = "Select a Title"; // Reset some values on the form\r
             drop_chapterStart.Items.Clear();\r
             drop_chapterFinish.Items.Clear();\r
 \r
@@ -854,7 +887,7 @@ namespace Handbrake
             {\r
                 selectedTitle = drp_dvdtitle.SelectedItem as Title;\r
                 lbl_duration.Text = selectedTitle.Duration.ToString();\r
-                PictureSettings.setComponentsAfterScan(selectedTitle);  // Setup Picture Settings Tab Control\r
+                PictureSettings.Source = selectedTitle;  // Setup Picture Settings Tab Control\r
 \r
                 // Populate the Angles dropdown\r
                 drop_angle.Items.Clear();\r
@@ -892,6 +925,7 @@ namespace Handbrake
                 Subtitles.drp_subtitleTracks.Items.Add("Foreign Audio Search (Bitmap)");\r
                 Subtitles.drp_subtitleTracks.Items.AddRange(selectedTitle.Subtitles.ToArray());\r
                 Subtitles.drp_subtitleTracks.SelectedIndex = 0;\r
+                Subtitles.setSubtitleTrackAuto();\r
             }\r
 \r
             // Run the autoName & chapterNaming functions\r
@@ -923,86 +957,65 @@ namespace Handbrake
 \r
             registerPresetEventHandler();\r
         }\r
-        private void drop_chapterStart_SelectedIndexChanged(object sender, EventArgs e)\r
+        private void chapersChanged(object sender, EventArgs e)\r
         {\r
-            int c_start, c_end;\r
+            Control ctl = (Control) sender;\r
+            int chapterStart, chapterEnd;\r
+            int.TryParse(drop_chapterStart.Text, out chapterStart);\r
+            int.TryParse(drop_chapterFinish.Text, out chapterEnd);\r
 \r
-            if (drop_chapterFinish.Text == "Auto" && drop_chapterFinish.Items.Count != 0)\r
-                drop_chapterFinish.SelectedIndex = drop_chapterFinish.Items.Count - 1;\r
-\r
-            int.TryParse(drop_chapterStart.Text, out c_start);\r
-            int.TryParse(drop_chapterFinish.Text, out c_end);\r
-\r
-            if (c_end != 0)\r
+            switch (ctl.Name)\r
             {\r
-                if (c_start > c_end)\r
-                    drop_chapterFinish.Text = c_start.ToString();\r
-            }\r
-\r
-            lbl_duration.Text = Main.calculateDuration(drop_chapterStart.Text, drop_chapterFinish.Text, selectedTitle).ToString();\r
+                case "drop_chapterStart":\r
+                    if (drop_chapterFinish.SelectedIndex == -1 && drop_chapterFinish.Items.Count != 0)\r
+                        drop_chapterFinish.SelectedIndex = drop_chapterFinish.Items.Count - 1;\r
 \r
-            // Run the Autonaming function\r
-            if (Properties.Settings.Default.autoNaming)\r
-                text_destination.Text = Main.autoName(drp_dvdtitle, drop_chapterStart.Text, drop_chapterFinish.Text, sourcePath, text_destination.Text, drop_format.SelectedIndex);\r
-\r
-            // Disable chapter markers if only 1 chapter is selected.\r
-            if (c_start == c_end)\r
-            {\r
-                Check_ChapterMarkers.Checked = false;\r
-                Check_ChapterMarkers.Enabled = false;\r
-            }\r
-            else\r
-                Check_ChapterMarkers.Enabled = true;\r
-        }\r
-        private void drop_chapterFinish_SelectedIndexChanged(object sender, EventArgs e)\r
-        {\r
-            int c_start, c_end;\r
+                    if (chapterEnd != 0)\r
+                        if (chapterStart > chapterEnd)\r
+                            drop_chapterFinish.Text = chapterStart.ToString();\r
+                    break;\r
+                case "drop_chapterFinish":\r
+                    if (drop_chapterStart.Items.Count >= 1 && drop_chapterStart.SelectedIndex == -1)\r
+                        drop_chapterStart.SelectedIndex = 0;\r
 \r
-            if (drop_chapterStart.Text == "Auto" && drop_chapterStart.Items.Count >= 1)\r
-                drop_chapterStart.SelectedIndex = 1;\r
+                    if (chapterStart != 0)\r
+                        if (chapterEnd < chapterStart)\r
+                            drop_chapterFinish.Text = chapterStart.ToString();\r
 \r
-            int.TryParse(drop_chapterStart.Text, out c_start);\r
-            int.TryParse(drop_chapterFinish.Text, out c_end);\r
+                    // Add more rows to the Chapter menu if needed.\r
+                    if (Check_ChapterMarkers.Checked)\r
+                    {\r
+                        int i = data_chpt.Rows.Count, finish = 0;\r
+                        int.TryParse(drop_chapterFinish.Text, out finish);\r
 \r
-            if (c_start != 0)\r
-            {\r
-                if (c_end < c_start)\r
-                    drop_chapterFinish.Text = c_start.ToString();\r
+                        while (i < finish)\r
+                        {\r
+                            int n = data_chpt.Rows.Add();\r
+                            data_chpt.Rows[n].Cells[0].Value = (i + 1);\r
+                            data_chpt.Rows[n].Cells[1].Value = "Chapter " + (i + 1);\r
+                            data_chpt.Rows[n].Cells[0].ValueType = typeof(int);\r
+                            data_chpt.Rows[n].Cells[1].ValueType = typeof(string);\r
+                            i++;\r
+                        }\r
+                    }\r
+                    break;\r
             }\r
 \r
-            lbl_duration.Text = Main.calculateDuration(drop_chapterStart.Text, drop_chapterFinish.Text, selectedTitle).ToString();\r
+            // Update the Duration\r
+            lbl_duration.Text = Main.calculateDuration(drop_chapterStart.SelectedIndex, drop_chapterFinish.SelectedIndex, selectedTitle).ToString();\r
 \r
             // Run the Autonaming function\r
             if (Properties.Settings.Default.autoNaming)\r
                 text_destination.Text = Main.autoName(drp_dvdtitle, drop_chapterStart.Text, drop_chapterFinish.Text, sourcePath, text_destination.Text, drop_format.SelectedIndex);\r
 \r
-            // Add more rows to the Chapter menu if needed.\r
-            if (Check_ChapterMarkers.Checked)\r
-            {\r
-                int i = data_chpt.Rows.Count, finish = 0;\r
-\r
-                if (drop_chapterFinish.Text != "Auto")\r
-                    int.TryParse(drop_chapterFinish.Text, out finish);\r
-\r
-                while (i < finish)\r
-                {\r
-                    int n = data_chpt.Rows.Add();\r
-                    data_chpt.Rows[n].Cells[0].Value = (i + 1);\r
-                    data_chpt.Rows[n].Cells[1].Value = "Chapter " + (i + 1);\r
-                    data_chpt.Rows[n].Cells[0].ValueType = typeof(int);\r
-                    data_chpt.Rows[n].Cells[1].ValueType = typeof(string);\r
-                    i++;\r
-                }\r
-            }\r
-\r
             // Disable chapter markers if only 1 chapter is selected.\r
-            if (c_start == c_end)\r
+            if (chapterStart == chapterEnd)\r
             {\r
                 Check_ChapterMarkers.Checked = false;\r
                 Check_ChapterMarkers.Enabled = false;\r
             }\r
             else\r
-                Check_ChapterMarkers.Enabled = true;\r
+                Check_ChapterMarkers.Enabled = true;  \r
         }\r
 \r
         //Destination\r
@@ -1268,6 +1281,7 @@ namespace Handbrake
                     setExtension(".m4v");\r
                 data_chpt.Rows.Clear();\r
                 data_chpt.Enabled = true;\r
+                btn_importChapters.Enabled = true;\r
                 DataGridView chapterGridView = Main.chapterNaming(data_chpt, drop_chapterFinish.Text);\r
                 if (chapterGridView != null)\r
                     data_chpt = chapterGridView;\r
@@ -1278,13 +1292,24 @@ namespace Handbrake
                     setExtension(".mp4");\r
                 data_chpt.Rows.Clear();\r
                 data_chpt.Enabled = false;\r
+                btn_importChapters.Enabled = false;\r
+            }\r
+        }\r
+        private void btn_importChapters_Click(object sender, EventArgs e)\r
+        {\r
+            if (File_ChapterImport.ShowDialog() == DialogResult.OK)\r
+            {\r
+                String filename = File_ChapterImport.FileName;\r
+                DataGridView imported = Main.importChapterNames(data_chpt, filename);\r
+                if (imported != null)\r
+                    data_chpt = imported;\r
             }\r
         }\r
 \r
         // Query Editor Tab\r
         private void btn_generate_Query_Click(object sender, EventArgs e)\r
         {\r
-            rtf_query.Text = queryGen.generateTheQuery(this);\r
+            rtf_query.Text = queryGen.generateCLIQuery(this, 0, null);\r
         }\r
         private void btn_clear_Click(object sender, EventArgs e)\r
         {\r
@@ -1297,8 +1322,9 @@ namespace Handbrake
         #region Source Scan\r
         public Boolean isScanning { get; set; }\r
         private static int scanProcessID { get; set; }\r
-        private void setupGUIforScan(String filename)\r
+        private void startScan(String filename)\r
         {\r
+            // Setup the GUI components for the scan.\r
             sourcePath = filename;\r
             foreach (Control ctrl in Controls)\r
             {\r
@@ -1307,22 +1333,20 @@ namespace Handbrake
             }\r
             lbl_encode.Visible = true;\r
             lbl_encode.Text = "Scanning ...";\r
-            //gb_source.Text = "Source: Scanning ...";\r
             btn_source.Enabled = false;\r
             btn_start.Enabled = false;\r
             btn_showQueue.Enabled = false;\r
             btn_add2Queue.Enabled = false;\r
             tb_preview.Enabled = false;\r
             mnu_killCLI.Visible = true;\r
-        }\r
-        private void startScan(String filename)\r
-        {\r
+\r
+            // Start hte Scan Thread\r
             try\r
             {\r
-                lbl_encode.Visible = true;\r
-                lbl_encode.Text = "Scanning...";\r
+                if (ActivityWindow != null)\r
+                    ActivityWindow.setLogView(true);\r
                 isScanning = true;\r
-                ThreadPool.QueueUserWorkItem(scanProcess, filename);\r
+                ThreadPool.QueueUserWorkItem(scanProcess);\r
             }\r
             catch (Exception exc)\r
             {\r
@@ -1333,7 +1357,6 @@ namespace Handbrake
         {\r
             try\r
             {\r
-                string inputFile = (string)state;\r
                 string handbrakeCLIPath = Path.Combine(Application.StartupPath, "HandBrakeCLI.exe");\r
                 string logDir = Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData) + "\\HandBrake\\logs";\r
                 string dvdInfoPath = Path.Combine(logDir, "last_scan_log.txt");\r
@@ -1345,7 +1368,7 @@ namespace Handbrake
                 String dvdnav = string.Empty;\r
                 if (Properties.Settings.Default.dvdnav)\r
                     dvdnav = " --dvdnav";\r
-                string strCmdLine = String.Format(@"cmd /c """"{0}"" -i ""{1}"" -t0 {2} -v >""{3}"" 2>&1""", handbrakeCLIPath, inputFile, dvdnav, dvdInfoPath);\r
+                string strCmdLine = String.Format(@"cmd /c """"{0}"" -i ""{1}"" -t0 {2} -v >""{3}"" 2>&1""", handbrakeCLIPath, sourcePath, dvdnav, dvdInfoPath);\r
 \r
                 ProcessStartInfo hbParseDvd = new ProcessStartInfo("CMD.exe", strCmdLine) { WindowStyle = ProcessWindowStyle.Hidden };\r
 \r
@@ -1362,11 +1385,8 @@ namespace Handbrake
                 if (cleanExit) // If 0 exit code, CLI exited cleanly.\r
                 {\r
                     if (!File.Exists(dvdInfoPath))\r
-                    {\r
-                        throw new Exception(\r
-                            "Unable to retrieve the DVD Info. last_scan_log.txt is missing. \nExpected location of last_scan_log.txt: \n" +\r
-                            dvdInfoPath);\r
-                    }\r
+                        throw new Exception("Unable to retrieve the DVD Info. last_scan_log.txt is missing. \nExpected location of last_scan_log.txt: \n"\r
+                                            + dvdInfoPath);\r
 \r
                     using (StreamReader sr = new StreamReader(dvdInfoPath))\r
                     {\r
@@ -1398,16 +1418,13 @@ namespace Handbrake
                 drp_dvdtitle.Items.Clear();\r
                 if (thisDVD.Titles.Count != 0)\r
                     drp_dvdtitle.Items.AddRange(thisDVD.Titles.ToArray());\r
-                drp_dvdtitle.Text = "Automatic";\r
-                drop_chapterFinish.Text = "Auto";\r
-                drop_chapterStart.Text = "Auto";\r
 \r
                 // Now select the longest title\r
                 if (thisDVD.Titles.Count != 0)\r
-                    drp_dvdtitle.SelectedItem = Main.selectLongestTitle(drp_dvdtitle);\r
+                    drp_dvdtitle.SelectedItem = Main.selectLongestTitle(thisDVD);\r
 \r
                 // Enable the creation of chapter markers if the file is an image of a dvd.\r
-                if (sourcePath.ToLower().Contains(".iso") || sourcePath.ToLower().Contains("VIDEO_TS"))\r
+                if (sourcePath.ToLower().Contains(".iso") || sourcePath.Contains("VIDEO_TS"))\r
                     Check_ChapterMarkers.Enabled = true;\r
                 else\r
                 {\r
@@ -1420,7 +1437,7 @@ namespace Handbrake
                 if (drp_dvdtitle.Items.Count == 0)\r
                 {\r
                     MessageBox.Show(\r
-                        "No Title(s) found. \n\nYour Source may be copy protected, badly mastered or a format which HandBrake does not support. \nPlease refer to the Documentation and FAQ (see Help Menu).",\r
+                        "No Title(s) found. \n\nYour Source may be copy protected, badly mastered or in a format which HandBrake does not support. \nPlease refer to the Documentation and FAQ (see Help Menu).",\r
                         "Error", MessageBoxButtons.OK, MessageBoxIcon.Hand);\r
                     sourcePath = string.Empty;\r
                 }\r
@@ -1442,7 +1459,6 @@ namespace Handbrake
                 if (InvokeRequired)\r
                     BeginInvoke(new UpdateWindowHandler(enableGUI));\r
                 lbl_encode.Text = "Scan Completed";\r
-                //gb_source.Text = "Source";\r
                 foreach (Control ctrl in Controls)\r
                     ctrl.Enabled = true;\r
                 btn_start.Enabled = true;\r
@@ -1483,26 +1499,21 @@ namespace Handbrake
         private void resetGUI()\r
         {\r
             drp_dvdtitle.Items.Clear();\r
-            drp_dvdtitle.Text = "Automatic";\r
             drop_chapterStart.Items.Clear();\r
-            drop_chapterStart.Text = "Auto";\r
             drop_chapterFinish.Items.Clear();\r
-            drop_chapterFinish.Text = "Auto";\r
             lbl_duration.Text = "Select a Title";\r
             PictureSettings.lbl_src_res.Text = "Select a Title";\r
             PictureSettings.lbl_Aspect.Text = "Select a Title";\r
-            sourcePath = "Source";\r
-            text_destination.Text = "";\r
+            sourcePath = String.Empty;\r
+            text_destination.Text = String.Empty;\r
             thisDVD = null;\r
             selectedTitle = null;\r
             isScanning = false;\r
         }\r
-\r
         private void UpdateSourceLabel()\r
         {\r
             labelSource.Text = string.IsNullOrEmpty(sourcePath) ? "Select \"Source\" to continue." : Path.GetFileName(sourcePath);\r
         }\r
-\r
         #endregion\r
 \r
         #region GUI\r
@@ -1565,14 +1576,13 @@ namespace Handbrake
         #endregion\r
 \r
         #region DVD Drive Detection\r
-        private delegate void ProgressUpdateHandler();\r
         private void getDriveInfoThread()\r
         {\r
             try\r
             {\r
                 if (InvokeRequired)\r
                 {\r
-                    BeginInvoke(new ProgressUpdateHandler(getDriveInfoThread));\r
+                    BeginInvoke(new UpdateWindowHandler(getDriveInfoThread));\r
                     return;\r
                 }\r
 \r
@@ -1616,11 +1626,6 @@ namespace Handbrake
             presetHandler.getPresetPanel(ref treeView_presets);\r
             treeView_presets.Update();\r
         }\r
-\r
-        /// <summary>\r
-        /// Either Encode or Scan was last performed.\r
-        /// </summary>\r
-        public string lastAction { get; set; }\r
         #endregion\r
 \r
         #region Overrides\r
@@ -1631,7 +1636,7 @@ namespace Handbrake
         protected override void OnFormClosing(FormClosingEventArgs e)\r
         {\r
             // If currently encoding, the queue isn't paused, and there are queue items to process, prompt to confirm close.\r
-            if ((encodeQueue.isEncoding) && (!encodeQueue.isPaused) && (encodeQueue.count() > 0))\r
+            if ((encodeQueue.isEncoding) && (!encodeQueue.PauseRequested) && (encodeQueue.Count > 0))\r
             {\r
                 DialogResult result = MessageBox.Show("HandBrake has queue items to process. Closing HandBrake will not stop the current encoding, but will stop processing the queue.\n\nDo you want to close HandBrake?",\r
                     "Close HandBrake?", MessageBoxButtons.YesNo, MessageBoxIcon.Question);\r
@@ -1643,21 +1648,18 @@ namespace Handbrake
         #endregion\r
 \r
         #region In-GUI Encode Status (Experimental)\r
-\r
         private void encodeMonitorThread()\r
         {\r
             try\r
             {\r
-                Parser encode = new Parser(encodeQueue.encodeHandler.hbProcess.StandardOutput.BaseStream);\r
+                Parser encode = new Parser(encodeQueue.hbProcess.StandardOutput.BaseStream);\r
                 encode.OnEncodeProgress += encodeOnEncodeProgress;\r
                 while (!encode.EndOfStream)\r
-                {\r
                     encode.readEncodeStatus();\r
-                }\r
             }\r
             catch (Exception exc)\r
             {\r
-                MessageBox.Show(exc.ToString());\r
+                MessageBox.Show(exc.ToString(), "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);\r
             }\r
         }\r
         private void encodeOnEncodeProgress(object Sender, int CurrentTask, int TaskCount, float PercentComplete, float CurrentFps, float AverageFps, TimeSpan TimeRemaining)\r
@@ -1672,7 +1674,6 @@ namespace Handbrake
         }\r
         #endregion\r
 \r
-\r
         // This is the END of the road ****************************************\r
     }\r
 }
\ No newline at end of file