New feature: download already split into chapters

This commit is contained in:
Robert McRackan 2021-10-05 10:35:41 -04:00
parent 7b55158148
commit c437a39a82
4 changed files with 320 additions and 339 deletions

View File

@ -3,7 +3,7 @@
<PropertyGroup> <PropertyGroup>
<TargetFramework>net5.0</TargetFramework> <TargetFramework>net5.0</TargetFramework>
<Version>6.1.6.1</Version> <Version>6.2.0.1</Version>
</PropertyGroup> </PropertyGroup>
<ItemGroup> <ItemGroup>

View File

@ -41,7 +41,7 @@ namespace LibationWinForms.Dialogs
this.directoryComboBox.FormattingEnabled = true; this.directoryComboBox.FormattingEnabled = true;
this.directoryComboBox.Location = new System.Drawing.Point(0, 0); this.directoryComboBox.Location = new System.Drawing.Point(0, 0);
this.directoryComboBox.Name = "directoryComboBox"; this.directoryComboBox.Name = "directoryComboBox";
this.directoryComboBox.Size = new System.Drawing.Size(647, 23); this.directoryComboBox.Size = new System.Drawing.Size(407, 23);
this.directoryComboBox.TabIndex = 0; this.directoryComboBox.TabIndex = 0;
this.directoryComboBox.SelectedIndexChanged += new System.EventHandler(this.directoryComboBox_SelectedIndexChanged); this.directoryComboBox.SelectedIndexChanged += new System.EventHandler(this.directoryComboBox_SelectedIndexChanged);
// //
@ -52,7 +52,7 @@ namespace LibationWinForms.Dialogs
this.textBox1.Location = new System.Drawing.Point(0, 29); this.textBox1.Location = new System.Drawing.Point(0, 29);
this.textBox1.Name = "textBox1"; this.textBox1.Name = "textBox1";
this.textBox1.ReadOnly = true; this.textBox1.ReadOnly = true;
this.textBox1.Size = new System.Drawing.Size(647, 23); this.textBox1.Size = new System.Drawing.Size(407, 23);
this.textBox1.TabIndex = 1; this.textBox1.TabIndex = 1;
// //
// DirectorySelectControl // DirectorySelectControl
@ -62,7 +62,7 @@ namespace LibationWinForms.Dialogs
this.Controls.Add(this.textBox1); this.Controls.Add(this.textBox1);
this.Controls.Add(this.directoryComboBox); this.Controls.Add(this.directoryComboBox);
this.Name = "DirectorySelectControl"; this.Name = "DirectorySelectControl";
this.Size = new System.Drawing.Size(647, 52); this.Size = new System.Drawing.Size(407, 52);
this.Load += new System.EventHandler(this.DirectorySelectControl_Load); this.Load += new System.EventHandler(this.DirectorySelectControl_Load);
this.ResumeLayout(false); this.ResumeLayout(false);
this.PerformLayout(); this.PerformLayout();

View File

@ -1,5 +1,4 @@
<?xml version="1.0" encoding="utf-8"?> <root>
<root>
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata"> <xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" /> <xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
<xsd:element name="root" msdata:IsDataSet="true"> <xsd:element name="root" msdata:IsDataSet="true">

View File

@ -28,344 +28,326 @@
/// </summary> /// </summary>
private void InitializeComponent() private void InitializeComponent()
{ {
this.booksLocationDescLbl = new System.Windows.Forms.Label(); this.booksLocationDescLbl = new System.Windows.Forms.Label();
this.inProgressDescLbl = new System.Windows.Forms.Label(); this.inProgressDescLbl = new System.Windows.Forms.Label();
this.saveBtn = new System.Windows.Forms.Button(); this.saveBtn = new System.Windows.Forms.Button();
this.cancelBtn = new System.Windows.Forms.Button(); this.cancelBtn = new System.Windows.Forms.Button();
this.advancedSettingsGb = new System.Windows.Forms.GroupBox(); this.advancedSettingsGb = new System.Windows.Forms.GroupBox();
this.importEpisodesCb = new System.Windows.Forms.CheckBox(); this.importEpisodesCb = new System.Windows.Forms.CheckBox();
this.downloadEpisodesCb = new System.Windows.Forms.CheckBox(); this.downloadEpisodesCb = new System.Windows.Forms.CheckBox();
this.badBookGb = new System.Windows.Forms.GroupBox(); this.badBookGb = new System.Windows.Forms.GroupBox();
this.badBookIgnoreRb = new System.Windows.Forms.RadioButton(); this.badBookIgnoreRb = new System.Windows.Forms.RadioButton();
this.badBookRetryRb = new System.Windows.Forms.RadioButton(); this.badBookRetryRb = new System.Windows.Forms.RadioButton();
this.badBookAbortRb = new System.Windows.Forms.RadioButton(); this.badBookAbortRb = new System.Windows.Forms.RadioButton();
this.badBookAskRb = new System.Windows.Forms.RadioButton(); this.badBookAskRb = new System.Windows.Forms.RadioButton();
this.decryptAndConvertGb = new System.Windows.Forms.GroupBox(); this.decryptAndConvertGb = new System.Windows.Forms.GroupBox();
this.allowLibationFixupCbox = new System.Windows.Forms.CheckBox(); this.splitFilesByChapterCbox = new System.Windows.Forms.CheckBox();
this.convertLossyRb = new System.Windows.Forms.RadioButton(); this.allowLibationFixupCbox = new System.Windows.Forms.CheckBox();
this.convertLosslessRb = new System.Windows.Forms.RadioButton(); this.convertLossyRb = new System.Windows.Forms.RadioButton();
this.inProgressSelectControl = new LibationWinForms.Dialogs.DirectorySelectControl(); this.convertLosslessRb = new System.Windows.Forms.RadioButton();
this.logsBtn = new System.Windows.Forms.Button(); this.inProgressSelectControl = new LibationWinForms.Dialogs.DirectorySelectControl();
this.booksSelectControl = new LibationWinForms.Dialogs.DirectoryOrCustomSelectControl(); this.logsBtn = new System.Windows.Forms.Button();
this.booksGb = new System.Windows.Forms.GroupBox(); this.booksSelectControl = new LibationWinForms.Dialogs.DirectoryOrCustomSelectControl();
this.loggingLevelLbl = new System.Windows.Forms.Label(); this.booksGb = new System.Windows.Forms.GroupBox();
this.loggingLevelCb = new System.Windows.Forms.ComboBox(); this.loggingLevelLbl = new System.Windows.Forms.Label();
this.splitFilesByChapterCbox = new System.Windows.Forms.CheckBox(); this.loggingLevelCb = new System.Windows.Forms.ComboBox();
this.advancedSettingsGb.SuspendLayout(); this.advancedSettingsGb.SuspendLayout();
this.badBookGb.SuspendLayout(); this.badBookGb.SuspendLayout();
this.decryptAndConvertGb.SuspendLayout(); this.decryptAndConvertGb.SuspendLayout();
this.booksGb.SuspendLayout(); this.booksGb.SuspendLayout();
this.SuspendLayout(); this.SuspendLayout();
// //
// booksLocationDescLbl // booksLocationDescLbl
// //
this.booksLocationDescLbl.AutoSize = true; this.booksLocationDescLbl.AutoSize = true;
this.booksLocationDescLbl.Location = new System.Drawing.Point(8, 25); this.booksLocationDescLbl.Location = new System.Drawing.Point(7, 19);
this.booksLocationDescLbl.Margin = new System.Windows.Forms.Padding(5, 0, 5, 0); this.booksLocationDescLbl.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.booksLocationDescLbl.Name = "booksLocationDescLbl"; this.booksLocationDescLbl.Name = "booksLocationDescLbl";
this.booksLocationDescLbl.Size = new System.Drawing.Size(87, 20); this.booksLocationDescLbl.Size = new System.Drawing.Size(69, 15);
this.booksLocationDescLbl.TabIndex = 1; this.booksLocationDescLbl.TabIndex = 1;
this.booksLocationDescLbl.Text = "[book desc]"; this.booksLocationDescLbl.Text = "[book desc]";
// //
// inProgressDescLbl // inProgressDescLbl
// //
this.inProgressDescLbl.AutoSize = true; this.inProgressDescLbl.AutoSize = true;
this.inProgressDescLbl.Location = new System.Drawing.Point(9, 265); this.inProgressDescLbl.Location = new System.Drawing.Point(8, 199);
this.inProgressDescLbl.Margin = new System.Windows.Forms.Padding(5, 0, 5, 0); this.inProgressDescLbl.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
this.inProgressDescLbl.Name = "inProgressDescLbl"; this.inProgressDescLbl.Name = "inProgressDescLbl";
this.inProgressDescLbl.Size = new System.Drawing.Size(55, 60); this.inProgressDescLbl.Size = new System.Drawing.Size(43, 45);
this.inProgressDescLbl.TabIndex = 18; this.inProgressDescLbl.TabIndex = 18;
this.inProgressDescLbl.Text = "[desc]\r\n[line 2]\r\n[line 3]"; this.inProgressDescLbl.Text = "[desc]\r\n[line 2]\r\n[line 3]";
// //
// saveBtn // saveBtn
// //
this.saveBtn.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.saveBtn.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.saveBtn.Location = new System.Drawing.Point(816, 661); this.saveBtn.Location = new System.Drawing.Point(714, 496);
this.saveBtn.Margin = new System.Windows.Forms.Padding(5, 4, 5, 4); this.saveBtn.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
this.saveBtn.Name = "saveBtn"; this.saveBtn.Name = "saveBtn";
this.saveBtn.Size = new System.Drawing.Size(101, 36); this.saveBtn.Size = new System.Drawing.Size(88, 27);
this.saveBtn.TabIndex = 98; this.saveBtn.TabIndex = 98;
this.saveBtn.Text = "Save"; this.saveBtn.Text = "Save";
this.saveBtn.UseVisualStyleBackColor = true; this.saveBtn.UseVisualStyleBackColor = true;
this.saveBtn.Click += new System.EventHandler(this.saveBtn_Click); this.saveBtn.Click += new System.EventHandler(this.saveBtn_Click);
// //
// cancelBtn // cancelBtn
// //
this.cancelBtn.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.cancelBtn.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.cancelBtn.DialogResult = System.Windows.Forms.DialogResult.Cancel; this.cancelBtn.DialogResult = System.Windows.Forms.DialogResult.Cancel;
this.cancelBtn.Location = new System.Drawing.Point(951, 661); this.cancelBtn.Location = new System.Drawing.Point(832, 496);
this.cancelBtn.Margin = new System.Windows.Forms.Padding(5, 4, 5, 4); this.cancelBtn.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
this.cancelBtn.Name = "cancelBtn"; this.cancelBtn.Name = "cancelBtn";
this.cancelBtn.Size = new System.Drawing.Size(101, 36); this.cancelBtn.Size = new System.Drawing.Size(88, 27);
this.cancelBtn.TabIndex = 99; this.cancelBtn.TabIndex = 99;
this.cancelBtn.Text = "Cancel"; this.cancelBtn.Text = "Cancel";
this.cancelBtn.UseVisualStyleBackColor = true; this.cancelBtn.UseVisualStyleBackColor = true;
this.cancelBtn.Click += new System.EventHandler(this.cancelBtn_Click); this.cancelBtn.Click += new System.EventHandler(this.cancelBtn_Click);
// //
// advancedSettingsGb // advancedSettingsGb
// //
this.advancedSettingsGb.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) this.advancedSettingsGb.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right))); | System.Windows.Forms.AnchorStyles.Right)));
this.advancedSettingsGb.Controls.Add(this.importEpisodesCb); this.advancedSettingsGb.Controls.Add(this.importEpisodesCb);
this.advancedSettingsGb.Controls.Add(this.downloadEpisodesCb); this.advancedSettingsGb.Controls.Add(this.downloadEpisodesCb);
this.advancedSettingsGb.Controls.Add(this.badBookGb); this.advancedSettingsGb.Controls.Add(this.badBookGb);
this.advancedSettingsGb.Controls.Add(this.decryptAndConvertGb); this.advancedSettingsGb.Controls.Add(this.decryptAndConvertGb);
this.advancedSettingsGb.Controls.Add(this.inProgressSelectControl); this.advancedSettingsGb.Controls.Add(this.inProgressSelectControl);
this.advancedSettingsGb.Controls.Add(this.inProgressDescLbl); this.advancedSettingsGb.Controls.Add(this.inProgressDescLbl);
this.advancedSettingsGb.Location = new System.Drawing.Point(14, 235); this.advancedSettingsGb.Location = new System.Drawing.Point(12, 176);
this.advancedSettingsGb.Margin = new System.Windows.Forms.Padding(5, 4, 5, 4); this.advancedSettingsGb.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
this.advancedSettingsGb.Name = "advancedSettingsGb"; this.advancedSettingsGb.Name = "advancedSettingsGb";
this.advancedSettingsGb.Padding = new System.Windows.Forms.Padding(5, 4, 5, 4); this.advancedSettingsGb.Padding = new System.Windows.Forms.Padding(4, 3, 4, 3);
this.advancedSettingsGb.Size = new System.Drawing.Size(1038, 412); this.advancedSettingsGb.Size = new System.Drawing.Size(908, 309);
this.advancedSettingsGb.TabIndex = 6; this.advancedSettingsGb.TabIndex = 6;
this.advancedSettingsGb.TabStop = false; this.advancedSettingsGb.TabStop = false;
this.advancedSettingsGb.Text = "Advanced settings for control freaks"; this.advancedSettingsGb.Text = "Advanced settings for control freaks";
// //
// importEpisodesCb // importEpisodesCb
// //
this.importEpisodesCb.AutoSize = true; this.importEpisodesCb.AutoSize = true;
this.importEpisodesCb.Location = new System.Drawing.Point(8, 29); this.importEpisodesCb.Location = new System.Drawing.Point(7, 22);
this.importEpisodesCb.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4); this.importEpisodesCb.Name = "importEpisodesCb";
this.importEpisodesCb.Name = "importEpisodesCb"; this.importEpisodesCb.Size = new System.Drawing.Size(146, 19);
this.importEpisodesCb.Size = new System.Drawing.Size(183, 24); this.importEpisodesCb.TabIndex = 7;
this.importEpisodesCb.TabIndex = 7; this.importEpisodesCb.Text = "[import episodes desc]";
this.importEpisodesCb.Text = "[import episodes desc]"; this.importEpisodesCb.UseVisualStyleBackColor = true;
this.importEpisodesCb.UseVisualStyleBackColor = true; //
// // downloadEpisodesCb
// downloadEpisodesCb //
// this.downloadEpisodesCb.AutoSize = true;
this.downloadEpisodesCb.AutoSize = true; this.downloadEpisodesCb.Location = new System.Drawing.Point(7, 47);
this.downloadEpisodesCb.Location = new System.Drawing.Point(8, 63); this.downloadEpisodesCb.Name = "downloadEpisodesCb";
this.downloadEpisodesCb.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4); this.downloadEpisodesCb.Size = new System.Drawing.Size(163, 19);
this.downloadEpisodesCb.Name = "downloadEpisodesCb"; this.downloadEpisodesCb.TabIndex = 8;
this.downloadEpisodesCb.Size = new System.Drawing.Size(205, 24); this.downloadEpisodesCb.Text = "[download episodes desc]";
this.downloadEpisodesCb.TabIndex = 8; this.downloadEpisodesCb.UseVisualStyleBackColor = true;
this.downloadEpisodesCb.Text = "[download episodes desc]"; //
this.downloadEpisodesCb.UseVisualStyleBackColor = true; // badBookGb
// //
// badBookGb this.badBookGb.Controls.Add(this.badBookIgnoreRb);
// this.badBookGb.Controls.Add(this.badBookRetryRb);
this.badBookGb.Controls.Add(this.badBookIgnoreRb); this.badBookGb.Controls.Add(this.badBookAbortRb);
this.badBookGb.Controls.Add(this.badBookRetryRb); this.badBookGb.Controls.Add(this.badBookAskRb);
this.badBookGb.Controls.Add(this.badBookAbortRb); this.badBookGb.Location = new System.Drawing.Point(372, 72);
this.badBookGb.Controls.Add(this.badBookAskRb); this.badBookGb.Name = "badBookGb";
this.badBookGb.Location = new System.Drawing.Point(425, 96); this.badBookGb.Size = new System.Drawing.Size(529, 124);
this.badBookGb.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4); this.badBookGb.TabIndex = 13;
this.badBookGb.Name = "badBookGb"; this.badBookGb.TabStop = false;
this.badBookGb.Padding = new System.Windows.Forms.Padding(3, 4, 3, 4); this.badBookGb.Text = "[bad book desc]";
this.badBookGb.Size = new System.Drawing.Size(605, 165); //
this.badBookGb.TabIndex = 13; // badBookIgnoreRb
this.badBookGb.TabStop = false; //
this.badBookGb.Text = "[bad book desc]"; this.badBookIgnoreRb.AutoSize = true;
// this.badBookIgnoreRb.Location = new System.Drawing.Point(6, 97);
// badBookIgnoreRb this.badBookIgnoreRb.Name = "badBookIgnoreRb";
// this.badBookIgnoreRb.Size = new System.Drawing.Size(94, 19);
this.badBookIgnoreRb.AutoSize = true; this.badBookIgnoreRb.TabIndex = 17;
this.badBookIgnoreRb.Location = new System.Drawing.Point(7, 129); this.badBookIgnoreRb.TabStop = true;
this.badBookIgnoreRb.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4); this.badBookIgnoreRb.Text = "[ignore desc]";
this.badBookIgnoreRb.Name = "badBookIgnoreRb"; this.badBookIgnoreRb.UseVisualStyleBackColor = true;
this.badBookIgnoreRb.Size = new System.Drawing.Size(117, 24); //
this.badBookIgnoreRb.TabIndex = 17; // badBookRetryRb
this.badBookIgnoreRb.TabStop = true; //
this.badBookIgnoreRb.Text = "[ignore desc]"; this.badBookRetryRb.AutoSize = true;
this.badBookIgnoreRb.UseVisualStyleBackColor = true; this.badBookRetryRb.Location = new System.Drawing.Point(6, 72);
// this.badBookRetryRb.Name = "badBookRetryRb";
// badBookRetryRb this.badBookRetryRb.Size = new System.Drawing.Size(84, 19);
// this.badBookRetryRb.TabIndex = 16;
this.badBookRetryRb.AutoSize = true; this.badBookRetryRb.TabStop = true;
this.badBookRetryRb.Location = new System.Drawing.Point(7, 96); this.badBookRetryRb.Text = "[retry desc]";
this.badBookRetryRb.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4); this.badBookRetryRb.UseVisualStyleBackColor = true;
this.badBookRetryRb.Name = "badBookRetryRb"; //
this.badBookRetryRb.Size = new System.Drawing.Size(104, 24); // badBookAbortRb
this.badBookRetryRb.TabIndex = 16; //
this.badBookRetryRb.TabStop = true; this.badBookAbortRb.AutoSize = true;
this.badBookRetryRb.Text = "[retry desc]"; this.badBookAbortRb.Location = new System.Drawing.Point(6, 47);
this.badBookRetryRb.UseVisualStyleBackColor = true; this.badBookAbortRb.Name = "badBookAbortRb";
// this.badBookAbortRb.Size = new System.Drawing.Size(88, 19);
// badBookAbortRb this.badBookAbortRb.TabIndex = 15;
// this.badBookAbortRb.TabStop = true;
this.badBookAbortRb.AutoSize = true; this.badBookAbortRb.Text = "[abort desc]";
this.badBookAbortRb.Location = new System.Drawing.Point(7, 63); this.badBookAbortRb.UseVisualStyleBackColor = true;
this.badBookAbortRb.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4); //
this.badBookAbortRb.Name = "badBookAbortRb"; // badBookAskRb
this.badBookAbortRb.Size = new System.Drawing.Size(110, 24); //
this.badBookAbortRb.TabIndex = 15; this.badBookAskRb.AutoSize = true;
this.badBookAbortRb.TabStop = true; this.badBookAskRb.Location = new System.Drawing.Point(6, 22);
this.badBookAbortRb.Text = "[abort desc]"; this.badBookAskRb.Name = "badBookAskRb";
this.badBookAbortRb.UseVisualStyleBackColor = true; this.badBookAskRb.Size = new System.Drawing.Size(77, 19);
// this.badBookAskRb.TabIndex = 14;
// badBookAskRb this.badBookAskRb.TabStop = true;
// this.badBookAskRb.Text = "[ask desc]";
this.badBookAskRb.AutoSize = true; this.badBookAskRb.UseVisualStyleBackColor = true;
this.badBookAskRb.Location = new System.Drawing.Point(7, 29); //
this.badBookAskRb.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4); // decryptAndConvertGb
this.badBookAskRb.Name = "badBookAskRb"; //
this.badBookAskRb.Size = new System.Drawing.Size(95, 24); this.decryptAndConvertGb.Controls.Add(this.splitFilesByChapterCbox);
this.badBookAskRb.TabIndex = 14; this.decryptAndConvertGb.Controls.Add(this.allowLibationFixupCbox);
this.badBookAskRb.TabStop = true; this.decryptAndConvertGb.Controls.Add(this.convertLossyRb);
this.badBookAskRb.Text = "[ask desc]"; this.decryptAndConvertGb.Controls.Add(this.convertLosslessRb);
this.badBookAskRb.UseVisualStyleBackColor = true; this.decryptAndConvertGb.Location = new System.Drawing.Point(7, 72);
// this.decryptAndConvertGb.Name = "decryptAndConvertGb";
// decryptAndConvertGb this.decryptAndConvertGb.Size = new System.Drawing.Size(359, 124);
// this.decryptAndConvertGb.TabIndex = 9;
this.decryptAndConvertGb.Controls.Add(this.splitFilesByChapterCbox); this.decryptAndConvertGb.TabStop = false;
this.decryptAndConvertGb.Controls.Add(this.allowLibationFixupCbox); this.decryptAndConvertGb.Text = "Decrypt and convert";
this.decryptAndConvertGb.Controls.Add(this.convertLossyRb); //
this.decryptAndConvertGb.Controls.Add(this.convertLosslessRb); // splitFilesByChapterCbox
this.decryptAndConvertGb.Location = new System.Drawing.Point(8, 96); //
this.decryptAndConvertGb.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4); this.splitFilesByChapterCbox.AutoSize = true;
this.decryptAndConvertGb.Name = "decryptAndConvertGb"; this.splitFilesByChapterCbox.Location = new System.Drawing.Point(6, 46);
this.decryptAndConvertGb.Padding = new System.Windows.Forms.Padding(3, 4, 3, 4); this.splitFilesByChapterCbox.Name = "splitFilesByChapterCbox";
this.decryptAndConvertGb.Size = new System.Drawing.Size(410, 165); this.splitFilesByChapterCbox.Size = new System.Drawing.Size(258, 19);
this.decryptAndConvertGb.TabIndex = 9; this.splitFilesByChapterCbox.TabIndex = 13;
this.decryptAndConvertGb.TabStop = false; this.splitFilesByChapterCbox.Text = "Split my books into multiple files by chapter";
this.decryptAndConvertGb.Text = "Decrypt and convert"; this.splitFilesByChapterCbox.UseVisualStyleBackColor = true;
// //
// allowLibationFixupCbox // allowLibationFixupCbox
// //
this.allowLibationFixupCbox.AutoSize = true; this.allowLibationFixupCbox.AutoSize = true;
this.allowLibationFixupCbox.Checked = true; this.allowLibationFixupCbox.Checked = true;
this.allowLibationFixupCbox.CheckState = System.Windows.Forms.CheckState.Checked; this.allowLibationFixupCbox.CheckState = System.Windows.Forms.CheckState.Checked;
this.allowLibationFixupCbox.Location = new System.Drawing.Point(7, 29); this.allowLibationFixupCbox.Location = new System.Drawing.Point(6, 22);
this.allowLibationFixupCbox.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4); this.allowLibationFixupCbox.Name = "allowLibationFixupCbox";
this.allowLibationFixupCbox.Name = "allowLibationFixupCbox"; this.allowLibationFixupCbox.Size = new System.Drawing.Size(262, 19);
this.allowLibationFixupCbox.Size = new System.Drawing.Size(330, 24); this.allowLibationFixupCbox.TabIndex = 10;
this.allowLibationFixupCbox.TabIndex = 10; this.allowLibationFixupCbox.Text = "Allow Libation to fix up audiobook metadata";
this.allowLibationFixupCbox.Text = "Allow Libation to fix up audiobook metadata"; this.allowLibationFixupCbox.UseVisualStyleBackColor = true;
this.allowLibationFixupCbox.UseVisualStyleBackColor = true; this.allowLibationFixupCbox.CheckedChanged += new System.EventHandler(this.allowLibationFixupCbox_CheckedChanged);
this.allowLibationFixupCbox.CheckedChanged += new System.EventHandler(this.allowLibationFixupCbox_CheckedChanged); //
// // convertLossyRb
// convertLossyRb //
// this.convertLossyRb.AutoSize = true;
this.convertLossyRb.AutoSize = true; this.convertLossyRb.Location = new System.Drawing.Point(6, 101);
this.convertLossyRb.Location = new System.Drawing.Point(7, 135); this.convertLossyRb.Name = "convertLossyRb";
this.convertLossyRb.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4); this.convertLossyRb.Size = new System.Drawing.Size(329, 19);
this.convertLossyRb.Name = "convertLossyRb"; this.convertLossyRb.TabIndex = 12;
this.convertLossyRb.Size = new System.Drawing.Size(411, 24); this.convertLossyRb.Text = "Download my books as .MP3 files (transcode if necessary)";
this.convertLossyRb.TabIndex = 12; this.convertLossyRb.UseVisualStyleBackColor = true;
this.convertLossyRb.Text = "Download my books as .MP3 files (transcode if necessary)"; //
this.convertLossyRb.UseVisualStyleBackColor = true; // convertLosslessRb
// //
// convertLosslessRb this.convertLosslessRb.AutoSize = true;
// this.convertLosslessRb.Checked = true;
this.convertLosslessRb.AutoSize = true; this.convertLosslessRb.Location = new System.Drawing.Point(6, 76);
this.convertLosslessRb.Checked = true; this.convertLosslessRb.Name = "convertLosslessRb";
this.convertLosslessRb.Location = new System.Drawing.Point(7, 102); this.convertLosslessRb.Size = new System.Drawing.Size(335, 19);
this.convertLosslessRb.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4); this.convertLosslessRb.TabIndex = 11;
this.convertLosslessRb.Name = "convertLosslessRb"; this.convertLosslessRb.TabStop = true;
this.convertLosslessRb.Size = new System.Drawing.Size(420, 24); this.convertLosslessRb.Text = "Download my books in the original audio format (Lossless)";
this.convertLosslessRb.TabIndex = 11; this.convertLosslessRb.UseVisualStyleBackColor = true;
this.convertLosslessRb.TabStop = true; //
this.convertLosslessRb.Text = "Download my books in the original audio format (Lossless)"; // inProgressSelectControl
this.convertLosslessRb.UseVisualStyleBackColor = true; //
// this.inProgressSelectControl.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
// inProgressSelectControl
//
this.inProgressSelectControl.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right))); | System.Windows.Forms.AnchorStyles.Right)));
this.inProgressSelectControl.Location = new System.Drawing.Point(8, 329); this.inProgressSelectControl.Location = new System.Drawing.Point(7, 247);
this.inProgressSelectControl.Margin = new System.Windows.Forms.Padding(3, 5, 3, 5); this.inProgressSelectControl.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
this.inProgressSelectControl.Name = "inProgressSelectControl"; this.inProgressSelectControl.Name = "inProgressSelectControl";
this.inProgressSelectControl.Size = new System.Drawing.Size(631, 69); this.inProgressSelectControl.Size = new System.Drawing.Size(894, 52);
this.inProgressSelectControl.TabIndex = 19; this.inProgressSelectControl.TabIndex = 19;
// //
// logsBtn // logsBtn
// //
this.logsBtn.Location = new System.Drawing.Point(299, 196); this.logsBtn.Location = new System.Drawing.Point(262, 147);
this.logsBtn.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4); this.logsBtn.Name = "logsBtn";
this.logsBtn.Name = "logsBtn"; this.logsBtn.Size = new System.Drawing.Size(132, 23);
this.logsBtn.Size = new System.Drawing.Size(151, 31); this.logsBtn.TabIndex = 5;
this.logsBtn.TabIndex = 5; this.logsBtn.Text = "Open log folder";
this.logsBtn.Text = "Open log folder"; this.logsBtn.UseVisualStyleBackColor = true;
this.logsBtn.UseVisualStyleBackColor = true; this.logsBtn.Click += new System.EventHandler(this.logsBtn_Click);
this.logsBtn.Click += new System.EventHandler(this.logsBtn_Click); //
// // booksSelectControl
// booksSelectControl //
// this.booksSelectControl.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
this.booksSelectControl.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right))); | System.Windows.Forms.AnchorStyles.Right)));
this.booksSelectControl.Location = new System.Drawing.Point(8, 49); this.booksSelectControl.Location = new System.Drawing.Point(7, 37);
this.booksSelectControl.Margin = new System.Windows.Forms.Padding(3, 5, 3, 5); this.booksSelectControl.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
this.booksSelectControl.Name = "booksSelectControl"; this.booksSelectControl.Name = "booksSelectControl";
this.booksSelectControl.Size = new System.Drawing.Size(1023, 116); this.booksSelectControl.Size = new System.Drawing.Size(895, 87);
this.booksSelectControl.TabIndex = 2; this.booksSelectControl.TabIndex = 2;
// //
// booksGb // booksGb
// //
this.booksGb.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) this.booksGb.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right))); | System.Windows.Forms.AnchorStyles.Right)));
this.booksGb.Controls.Add(this.booksSelectControl); this.booksGb.Controls.Add(this.booksSelectControl);
this.booksGb.Controls.Add(this.booksLocationDescLbl); this.booksGb.Controls.Add(this.booksLocationDescLbl);
this.booksGb.Location = new System.Drawing.Point(14, 16); this.booksGb.Location = new System.Drawing.Point(12, 12);
this.booksGb.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4); this.booksGb.Name = "booksGb";
this.booksGb.Name = "booksGb"; this.booksGb.Size = new System.Drawing.Size(908, 129);
this.booksGb.Padding = new System.Windows.Forms.Padding(3, 4, 3, 4); this.booksGb.TabIndex = 0;
this.booksGb.Size = new System.Drawing.Size(1038, 172); this.booksGb.TabStop = false;
this.booksGb.TabIndex = 0; this.booksGb.Text = "Books location";
this.booksGb.TabStop = false; //
this.booksGb.Text = "Books location"; // loggingLevelLbl
// //
// loggingLevelLbl this.loggingLevelLbl.AutoSize = true;
// this.loggingLevelLbl.Location = new System.Drawing.Point(12, 150);
this.loggingLevelLbl.AutoSize = true; this.loggingLevelLbl.Name = "loggingLevelLbl";
this.loggingLevelLbl.Location = new System.Drawing.Point(14, 200); this.loggingLevelLbl.Size = new System.Drawing.Size(78, 15);
this.loggingLevelLbl.Name = "loggingLevelLbl"; this.loggingLevelLbl.TabIndex = 3;
this.loggingLevelLbl.Size = new System.Drawing.Size(99, 20); this.loggingLevelLbl.Text = "Logging level";
this.loggingLevelLbl.TabIndex = 3; //
this.loggingLevelLbl.Text = "Logging level"; // loggingLevelCb
// //
// loggingLevelCb this.loggingLevelCb.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
// this.loggingLevelCb.FormattingEnabled = true;
this.loggingLevelCb.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.loggingLevelCb.Location = new System.Drawing.Point(96, 147);
this.loggingLevelCb.FormattingEnabled = true; this.loggingLevelCb.Name = "loggingLevelCb";
this.loggingLevelCb.Location = new System.Drawing.Point(110, 196); this.loggingLevelCb.Size = new System.Drawing.Size(129, 23);
this.loggingLevelCb.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4); this.loggingLevelCb.TabIndex = 4;
this.loggingLevelCb.Name = "loggingLevelCb"; //
this.loggingLevelCb.Size = new System.Drawing.Size(147, 28); // SettingsDialog
this.loggingLevelCb.TabIndex = 4; //
// this.AcceptButton = this.saveBtn;
// splitFilesByChapterCbox this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
// this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.splitFilesByChapterCbox.AutoSize = true; this.CancelButton = this.cancelBtn;
this.splitFilesByChapterCbox.Location = new System.Drawing.Point(7, 61); this.ClientSize = new System.Drawing.Size(933, 539);
this.splitFilesByChapterCbox.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4); this.Controls.Add(this.logsBtn);
this.splitFilesByChapterCbox.Name = "splitFilesByChapterCbox"; this.Controls.Add(this.loggingLevelCb);
this.splitFilesByChapterCbox.Size = new System.Drawing.Size(323, 24); this.Controls.Add(this.loggingLevelLbl);
this.splitFilesByChapterCbox.TabIndex = 13; this.Controls.Add(this.booksGb);
this.splitFilesByChapterCbox.Text = "Split my books into multiple files by chapter"; this.Controls.Add(this.advancedSettingsGb);
this.splitFilesByChapterCbox.UseVisualStyleBackColor = true; this.Controls.Add(this.cancelBtn);
// this.Controls.Add(this.saveBtn);
// SettingsDialog this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
// this.Margin = new System.Windows.Forms.Padding(4, 3, 4, 3);
this.AcceptButton = this.saveBtn; this.Name = "SettingsDialog";
this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 20F); this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.Text = "Edit Settings";
this.CancelButton = this.cancelBtn; this.Load += new System.EventHandler(this.SettingsDialog_Load);
this.ClientSize = new System.Drawing.Size(1066, 719); this.advancedSettingsGb.ResumeLayout(false);
this.Controls.Add(this.logsBtn); this.advancedSettingsGb.PerformLayout();
this.Controls.Add(this.loggingLevelCb); this.badBookGb.ResumeLayout(false);
this.Controls.Add(this.loggingLevelLbl); this.badBookGb.PerformLayout();
this.Controls.Add(this.booksGb); this.decryptAndConvertGb.ResumeLayout(false);
this.Controls.Add(this.advancedSettingsGb); this.decryptAndConvertGb.PerformLayout();
this.Controls.Add(this.cancelBtn); this.booksGb.ResumeLayout(false);
this.Controls.Add(this.saveBtn); this.booksGb.PerformLayout();
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow; this.ResumeLayout(false);
this.Margin = new System.Windows.Forms.Padding(5, 4, 5, 4); this.PerformLayout();
this.Name = "SettingsDialog";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
this.Text = "Edit Settings";
this.Load += new System.EventHandler(this.SettingsDialog_Load);
this.advancedSettingsGb.ResumeLayout(false);
this.advancedSettingsGb.PerformLayout();
this.badBookGb.ResumeLayout(false);
this.badBookGb.PerformLayout();
this.decryptAndConvertGb.ResumeLayout(false);
this.decryptAndConvertGb.PerformLayout();
this.booksGb.ResumeLayout(false);
this.booksGb.PerformLayout();
this.ResumeLayout(false);
this.PerformLayout();
} }