From: <ro...@us...> - 2011-06-04 10:16:54
|
Revision: 4238 http://mp-plugins.svn.sourceforge.net/mp-plugins/?rev=4238&view=rev Author: rolenof Date: 2011-06-04 10:16:46 +0000 (Sat, 04 Jun 2011) Log Message: ----------- Modified Paths: -------------- trunk/plugins/Burner/trunk/Burner/BurnDataDVD.cs trunk/plugins/Burner/trunk/Burner/BurnVideoDVD.cs trunk/plugins/Burner/trunk/Burner/GUIBurner.cs trunk/plugins/Burner/trunk/Burner/SetupForm.cs Modified: trunk/plugins/Burner/trunk/Burner/BurnDataDVD.cs =================================================================== --- trunk/plugins/Burner/trunk/Burner/BurnDataDVD.cs 2011-06-03 08:10:14 UTC (rev 4237) +++ trunk/plugins/Burner/trunk/Burner/BurnDataDVD.cs 2011-06-04 10:16:46 UTC (rev 4238) @@ -287,59 +287,55 @@ ///<summary>Burn the DVD to a Disc</summary> private void WriteDVD() { - try - { - _CurrentProcess = "Burning the DVD - dvdburn.exe"; - - LogWrite("Entered WriteDVD", "BurnOption: " + _BurnTheDVD.ToString()); - - if (_BurnTheDVD == true) + try { - ProvideStatusUpdate("Burning ISO image to DVD"); + _CurrentProcess = "Burning the DVD - wodim.exe"; - BurnerProcess = new Process(); - BurnerProcess.EnableRaisingEvents = true; - BurnerProcess.StartInfo.WorkingDirectory = _TempFolderPath; - BurnerProcess.StartInfo.UseShellExecute = false; + Log.Debug("Entered WriteDVD", "BurnOption: " + _BurnTheDVD.ToString()); - if (!_InDebugMode) // Show output if in Debug mode - { - BurnerProcess.StartInfo.RedirectStandardOutput = true; - BurnerProcess.StartInfo.CreateNoWindow = true; - } + if (_BurnTheDVD == true) + { + ProvideStatusUpdate("Burning ISO image to DVD"); - //BurnerProcess.StartInfo.FileName = Path.Combine(_PathtoDvdBurnExe, "dvdburn.exe"); - BurnerProcess.StartInfo.FileName = Path.Combine(_PathtoDvdBurnExe, "dvdburn.exe"); + BurnerProcess = new Process(); + BurnerProcess.EnableRaisingEvents = true; + BurnerProcess.StartInfo.WorkingDirectory = _TempFolderPath; + BurnerProcess.StartInfo.UseShellExecute = false; - //string isofile = Path.Combine(_TempFolderPath, "dvd.iso"); + if (!_InDebugMode) // Show output if in Debug mode + { + BurnerProcess.StartInfo.RedirectStandardOutput = true; + BurnerProcess.StartInfo.CreateNoWindow = true; + } - string args = _RecorderDrive + " " + Path.Combine(_TempFolderPath, "dvd.iso"); - ; + BurnerProcess.StartInfo.FileName = Config.GetFile(Config.Dir.Base, @"Burner\", "wodim.exe"); - BurnerProcess.StartInfo.Arguments = args; + string args = "-dev='" + _RecorderDrive + "' " + Path.Combine(_TempFolderPath, "dvd.iso"); + //args += " /START /SPEED 4x /COPIES 1 /VERIFY YES /CLOSE"; - BurnerProcess.Exited += new EventHandler(BurnProcess_Exited); - // BurnerProcess.OutputDataReceived += new System.Diagnostics.DataReceivedEventHandler(processOutputHandler); + BurnerProcess.StartInfo.Arguments = args; - LogWrite("Starting DVDBurn", "Args: " + args); - BurnerProcess.Start(); + BurnerProcess.Exited += new EventHandler(BurnProcess_Exited); - if (!BurnerProcess.HasExited) - { - BurnerProcess.PriorityClass = ProcessPriorityClass.BelowNormal; - // BurnerProcess.BeginOutputReadLine(); - } + Log.Info("Starting wodim", "Args: " + args); + BurnerProcess.Start(); + + if (!BurnerProcess.HasExited) + { + BurnerProcess.PriorityClass = ProcessPriorityClass.BelowNormal; + // BurnerProcess.BeginOutputReadLine(); + } + } + else + { + _CurrentProcess = "DVD Burning is Disabled"; + BurnProcess_Exited(this, new EventArgs()); + } } - else + catch (Exception ex) { - _CurrentProcess = "DVD Burning is Disabled"; - BurnProcess_Exited(this, new EventArgs()); + Log.Error(ex.ToString()); } - } - catch (Exception ex) - { - Log.Error(ex.ToString()); - } } #endregion Modified: trunk/plugins/Burner/trunk/Burner/BurnVideoDVD.cs =================================================================== --- trunk/plugins/Burner/trunk/Burner/BurnVideoDVD.cs 2011-06-03 08:10:14 UTC (rev 4237) +++ trunk/plugins/Burner/trunk/Burner/BurnVideoDVD.cs 2011-06-04 10:16:46 UTC (rev 4238) @@ -553,7 +553,7 @@ { try { - _CurrentProcess = "Burning the DVD - dvdburn.exe"; + _CurrentProcess = "Burning the DVD - wodim.exe"; Log.Debug("Entered WriteDVD", "BurnOption: " + _BurnTheDVD.ToString()); @@ -565,27 +565,23 @@ BurnerProcess.EnableRaisingEvents = true; BurnerProcess.StartInfo.WorkingDirectory = _TempFolderPath; BurnerProcess.StartInfo.UseShellExecute = false; - + if (!_InDebugMode) // Show output if in Debug mode { BurnerProcess.StartInfo.RedirectStandardOutput = true; BurnerProcess.StartInfo.CreateNoWindow = true; } - //BurnerProcess.StartInfo.FileName = Path.Combine(_PathtoDvdBurnExe, "dvdburn.exe"); - BurnerProcess.StartInfo.FileName = Path.Combine(_PathtoDvdBurnExe, "dvdburn.exe"); + BurnerProcess.StartInfo.FileName = Config.GetFile(Config.Dir.Base, @"Burner\", "wodim.exe"); - //string isofile = Path.Combine(_TempFolderPath, "dvd.iso"); - - string args = _RecorderDrive + " " + Path.Combine(_TempFolderPath, "dvd.iso"); - ; - + string args = "-dev='" + _RecorderDrive + "' " + Path.Combine(_TempFolderPath, "dvd.iso"); + //args += " /START /SPEED 4x /COPIES 1 /VERIFY YES /CLOSE"; + BurnerProcess.StartInfo.Arguments = args; BurnerProcess.Exited += new EventHandler(BurnProcess_Exited); - // BurnerProcess.OutputDataReceived += new System.Diagnostics.DataReceivedEventHandler(processOutputHandler); - - Log.Info("Starting DVDBurn", "Args: " + args); + + Log.Info("Starting wodim", "Args: " + args); BurnerProcess.Start(); if (!BurnerProcess.HasExited) @@ -664,14 +660,9 @@ { string strFileName = Path.GetFileNameWithoutExtension(_CurrentFileName); ProvideStatusUpdate("Converting \"" + strFileName + "\" to DVD format"); + + string DestinationFilePath = _TempFolderPath; - - //string DestinationFilePath = Path.GetFileNameWithoutExtension(_CurrentFileName); - //DestinationFilePath = DestinationFilePath + ".mpg"; - string DestinationFilePath = Path.Combine(_TempFolderPath, ""); - - //string string DestinationFilePath = _TempFolderPath; - string SourceFilePath = _CurrentFileName; // Set the current filename to the new output file Modified: trunk/plugins/Burner/trunk/Burner/GUIBurner.cs =================================================================== --- trunk/plugins/Burner/trunk/Burner/GUIBurner.cs 2011-06-03 08:10:14 UTC (rev 4237) +++ trunk/plugins/Burner/trunk/Burner/GUIBurner.cs 2011-06-04 10:16:46 UTC (rev 4238) @@ -1715,7 +1715,7 @@ public string Author() { - return "Gucky62, EgonSpenglerUk"; + return "Gucky62, EgonSpenglerUk, Rolenof"; } public void ShowPlugin() Modified: trunk/plugins/Burner/trunk/Burner/SetupForm.cs =================================================================== --- trunk/plugins/Burner/trunk/Burner/SetupForm.cs 2011-06-03 08:10:14 UTC (rev 4237) +++ trunk/plugins/Burner/trunk/Burner/SetupForm.cs 2011-06-04 10:16:46 UTC (rev 4238) @@ -55,10 +55,6 @@ private CheckBox checkBoxDontBurnDVD; private CheckBox checkBoxLeaveFileForDebug; private MPGroupBox groupBoxSupportFiles; - private MPLabel labeldvdburnPath; - private MPButton buttonSelectDvdBurnPathLocation; - private TextBox textBoxDVDBurnExePath; - private LinkLabel linkLabelDVDBurnDownload; private LinkLabel linkLabelCygwinDownload; private MPGroupBox groupBoxDVDFormat; private RadioButton radioButtonTvFormatNtsc; @@ -66,7 +62,6 @@ private MPGroupBox groupBoxAspectRatio; private RadioButton radioButtonAspectRatio16x9; private RadioButton radioButtonAspectRatio4x3; - private MPLabel labelDVDburnPathCorrect; private MPLabel labelCygwinPathCorrect; private CheckBox checkBoxDoNotEject; @@ -98,7 +93,7 @@ { textBoxTempPath.Text = xmlreader.GetValueAsString("burner", "temp_folder", Path.GetDirectoryName(Path.GetTempPath())); - textBoxDVDBurnExePath.Text = xmlreader.GetValueAsString("burner", "dvdburnexe_folder", getdefaultDVDBurnPath()); + //textBoxDVDBurnExePath.Text = xmlreader.GetValueAsString("burner", "dvdburnexe_folder", getdefaultDVDBurnPath()); selIndx = xmlreader.GetValueAsInt("burner", "recorder", 0); mpTextBoxBurnerDriver.Text = xmlreader.GetValueAsString("burner", "recorderdrive", "D:"); @@ -130,7 +125,6 @@ buttonSelectTempPathLocation.Enabled = true; checkCygwinPath(); - checkDVDBurnPath(textBoxDVDBurnExePath.Text); } } @@ -139,7 +133,6 @@ using (Profile.Settings xmlwriter = new Profile.MPSettings()) { xmlwriter.SetValue("burner", "temp_folder", textBoxTempPath.Text); - xmlwriter.SetValue("burner", "dvdburnexe_folder", textBoxDVDBurnExePath.Text); xmlwriter.SetValue("burner", "recorder", comboBoxDeviceSelection.SelectedIndex); xmlwriter.SetValue("burner", "recorderdrive", mpTextBoxBurnerDriver.Text); @@ -171,32 +164,9 @@ } } - private string getdefaultDVDBurnPath() + private bool checkCygwinPath() { - // because localized windows builds use other paths - return - Path.GetDirectoryName(Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.ProgramFiles), - @"Windows Resource Kits\Tools\")); - } - - private bool checkDVDBurnPath(string pathToFile) - { bool found = false; - if (File.Exists(Path.Combine(pathToFile, @"dvdburn.exe"))) - { - found = true; - } - - linkLabelDVDBurnDownload.Visible = found ? false : true; - labelDVDburnPathCorrect.Visible = found ? true : false; - textBoxDVDBurnExePath.Enabled = found ? false : true; - - return found; - } - - private bool checkCygwinPath() - { - bool found = false; try { string cygwinPath = Config.GetFile(Config.Dir.Base, @"Burner\", "mkisofs.exe"); @@ -260,39 +230,11 @@ } } - private void buttonSelectDvdBurnPathLocation_Click(object sender, EventArgs e) - { - using (folderBrowserDialog1 = new FolderBrowserDialog()) - { - folderBrowserDialog1.Description = "Select where DVDBurn.exe is installed"; - folderBrowserDialog1.ShowNewFolderButton = true; - folderBrowserDialog1.SelectedPath = textBoxDVDBurnExePath.Text; - - DialogResult dialogResult = folderBrowserDialog1.ShowDialog(this); - if (dialogResult == DialogResult.OK) - { - textBoxDVDBurnExePath.Text = folderBrowserDialog1.SelectedPath; - } - } - checkDVDBurnPath(textBoxDVDBurnExePath.Text); - } - - private void linkLabelDVDBurnDownload_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e) - { - try - { - Help.ShowHelp(this, - @"http://www.microsoft.com/downloads/details.aspx?FamilyID=9D467A69-57FF-4AE7-96EE-B18C4790CFFD&displaylang=en"); - } - catch {} - } - private void linkLabelCygwinDownload_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e) { try { - Help.ShowHelp(this, @"http://www.team-mediaportal.com/files/Download/SystemUtilities/MyBurnerSupportFiles/"); - //Help.ShowHelp(this, @"http://www.team-mediaportal.com/files/Download/SystemUtilities/BurnerSupportFiles.rar/"); + Help.ShowHelp(this, @"http://mp-plugins.svn.sourceforge.net/viewvc/mp-plugins/trunk/plugins/Burner/dep/Burner.7z"); } catch {} } @@ -331,447 +273,350 @@ /// </summary> private void InitializeComponent() { - this.folderBrowserDialog1 = new System.Windows.Forms.FolderBrowserDialog(); - this.openFileDialog1 = new System.Windows.Forms.OpenFileDialog(); - this.groupBoxSupportFiles = new MediaPortal.UserInterface.Controls.MPGroupBox(); - this.labelCygwinPathCorrect = new MediaPortal.UserInterface.Controls.MPLabel(); - this.labelDVDburnPathCorrect = new MediaPortal.UserInterface.Controls.MPLabel(); - this.linkLabelCygwinDownload = new System.Windows.Forms.LinkLabel(); - this.linkLabelDVDBurnDownload = new System.Windows.Forms.LinkLabel(); - this.labeldvdburnPath = new MediaPortal.UserInterface.Controls.MPLabel(); - this.buttonSelectDvdBurnPathLocation = new MediaPortal.UserInterface.Controls.MPButton(); - this.textBoxDVDBurnExePath = new System.Windows.Forms.TextBox(); - this.groupBoxOptions = new MediaPortal.UserInterface.Controls.MPGroupBox(); - this.checkBoxDoNotEject = new System.Windows.Forms.CheckBox(); - this.groupBoxAspectRatio = new MediaPortal.UserInterface.Controls.MPGroupBox(); - this.radioButtonAspectRatio16x9 = new System.Windows.Forms.RadioButton(); - this.radioButtonAspectRatio4x3 = new System.Windows.Forms.RadioButton(); - this.groupBoxDVDFormat = new MediaPortal.UserInterface.Controls.MPGroupBox(); - this.radioButtonTvFormatNtsc = new System.Windows.Forms.RadioButton(); - this.radioButtonTvFormatPal = new System.Windows.Forms.RadioButton(); - this.checkBoxDontBurnDVD = new System.Windows.Forms.CheckBox(); - this.checkBoxLeaveFileForDebug = new System.Windows.Forms.CheckBox(); - this.labelTempHint = new System.Windows.Forms.Label(); - this.textBoxTempPath = new MediaPortal.UserInterface.Controls.MPTextBox(); - this.labelSelectTempPath = new MediaPortal.UserInterface.Controls.MPLabel(); - this.buttonSelectTempPathLocation = new MediaPortal.UserInterface.Controls.MPButton(); - this.buttonCancel = new MediaPortal.UserInterface.Controls.MPButton(); - this.groupBoxDeviceSettings = new MediaPortal.UserInterface.Controls.MPGroupBox(); - this.comboBoxDeviceSelection = new System.Windows.Forms.ComboBox(); - this.labelDriveletter = new MediaPortal.UserInterface.Controls.MPLabel(); - this.mpTextBoxBurnerDriver = new MediaPortal.UserInterface.Controls.MPTextBox(); - this.label1 = new MediaPortal.UserInterface.Controls.MPLabel(); - this.buttonOK = new MediaPortal.UserInterface.Controls.MPButton(); - this.groupBoxSupportFiles.SuspendLayout(); - this.groupBoxOptions.SuspendLayout(); - this.groupBoxAspectRatio.SuspendLayout(); - this.groupBoxDVDFormat.SuspendLayout(); - this.groupBoxDeviceSettings.SuspendLayout(); - this.SuspendLayout(); - // - // groupBoxSupportFiles - // - this.groupBoxSupportFiles.Anchor = - ((System.Windows.Forms.AnchorStyles) - (((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) - | System.Windows.Forms.AnchorStyles.Right))); - this.groupBoxSupportFiles.Controls.Add(this.labelCygwinPathCorrect); - this.groupBoxSupportFiles.Controls.Add(this.labelDVDburnPathCorrect); - this.groupBoxSupportFiles.Controls.Add(this.linkLabelCygwinDownload); - this.groupBoxSupportFiles.Controls.Add(this.linkLabelDVDBurnDownload); - this.groupBoxSupportFiles.Controls.Add(this.labeldvdburnPath); - this.groupBoxSupportFiles.Controls.Add(this.buttonSelectDvdBurnPathLocation); - this.groupBoxSupportFiles.Controls.Add(this.textBoxDVDBurnExePath); - this.groupBoxSupportFiles.FlatStyle = System.Windows.Forms.FlatStyle.Popup; - this.groupBoxSupportFiles.Location = new System.Drawing.Point(12, 275); - this.groupBoxSupportFiles.Name = "groupBoxSupportFiles"; - this.groupBoxSupportFiles.Size = new System.Drawing.Size(616, 112); - this.groupBoxSupportFiles.TabIndex = 61; - this.groupBoxSupportFiles.TabStop = false; - this.groupBoxSupportFiles.Text = "Necessary support files"; - // - // labelCygwinPathCorrect - // - this.labelCygwinPathCorrect.AutoSize = true; - this.labelCygwinPathCorrect.Location = new System.Drawing.Point(18, 28); - this.labelCygwinPathCorrect.Name = "labelCygwinPathCorrect"; - this.labelCygwinPathCorrect.Size = new System.Drawing.Size(208, 13); - this.labelCygwinPathCorrect.TabIndex = 69; - this.labelCygwinPathCorrect.Text = "CYGWIN support files successfully located"; - this.labelCygwinPathCorrect.Visible = false; - // - // labelDVDburnPathCorrect - // - this.labelDVDburnPathCorrect.AutoSize = true; - this.labelDVDburnPathCorrect.Location = new System.Drawing.Point(18, 53); - this.labelDVDburnPathCorrect.Name = "labelDVDburnPathCorrect"; - this.labelDVDburnPathCorrect.Size = new System.Drawing.Size(164, 13); - this.labelDVDburnPathCorrect.TabIndex = 68; - this.labelDVDburnPathCorrect.Text = "dvdburn.exe successfully located"; - this.labelDVDburnPathCorrect.Visible = false; - // - // linkLabelCygwinDownload - // - this.linkLabelCygwinDownload.AutoSize = true; - this.linkLabelCygwinDownload.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, - System.Drawing.FontStyle.Bold, - System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.linkLabelCygwinDownload.LinkArea = new System.Windows.Forms.LinkArea(16, 19); - this.linkLabelCygwinDownload.Location = new System.Drawing.Point(18, 28); - this.linkLabelCygwinDownload.Name = "linkLabelCygwinDownload"; - this.linkLabelCygwinDownload.Size = new System.Drawing.Size(462, 17); - this.linkLabelCygwinDownload.TabIndex = 67; - this.linkLabelCygwinDownload.TabStop = true; - this.linkLabelCygwinDownload.Text = - "Please download this cygwin package and put its folder into MediaPortal\'s root di" + - "rectory"; - this.linkLabelCygwinDownload.UseCompatibleTextRendering = true; - this.linkLabelCygwinDownload.LinkClicked += - new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabelCygwinDownload_LinkClicked); - // - // linkLabelDVDBurnDownload - // - this.linkLabelDVDBurnDownload.AutoSize = true; - this.linkLabelDVDBurnDownload.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, - System.Drawing.FontStyle.Bold, - System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.linkLabelDVDBurnDownload.LinkArea = new System.Windows.Forms.LinkArea(28, 9); - this.linkLabelDVDBurnDownload.Location = new System.Drawing.Point(18, 53); - this.linkLabelDVDBurnDownload.Name = "linkLabelDVDBurnDownload"; - this.linkLabelDVDBurnDownload.Size = new System.Drawing.Size(394, 17); - this.linkLabelDVDBurnDownload.TabIndex = 66; - this.linkLabelDVDBurnDownload.TabStop = true; - this.linkLabelDVDBurnDownload.Text = "Please download and install this file from Microsoft containing dvdburn.exe"; - this.linkLabelDVDBurnDownload.UseCompatibleTextRendering = true; - this.linkLabelDVDBurnDownload.LinkClicked += - new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabelDVDBurnDownload_LinkClicked); - // - // labeldvdburnPath - // - this.labeldvdburnPath.AutoSize = true; - this.labeldvdburnPath.Location = new System.Drawing.Point(18, 82); - this.labeldvdburnPath.Name = "labeldvdburnPath"; - this.labeldvdburnPath.Size = new System.Drawing.Size(138, 13); - this.labeldvdburnPath.TabIndex = 61; - this.labeldvdburnPath.Text = "Select path to dvdburn.exe "; - // - // buttonSelectDvdBurnPathLocation - // - this.buttonSelectDvdBurnPathLocation.Anchor = - ((System.Windows.Forms.AnchorStyles) - ((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); - this.buttonSelectDvdBurnPathLocation.Location = new System.Drawing.Point(568, 76); - this.buttonSelectDvdBurnPathLocation.Name = "buttonSelectDvdBurnPathLocation"; - this.buttonSelectDvdBurnPathLocation.Size = new System.Drawing.Size(30, 24); - this.buttonSelectDvdBurnPathLocation.TabIndex = 60; - this.buttonSelectDvdBurnPathLocation.Text = "..."; - this.buttonSelectDvdBurnPathLocation.UseVisualStyleBackColor = true; - this.buttonSelectDvdBurnPathLocation.Click += new System.EventHandler(this.buttonSelectDvdBurnPathLocation_Click); - // - // textBoxDVDBurnExePath - // - this.textBoxDVDBurnExePath.Anchor = - ((System.Windows.Forms.AnchorStyles) - (((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) - | System.Windows.Forms.AnchorStyles.Right))); - this.textBoxDVDBurnExePath.Location = new System.Drawing.Point(171, 79); - this.textBoxDVDBurnExePath.Name = "textBoxDVDBurnExePath"; - this.textBoxDVDBurnExePath.Size = new System.Drawing.Size(380, 20); - this.textBoxDVDBurnExePath.TabIndex = 59; - this.textBoxDVDBurnExePath.Text = "C:\\Program Files\\Windows Resource Kits\\Tools"; - // - // groupBoxOptions - // - this.groupBoxOptions.Anchor = - ((System.Windows.Forms.AnchorStyles) - (((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) - | System.Windows.Forms.AnchorStyles.Right))); - this.groupBoxOptions.Controls.Add(this.checkBoxDoNotEject); - this.groupBoxOptions.Controls.Add(this.groupBoxAspectRatio); - this.groupBoxOptions.Controls.Add(this.groupBoxDVDFormat); - this.groupBoxOptions.Controls.Add(this.checkBoxDontBurnDVD); - this.groupBoxOptions.Controls.Add(this.checkBoxLeaveFileForDebug); - this.groupBoxOptions.Controls.Add(this.labelTempHint); - this.groupBoxOptions.Controls.Add(this.textBoxTempPath); - this.groupBoxOptions.Controls.Add(this.labelSelectTempPath); - this.groupBoxOptions.Controls.Add(this.buttonSelectTempPathLocation); - this.groupBoxOptions.FlatStyle = System.Windows.Forms.FlatStyle.Popup; - this.groupBoxOptions.Location = new System.Drawing.Point(12, 94); - this.groupBoxOptions.Name = "groupBoxOptions"; - this.groupBoxOptions.Size = new System.Drawing.Size(616, 164); - this.groupBoxOptions.TabIndex = 60; - this.groupBoxOptions.TabStop = false; - this.groupBoxOptions.Text = "Options"; - // - // checkBoxDoNotEject - // - this.checkBoxDoNotEject.AutoSize = true; - this.checkBoxDoNotEject.Checked = true; - this.checkBoxDoNotEject.CheckState = System.Windows.Forms.CheckState.Checked; - this.checkBoxDoNotEject.Location = new System.Drawing.Point(420, 141); - this.checkBoxDoNotEject.Name = "checkBoxDoNotEject"; - this.checkBoxDoNotEject.Size = new System.Drawing.Size(168, 17); - this.checkBoxDoNotEject.TabIndex = 70; - this.checkBoxDoNotEject.Text = "Do not eject disc after burning"; - this.checkBoxDoNotEject.UseVisualStyleBackColor = true; - this.checkBoxDoNotEject.Visible = false; - // - // groupBoxAspectRatio - // - this.groupBoxAspectRatio.Controls.Add(this.radioButtonAspectRatio16x9); - this.groupBoxAspectRatio.Controls.Add(this.radioButtonAspectRatio4x3); - this.groupBoxAspectRatio.FlatStyle = System.Windows.Forms.FlatStyle.Popup; - this.groupBoxAspectRatio.Location = new System.Drawing.Point(267, 91); - this.groupBoxAspectRatio.Name = "groupBoxAspectRatio"; - this.groupBoxAspectRatio.Size = new System.Drawing.Size(130, 45); - this.groupBoxAspectRatio.TabIndex = 69; - this.groupBoxAspectRatio.TabStop = false; - this.groupBoxAspectRatio.Text = "Aspect Ratio"; - // - // radioButtonAspectRatio16x9 - // - this.radioButtonAspectRatio16x9.AutoSize = true; - this.radioButtonAspectRatio16x9.Location = new System.Drawing.Point(68, 19); - this.radioButtonAspectRatio16x9.Name = "radioButtonAspectRatio16x9"; - this.radioButtonAspectRatio16x9.Size = new System.Drawing.Size(48, 17); - this.radioButtonAspectRatio16x9.TabIndex = 64; - this.radioButtonAspectRatio16x9.TabStop = true; - this.radioButtonAspectRatio16x9.Text = "16/9"; - this.radioButtonAspectRatio16x9.UseVisualStyleBackColor = true; - // - // radioButtonAspectRatio4x3 - // - this.radioButtonAspectRatio4x3.AutoSize = true; - this.radioButtonAspectRatio4x3.Checked = true; - this.radioButtonAspectRatio4x3.Location = new System.Drawing.Point(15, 19); - this.radioButtonAspectRatio4x3.Name = "radioButtonAspectRatio4x3"; - this.radioButtonAspectRatio4x3.Size = new System.Drawing.Size(42, 17); - this.radioButtonAspectRatio4x3.TabIndex = 63; - this.radioButtonAspectRatio4x3.TabStop = true; - this.radioButtonAspectRatio4x3.Text = "4/3"; - this.radioButtonAspectRatio4x3.UseVisualStyleBackColor = true; - // - // groupBoxDVDFormat - // - this.groupBoxDVDFormat.Controls.Add(this.radioButtonTvFormatNtsc); - this.groupBoxDVDFormat.Controls.Add(this.radioButtonTvFormatPal); - this.groupBoxDVDFormat.FlatStyle = System.Windows.Forms.FlatStyle.Popup; - this.groupBoxDVDFormat.Location = new System.Drawing.Point(120, 91); - this.groupBoxDVDFormat.Name = "groupBoxDVDFormat"; - this.groupBoxDVDFormat.Size = new System.Drawing.Size(130, 45); - this.groupBoxDVDFormat.TabIndex = 68; - this.groupBoxDVDFormat.TabStop = false; - this.groupBoxDVDFormat.Text = "DVD Format"; - // - // radioButtonTvFormatNtsc - // - this.radioButtonTvFormatNtsc.AutoSize = true; - this.radioButtonTvFormatNtsc.Location = new System.Drawing.Point(65, 19); - this.radioButtonTvFormatNtsc.Name = "radioButtonTvFormatNtsc"; - this.radioButtonTvFormatNtsc.Size = new System.Drawing.Size(54, 17); - this.radioButtonTvFormatNtsc.TabIndex = 64; - this.radioButtonTvFormatNtsc.TabStop = true; - this.radioButtonTvFormatNtsc.Text = "NTSC"; - this.radioButtonTvFormatNtsc.UseVisualStyleBackColor = true; - // - // radioButtonTvFormatPal - // - this.radioButtonTvFormatPal.AutoSize = true; - this.radioButtonTvFormatPal.Checked = true; - this.radioButtonTvFormatPal.Location = new System.Drawing.Point(15, 19); - this.radioButtonTvFormatPal.Name = "radioButtonTvFormatPal"; - this.radioButtonTvFormatPal.Size = new System.Drawing.Size(45, 17); - this.radioButtonTvFormatPal.TabIndex = 63; - this.radioButtonTvFormatPal.TabStop = true; - this.radioButtonTvFormatPal.Text = "PAL"; - this.radioButtonTvFormatPal.UseVisualStyleBackColor = true; - // - // checkBoxDontBurnDVD - // - this.checkBoxDontBurnDVD.AutoSize = true; - this.checkBoxDontBurnDVD.Location = new System.Drawing.Point(420, 118); - this.checkBoxDontBurnDVD.Name = "checkBoxDontBurnDVD"; - this.checkBoxDontBurnDVD.Size = new System.Drawing.Size(126, 17); - this.checkBoxDontBurnDVD.TabIndex = 67; - this.checkBoxDontBurnDVD.Text = "Do not burn the DVD"; - this.checkBoxDontBurnDVD.UseVisualStyleBackColor = true; - // - // checkBoxLeaveFileForDebug - // - this.checkBoxLeaveFileForDebug.AutoSize = true; - this.checkBoxLeaveFileForDebug.Checked = true; - this.checkBoxLeaveFileForDebug.CheckState = System.Windows.Forms.CheckState.Checked; - this.checkBoxLeaveFileForDebug.Location = new System.Drawing.Point(420, 97); - this.checkBoxLeaveFileForDebug.Name = "checkBoxLeaveFileForDebug"; - this.checkBoxLeaveFileForDebug.Size = new System.Drawing.Size(166, 17); - this.checkBoxLeaveFileForDebug.TabIndex = 63; - this.checkBoxLeaveFileForDebug.Text = "Keep temp files for debugging"; - this.checkBoxLeaveFileForDebug.UseVisualStyleBackColor = true; - // - // labelTempHint - // - this.labelTempHint.AutoSize = true; - this.labelTempHint.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, - System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.labelTempHint.Location = new System.Drawing.Point(117, 62); - this.labelTempHint.Name = "labelTempHint"; - this.labelTempHint.Size = new System.Drawing.Size(466, 13); - this.labelTempHint.TabIndex = 60; - this.labelTempHint.Text = "All temp files for the burn process will be stored there (This may be up to 5 gb " + - "for a complete DVD)"; - // - // textBoxTempPath - // - this.textBoxTempPath.Anchor = - ((System.Windows.Forms.AnchorStyles) - (((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) - | System.Windows.Forms.AnchorStyles.Right))); - this.textBoxTempPath.BorderColor = System.Drawing.Color.Empty; - this.textBoxTempPath.Enabled = false; - this.textBoxTempPath.Location = new System.Drawing.Point(120, 27); - this.textBoxTempPath.Name = "textBoxTempPath"; - this.textBoxTempPath.Size = new System.Drawing.Size(431, 20); - this.textBoxTempPath.TabIndex = 57; - // - // labelSelectTempPath - // - this.labelSelectTempPath.AutoSize = true; - this.labelSelectTempPath.Location = new System.Drawing.Point(15, 30); - this.labelSelectTempPath.Name = "labelSelectTempPath"; - this.labelSelectTempPath.Size = new System.Drawing.Size(87, 13); - this.labelSelectTempPath.TabIndex = 58; - this.labelSelectTempPath.Text = "Select temp path"; - // - // buttonSelectTempPathLocation - // - this.buttonSelectTempPathLocation.Anchor = - ((System.Windows.Forms.AnchorStyles) - ((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); - this.buttonSelectTempPathLocation.Enabled = false; - this.buttonSelectTempPathLocation.Location = new System.Drawing.Point(568, 24); - this.buttonSelectTempPathLocation.Name = "buttonSelectTempPathLocation"; - this.buttonSelectTempPathLocation.Size = new System.Drawing.Size(30, 24); - this.buttonSelectTempPathLocation.TabIndex = 59; - this.buttonSelectTempPathLocation.Text = "..."; - this.buttonSelectTempPathLocation.UseVisualStyleBackColor = true; - this.buttonSelectTempPathLocation.Click += new System.EventHandler(this.buttonSelectTempPathLocation_Click); - // - // buttonCancel - // - this.buttonCancel.Anchor = - ((System.Windows.Forms.AnchorStyles) - ((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); - this.buttonCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel; - this.buttonCancel.Location = new System.Drawing.Point(540, 393); - this.buttonCancel.Name = "buttonCancel"; - this.buttonCancel.Size = new System.Drawing.Size(88, 24); - this.buttonCancel.TabIndex = 59; - this.buttonCancel.Text = "&Cancel"; - this.buttonCancel.UseVisualStyleBackColor = true; - this.buttonCancel.Click += new System.EventHandler(this.buttonCancel_Click); - // - // groupBoxDeviceSettings - // - this.groupBoxDeviceSettings.Anchor = - ((System.Windows.Forms.AnchorStyles) - (((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) - | System.Windows.Forms.AnchorStyles.Right))); - this.groupBoxDeviceSettings.Controls.Add(this.comboBoxDeviceSelection); - this.groupBoxDeviceSettings.Controls.Add(this.labelDriveletter); - this.groupBoxDeviceSettings.Controls.Add(this.mpTextBoxBurnerDriver); - this.groupBoxDeviceSettings.Controls.Add(this.label1); - this.groupBoxDeviceSettings.FlatStyle = System.Windows.Forms.FlatStyle.Popup; - this.groupBoxDeviceSettings.Location = new System.Drawing.Point(12, 21); - this.groupBoxDeviceSettings.Name = "groupBoxDeviceSettings"; - this.groupBoxDeviceSettings.Size = new System.Drawing.Size(616, 57); - this.groupBoxDeviceSettings.TabIndex = 58; - this.groupBoxDeviceSettings.TabStop = false; - this.groupBoxDeviceSettings.Text = "Device settings"; - // - // comboBoxDeviceSelection - // - this.comboBoxDeviceSelection.Anchor = - ((System.Windows.Forms.AnchorStyles) - (((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) - | System.Windows.Forms.AnchorStyles.Right))); - this.comboBoxDeviceSelection.Enabled = false; - this.comboBoxDeviceSelection.FormattingEnabled = true; - this.comboBoxDeviceSelection.Location = new System.Drawing.Point(120, 21); - this.comboBoxDeviceSelection.Name = "comboBoxDeviceSelection"; - this.comboBoxDeviceSelection.Size = new System.Drawing.Size(346, 21); - this.comboBoxDeviceSelection.TabIndex = 48; - // - // labelDriveletter - // - this.labelDriveletter.Anchor = - ((System.Windows.Forms.AnchorStyles) - ((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); - this.labelDriveletter.AutoSize = true; - this.labelDriveletter.Location = new System.Drawing.Point(499, 24); - this.labelDriveletter.Name = "labelDriveletter"; - this.labelDriveletter.Size = new System.Drawing.Size(61, 13); - this.labelDriveletter.TabIndex = 47; - this.labelDriveletter.Text = "Drive letter:"; - // - // mpTextBoxBurnerDriver - // - this.mpTextBoxBurnerDriver.Anchor = - ((System.Windows.Forms.AnchorStyles) - ((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); - this.mpTextBoxBurnerDriver.BorderColor = System.Drawing.Color.Empty; - this.mpTextBoxBurnerDriver.Location = new System.Drawing.Point(566, 21); - this.mpTextBoxBurnerDriver.Name = "mpTextBoxBurnerDriver"; - this.mpTextBoxBurnerDriver.Size = new System.Drawing.Size(32, 20); - this.mpTextBoxBurnerDriver.TabIndex = 46; - // - // label1 - // - this.label1.AutoSize = true; - this.label1.Location = new System.Drawing.Point(15, 24); - this.label1.Name = "label1"; - this.label1.Size = new System.Drawing.Size(96, 13); - this.label1.TabIndex = 45; - this.label1.Text = "Select burner drive"; - // - // buttonOK - // - this.buttonOK.Anchor = - ((System.Windows.Forms.AnchorStyles) - ((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); - this.buttonOK.Location = new System.Drawing.Point(437, 393); - this.buttonOK.Name = "buttonOK"; - this.buttonOK.Size = new System.Drawing.Size(88, 24); - this.buttonOK.TabIndex = 2; - this.buttonOK.Text = "&OK"; - this.buttonOK.UseVisualStyleBackColor = true; - this.buttonOK.Click += new System.EventHandler(this.buttonOK_Click); - // - // BurnerSetupForm - // - this.AcceptButton = this.buttonOK; - this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); - this.CancelButton = this.buttonCancel; - this.ClientSize = new System.Drawing.Size(640, 429); - this.Controls.Add(this.groupBoxSupportFiles); - this.Controls.Add(this.groupBoxOptions); - this.Controls.Add(this.buttonCancel); - this.Controls.Add(this.groupBoxDeviceSettings); - this.Controls.Add(this.buttonOK); - this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog; - this.Name = "BurnerSetupForm"; - this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent; - this.Text = "Burner - Setup"; - this.groupBoxSupportFiles.ResumeLayout(false); - this.groupBoxSupportFiles.PerformLayout(); - this.groupBoxOptions.ResumeLayout(false); - this.groupBoxOptions.PerformLayout(); - this.groupBoxAspectRatio.ResumeLayout(false); - this.groupBoxAspectRatio.PerformLayout(); - this.groupBoxDVDFormat.ResumeLayout(false); - this.groupBoxDVDFormat.PerformLayout(); - this.groupBoxDeviceSettings.ResumeLayout(false); - this.groupBoxDeviceSettings.PerformLayout(); - this.ResumeLayout(false); + this.folderBrowserDialog1 = new System.Windows.Forms.FolderBrowserDialog(); + this.openFileDialog1 = new System.Windows.Forms.OpenFileDialog(); + this.groupBoxSupportFiles = new MediaPortal.UserInterface.Controls.MPGroupBox(); + this.labelCygwinPathCorrect = new MediaPortal.UserInterface.Controls.MPLabel(); + this.linkLabelCygwinDownload = new System.Windows.Forms.LinkLabel(); + this.groupBoxOptions = new MediaPortal.UserInterface.Controls.MPGroupBox(); + this.checkBoxDoNotEject = new System.Windows.Forms.CheckBox(); + this.groupBoxAspectRatio = new MediaPortal.UserInterface.Controls.MPGroupBox(); + this.radioButtonAspectRatio16x9 = new System.Windows.Forms.RadioButton(); + this.radioButtonAspectRatio4x3 = new System.Windows.Forms.RadioButton(); + this.groupBoxDVDFormat = new MediaPortal.UserInterface.Controls.MPGroupBox(); + this.radioButtonTvFormatNtsc = new System.Windows.Forms.RadioButton(); + this.radioButtonTvFormatPal = new System.Windows.Forms.RadioButton(); + this.checkBoxDontBurnDVD = new System.Windows.Forms.CheckBox(); + this.checkBoxLeaveFileForDebug = new System.Windows.Forms.CheckBox(); + this.labelTempHint = new System.Windows.Forms.Label(); + this.textBoxTempPath = new MediaPortal.UserInterface.Controls.MPTextBox(); + this.labelSelectTempPath = new MediaPortal.UserInterface.Controls.MPLabel(); + this.buttonSelectTempPathLocation = new MediaPortal.UserInterface.Controls.MPButton(); + this.buttonCancel = new MediaPortal.UserInterface.Controls.MPButton(); + this.groupBoxDeviceSettings = new MediaPortal.UserInterface.Controls.MPGroupBox(); + this.comboBoxDeviceSelection = new System.Windows.Forms.ComboBox(); + this.labelDriveletter = new MediaPortal.UserInterface.Controls.MPLabel(); + this.mpTextBoxBurnerDriver = new MediaPortal.UserInterface.Controls.MPTextBox(); + this.label1 = new MediaPortal.UserInterface.Controls.MPLabel(); + this.buttonOK = new MediaPortal.UserInterface.Controls.MPButton(); + this.groupBoxSupportFiles.SuspendLayout(); + this.groupBoxOptions.SuspendLayout(); + this.groupBoxAspectRatio.SuspendLayout(); + this.groupBoxDVDFormat.SuspendLayout(); + this.groupBoxDeviceSettings.SuspendLayout(); + this.SuspendLayout(); + // + // groupBoxSupportFiles + // + this.groupBoxSupportFiles.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) + | System.Windows.Forms.AnchorStyles.Right))); + this.groupBoxSupportFiles.Controls.Add(this.labelCygwinPathCorrect); + this.groupBoxSupportFiles.Controls.Add(this.linkLabelCygwinDownload); + this.groupBoxSupportFiles.FlatStyle = System.Windows.Forms.FlatStyle.Popup; + this.groupBoxSupportFiles.Location = new System.Drawing.Point(12, 275); + this.groupBoxSupportFiles.Name = "groupBoxSupportFiles"; + this.groupBoxSupportFiles.Size = new System.Drawing.Size(616, 51); + this.groupBoxSupportFiles.TabIndex = 61; + this.groupBoxSupportFiles.TabStop = false; + this.groupBoxSupportFiles.Text = "Necessary support files"; + // + // labelCygwinPathCorrect + // + this.labelCygwinPathCorrect.AutoSize = true; + this.labelCygwinPathCorrect.Location = new System.Drawing.Point(18, 28); + this.labelCygwinPathCorrect.Name = "labelCygwinPathCorrect"; + this.labelCygwinPathCorrect.Size = new System.Drawing.Size(208, 13); + this.labelCygwinPathCorrect.TabIndex = 69; + this.labelCygwinPathCorrect.Text = "CYGWIN support files successfully located"; + this.labelCygwinPathCorrect.Visible = false; + // + // linkLabelCygwinDownload + // + this.linkLabelCygwinDownload.AutoSize = true; + this.linkLabelCygwinDownload.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.linkLabelCygwinDownload.LinkArea = new System.Windows.Forms.LinkArea(46, 7); + this.linkLabelCygwinDownload.Location = new System.Drawing.Point(52, 27); + this.linkLabelCygwinDownload.Name = "linkLabelCygwinDownload"; + this.linkLabelCygwinDownload.Size = new System.Drawing.Size(541, 17); + this.linkLabelCygwinDownload.TabIndex = 67; + this.linkLabelCygwinDownload.TabStop = true; + this.linkLabelCygwinDownload.Text = "Please reinstall the plugin, or download this packege and put it\'s folder into Me" + + "diaPortal\'s root directory"; + this.linkLabelCygwinDownload.UseCompatibleTextRendering = true; + this.linkLabelCygwinDownload.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabelCygwinDownload_LinkClicked); + // + // groupBoxOptions + // + this.groupBoxOptions.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) + | System.Windows.Forms.AnchorStyles.Right))); + this.groupBoxOptions.Controls.Add(this.checkBoxDoNotEject); + this.groupBoxOptions.Controls.Add(this.groupBoxAspectRatio); + this.groupBoxOptions.Controls.Add(this.groupBoxDVDFormat); + this.groupBoxOptions.Controls.Add(this.checkBoxDontBurnDVD); + this.groupBoxOptions.Controls.Add(this.checkBoxLeaveFileForDebug); + this.groupBoxOptions.Controls.Add(this.labelTempHint); + this.groupBoxOptions.Controls.Add(this.textBoxTempPath); + this.groupBoxOptions.Controls.Add(this.labelSelectTempPath); + this.groupBoxOptions.Controls.Add(this.buttonSelectTempPathLocation); + this.groupBoxOptions.FlatStyle = System.Windows.Forms.FlatStyle.Popup; + this.groupBoxOptions.Location = new System.Drawing.Point(12, 94); + this.groupBoxOptions.Name = "groupBoxOptions"; + this.groupBoxOptions.Size = new System.Drawing.Size(616, 164); + this.groupBoxOptions.TabIndex = 60; + this.groupBoxOptions.TabStop = false; + this.groupBoxOptions.Text = "Options"; + // + // checkBoxDoNotEject + // + this.checkBoxDoNotEject.AutoSize = true; + this.checkBoxDoNotEject.Checked = true; + this.checkBoxDoNotEject.CheckState = System.Windows.Forms.CheckState.Checked; + this.checkBoxDoNotEject.Location = new System.Drawing.Point(420, 141); + this.checkBoxDoNotEject.Name = "checkBoxDoNotEject"; + this.checkBoxDoNotEject.Size = new System.Drawing.Size(169, 17); + this.checkBoxDoNotEject.TabIndex = 70; + this.checkBoxDoNotEject.Text = "Do not eject disc after burning"; + this.checkBoxDoNotEject.UseVisualStyleBackColor = true; + this.checkBoxDoNotEject.Visible = false; + // + // groupBoxAspectRatio + // + this.groupBoxAspectRatio.Controls.Add(this.radioButtonAspectRatio16x9); + this.groupBoxAspectRatio.Controls.Add(this.radioButtonAspectRatio4x3); + this.groupBoxAspectRatio.FlatStyle = System.Windows.Forms.FlatStyle.Popup; + this.groupBoxAspectRatio.Location = new System.Drawing.Point(267, 91); + this.groupBoxAspectRatio.Name = "groupBoxAspectRatio"; + this.groupBoxAspectRatio.Size = new System.Drawing.Size(130, 45); + this.groupBoxAspectRatio.TabIndex = 69; + this.groupBoxAspectRatio.TabStop = false; + this.groupBoxAspectRatio.Text = "Aspect Ratio"; + // + // radioButtonAspectRatio16x9 + // + this.radioButtonAspectRatio16x9.AutoSize = true; + this.radioButtonAspectRatio16x9.Location = new System.Drawing.Point(68, 19); + this.radioButtonAspectRatio16x9.Name = "radioButtonAspectRatio16x9"; + this.radioButtonAspectRatio16x9.Size = new System.Drawing.Size(48, 17); + this.radioButtonAspectRatio16x9.TabIndex = 64; + this.radioButtonAspectRatio16x9.TabStop = true; + this.radioButtonAspectRatio16x9.Text = "16/9"; + this.radioButtonAspectRatio16x9.UseVisualStyleBackColor = true; + // + // radioButtonAspectRatio4x3 + // + this.radioButtonAspectRatio4x3.AutoSize = true; + this.radioButtonAspectRatio4x3.Checked = true; + this.radioButtonAspectRatio4x3.Location = new System.Drawing.Point(15, 19); + this.radioButtonAspectRatio4x3.Name = "radioButtonAspectRatio4x3"; + this.radioButtonAspectRatio4x3.Size = new System.Drawing.Size(42, 17); + this.radioButtonAspectRatio4x3.TabIndex = 63; + this.radioButtonAspectRatio4x3.TabStop = true; + this.radioButtonAspectRatio4x3.Text = "4/3"; + this.radioButtonAspectRatio4x3.UseVisualStyleBackColor = true; + // + // groupBoxDVDFormat + // + this.groupBoxDVDFormat.Controls.Add(this.radioButtonTvFormatNtsc); + this.groupBoxDVDFormat.Controls.Add(this.radioButtonTvFormatPal); + this.groupBoxDVDFormat.FlatStyle = System.Windows.Forms.FlatStyle.Popup; + this.groupBoxDVDFormat.Location = new System.Drawing.Point(120, 91); + this.groupBoxDVDFormat.Name = "groupBoxDVDFormat"; + this.groupBoxDVDFormat.Size = new System.Drawing.Size(130, 45); + this.groupBoxDVDFormat.TabIndex = 68; + this.groupBoxDVDFormat.TabStop = false; + this.groupBoxDVDFormat.Text = "DVD Format"; + // + // radioButtonTvFormatNtsc + // + this.radioButtonTvFormatNtsc.AutoSize = true; + this.radioButtonTvFormatNtsc.Location = new System.Drawing.Point(65, 19); + this.radioButtonTvFormatNtsc.Name = "radioButtonTvFormatNtsc"; + this.radioButtonTvFormatNtsc.Size = new System.Drawing.Size(54, 17); + this.radioButtonTvFormatNtsc.TabIndex = 64; + this.radioButtonTvFormatNtsc.TabStop = true; + this.radioButtonTvFormatNtsc.Text = "NTSC"; + this.radioButtonTvFormatNtsc.UseVisualStyleBackColor = true; + // + // radioButtonTvFormatPal + // + this.radioButtonTvFormatPal.AutoSize = true; + this.radioButtonTvFormatPal.Checked = true; + this.radioButtonTvFormatPal.Location = new System.Drawing.Point(15, 19); + this.radioButtonTvFormatPal.Name = "radioButtonTvFormatPal"; + this.radioButtonTvFormatPal.Size = new System.Drawing.Size(45, 17); + this.radioButtonTvFormatPal.TabIndex = 63; + this.radioButtonTvFormatPal.TabStop = true; + this.radioButtonTvFormatPal.Text = "PAL"; + this.radioButtonTvFormatPal.UseVisualStyleBackColor = true; + // + // checkBoxDontBurnDVD + // + this.checkBoxDontBurnDVD.AutoSize = true; + this.checkBoxDontBurnDVD.Location = new System.Drawing.Point(420, 118); + this.checkBoxDontBurnDVD.Name = "checkBoxDontBurnDVD"; + this.checkBoxDontBurnDVD.Size = new System.Drawing.Size(127, 17); + this.checkBoxDontBurnDVD.TabIndex = 67; + this.checkBoxDontBurnDVD.Text = "Do not burn the DVD"; + this.checkBoxDontBurnDVD.UseVisualStyleBackColor = true; + // + // checkBoxLeaveFileForDebug + // + this.checkBoxLeaveFileForDebug.AutoSize = true; + this.checkBoxLeaveFileForDebug.Location = new System.Drawing.Point(420, 97); + this.checkBoxLeaveFileForDebug.Name = "checkBoxLeaveFileForDebug"; + this.checkBoxLeaveFileForDebug.Size = new System.Drawing.Size(167, 17); + this.checkBoxLeaveFileForDebug.TabIndex = 63; + this.checkBoxLeaveFileForDebug.Text = "Keep temp files for debugging"; + this.checkBoxLeaveFileForDebug.UseVisualStyleBackColor = true; + // + // labelTempHint + // + this.labelTempHint.AutoSize = true; + this.labelTempHint.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.labelTempHint.Location = new System.Drawing.Point(117, 62); + this.labelTempHint.Name = "labelTempHint"; + this.labelTempHint.Size = new System.Drawing.Size(466, 13); + this.labelTempHint.TabIndex = 60; + this.labelTempHint.Text = "All temp files for the burn process will be stored there (This may be up to 5 gb " + + "for a complete DVD)"; + // + // textBoxTempPath + // + this.textBoxTempPath.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) + | System.Windows.Forms.AnchorStyles.Right))); + this.textBoxTempPath.BorderColor = System.Drawing.Color.Empty; + this.textBoxTempPath.Enabled = false; + this.textBoxTempPath.Location = new System.Drawing.Point(120, 27); + this.textBoxTempPath.Name = "textBoxTempPath"; + this.textBoxTempPath.Size = new System.Drawing.Size(431, 20); + this.textBoxTempPath.TabIndex = 57; + // + // labelSelectTempPath + // + this.labelSelectTempPath.AutoSize = true; + this.labelSelectTempPath.Location = new System.Drawing.Point(15, 30); + this.labelSelectTempPath.Name = "labelSelectTempPath"; + this.labelSelectTempPath.Size = new System.Drawing.Size(87, 13); + this.labelSelectTempPath.TabIndex = 58; + this.labelSelectTempPath.Text = "Select temp path"; + // + // buttonSelectTempPathLocation + // + this.buttonSelectTempPathLocation.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); + this.buttonSelectTempPathLocation.Enabled = false; + this.buttonSelectTempPathLocation.Location = new System.Drawing.Point(568, 24); + this.buttonSelectTempPathLocation.Name = "buttonSelectTempPathLocation"; + this.buttonSelectTempPathLocation.Size = new System.Drawing.Size(30, 24); + this.buttonSelectTempPathLocation.TabIndex = 59; + this.buttonSelectTempPathLocation.Text = "..."; + this.buttonSelectTempPathLocation.UseVisualStyleBackColor = true; + this.buttonSelectTempPathLocation.Click += new System.EventHandler(this.buttonSelectTempPathLocation_Click); + // + // buttonCancel + // + this.buttonCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); + this.buttonCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel; + this.buttonCancel.Location = new System.Drawing.Point(540, 330); + this.buttonCancel.Name = "buttonCancel"; + this.buttonCancel.Size = new System.Drawing.Size(88, 24); + this.buttonCancel.TabIndex = 59; + this.buttonCancel.Text = "&Cancel"; + this.buttonCancel.UseVisualStyleBackColor = true; + this.buttonCancel.Click += new System.EventHandler(this.buttonCancel_Click); + // + // groupBoxDeviceSettings + // + this.groupBoxDeviceSettings.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) + | System.Windows.Forms.AnchorStyles.Right))); + this.groupBoxDeviceSettings.Controls.Add(this.comboBoxDeviceSelection); + this.groupBoxDeviceSettings.Controls.Add(this.labelDriveletter); + this.groupBoxDeviceSettings.Controls.Add(this.mpTextBoxBurnerDriver); + this.groupBoxDeviceSettings.Controls.Add(this.label1); + this.groupBoxDeviceSettings.FlatStyle = System.Windows.Forms.FlatStyle.Popup; + this.groupBoxDeviceSettings.Location = new System.Drawing.Point(12, 21); + this.groupBoxDeviceSettings.Name = "groupBoxDeviceSettings"; + this.groupBoxDeviceSettings.Size = new System.Drawing.Size(616, 57); + this.groupBoxDeviceSettings.TabIndex = 58; + this.groupBoxDeviceSettings.TabStop = false; + this.groupBoxDeviceSettings.Text = "Device settings"; + // + // comboBoxDeviceSelection + // + this.comboBoxDeviceSelection.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) + | System.Windows.Forms.AnchorStyles.Right))); + this.comboBoxDeviceSelection.Enabled = false; + this.comboBoxDeviceSelection.FormattingEnabled = true; + this.comboBoxDeviceSelection.Location = new System.Drawing.Point(120, 21); + this.comboBoxDeviceSelection.Name = "comboBoxDeviceSelection"; + this.comboBoxDeviceSelection.Size = new System.Drawing.Size(346, 21); + this.comboBoxDeviceSelection.TabIndex = 48; + // + // labelDriveletter + // + this.labelDriveletter.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); + this.labelDriveletter.AutoSize = true; + this.labelDriveletter.Location = new System.Drawing.Point(499, 24); + this.labelDriveletter.Name = "labelDriveletter"; + this.labelDriveletter.Size = new System.Drawing.Size(61, 13); + this.labelDriveletter.TabIndex = 47; + this.labelDriveletter.Text = "Drive letter:"; + // + // mpTextBoxBurnerDriver + // + this.mpTextBoxBurnerDriver.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); + this.mpTextBoxBurnerDriver.BorderColor = System.Drawing.Color.Empty; + this.mpTextBoxBurnerDriver.Location = new System.Drawing.Point(566, 21); + this.mpTextBoxBurnerDriver.Name = "mpTextBoxBurnerDriver"; + this.mpTextBoxBurnerDriver.Size = new System.Drawing.Size(32, 20); + this.mpTextBoxBurnerDriver.TabIndex = 46; + // + // label1 + // + this.label1.AutoSize = true; + this.label1.Location = new System.Drawing.Point(15, 24); + this.label1.Name = "label1"; + this.label1.Size = new System.Drawing.Size(96, 13); + this.label1.TabIndex = 45; + this.label1.Text = "Select burner drive"; + // + // buttonOK + // + this.buttonOK.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); + this.buttonOK.Location = new System.Drawing.Point(437, 330); + this.buttonOK.Name = "buttonOK"; + this.buttonOK.Size = new System.Drawing.Size(88, 24); + this.buttonOK.TabIndex = 2; + this.buttonOK.Text = "&OK"; + this.buttonOK.UseVisualStyleBackColor = true; + this.buttonOK.Click += new System.EventHandler(this.buttonOK_Click); + // + // BurnerSetupForm + // + this.AcceptButton = this.buttonOK; + this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); + this.CancelButton = this.buttonCancel; + this.ClientSize = new System.Drawing.Size(640, 366); + this.Controls.Add(this.groupBoxSupportFiles); + this.Controls.Add(this.groupBoxOptions); + this.Controls.Add(this.buttonCancel); + this.Controls.Add(this.groupBoxDeviceSettings); + this.Controls.Add(this.buttonOK); + this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog; + this.Name = "BurnerSetupForm"; + this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent; + this.Text = "Burner - Setup"; + this.groupBoxSupportFiles.ResumeLayout(false); + this.groupBoxSupportFiles.PerformLayout(); + this.groupBoxOptions.ResumeLayout(false); + this.groupBoxOptions.PerformLayout(); + this.groupBoxAspectRatio.ResumeLayout(false); + this.groupBoxAspectRatio.PerformLayout(); + this.groupBoxDVDFormat.ResumeLayout(false); + this.groupBoxDVDFormat.PerformLayout(); + this.groupBoxDeviceSettings.ResumeLayout(false); + this.groupBoxDeviceSettings.PerformLayout(); + this.ResumeLayout(false); + } #endregion This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |