From 20a9e4b65159c195a800bd0159295f49d0245f98 Mon Sep 17 00:00:00 2001 From: Robert McRackan Date: Thu, 15 Jul 2021 14:43:10 -0400 Subject: [PATCH] Simple winforms work in modern .net core designer. Only keep edge cases which work best in .net framework designer --- .../ApplicationServices.csproj | 2 +- FileLiberator/DownloadFile.cs | 1 + FileManager/FileManager.csproj | 1 - LibationLauncher/LibationLauncher.csproj | 2 +- .../AutomatedBackupsForm.Designer.cs | 92 ------- .../BookLiberation/AutomatedBackupsForm.cs | 13 - .../BookLiberation/AutomatedBackupsForm.resx | 120 --------- .../BookLiberation/DecryptForm.Designer.cs | 101 ------- .../BookLiberation/DecryptForm.cs | 13 - .../BookLiberation/DecryptForm.resx | 120 --------- .../BookLiberation/DownloadForm.Designer.cs | 103 ------- .../BookLiberation/DownloadForm.cs | 13 - .../BookLiberation/DownloadForm.resx | 120 --------- .../Dialogs/AccountsDialog.Designer.cs | 142 ---------- WinFormsDesigner/Dialogs/AccountsDialog.cs | 13 - WinFormsDesigner/Dialogs/AccountsDialog.resx | 138 ---------- .../Dialogs/EditQuickFilters.Designer.cs | 149 ----------- WinFormsDesigner/Dialogs/EditQuickFilters.cs | 13 - .../Dialogs/EditQuickFilters.resx | 135 ---------- .../Dialogs/EditTagsDialog.Designer.cs | 90 ------- WinFormsDesigner/Dialogs/EditTagsDialog.cs | 15 -- WinFormsDesigner/Dialogs/EditTagsDialog.resx | 120 --------- .../Dialogs/IndexLibraryDialog.Designer.cs | 65 ----- .../Dialogs/IndexLibraryDialog.cs | 20 -- .../Dialogs/IndexLibraryDialog.resx | 120 --------- .../Dialogs/LibationFilesDialog.Designer.cs | 156 ----------- .../Dialogs/LibationFilesDialog.cs | 20 -- .../Dialogs/LibationFilesDialog.resx | 120 --------- .../Login/ApprovalNeededDialog.Designer.cs | 79 ------ .../Dialogs/Login/ApprovalNeededDialog.cs | 13 - .../Dialogs/Login/ApprovalNeededDialog.resx | 120 --------- .../Login/AudibleLoginDialog.Designer.cs | 113 -------- .../Dialogs/Login/AudibleLoginDialog.cs | 20 -- .../Dialogs/Login/CaptchaDialog.Designer.cs | 101 ------- .../Dialogs/Login/CaptchaDialog.cs | 20 -- .../Dialogs/Login/MfaDialog.Designer.cs | 107 -------- WinFormsDesigner/Dialogs/Login/MfaDialog.cs | 20 -- WinFormsDesigner/Dialogs/Login/MfaDialog.resx | 120 --------- .../Dialogs/Login/_2faCodeDialog.Designer.cs | 88 ------ .../Dialogs/Login/_2faCodeDialog.cs | 13 - .../Dialogs/ScanAccountsDialog.Designer.cs | 117 -------- .../Dialogs/ScanAccountsDialog.cs | 20 -- .../Dialogs/ScanAccountsDialog.resx | 120 --------- .../Dialogs/SearchSyntaxDialog.Designer.cs | 132 --------- .../Dialogs/SearchSyntaxDialog.cs | 13 - .../Dialogs/SearchSyntaxDialog.resx | 120 --------- .../Dialogs/SettingsDialog.Designer.cs | 252 ------------------ WinFormsDesigner/Dialogs/SettingsDialog.cs | 13 - WinFormsDesigner/Dialogs/SettingsDialog.resx | 120 --------- .../Dialogs/SetupDialog.Designer.cs | 105 -------- WinFormsDesigner/Dialogs/SetupDialog.cs | 20 -- WinFormsDesigner/Dialogs/SetupDialog.resx | 131 --------- WinFormsDesigner/WinFormsDesigner.csproj | 147 ---------- 53 files changed, 3 insertions(+), 4138 deletions(-) delete mode 100644 WinFormsDesigner/BookLiberation/AutomatedBackupsForm.Designer.cs delete mode 100644 WinFormsDesigner/BookLiberation/AutomatedBackupsForm.cs delete mode 100644 WinFormsDesigner/BookLiberation/AutomatedBackupsForm.resx delete mode 100644 WinFormsDesigner/BookLiberation/DecryptForm.Designer.cs delete mode 100644 WinFormsDesigner/BookLiberation/DecryptForm.cs delete mode 100644 WinFormsDesigner/BookLiberation/DecryptForm.resx delete mode 100644 WinFormsDesigner/BookLiberation/DownloadForm.Designer.cs delete mode 100644 WinFormsDesigner/BookLiberation/DownloadForm.cs delete mode 100644 WinFormsDesigner/BookLiberation/DownloadForm.resx delete mode 100644 WinFormsDesigner/Dialogs/AccountsDialog.Designer.cs delete mode 100644 WinFormsDesigner/Dialogs/AccountsDialog.cs delete mode 100644 WinFormsDesigner/Dialogs/AccountsDialog.resx delete mode 100644 WinFormsDesigner/Dialogs/EditQuickFilters.Designer.cs delete mode 100644 WinFormsDesigner/Dialogs/EditQuickFilters.cs delete mode 100644 WinFormsDesigner/Dialogs/EditQuickFilters.resx delete mode 100644 WinFormsDesigner/Dialogs/EditTagsDialog.Designer.cs delete mode 100644 WinFormsDesigner/Dialogs/EditTagsDialog.cs delete mode 100644 WinFormsDesigner/Dialogs/EditTagsDialog.resx delete mode 100644 WinFormsDesigner/Dialogs/IndexLibraryDialog.Designer.cs delete mode 100644 WinFormsDesigner/Dialogs/IndexLibraryDialog.cs delete mode 100644 WinFormsDesigner/Dialogs/IndexLibraryDialog.resx delete mode 100644 WinFormsDesigner/Dialogs/LibationFilesDialog.Designer.cs delete mode 100644 WinFormsDesigner/Dialogs/LibationFilesDialog.cs delete mode 100644 WinFormsDesigner/Dialogs/LibationFilesDialog.resx delete mode 100644 WinFormsDesigner/Dialogs/Login/ApprovalNeededDialog.Designer.cs delete mode 100644 WinFormsDesigner/Dialogs/Login/ApprovalNeededDialog.cs delete mode 100644 WinFormsDesigner/Dialogs/Login/ApprovalNeededDialog.resx delete mode 100644 WinFormsDesigner/Dialogs/Login/AudibleLoginDialog.Designer.cs delete mode 100644 WinFormsDesigner/Dialogs/Login/AudibleLoginDialog.cs delete mode 100644 WinFormsDesigner/Dialogs/Login/CaptchaDialog.Designer.cs delete mode 100644 WinFormsDesigner/Dialogs/Login/CaptchaDialog.cs delete mode 100644 WinFormsDesigner/Dialogs/Login/MfaDialog.Designer.cs delete mode 100644 WinFormsDesigner/Dialogs/Login/MfaDialog.cs delete mode 100644 WinFormsDesigner/Dialogs/Login/MfaDialog.resx delete mode 100644 WinFormsDesigner/Dialogs/Login/_2faCodeDialog.Designer.cs delete mode 100644 WinFormsDesigner/Dialogs/Login/_2faCodeDialog.cs delete mode 100644 WinFormsDesigner/Dialogs/ScanAccountsDialog.Designer.cs delete mode 100644 WinFormsDesigner/Dialogs/ScanAccountsDialog.cs delete mode 100644 WinFormsDesigner/Dialogs/ScanAccountsDialog.resx delete mode 100644 WinFormsDesigner/Dialogs/SearchSyntaxDialog.Designer.cs delete mode 100644 WinFormsDesigner/Dialogs/SearchSyntaxDialog.cs delete mode 100644 WinFormsDesigner/Dialogs/SearchSyntaxDialog.resx delete mode 100644 WinFormsDesigner/Dialogs/SettingsDialog.Designer.cs delete mode 100644 WinFormsDesigner/Dialogs/SettingsDialog.cs delete mode 100644 WinFormsDesigner/Dialogs/SettingsDialog.resx delete mode 100644 WinFormsDesigner/Dialogs/SetupDialog.Designer.cs delete mode 100644 WinFormsDesigner/Dialogs/SetupDialog.cs delete mode 100644 WinFormsDesigner/Dialogs/SetupDialog.resx diff --git a/ApplicationServices/ApplicationServices.csproj b/ApplicationServices/ApplicationServices.csproj index e40dd992..8b1a203b 100644 --- a/ApplicationServices/ApplicationServices.csproj +++ b/ApplicationServices/ApplicationServices.csproj @@ -5,7 +5,7 @@ - + diff --git a/FileLiberator/DownloadFile.cs b/FileLiberator/DownloadFile.cs index 4203b83a..fd01183f 100644 --- a/FileLiberator/DownloadFile.cs +++ b/FileLiberator/DownloadFile.cs @@ -6,6 +6,7 @@ using Dinah.Core.Net.Http; namespace FileLiberator { // frustratingly copy pasta from DownloadableBase and DownloadPdf + // currently only used to download the .zip flies for upgrade public class DownloadFile : IDownloadable { public event EventHandler DownloadBegin; diff --git a/FileManager/FileManager.csproj b/FileManager/FileManager.csproj index 013ff58b..8dc4c290 100644 --- a/FileManager/FileManager.csproj +++ b/FileManager/FileManager.csproj @@ -5,7 +5,6 @@ - diff --git a/LibationLauncher/LibationLauncher.csproj b/LibationLauncher/LibationLauncher.csproj index 7bd0fd03..126b5369 100644 --- a/LibationLauncher/LibationLauncher.csproj +++ b/LibationLauncher/LibationLauncher.csproj @@ -13,7 +13,7 @@ win-x64 - 5.1.9.1 + 5.1.9.8 diff --git a/WinFormsDesigner/BookLiberation/AutomatedBackupsForm.Designer.cs b/WinFormsDesigner/BookLiberation/AutomatedBackupsForm.Designer.cs deleted file mode 100644 index b25b6438..00000000 --- a/WinFormsDesigner/BookLiberation/AutomatedBackupsForm.Designer.cs +++ /dev/null @@ -1,92 +0,0 @@ -namespace WinFormsDesigner.BookLiberation -{ - partial class AutomatedBackupsForm - { - /// - /// Required designer variable. - /// - private System.ComponentModel.IContainer components = null; - - /// - /// Clean up any resources being used. - /// - /// true if managed resources should be disposed; otherwise, false. - protected override void Dispose(bool disposing) - { - if (disposing && (components != null)) - { - components.Dispose(); - } - base.Dispose(disposing); - } - - #region Windows Form Designer generated code - - /// - /// Required method for Designer support - do not modify - /// the contents of this method with the code editor. - /// - private void InitializeComponent() - { - this.keepGoingCb = new System.Windows.Forms.CheckBox(); - this.logTb = new System.Windows.Forms.TextBox(); - this.label1 = new System.Windows.Forms.Label(); - this.SuspendLayout(); - // - // keepGoingCb - // - this.keepGoingCb.AutoSize = true; - this.keepGoingCb.Checked = true; - this.keepGoingCb.CheckState = System.Windows.Forms.CheckState.Checked; - this.keepGoingCb.Location = new System.Drawing.Point(12, 12); - this.keepGoingCb.Name = "keepGoingCb"; - this.keepGoingCb.Size = new System.Drawing.Size(325, 17); - this.keepGoingCb.TabIndex = 0; - this.keepGoingCb.Text = "Keep going. Uncheck to stop when current backup is complete"; - this.keepGoingCb.UseVisualStyleBackColor = true; - // - // logTb - // - this.logTb.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) - | System.Windows.Forms.AnchorStyles.Left) - | System.Windows.Forms.AnchorStyles.Right))); - this.logTb.Location = new System.Drawing.Point(12, 48); - this.logTb.Multiline = true; - this.logTb.Name = "logTb"; - this.logTb.ReadOnly = true; - this.logTb.ScrollBars = System.Windows.Forms.ScrollBars.Both; - this.logTb.Size = new System.Drawing.Size(960, 202); - this.logTb.TabIndex = 1; - // - // label1 - // - this.label1.AutoSize = true; - this.label1.Location = new System.Drawing.Point(9, 32); - this.label1.Name = "label1"; - this.label1.Size = new System.Drawing.Size(501, 13); - this.label1.TabIndex = 2; - this.label1.Text = "NOTE: if the working directories are inside of Dropbox, some book liberation acti" + - "ons may hang indefinitely"; - // - // AutomatedBackupsForm - // - this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); - this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; - this.ClientSize = new System.Drawing.Size(984, 262); - this.Controls.Add(this.label1); - this.Controls.Add(this.logTb); - this.Controls.Add(this.keepGoingCb); - this.Name = "AutomatedBackupsForm"; - this.Text = "Automated Backups"; - this.ResumeLayout(false); - this.PerformLayout(); - - } - - #endregion - - private System.Windows.Forms.CheckBox keepGoingCb; - private System.Windows.Forms.TextBox logTb; - private System.Windows.Forms.Label label1; - } -} \ No newline at end of file diff --git a/WinFormsDesigner/BookLiberation/AutomatedBackupsForm.cs b/WinFormsDesigner/BookLiberation/AutomatedBackupsForm.cs deleted file mode 100644 index 3982d907..00000000 --- a/WinFormsDesigner/BookLiberation/AutomatedBackupsForm.cs +++ /dev/null @@ -1,13 +0,0 @@ -using System; -using System.Windows.Forms; - -namespace WinFormsDesigner.BookLiberation -{ - public partial class AutomatedBackupsForm : Form - { - public AutomatedBackupsForm() - { - InitializeComponent(); - } - } -} diff --git a/WinFormsDesigner/BookLiberation/AutomatedBackupsForm.resx b/WinFormsDesigner/BookLiberation/AutomatedBackupsForm.resx deleted file mode 100644 index 1af7de15..00000000 --- a/WinFormsDesigner/BookLiberation/AutomatedBackupsForm.resx +++ /dev/null @@ -1,120 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 2.0 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - \ No newline at end of file diff --git a/WinFormsDesigner/BookLiberation/DecryptForm.Designer.cs b/WinFormsDesigner/BookLiberation/DecryptForm.Designer.cs deleted file mode 100644 index 84c4582c..00000000 --- a/WinFormsDesigner/BookLiberation/DecryptForm.Designer.cs +++ /dev/null @@ -1,101 +0,0 @@ -namespace WinFormsDesigner.BookLiberation -{ - partial class DecryptForm - { - /// - /// Required designer variable. - /// - private System.ComponentModel.IContainer components = null; - - /// - /// Clean up any resources being used. - /// - /// true if managed resources should be disposed; otherwise, false. - protected override void Dispose(bool disposing) - { - if (disposing && (components != null)) - { - components.Dispose(); - } - base.Dispose(disposing); - } - - #region Windows Form Designer generated code - - /// - /// Required method for Designer support - do not modify - /// the contents of this method with the code editor. - /// - private void InitializeComponent() - { - this.pictureBox1 = new System.Windows.Forms.PictureBox(); - this.bookInfoLbl = new System.Windows.Forms.Label(); - this.progressBar1 = new System.Windows.Forms.ProgressBar(); - this.rtbLog = new System.Windows.Forms.RichTextBox(); - ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit(); - this.SuspendLayout(); - // - // pictureBox1 - // - this.pictureBox1.Location = new System.Drawing.Point(12, 12); - this.pictureBox1.Name = "pictureBox1"; - this.pictureBox1.Size = new System.Drawing.Size(100, 100); - this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; - this.pictureBox1.TabIndex = 0; - this.pictureBox1.TabStop = false; - // - // bookInfoLbl - // - this.bookInfoLbl.AutoSize = true; - this.bookInfoLbl.Location = new System.Drawing.Point(118, 12); - this.bookInfoLbl.Name = "bookInfoLbl"; - this.bookInfoLbl.Size = new System.Drawing.Size(100, 13); - this.bookInfoLbl.TabIndex = 0; - this.bookInfoLbl.Text = "[multi-line book info]"; - // - // progressBar1 - // - this.progressBar1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left) - | System.Windows.Forms.AnchorStyles.Right))); - this.progressBar1.Location = new System.Drawing.Point(12, 526); - this.progressBar1.Name = "progressBar1"; - this.progressBar1.Size = new System.Drawing.Size(582, 23); - this.progressBar1.TabIndex = 2; - // - // rtbLog - // - this.rtbLog.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) - | System.Windows.Forms.AnchorStyles.Left) - | System.Windows.Forms.AnchorStyles.Right))); - this.rtbLog.Location = new System.Drawing.Point(12, 118); - this.rtbLog.Name = "rtbLog"; - this.rtbLog.Size = new System.Drawing.Size(582, 402); - this.rtbLog.TabIndex = 1; - this.rtbLog.Text = ""; - // - // DecryptForm - // - this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); - this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; - this.ClientSize = new System.Drawing.Size(606, 561); - this.Controls.Add(this.rtbLog); - this.Controls.Add(this.progressBar1); - this.Controls.Add(this.bookInfoLbl); - this.Controls.Add(this.pictureBox1); - this.Name = "DecryptForm"; - this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent; - this.Text = "DecryptForm"; - ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit(); - this.ResumeLayout(false); - this.PerformLayout(); - - } - - #endregion - - private System.Windows.Forms.PictureBox pictureBox1; - private System.Windows.Forms.Label bookInfoLbl; - private System.Windows.Forms.ProgressBar progressBar1; - private System.Windows.Forms.RichTextBox rtbLog; - } -} \ No newline at end of file diff --git a/WinFormsDesigner/BookLiberation/DecryptForm.cs b/WinFormsDesigner/BookLiberation/DecryptForm.cs deleted file mode 100644 index 59a7a395..00000000 --- a/WinFormsDesigner/BookLiberation/DecryptForm.cs +++ /dev/null @@ -1,13 +0,0 @@ -using System; -using System.Windows.Forms; - -namespace WinFormsDesigner.BookLiberation -{ - public partial class DecryptForm : Form - { - public DecryptForm() - { - InitializeComponent(); - } - } -} diff --git a/WinFormsDesigner/BookLiberation/DecryptForm.resx b/WinFormsDesigner/BookLiberation/DecryptForm.resx deleted file mode 100644 index 1af7de15..00000000 --- a/WinFormsDesigner/BookLiberation/DecryptForm.resx +++ /dev/null @@ -1,120 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 2.0 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - \ No newline at end of file diff --git a/WinFormsDesigner/BookLiberation/DownloadForm.Designer.cs b/WinFormsDesigner/BookLiberation/DownloadForm.Designer.cs deleted file mode 100644 index ccc89dfe..00000000 --- a/WinFormsDesigner/BookLiberation/DownloadForm.Designer.cs +++ /dev/null @@ -1,103 +0,0 @@ -namespace WinFormsDesigner.BookLiberation -{ - partial class DownloadForm - { - /// - /// Required designer variable. - /// - private System.ComponentModel.IContainer components = null; - - /// - /// Clean up any resources being used. - /// - /// true if managed resources should be disposed; otherwise, false. - protected override void Dispose(bool disposing) - { - if (disposing && (components != null)) - { - components.Dispose(); - } - base.Dispose(disposing); - } - - #region Windows Form Designer generated code - - /// - /// Required method for Designer support - do not modify - /// the contents of this method with the code editor. - /// - private void InitializeComponent() - { - this.filenameLbl = new System.Windows.Forms.Label(); - this.progressBar1 = new System.Windows.Forms.ProgressBar(); - this.progressLbl = new System.Windows.Forms.Label(); - this.lastUpdateLbl = new System.Windows.Forms.Label(); - this.SuspendLayout(); - // - // filenameLbl - // - this.filenameLbl.AutoSize = true; - this.filenameLbl.Location = new System.Drawing.Point(12, 9); - this.filenameLbl.Name = "filenameLbl"; - this.filenameLbl.Size = new System.Drawing.Size(52, 13); - this.filenameLbl.TabIndex = 0; - this.filenameLbl.Text = "[filename]"; - // - // progressBar1 - // - this.progressBar1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) - | System.Windows.Forms.AnchorStyles.Right))); - this.progressBar1.Location = new System.Drawing.Point(15, 67); - this.progressBar1.Name = "progressBar1"; - this.progressBar1.Size = new System.Drawing.Size(877, 23); - this.progressBar1.TabIndex = 4; - // - // progressLbl - // - this.progressLbl.Location = new System.Drawing.Point(12, 36); - this.progressLbl.Name = "progressLbl"; - this.progressLbl.Size = new System.Drawing.Size(173, 13); - this.progressLbl.TabIndex = 5; - this.progressLbl.Text = "[2,999,999,999] of [2,999,999,999]"; - this.progressLbl.TextAlign = System.Drawing.ContentAlignment.TopRight; - // - // lastUpdateLbl - // - this.lastUpdateLbl.AutoSize = true; - this.lastUpdateLbl.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.lastUpdateLbl.ForeColor = System.Drawing.Color.DarkRed; - this.lastUpdateLbl.Location = new System.Drawing.Point(361, 36); - this.lastUpdateLbl.Name = "lastUpdateLbl"; - this.lastUpdateLbl.Size = new System.Drawing.Size(81, 13); - this.lastUpdateLbl.TabIndex = 6; - this.lastUpdateLbl.Text = "Last updated"; - this.lastUpdateLbl.Visible = false; - // - // DownloadForm - // - this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); - this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; - this.ClientSize = new System.Drawing.Size(904, 102); - this.Controls.Add(this.lastUpdateLbl); - this.Controls.Add(this.progressLbl); - this.Controls.Add(this.progressBar1); - this.Controls.Add(this.filenameLbl); - this.MaximizeBox = false; - this.MinimizeBox = false; - this.Name = "DownloadForm"; - this.ShowIcon = false; - this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent; - this.Text = "Downloading"; - this.ResumeLayout(false); - this.PerformLayout(); - - } - - #endregion - - private System.Windows.Forms.Label filenameLbl; - private System.Windows.Forms.ProgressBar progressBar1; - private System.Windows.Forms.Label progressLbl; - private System.Windows.Forms.Label lastUpdateLbl; - } -} \ No newline at end of file diff --git a/WinFormsDesigner/BookLiberation/DownloadForm.cs b/WinFormsDesigner/BookLiberation/DownloadForm.cs deleted file mode 100644 index bfb82e89..00000000 --- a/WinFormsDesigner/BookLiberation/DownloadForm.cs +++ /dev/null @@ -1,13 +0,0 @@ -using System; -using System.Windows.Forms; - -namespace WinFormsDesigner.BookLiberation -{ - public partial class DownloadForm : Form - { - public DownloadForm() - { - InitializeComponent(); - } - } -} diff --git a/WinFormsDesigner/BookLiberation/DownloadForm.resx b/WinFormsDesigner/BookLiberation/DownloadForm.resx deleted file mode 100644 index 1af7de15..00000000 --- a/WinFormsDesigner/BookLiberation/DownloadForm.resx +++ /dev/null @@ -1,120 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 2.0 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - \ No newline at end of file diff --git a/WinFormsDesigner/Dialogs/AccountsDialog.Designer.cs b/WinFormsDesigner/Dialogs/AccountsDialog.Designer.cs deleted file mode 100644 index b4c50276..00000000 --- a/WinFormsDesigner/Dialogs/AccountsDialog.Designer.cs +++ /dev/null @@ -1,142 +0,0 @@ -namespace WinFormsDesigner.Dialogs -{ - partial class AccountsDialog - { - /// - /// Required designer variable. - /// - private System.ComponentModel.IContainer components = null; - - /// - /// Clean up any resources being used. - /// - /// true if managed resources should be disposed; otherwise, false. - protected override void Dispose(bool disposing) - { - if (disposing && (components != null)) - { - components.Dispose(); - } - base.Dispose(disposing); - } - - #region Windows Form Designer generated code - - /// - /// Required method for Designer support - do not modify - /// the contents of this method with the code editor. - /// - private void InitializeComponent() - { - this.cancelBtn = new System.Windows.Forms.Button(); - this.saveBtn = new System.Windows.Forms.Button(); - this.dataGridView1 = new System.Windows.Forms.DataGridView(); - this.DeleteAccount = new System.Windows.Forms.DataGridViewButtonColumn(); - this.LibraryScan = new System.Windows.Forms.DataGridViewCheckBoxColumn(); - this.AccountId = new System.Windows.Forms.DataGridViewTextBoxColumn(); - this.Locale = new System.Windows.Forms.DataGridViewComboBoxColumn(); - this.AccountName = new System.Windows.Forms.DataGridViewTextBoxColumn(); - ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).BeginInit(); - this.SuspendLayout(); - // - // cancelBtn - // - 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.Location = new System.Drawing.Point(713, 415); - this.cancelBtn.Name = "cancelBtn"; - this.cancelBtn.Size = new System.Drawing.Size(75, 23); - this.cancelBtn.TabIndex = 2; - this.cancelBtn.Text = "Cancel"; - this.cancelBtn.UseVisualStyleBackColor = true; - // - // saveBtn - // - this.saveBtn.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); - this.saveBtn.Location = new System.Drawing.Point(612, 415); - this.saveBtn.Name = "saveBtn"; - this.saveBtn.Size = new System.Drawing.Size(75, 23); - this.saveBtn.TabIndex = 1; - this.saveBtn.Text = "Save"; - this.saveBtn.UseVisualStyleBackColor = true; - // - // dataGridView1 - // - this.dataGridView1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) - | System.Windows.Forms.AnchorStyles.Left) - | System.Windows.Forms.AnchorStyles.Right))); - this.dataGridView1.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.AllCells; - this.dataGridView1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize; - this.dataGridView1.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] { - this.DeleteAccount, - this.LibraryScan, - this.AccountId, - this.Locale, - this.AccountName}); - this.dataGridView1.Location = new System.Drawing.Point(12, 12); - this.dataGridView1.MultiSelect = false; - this.dataGridView1.Name = "dataGridView1"; - this.dataGridView1.Size = new System.Drawing.Size(776, 397); - this.dataGridView1.TabIndex = 0; - // - // DeleteAccount - // - this.DeleteAccount.HeaderText = "Delete"; - this.DeleteAccount.Name = "DeleteAccount"; - this.DeleteAccount.ReadOnly = true; - this.DeleteAccount.Text = "x"; - this.DeleteAccount.Width = 44; - // - // LibraryScan - // - this.LibraryScan.HeaderText = "Include in library scan?"; - this.LibraryScan.Name = "LibraryScan"; - this.LibraryScan.Width = 83; - // - // AccountId - // - this.AccountId.HeaderText = "Audible email/login"; - this.AccountId.Name = "AccountId"; - this.AccountId.Width = 111; - // - // Locale - // - this.Locale.HeaderText = "Locale"; - this.Locale.Name = "Locale"; - this.Locale.Width = 45; - // - // AccountName - // - this.AccountName.HeaderText = "Account nickname (optional)"; - this.AccountName.Name = "AccountName"; - this.AccountName.Width = 152; - // - // AccountsDialog - // - this.AcceptButton = this.saveBtn; - this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); - this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; - this.CancelButton = this.cancelBtn; - this.ClientSize = new System.Drawing.Size(800, 450); - this.Controls.Add(this.dataGridView1); - this.Controls.Add(this.saveBtn); - this.Controls.Add(this.cancelBtn); - this.Name = "AccountsDialog"; - this.Text = "Audible Accounts"; - ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).EndInit(); - this.ResumeLayout(false); - - } - - #endregion - - private System.Windows.Forms.Button cancelBtn; - private System.Windows.Forms.Button saveBtn; - private System.Windows.Forms.DataGridView dataGridView1; - private System.Windows.Forms.DataGridViewButtonColumn DeleteAccount; - private System.Windows.Forms.DataGridViewCheckBoxColumn LibraryScan; - private System.Windows.Forms.DataGridViewTextBoxColumn AccountId; - private System.Windows.Forms.DataGridViewComboBoxColumn Locale; - private System.Windows.Forms.DataGridViewTextBoxColumn AccountName; - } -} \ No newline at end of file diff --git a/WinFormsDesigner/Dialogs/AccountsDialog.cs b/WinFormsDesigner/Dialogs/AccountsDialog.cs deleted file mode 100644 index bfd13ac6..00000000 --- a/WinFormsDesigner/Dialogs/AccountsDialog.cs +++ /dev/null @@ -1,13 +0,0 @@ -using System; -using System.Windows.Forms; - -namespace WinFormsDesigner.Dialogs -{ - public partial class AccountsDialog : Form - { - public AccountsDialog(Form1 parent) - { - InitializeComponent(); - } - } -} diff --git a/WinFormsDesigner/Dialogs/AccountsDialog.resx b/WinFormsDesigner/Dialogs/AccountsDialog.resx deleted file mode 100644 index 18b23138..00000000 --- a/WinFormsDesigner/Dialogs/AccountsDialog.resx +++ /dev/null @@ -1,138 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 2.0 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - True - - - True - - - True - - - True - - - True - - - True - - \ No newline at end of file diff --git a/WinFormsDesigner/Dialogs/EditQuickFilters.Designer.cs b/WinFormsDesigner/Dialogs/EditQuickFilters.Designer.cs deleted file mode 100644 index f73aaa28..00000000 --- a/WinFormsDesigner/Dialogs/EditQuickFilters.Designer.cs +++ /dev/null @@ -1,149 +0,0 @@ -namespace WinFormsDesigner.Dialogs -{ - partial class EditQuickFilters - { - /// - /// Required designer variable. - /// - private System.ComponentModel.IContainer components = null; - - /// - /// Clean up any resources being used. - /// - /// true if managed resources should be disposed; otherwise, false. - protected override void Dispose(bool disposing) - { - if (disposing && (components != null)) - { - components.Dispose(); - } - base.Dispose(disposing); - } - - #region Windows Form Designer generated code - - /// - /// Required method for Designer support - do not modify - /// the contents of this method with the code editor. - /// - private void InitializeComponent() - { - this.cancelBtn = new System.Windows.Forms.Button(); - this.saveBtn = new System.Windows.Forms.Button(); - this.dataGridView1 = new System.Windows.Forms.DataGridView(); - this.Original = new System.Windows.Forms.DataGridViewTextBoxColumn(); - this.Delete = new System.Windows.Forms.DataGridViewButtonColumn(); - this.Filter = new System.Windows.Forms.DataGridViewTextBoxColumn(); - this.MoveUp = new System.Windows.Forms.DataGridViewButtonColumn(); - this.MoveDown = new System.Windows.Forms.DataGridViewButtonColumn(); - ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).BeginInit(); - this.SuspendLayout(); - // - // cancelBtn - // - 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.Location = new System.Drawing.Point(713, 415); - this.cancelBtn.Name = "cancelBtn"; - this.cancelBtn.Size = new System.Drawing.Size(75, 23); - this.cancelBtn.TabIndex = 2; - this.cancelBtn.Text = "Cancel"; - this.cancelBtn.UseVisualStyleBackColor = true; - // - // saveBtn - // - this.saveBtn.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); - this.saveBtn.Location = new System.Drawing.Point(612, 415); - this.saveBtn.Name = "saveBtn"; - this.saveBtn.Size = new System.Drawing.Size(75, 23); - this.saveBtn.TabIndex = 1; - this.saveBtn.Text = "Save"; - this.saveBtn.UseVisualStyleBackColor = true; - // - // dataGridView1 - // - this.dataGridView1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) - | System.Windows.Forms.AnchorStyles.Left) - | System.Windows.Forms.AnchorStyles.Right))); - this.dataGridView1.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.AllCells; - this.dataGridView1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize; - this.dataGridView1.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] { - this.Original, - this.Delete, - this.Filter, - this.MoveUp, - this.MoveDown}); - this.dataGridView1.Location = new System.Drawing.Point(12, 12); - this.dataGridView1.MultiSelect = false; - this.dataGridView1.Name = "dataGridView1"; - this.dataGridView1.Size = new System.Drawing.Size(776, 397); - this.dataGridView1.TabIndex = 0; - // - // Original - // - this.Original.HeaderText = "Original"; - this.Original.Name = "Original"; - this.Original.ReadOnly = true; - this.Original.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable; - this.Original.Visible = false; - this.Original.Width = 48; - // - // Delete - // - this.Delete.HeaderText = "Delete"; - this.Delete.Name = "Delete"; - this.Delete.ReadOnly = true; - this.Delete.Text = "x"; - this.Delete.Width = 44; - // - // Filter - // - this.Filter.HeaderText = "Filter"; - this.Filter.Name = "Filter"; - this.Filter.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable; - this.Filter.Width = 35; - // - // MoveUp - // - this.MoveUp.HeaderText = "Move Up"; - this.MoveUp.Name = "MoveUp"; - this.MoveUp.ReadOnly = true; - this.MoveUp.Text = "^"; - this.MoveUp.Width = 57; - // - // MoveDown - // - this.MoveDown.HeaderText = "Move Down"; - this.MoveDown.Name = "MoveDown"; - this.MoveDown.ReadOnly = true; - this.MoveDown.Text = "v"; - this.MoveDown.Width = 71; - // - // EditQuickFilters - // - this.AcceptButton = this.saveBtn; - this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); - this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; - this.CancelButton = this.cancelBtn; - this.ClientSize = new System.Drawing.Size(800, 450); - this.Controls.Add(this.dataGridView1); - this.Controls.Add(this.cancelBtn); - this.Controls.Add(this.saveBtn); - this.Name = "EditQuickFilters"; - this.Text = "Edit Quick Filters"; - ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).EndInit(); - this.ResumeLayout(false); - - } - - #endregion - private System.Windows.Forms.Button cancelBtn; - private System.Windows.Forms.Button saveBtn; - private System.Windows.Forms.DataGridView dataGridView1; - private System.Windows.Forms.DataGridViewTextBoxColumn Original; - private System.Windows.Forms.DataGridViewButtonColumn Delete; - private System.Windows.Forms.DataGridViewTextBoxColumn Filter; - private System.Windows.Forms.DataGridViewButtonColumn MoveUp; - private System.Windows.Forms.DataGridViewButtonColumn MoveDown; - } -} \ No newline at end of file diff --git a/WinFormsDesigner/Dialogs/EditQuickFilters.cs b/WinFormsDesigner/Dialogs/EditQuickFilters.cs deleted file mode 100644 index 18bfc3dd..00000000 --- a/WinFormsDesigner/Dialogs/EditQuickFilters.cs +++ /dev/null @@ -1,13 +0,0 @@ -using System; -using System.Windows.Forms; - -namespace WinFormsDesigner.Dialogs -{ - public partial class EditQuickFilters : Form - { - public EditQuickFilters(Form1 parent) - { - InitializeComponent(); - } - } -} diff --git a/WinFormsDesigner/Dialogs/EditQuickFilters.resx b/WinFormsDesigner/Dialogs/EditQuickFilters.resx deleted file mode 100644 index 714d166d..00000000 --- a/WinFormsDesigner/Dialogs/EditQuickFilters.resx +++ /dev/null @@ -1,135 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 2.0 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - True - - - True - - - True - - - True - - - True - - \ No newline at end of file diff --git a/WinFormsDesigner/Dialogs/EditTagsDialog.Designer.cs b/WinFormsDesigner/Dialogs/EditTagsDialog.Designer.cs deleted file mode 100644 index 8ed7a9e3..00000000 --- a/WinFormsDesigner/Dialogs/EditTagsDialog.Designer.cs +++ /dev/null @@ -1,90 +0,0 @@ -namespace WinFormsDesigner -{ - partial class EditTagsDialog - { - /// - /// Required designer variable. - /// - private System.ComponentModel.IContainer components = null; - - /// - /// Clean up any resources being used. - /// - /// true if managed resources should be disposed; otherwise, false. - protected override void Dispose(bool disposing) - { - if (disposing && (components != null)) - { - components.Dispose(); - } - base.Dispose(disposing); - } - - #region Windows Form Designer generated code - - /// - /// Required method for Designer support - do not modify - /// the contents of this method with the code editor. - /// - private void InitializeComponent() - { - this.SaveBtn = new System.Windows.Forms.Button(); - this.newTagsTb = new System.Windows.Forms.TextBox(); - this.label1 = new System.Windows.Forms.Label(); - this.SuspendLayout(); - // - // SaveBtn - // - this.SaveBtn.Location = new System.Drawing.Point(396, 25); - this.SaveBtn.Name = "SaveBtn"; - this.SaveBtn.Size = new System.Drawing.Size(75, 23); - this.SaveBtn.TabIndex = 1; - this.SaveBtn.Text = "Save"; - this.SaveBtn.UseVisualStyleBackColor = true; - // - // newTagsTb - // - this.newTagsTb.Location = new System.Drawing.Point(12, 27); - this.newTagsTb.Name = "newTagsTb"; - this.newTagsTb.ScrollBars = System.Windows.Forms.ScrollBars.Both; - this.newTagsTb.Size = new System.Drawing.Size(375, 20); - this.newTagsTb.TabIndex = 0; - // - // label1 - // - this.label1.AutoSize = true; - this.label1.Location = new System.Drawing.Point(12, 9); - this.label1.Name = "label1"; - this.label1.Size = new System.Drawing.Size(424, 13); - this.label1.TabIndex = 2; - this.label1.Text = "Tags are separated by a space. Each tag can contain letters, numbers, and undersc" + - "ores"; - // - // EditTagsDialog - // - this.AcceptButton = this.SaveBtn; - this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); - this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; - this.ClientSize = new System.Drawing.Size(483, 60); - this.Controls.Add(this.label1); - this.Controls.Add(this.newTagsTb); - this.Controls.Add(this.SaveBtn); - this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog; - this.MaximizeBox = false; - this.MinimizeBox = false; - this.Name = "EditTagsDialog"; - this.ShowIcon = false; - this.ShowInTaskbar = false; - this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent; - this.Text = "Edit Tags"; - this.ResumeLayout(false); - this.PerformLayout(); - - } - - #endregion - private System.Windows.Forms.Button SaveBtn; - private System.Windows.Forms.TextBox newTagsTb; - private System.Windows.Forms.Label label1; - } -} \ No newline at end of file diff --git a/WinFormsDesigner/Dialogs/EditTagsDialog.cs b/WinFormsDesigner/Dialogs/EditTagsDialog.cs deleted file mode 100644 index ebeb29ee..00000000 --- a/WinFormsDesigner/Dialogs/EditTagsDialog.cs +++ /dev/null @@ -1,15 +0,0 @@ -using System; -using System.Windows.Forms; - -namespace WinFormsDesigner -{ - public partial class EditTagsDialog : Form - { - public string NewTags { get; private set; } - - public EditTagsDialog() - { - InitializeComponent(); - } - } -} diff --git a/WinFormsDesigner/Dialogs/EditTagsDialog.resx b/WinFormsDesigner/Dialogs/EditTagsDialog.resx deleted file mode 100644 index 1af7de15..00000000 --- a/WinFormsDesigner/Dialogs/EditTagsDialog.resx +++ /dev/null @@ -1,120 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 2.0 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - \ No newline at end of file diff --git a/WinFormsDesigner/Dialogs/IndexLibraryDialog.Designer.cs b/WinFormsDesigner/Dialogs/IndexLibraryDialog.Designer.cs deleted file mode 100644 index d22ce14a..00000000 --- a/WinFormsDesigner/Dialogs/IndexLibraryDialog.Designer.cs +++ /dev/null @@ -1,65 +0,0 @@ -namespace WinFormsDesigner.Dialogs -{ - partial class IndexLibraryDialog - { - /// - /// Required designer variable. - /// - private System.ComponentModel.IContainer components = null; - - /// - /// Clean up any resources being used. - /// - /// true if managed resources should be disposed; otherwise, false. - protected override void Dispose(bool disposing) - { - if (disposing && (components != null)) - { - components.Dispose(); - } - base.Dispose(disposing); - } - - #region Windows Form Designer generated code - - /// - /// Required method for Designer support - do not modify - /// the contents of this method with the code editor. - /// - private void InitializeComponent() - { - this.label1 = new System.Windows.Forms.Label(); - this.SuspendLayout(); - // - // label1 - // - this.label1.AutoSize = true; - this.label1.Location = new System.Drawing.Point(28, 24); - this.label1.Name = "label1"; - this.label1.Size = new System.Drawing.Size(263, 13); - this.label1.TabIndex = 0; - this.label1.Text = "Scanning Audible library. This may take a few minutes."; - // - // IndexLibraryDialog - // - this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); - this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; - this.ClientSize = new System.Drawing.Size(440, 63); - this.Controls.Add(this.label1); - this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog; - this.MaximizeBox = false; - this.MinimizeBox = false; - this.Name = "IndexLibraryDialog"; - this.ShowIcon = false; - this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent; - this.Text = "Scan Library"; - this.ResumeLayout(false); - this.PerformLayout(); - - } - - #endregion - - private System.Windows.Forms.Label label1; - } -} \ No newline at end of file diff --git a/WinFormsDesigner/Dialogs/IndexLibraryDialog.cs b/WinFormsDesigner/Dialogs/IndexLibraryDialog.cs deleted file mode 100644 index 65e117b9..00000000 --- a/WinFormsDesigner/Dialogs/IndexLibraryDialog.cs +++ /dev/null @@ -1,20 +0,0 @@ -using System; -using System.Collections.Generic; -using System.ComponentModel; -using System.Data; -using System.Drawing; -using System.Linq; -using System.Text; -using System.Threading.Tasks; -using System.Windows.Forms; - -namespace WinFormsDesigner.Dialogs -{ - public partial class IndexLibraryDialog : Form - { - public IndexLibraryDialog() - { - InitializeComponent(); - } - } -} diff --git a/WinFormsDesigner/Dialogs/IndexLibraryDialog.resx b/WinFormsDesigner/Dialogs/IndexLibraryDialog.resx deleted file mode 100644 index 1af7de15..00000000 --- a/WinFormsDesigner/Dialogs/IndexLibraryDialog.resx +++ /dev/null @@ -1,120 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 2.0 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - \ No newline at end of file diff --git a/WinFormsDesigner/Dialogs/LibationFilesDialog.Designer.cs b/WinFormsDesigner/Dialogs/LibationFilesDialog.Designer.cs deleted file mode 100644 index 8baa07f6..00000000 --- a/WinFormsDesigner/Dialogs/LibationFilesDialog.Designer.cs +++ /dev/null @@ -1,156 +0,0 @@ -namespace WinFormsDesigner.Dialogs -{ - partial class LibationFilesDialog - { - /// - /// Required designer variable. - /// - private System.ComponentModel.IContainer components = null; - - /// - /// Clean up any resources being used. - /// - /// true if managed resources should be disposed; otherwise, false. - protected override void Dispose(bool disposing) - { - if (disposing && (components != null)) - { - components.Dispose(); - } - base.Dispose(disposing); - } - - #region Windows Form Designer generated code - - /// - /// Required method for Designer support - do not modify - /// the contents of this method with the code editor. - /// - private void InitializeComponent() - { - this.libationFilesDescLbl = new System.Windows.Forms.Label(); - this.libationFilesCustomBtn = new System.Windows.Forms.Button(); - this.libationFilesCustomTb = new System.Windows.Forms.TextBox(); - this.libationFilesCustomRb = new System.Windows.Forms.RadioButton(); - this.libationFilesMyDocsRb = new System.Windows.Forms.RadioButton(); - this.libationFilesRootRb = new System.Windows.Forms.RadioButton(); - this.cancelBtn = new System.Windows.Forms.Button(); - this.saveBtn = new System.Windows.Forms.Button(); - this.SuspendLayout(); - // - // libationFilesDescLbl - // - this.libationFilesDescLbl.AutoSize = true; - this.libationFilesDescLbl.Location = new System.Drawing.Point(12, 9); - this.libationFilesDescLbl.Name = "libationFilesDescLbl"; - this.libationFilesDescLbl.Size = new System.Drawing.Size(36, 13); - this.libationFilesDescLbl.TabIndex = 0; - this.libationFilesDescLbl.Text = "[desc]"; - // - // libationFilesCustomBtn - // - this.libationFilesCustomBtn.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); - this.libationFilesCustomBtn.Location = new System.Drawing.Point(753, 95); - this.libationFilesCustomBtn.Name = "libationFilesCustomBtn"; - this.libationFilesCustomBtn.Size = new System.Drawing.Size(35, 23); - this.libationFilesCustomBtn.TabIndex = 5; - this.libationFilesCustomBtn.Text = "..."; - this.libationFilesCustomBtn.UseVisualStyleBackColor = true; - // - // libationFilesCustomTb - // - this.libationFilesCustomTb.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) - | System.Windows.Forms.AnchorStyles.Right))); - this.libationFilesCustomTb.Location = new System.Drawing.Point(35, 97); - this.libationFilesCustomTb.Name = "libationFilesCustomTb"; - this.libationFilesCustomTb.Size = new System.Drawing.Size(712, 20); - this.libationFilesCustomTb.TabIndex = 4; - // - // libationFilesCustomRb - // - this.libationFilesCustomRb.AutoSize = true; - this.libationFilesCustomRb.Location = new System.Drawing.Point(15, 100); - this.libationFilesCustomRb.Name = "libationFilesCustomRb"; - this.libationFilesCustomRb.Size = new System.Drawing.Size(14, 13); - this.libationFilesCustomRb.TabIndex = 3; - this.libationFilesCustomRb.TabStop = true; - this.libationFilesCustomRb.UseVisualStyleBackColor = true; - // - // libationFilesMyDocsRb - // - this.libationFilesMyDocsRb.AutoSize = true; - this.libationFilesMyDocsRb.CheckAlign = System.Drawing.ContentAlignment.TopLeft; - this.libationFilesMyDocsRb.Location = new System.Drawing.Point(15, 61); - this.libationFilesMyDocsRb.Name = "libationFilesMyDocsRb"; - this.libationFilesMyDocsRb.Size = new System.Drawing.Size(111, 30); - this.libationFilesMyDocsRb.TabIndex = 2; - this.libationFilesMyDocsRb.TabStop = true; - this.libationFilesMyDocsRb.Text = "[desc]\r\n[myDocs\\Libation]"; - this.libationFilesMyDocsRb.UseVisualStyleBackColor = true; - // - // libationFilesRootRb - // - this.libationFilesRootRb.AutoSize = true; - this.libationFilesRootRb.CheckAlign = System.Drawing.ContentAlignment.TopLeft; - this.libationFilesRootRb.Location = new System.Drawing.Point(15, 25); - this.libationFilesRootRb.Name = "libationFilesRootRb"; - this.libationFilesRootRb.Size = new System.Drawing.Size(113, 30); - this.libationFilesRootRb.TabIndex = 1; - this.libationFilesRootRb.TabStop = true; - this.libationFilesRootRb.Text = "[desc]\r\n[appDir\\Libation]"; - this.libationFilesRootRb.UseVisualStyleBackColor = true; - // - // cancelBtn - // - 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.Location = new System.Drawing.Point(713, 124); - this.cancelBtn.Name = "cancelBtn"; - this.cancelBtn.Size = new System.Drawing.Size(75, 23); - this.cancelBtn.TabIndex = 10; - this.cancelBtn.Text = "Cancel"; - this.cancelBtn.UseVisualStyleBackColor = true; - // - // saveBtn - // - this.saveBtn.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); - this.saveBtn.Location = new System.Drawing.Point(612, 124); - this.saveBtn.Name = "saveBtn"; - this.saveBtn.Size = new System.Drawing.Size(75, 23); - this.saveBtn.TabIndex = 9; - this.saveBtn.Text = "Save"; - this.saveBtn.UseVisualStyleBackColor = true; - // - // LibationFilesDialog - // - this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); - this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; - this.ClientSize = new System.Drawing.Size(800, 159); - this.Controls.Add(this.cancelBtn); - this.Controls.Add(this.saveBtn); - this.Controls.Add(this.libationFilesDescLbl); - this.Controls.Add(this.libationFilesCustomBtn); - this.Controls.Add(this.libationFilesCustomTb); - this.Controls.Add(this.libationFilesRootRb); - this.Controls.Add(this.libationFilesCustomRb); - this.Controls.Add(this.libationFilesMyDocsRb); - this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow; - this.Name = "LibationFilesDialog"; - this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent; - this.Text = "Libation Files location"; - this.ResumeLayout(false); - this.PerformLayout(); - - } - - #endregion - private System.Windows.Forms.Label libationFilesDescLbl; - private System.Windows.Forms.Button libationFilesCustomBtn; - private System.Windows.Forms.TextBox libationFilesCustomTb; - private System.Windows.Forms.RadioButton libationFilesCustomRb; - private System.Windows.Forms.RadioButton libationFilesMyDocsRb; - private System.Windows.Forms.RadioButton libationFilesRootRb; - private System.Windows.Forms.Button cancelBtn; - private System.Windows.Forms.Button saveBtn; - } -} \ No newline at end of file diff --git a/WinFormsDesigner/Dialogs/LibationFilesDialog.cs b/WinFormsDesigner/Dialogs/LibationFilesDialog.cs deleted file mode 100644 index 451dd685..00000000 --- a/WinFormsDesigner/Dialogs/LibationFilesDialog.cs +++ /dev/null @@ -1,20 +0,0 @@ -using System; -using System.Collections.Generic; -using System.ComponentModel; -using System.Data; -using System.Drawing; -using System.Linq; -using System.Text; -using System.Threading.Tasks; -using System.Windows.Forms; - -namespace WinFormsDesigner.Dialogs -{ - public partial class LibationFilesDialog : Form - { - public LibationFilesDialog() - { - InitializeComponent(); - } - } -} diff --git a/WinFormsDesigner/Dialogs/LibationFilesDialog.resx b/WinFormsDesigner/Dialogs/LibationFilesDialog.resx deleted file mode 100644 index 1af7de15..00000000 --- a/WinFormsDesigner/Dialogs/LibationFilesDialog.resx +++ /dev/null @@ -1,120 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 2.0 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - \ No newline at end of file diff --git a/WinFormsDesigner/Dialogs/Login/ApprovalNeededDialog.Designer.cs b/WinFormsDesigner/Dialogs/Login/ApprovalNeededDialog.Designer.cs deleted file mode 100644 index 95f0b551..00000000 --- a/WinFormsDesigner/Dialogs/Login/ApprovalNeededDialog.Designer.cs +++ /dev/null @@ -1,79 +0,0 @@ -namespace WinFormsDesigner.Dialogs.Login -{ - partial class ApprovalNeededDialog - { - /// - /// Required designer variable. - /// - private System.ComponentModel.IContainer components = null; - - /// - /// Clean up any resources being used. - /// - /// true if managed resources should be disposed; otherwise, false. - protected override void Dispose(bool disposing) - { - if (disposing && (components != null)) - { - components.Dispose(); - } - base.Dispose(disposing); - } - - #region Windows Form Designer generated code - - /// - /// Required method for Designer support - do not modify - /// the contents of this method with the code editor. - /// - private void InitializeComponent() - { - this.approvedBtn = new System.Windows.Forms.Button(); - this.label1 = new System.Windows.Forms.Label(); - this.SuspendLayout(); - // - // approvedBtn - // - this.approvedBtn.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); - this.approvedBtn.Location = new System.Drawing.Point(18, 75); - this.approvedBtn.Name = "approvedBtn"; - this.approvedBtn.Size = new System.Drawing.Size(79, 23); - this.approvedBtn.TabIndex = 1; - this.approvedBtn.Text = "Approved"; - this.approvedBtn.UseVisualStyleBackColor = true; - // - // label1 - // - this.label1.AutoSize = true; - this.label1.Location = new System.Drawing.Point(12, 9); - this.label1.Name = "label1"; - this.label1.Size = new System.Drawing.Size(280, 39); - this.label1.TabIndex = 0; - this.label1.Text = "Amazon is sending you an email.\r\n\r\nPlease press this button after you approve the" + - " notification."; - // - // ApprovalNeededDialog - // - this.AcceptButton = this.approvedBtn; - this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); - this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; - this.ClientSize = new System.Drawing.Size(345, 115); - this.Controls.Add(this.label1); - this.Controls.Add(this.approvedBtn); - this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog; - this.MaximizeBox = false; - this.MinimizeBox = false; - this.Name = "ApprovalNeededDialog"; - this.ShowIcon = false; - this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent; - this.Text = "Approval Alert Detected"; - this.ResumeLayout(false); - this.PerformLayout(); - - } - - #endregion - private System.Windows.Forms.Button approvedBtn; - private System.Windows.Forms.Label label1; - } -} \ No newline at end of file diff --git a/WinFormsDesigner/Dialogs/Login/ApprovalNeededDialog.cs b/WinFormsDesigner/Dialogs/Login/ApprovalNeededDialog.cs deleted file mode 100644 index be5fa309..00000000 --- a/WinFormsDesigner/Dialogs/Login/ApprovalNeededDialog.cs +++ /dev/null @@ -1,13 +0,0 @@ -using System; -using System.Windows.Forms; - -namespace WinFormsDesigner.Dialogs.Login -{ - public partial class ApprovalNeededDialog : Form - { - public ApprovalNeededDialog() - { - InitializeComponent(); - } - } -} diff --git a/WinFormsDesigner/Dialogs/Login/ApprovalNeededDialog.resx b/WinFormsDesigner/Dialogs/Login/ApprovalNeededDialog.resx deleted file mode 100644 index 1af7de15..00000000 --- a/WinFormsDesigner/Dialogs/Login/ApprovalNeededDialog.resx +++ /dev/null @@ -1,120 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 2.0 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - \ No newline at end of file diff --git a/WinFormsDesigner/Dialogs/Login/AudibleLoginDialog.Designer.cs b/WinFormsDesigner/Dialogs/Login/AudibleLoginDialog.Designer.cs deleted file mode 100644 index d97d3223..00000000 --- a/WinFormsDesigner/Dialogs/Login/AudibleLoginDialog.Designer.cs +++ /dev/null @@ -1,113 +0,0 @@ -namespace WinFormsDesigner.Dialogs.Login -{ - partial class AudibleLoginDialog - { - /// - /// Required designer variable. - /// - private System.ComponentModel.IContainer components = null; - - /// - /// Clean up any resources being used. - /// - /// true if managed resources should be disposed; otherwise, false. - protected override void Dispose(bool disposing) - { - if (disposing && (components != null)) - { - components.Dispose(); - } - base.Dispose(disposing); - } - - #region Windows Form Designer generated code - - /// - /// Required method for Designer support - do not modify - /// the contents of this method with the code editor. - /// - private void InitializeComponent() - { - this.passwordLbl = new System.Windows.Forms.Label(); - this.passwordTb = new System.Windows.Forms.TextBox(); - this.submitBtn = new System.Windows.Forms.Button(); - this.localeLbl = new System.Windows.Forms.Label(); - this.usernameLbl = new System.Windows.Forms.Label(); - this.SuspendLayout(); - // - // passwordLbl - // - this.passwordLbl.AutoSize = true; - this.passwordLbl.Location = new System.Drawing.Point(12, 41); - this.passwordLbl.Name = "passwordLbl"; - this.passwordLbl.Size = new System.Drawing.Size(53, 13); - this.passwordLbl.TabIndex = 2; - this.passwordLbl.Text = "Password"; - // - // passwordTb - // - this.passwordTb.Location = new System.Drawing.Point(71, 38); - this.passwordTb.Name = "passwordTb"; - this.passwordTb.PasswordChar = '*'; - this.passwordTb.Size = new System.Drawing.Size(200, 20); - this.passwordTb.TabIndex = 3; - // - // submitBtn - // - this.submitBtn.Location = new System.Drawing.Point(196, 64); - this.submitBtn.Name = "submitBtn"; - this.submitBtn.Size = new System.Drawing.Size(75, 23); - this.submitBtn.TabIndex = 4; - this.submitBtn.Text = "Submit"; - this.submitBtn.UseVisualStyleBackColor = true; - // - // localeLbl - // - this.localeLbl.AutoSize = true; - this.localeLbl.Location = new System.Drawing.Point(12, 9); - this.localeLbl.Name = "localeLbl"; - this.localeLbl.Size = new System.Drawing.Size(59, 13); - this.localeLbl.TabIndex = 0; - this.localeLbl.Text = "Locale: {0}"; - // - // usernameLbl - // - this.usernameLbl.AutoSize = true; - this.usernameLbl.Location = new System.Drawing.Point(12, 22); - this.usernameLbl.Name = "usernameLbl"; - this.usernameLbl.Size = new System.Drawing.Size(75, 13); - this.usernameLbl.TabIndex = 1; - this.usernameLbl.Text = "Username: {0}"; - // - // AudibleLoginDialog - // - this.AcceptButton = this.submitBtn; - this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); - this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; - this.ClientSize = new System.Drawing.Size(283, 99); - this.Controls.Add(this.usernameLbl); - this.Controls.Add(this.localeLbl); - this.Controls.Add(this.submitBtn); - this.Controls.Add(this.passwordLbl); - this.Controls.Add(this.passwordTb); - this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog; - this.MaximizeBox = false; - this.MinimizeBox = false; - this.Name = "AudibleLoginDialog"; - this.ShowIcon = false; - this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent; - this.Text = "Audible Login"; - this.ResumeLayout(false); - this.PerformLayout(); - - } - - #endregion - - private System.Windows.Forms.Label passwordLbl; - private System.Windows.Forms.TextBox passwordTb; - private System.Windows.Forms.Button submitBtn; - private System.Windows.Forms.Label localeLbl; - private System.Windows.Forms.Label usernameLbl; - } -} \ No newline at end of file diff --git a/WinFormsDesigner/Dialogs/Login/AudibleLoginDialog.cs b/WinFormsDesigner/Dialogs/Login/AudibleLoginDialog.cs deleted file mode 100644 index c8041fa8..00000000 --- a/WinFormsDesigner/Dialogs/Login/AudibleLoginDialog.cs +++ /dev/null @@ -1,20 +0,0 @@ -using System; -using System.Collections.Generic; -using System.ComponentModel; -using System.Data; -using System.Drawing; -using System.Linq; -using System.Text; -using System.Threading.Tasks; -using System.Windows.Forms; - -namespace WinFormsDesigner.Dialogs.Login -{ - public partial class AudibleLoginDialog : Form - { - public AudibleLoginDialog() - { - InitializeComponent(); - } - } -} diff --git a/WinFormsDesigner/Dialogs/Login/CaptchaDialog.Designer.cs b/WinFormsDesigner/Dialogs/Login/CaptchaDialog.Designer.cs deleted file mode 100644 index 908f299f..00000000 --- a/WinFormsDesigner/Dialogs/Login/CaptchaDialog.Designer.cs +++ /dev/null @@ -1,101 +0,0 @@ -namespace WinFormsDesigner.Dialogs.Login -{ - partial class CaptchaDialog - { - /// - /// Required designer variable. - /// - private System.ComponentModel.IContainer components = null; - - /// - /// Clean up any resources being used. - /// - /// true if managed resources should be disposed; otherwise, false. - protected override void Dispose(bool disposing) - { - if (disposing && (components != null)) - { - components.Dispose(); - } - base.Dispose(disposing); - } - - #region Windows Form Designer generated code - - /// - /// Required method for Designer support - do not modify - /// the contents of this method with the code editor. - /// - private void InitializeComponent() - { - this.captchaPb = new System.Windows.Forms.PictureBox(); - this.answerTb = new System.Windows.Forms.TextBox(); - this.submitBtn = new System.Windows.Forms.Button(); - this.answerLbl = new System.Windows.Forms.Label(); - ((System.ComponentModel.ISupportInitialize)(this.captchaPb)).BeginInit(); - this.SuspendLayout(); - // - // captchaPb - // - this.captchaPb.Location = new System.Drawing.Point(12, 12); - this.captchaPb.Name = "captchaPb"; - this.captchaPb.Size = new System.Drawing.Size(200, 70); - this.captchaPb.TabIndex = 0; - this.captchaPb.TabStop = false; - // - // answerTb - // - this.answerTb.Location = new System.Drawing.Point(118, 88); - this.answerTb.Name = "answerTb"; - this.answerTb.Size = new System.Drawing.Size(94, 20); - this.answerTb.TabIndex = 1; - // - // submitBtn - // - this.submitBtn.Location = new System.Drawing.Point(137, 114); - this.submitBtn.Name = "submitBtn"; - this.submitBtn.Size = new System.Drawing.Size(75, 23); - this.submitBtn.TabIndex = 2; - this.submitBtn.Text = "Submit"; - this.submitBtn.UseVisualStyleBackColor = true; - // - // answerLbl - // - this.answerLbl.AutoSize = true; - this.answerLbl.Location = new System.Drawing.Point(12, 91); - this.answerLbl.Name = "answerLbl"; - this.answerLbl.Size = new System.Drawing.Size(100, 13); - this.answerLbl.TabIndex = 0; - this.answerLbl.Text = "CAPTCHA answer: "; - // - // CaptchaDialog - // - this.AcceptButton = this.submitBtn; - this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); - this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; - this.ClientSize = new System.Drawing.Size(224, 149); - this.Controls.Add(this.answerLbl); - this.Controls.Add(this.submitBtn); - this.Controls.Add(this.answerTb); - this.Controls.Add(this.captchaPb); - this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog; - this.MaximizeBox = false; - this.MinimizeBox = false; - this.Name = "CaptchaDialog"; - this.ShowIcon = false; - this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent; - this.Text = "CAPTCHA"; - ((System.ComponentModel.ISupportInitialize)(this.captchaPb)).EndInit(); - this.ResumeLayout(false); - this.PerformLayout(); - - } - - #endregion - - private System.Windows.Forms.PictureBox captchaPb; - private System.Windows.Forms.TextBox answerTb; - private System.Windows.Forms.Button submitBtn; - private System.Windows.Forms.Label answerLbl; - } -} \ No newline at end of file diff --git a/WinFormsDesigner/Dialogs/Login/CaptchaDialog.cs b/WinFormsDesigner/Dialogs/Login/CaptchaDialog.cs deleted file mode 100644 index 930bae3f..00000000 --- a/WinFormsDesigner/Dialogs/Login/CaptchaDialog.cs +++ /dev/null @@ -1,20 +0,0 @@ -using System; -using System.Collections.Generic; -using System.ComponentModel; -using System.Data; -using System.Drawing; -using System.Linq; -using System.Text; -using System.Threading.Tasks; -using System.Windows.Forms; - -namespace WinFormsDesigner.Dialogs.Login -{ - public partial class CaptchaDialog : Form - { - public CaptchaDialog() - { - InitializeComponent(); - } - } -} diff --git a/WinFormsDesigner/Dialogs/Login/MfaDialog.Designer.cs b/WinFormsDesigner/Dialogs/Login/MfaDialog.Designer.cs deleted file mode 100644 index 28f469c4..00000000 --- a/WinFormsDesigner/Dialogs/Login/MfaDialog.Designer.cs +++ /dev/null @@ -1,107 +0,0 @@ - -namespace WinFormsDesigner.Dialogs.Login -{ - partial class MfaDialog - { - /// - /// Required designer variable. - /// - private System.ComponentModel.IContainer components = null; - - /// - /// Clean up any resources being used. - /// - /// true if managed resources should be disposed; otherwise, false. - protected override void Dispose(bool disposing) - { - if (disposing && (components != null)) - { - components.Dispose(); - } - base.Dispose(disposing); - } - - #region Windows Form Designer generated code - - /// - /// Required method for Designer support - do not modify - /// the contents of this method with the code editor. - /// - private void InitializeComponent() - { - this.submitBtn = new System.Windows.Forms.Button(); - this.radioButton1 = new System.Windows.Forms.RadioButton(); - this.radioButton2 = new System.Windows.Forms.RadioButton(); - this.radioButton3 = new System.Windows.Forms.RadioButton(); - this.SuspendLayout(); - // - // submitBtn - // - this.submitBtn.Location = new System.Drawing.Point(12, 81); - this.submitBtn.Name = "submitBtn"; - this.submitBtn.Size = new System.Drawing.Size(75, 23); - this.submitBtn.TabIndex = 3; - this.submitBtn.Text = "Submit"; - this.submitBtn.UseVisualStyleBackColor = true; - // - // radioButton1 - // - this.radioButton1.AutoSize = true; - this.radioButton1.Checked = true; - this.radioButton1.Location = new System.Drawing.Point(12, 12); - this.radioButton1.Name = "radioButton1"; - this.radioButton1.Size = new System.Drawing.Size(220, 17); - this.radioButton1.TabIndex = 0; - this.radioButton1.TabStop = true; - this.radioButton1.Text = "Enter the OTP from the authenticator app"; - this.radioButton1.UseVisualStyleBackColor = true; - // - // radioButton2 - // - this.radioButton2.AutoSize = true; - this.radioButton2.Location = new System.Drawing.Point(12, 35); - this.radioButton2.Name = "radioButton2"; - this.radioButton2.Size = new System.Drawing.Size(157, 17); - this.radioButton2.TabIndex = 1; - this.radioButton2.Text = "Send an SMS to my number"; - this.radioButton2.UseVisualStyleBackColor = true; - // - // radioButton3 - // - this.radioButton3.AutoSize = true; - this.radioButton3.Location = new System.Drawing.Point(12, 58); - this.radioButton3.Name = "radioButton3"; - this.radioButton3.Size = new System.Drawing.Size(128, 17); - this.radioButton3.TabIndex = 2; - this.radioButton3.Text = "Call me on my number"; - this.radioButton3.UseVisualStyleBackColor = true; - // - // MfaDialog - // - this.AcceptButton = this.submitBtn; - this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); - this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; - this.ClientSize = new System.Drawing.Size(341, 112); - this.Controls.Add(this.radioButton3); - this.Controls.Add(this.radioButton2); - this.Controls.Add(this.radioButton1); - this.Controls.Add(this.submitBtn); - this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog; - this.MaximizeBox = false; - this.MinimizeBox = false; - this.Name = "MfaDialog"; - this.ShowIcon = false; - this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent; - this.Text = "Two-step verification"; - this.ResumeLayout(false); - this.PerformLayout(); - - } - - #endregion - private System.Windows.Forms.Button submitBtn; - private System.Windows.Forms.RadioButton radioButton1; - private System.Windows.Forms.RadioButton radioButton2; - private System.Windows.Forms.RadioButton radioButton3; - } -} \ No newline at end of file diff --git a/WinFormsDesigner/Dialogs/Login/MfaDialog.cs b/WinFormsDesigner/Dialogs/Login/MfaDialog.cs deleted file mode 100644 index 043275aa..00000000 --- a/WinFormsDesigner/Dialogs/Login/MfaDialog.cs +++ /dev/null @@ -1,20 +0,0 @@ -using System; -using System.Collections.Generic; -using System.ComponentModel; -using System.Data; -using System.Drawing; -using System.Linq; -using System.Text; -using System.Threading.Tasks; -using System.Windows.Forms; - -namespace WinFormsDesigner.Dialogs.Login -{ - public partial class MfaDialog : Form - { - public MfaDialog() - { - InitializeComponent(); - } - } -} diff --git a/WinFormsDesigner/Dialogs/Login/MfaDialog.resx b/WinFormsDesigner/Dialogs/Login/MfaDialog.resx deleted file mode 100644 index 1af7de15..00000000 --- a/WinFormsDesigner/Dialogs/Login/MfaDialog.resx +++ /dev/null @@ -1,120 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 2.0 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - \ No newline at end of file diff --git a/WinFormsDesigner/Dialogs/Login/_2faCodeDialog.Designer.cs b/WinFormsDesigner/Dialogs/Login/_2faCodeDialog.Designer.cs deleted file mode 100644 index 582dd23e..00000000 --- a/WinFormsDesigner/Dialogs/Login/_2faCodeDialog.Designer.cs +++ /dev/null @@ -1,88 +0,0 @@ -namespace WinFormsDesigner.Dialogs.Login -{ - partial class _2faCodeDialog - { - /// - /// Required designer variable. - /// - private System.ComponentModel.IContainer components = null; - - /// - /// Clean up any resources being used. - /// - /// true if managed resources should be disposed; otherwise, false. - protected override void Dispose(bool disposing) - { - if (disposing && (components != null)) - { - components.Dispose(); - } - base.Dispose(disposing); - } - - #region Windows Form Designer generated code - - /// - /// Required method for Designer support - do not modify - /// the contents of this method with the code editor. - /// - private void InitializeComponent() - { - this.submitBtn = new System.Windows.Forms.Button(); - this.codeTb = new System.Windows.Forms.TextBox(); - this.label1 = new System.Windows.Forms.Label(); - this.SuspendLayout(); - // - // submitBtn - // - this.submitBtn.Location = new System.Drawing.Point(15, 51); - this.submitBtn.Name = "submitBtn"; - this.submitBtn.Size = new System.Drawing.Size(79, 23); - this.submitBtn.TabIndex = 1; - this.submitBtn.Text = "Submit"; - this.submitBtn.UseVisualStyleBackColor = true; - // - // codeTb - // - this.codeTb.Location = new System.Drawing.Point(15, 25); - this.codeTb.Name = "codeTb"; - this.codeTb.ScrollBars = System.Windows.Forms.ScrollBars.Both; - this.codeTb.Size = new System.Drawing.Size(79, 20); - this.codeTb.TabIndex = 0; - // - // label1 - // - this.label1.AutoSize = true; - this.label1.Location = new System.Drawing.Point(12, 9); - this.label1.Name = "label1"; - this.label1.Size = new System.Drawing.Size(82, 13); - this.label1.TabIndex = 2; - this.label1.Text = "Enter 2FA Code"; - // - // _2faCodeDialog - // - this.AcceptButton = this.submitBtn; - this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); - this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; - this.ClientSize = new System.Drawing.Size(106, 86); - this.Controls.Add(this.label1); - this.Controls.Add(this.codeTb); - this.Controls.Add(this.submitBtn); - this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog; - this.MaximizeBox = false; - this.MinimizeBox = false; - this.Name = "_2faCodeDialog"; - this.ShowIcon = false; - this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent; - this.Text = "2FA Code"; - this.ResumeLayout(false); - this.PerformLayout(); - - } - - #endregion - private System.Windows.Forms.Button submitBtn; - private System.Windows.Forms.TextBox codeTb; - private System.Windows.Forms.Label label1; - } -} \ No newline at end of file diff --git a/WinFormsDesigner/Dialogs/Login/_2faCodeDialog.cs b/WinFormsDesigner/Dialogs/Login/_2faCodeDialog.cs deleted file mode 100644 index 5dd1a13b..00000000 --- a/WinFormsDesigner/Dialogs/Login/_2faCodeDialog.cs +++ /dev/null @@ -1,13 +0,0 @@ -using System; -using System.Windows.Forms; - -namespace WinFormsDesigner.Dialogs.Login -{ - public partial class _2faCodeDialog : Form - { - public _2faCodeDialog() - { - InitializeComponent(); - } - } -} diff --git a/WinFormsDesigner/Dialogs/ScanAccountsDialog.Designer.cs b/WinFormsDesigner/Dialogs/ScanAccountsDialog.Designer.cs deleted file mode 100644 index e9f321ad..00000000 --- a/WinFormsDesigner/Dialogs/ScanAccountsDialog.Designer.cs +++ /dev/null @@ -1,117 +0,0 @@ -namespace WinFormsDesigner.Dialogs -{ - partial class ScanAccountsDialog - { - /// - /// Required designer variable. - /// - private System.ComponentModel.IContainer components = null; - - /// - /// Clean up any resources being used. - /// - /// true if managed resources should be disposed; otherwise, false. - protected override void Dispose(bool disposing) - { - if (disposing && (components != null)) - { - components.Dispose(); - } - base.Dispose(disposing); - } - - #region Windows Form Designer generated code - - /// - /// Required method for Designer support - do not modify - /// the contents of this method with the code editor. - /// - private void InitializeComponent() - { - this.accountsLbl = new System.Windows.Forms.Label(); - this.accountsClb = new System.Windows.Forms.CheckedListBox(); - this.importBtn = new System.Windows.Forms.Button(); - this.cancelBtn = new System.Windows.Forms.Button(); - this.editBtn = new System.Windows.Forms.Button(); - this.SuspendLayout(); - // - // accountsLbl - // - this.accountsLbl.AutoSize = true; - this.accountsLbl.Location = new System.Drawing.Point(12, 9); - this.accountsLbl.Name = "accountsLbl"; - this.accountsLbl.Size = new System.Drawing.Size(467, 13); - this.accountsLbl.TabIndex = 0; - this.accountsLbl.Text = "Check the accounts to scan and import. To change default selections, go to: Setti" + - "ngs > Accounts"; - // - // accountsClb - // - this.accountsClb.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) - | System.Windows.Forms.AnchorStyles.Left) - | System.Windows.Forms.AnchorStyles.Right))); - this.accountsClb.FormattingEnabled = true; - this.accountsClb.Location = new System.Drawing.Point(12, 25); - this.accountsClb.Name = "accountsClb"; - this.accountsClb.Size = new System.Drawing.Size(560, 94); - this.accountsClb.TabIndex = 1; - // - // importBtn - // - this.importBtn.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); - this.importBtn.Location = new System.Drawing.Point(396, 125); - this.importBtn.Name = "importBtn"; - this.importBtn.Size = new System.Drawing.Size(75, 23); - this.importBtn.TabIndex = 3; - this.importBtn.Text = "Import"; - this.importBtn.UseVisualStyleBackColor = true; - // - // cancelBtn - // - 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.Location = new System.Drawing.Point(497, 125); - this.cancelBtn.Name = "cancelBtn"; - this.cancelBtn.Size = new System.Drawing.Size(75, 23); - this.cancelBtn.TabIndex = 4; - this.cancelBtn.Text = "Cancel"; - this.cancelBtn.UseVisualStyleBackColor = true; - // - // editBtn - // - this.editBtn.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); - this.editBtn.Location = new System.Drawing.Point(12, 125); - this.editBtn.Name = "editBtn"; - this.editBtn.Size = new System.Drawing.Size(90, 23); - this.editBtn.TabIndex = 2; - this.editBtn.Text = "Edit accounts"; - this.editBtn.UseVisualStyleBackColor = true; - // - // ScanAccountsDialog - // - this.AcceptButton = this.importBtn; - this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); - this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; - this.CancelButton = this.cancelBtn; - this.ClientSize = new System.Drawing.Size(584, 160); - this.Controls.Add(this.editBtn); - this.Controls.Add(this.cancelBtn); - this.Controls.Add(this.importBtn); - this.Controls.Add(this.accountsClb); - this.Controls.Add(this.accountsLbl); - this.Name = "ScanAccountsDialog"; - this.Text = "Which accounts?"; - this.ResumeLayout(false); - this.PerformLayout(); - - } - - #endregion - - private System.Windows.Forms.Label accountsLbl; - private System.Windows.Forms.CheckedListBox accountsClb; - private System.Windows.Forms.Button importBtn; - private System.Windows.Forms.Button cancelBtn; - private System.Windows.Forms.Button editBtn; - } -} \ No newline at end of file diff --git a/WinFormsDesigner/Dialogs/ScanAccountsDialog.cs b/WinFormsDesigner/Dialogs/ScanAccountsDialog.cs deleted file mode 100644 index bcc027fa..00000000 --- a/WinFormsDesigner/Dialogs/ScanAccountsDialog.cs +++ /dev/null @@ -1,20 +0,0 @@ -using System; -using System.Collections.Generic; -using System.ComponentModel; -using System.Data; -using System.Drawing; -using System.Linq; -using System.Text; -using System.Threading.Tasks; -using System.Windows.Forms; - -namespace WinFormsDesigner.Dialogs -{ - public partial class ScanAccountsDialog : Form - { - public ScanAccountsDialog(Form1 parent) - { - InitializeComponent(); - } - } -} diff --git a/WinFormsDesigner/Dialogs/ScanAccountsDialog.resx b/WinFormsDesigner/Dialogs/ScanAccountsDialog.resx deleted file mode 100644 index 1af7de15..00000000 --- a/WinFormsDesigner/Dialogs/ScanAccountsDialog.resx +++ /dev/null @@ -1,120 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 2.0 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - \ No newline at end of file diff --git a/WinFormsDesigner/Dialogs/SearchSyntaxDialog.Designer.cs b/WinFormsDesigner/Dialogs/SearchSyntaxDialog.Designer.cs deleted file mode 100644 index 73601495..00000000 --- a/WinFormsDesigner/Dialogs/SearchSyntaxDialog.Designer.cs +++ /dev/null @@ -1,132 +0,0 @@ -namespace WinFormsDesigner.Dialogs -{ - partial class SearchSyntaxDialog - { - /// - /// Required designer variable. - /// - private System.ComponentModel.IContainer components = null; - - /// - /// Clean up any resources being used. - /// - /// true if managed resources should be disposed; otherwise, false. - protected override void Dispose(bool disposing) - { - if (disposing && (components != null)) - { - components.Dispose(); - } - base.Dispose(disposing); - } - - #region Windows Form Designer generated code - - /// - /// Required method for Designer support - do not modify - /// the contents of this method with the code editor. - /// - private void InitializeComponent() - { - this.label1 = new System.Windows.Forms.Label(); - this.label2 = new System.Windows.Forms.Label(); - this.label3 = new System.Windows.Forms.Label(); - this.label4 = new System.Windows.Forms.Label(); - this.label5 = new System.Windows.Forms.Label(); - this.closeBtn = new System.Windows.Forms.Button(); - this.SuspendLayout(); - // - // label1 - // - this.label1.AutoSize = true; - this.label1.Location = new System.Drawing.Point(12, 9); - this.label1.Name = "label1"; - this.label1.Size = new System.Drawing.Size(358, 52); - this.label1.TabIndex = 0; - this.label1.Text = "Full Lucene query syntax is supported\r\nFields with similar names are synomyns (eg" + - ": Author, Authors, AuthorNames)\r\n\r\nTAG FORMAT: [tagName]"; - // - // label2 - // - this.label2.AutoSize = true; - this.label2.Location = new System.Drawing.Point(12, 71); - this.label2.Name = "label2"; - this.label2.Size = new System.Drawing.Size(118, 65); - this.label2.TabIndex = 1; - this.label2.Text = "STRING FIELDS\r\n\r\nSearch for wizard of oz:\r\n title:oz\r\n title:\"wizard of o" + - "z\""; - // - // label3 - // - this.label3.AutoSize = true; - this.label3.Location = new System.Drawing.Point(233, 71); - this.label3.Name = "label3"; - this.label3.Size = new System.Drawing.Size(195, 78); - this.label3.TabIndex = 2; - this.label3.Text = "NUMBER FIELDS\r\n\r\nFind books between 1-100 minutes long\r\n length:[1 TO 100]\r\nF" + - "ind books exactly 1 hr long\r\n length:60"; - // - // label4 - // - this.label4.AutoSize = true; - this.label4.Location = new System.Drawing.Point(454, 71); - this.label4.Name = "label4"; - this.label4.Size = new System.Drawing.Size(168, 52); - this.label4.TabIndex = 3; - this.label4.Text = "BOOL FIELDS\r\n\r\nFind books that you haven\'t rated:\r\n -IsRated"; - // - // label5 - // - this.label5.AutoSize = true; - this.label5.Location = new System.Drawing.Point(673, 71); - this.label5.Name = "label5"; - this.label5.Size = new System.Drawing.Size(257, 78); - this.label5.TabIndex = 4; - this.label5.Text = "ID FIELDS\r\n\r\nAlice\'s Adventures in Wonderland (ID: B015D78L0U)\r\n id:B015D78L0" + - "U\r\n\r\nAll of these are synonyms for the ID field"; - // - // closeBtn - // - this.closeBtn.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); - this.closeBtn.DialogResult = System.Windows.Forms.DialogResult.Cancel; - this.closeBtn.Location = new System.Drawing.Point(890, 465); - this.closeBtn.Name = "closeBtn"; - this.closeBtn.Size = new System.Drawing.Size(75, 23); - this.closeBtn.TabIndex = 5; - this.closeBtn.Text = "Close"; - this.closeBtn.UseVisualStyleBackColor = true; - // - // SearchSyntaxDialog - // - this.AcceptButton = this.closeBtn; - this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); - this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; - this.CancelButton = this.closeBtn; - this.ClientSize = new System.Drawing.Size(977, 500); - this.Controls.Add(this.closeBtn); - this.Controls.Add(this.label5); - this.Controls.Add(this.label4); - this.Controls.Add(this.label3); - this.Controls.Add(this.label2); - this.Controls.Add(this.label1); - this.MaximizeBox = false; - this.MinimizeBox = false; - this.Name = "SearchSyntaxDialog"; - this.ShowIcon = false; - this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent; - this.Text = "Filter options"; - this.ResumeLayout(false); - this.PerformLayout(); - - } - - #endregion - - private System.Windows.Forms.Label label1; - private System.Windows.Forms.Label label2; - private System.Windows.Forms.Label label3; - private System.Windows.Forms.Label label4; - private System.Windows.Forms.Label label5; - private System.Windows.Forms.Button closeBtn; - } -} \ No newline at end of file diff --git a/WinFormsDesigner/Dialogs/SearchSyntaxDialog.cs b/WinFormsDesigner/Dialogs/SearchSyntaxDialog.cs deleted file mode 100644 index 58f047bd..00000000 --- a/WinFormsDesigner/Dialogs/SearchSyntaxDialog.cs +++ /dev/null @@ -1,13 +0,0 @@ -using System; -using System.Windows.Forms; - -namespace WinFormsDesigner.Dialogs -{ - public partial class SearchSyntaxDialog : Form - { - public SearchSyntaxDialog() - { - InitializeComponent(); - } - } -} diff --git a/WinFormsDesigner/Dialogs/SearchSyntaxDialog.resx b/WinFormsDesigner/Dialogs/SearchSyntaxDialog.resx deleted file mode 100644 index 1af7de15..00000000 --- a/WinFormsDesigner/Dialogs/SearchSyntaxDialog.resx +++ /dev/null @@ -1,120 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 2.0 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - \ No newline at end of file diff --git a/WinFormsDesigner/Dialogs/SettingsDialog.Designer.cs b/WinFormsDesigner/Dialogs/SettingsDialog.Designer.cs deleted file mode 100644 index e790262f..00000000 --- a/WinFormsDesigner/Dialogs/SettingsDialog.Designer.cs +++ /dev/null @@ -1,252 +0,0 @@ -namespace WinFormsDesigner.Dialogs -{ - partial class SettingsDialog - { - /// - /// Required designer variable. - /// - private System.ComponentModel.IContainer components = null; - - /// - /// Clean up any resources being used. - /// - /// true if managed resources should be disposed; otherwise, false. - protected override void Dispose(bool disposing) - { - if (disposing && (components != null)) - { - components.Dispose(); - } - base.Dispose(disposing); - } - - #region Windows Form Designer generated code - - /// - /// Required method for Designer support - do not modify - /// the contents of this method with the code editor. - /// - private void InitializeComponent() - { - this.booksLocationLbl = new System.Windows.Forms.Label(); - this.booksLocationTb = new System.Windows.Forms.TextBox(); - this.booksLocationSearchBtn = new System.Windows.Forms.Button(); - this.booksLocationDescLbl = new System.Windows.Forms.Label(); - this.downloadsInProgressGb = new System.Windows.Forms.GroupBox(); - this.downloadsInProgressLibationFilesRb = new System.Windows.Forms.RadioButton(); - this.downloadsInProgressWinTempRb = new System.Windows.Forms.RadioButton(); - this.downloadsInProgressDescLbl = new System.Windows.Forms.Label(); - this.decryptInProgressGb = new System.Windows.Forms.GroupBox(); - this.decryptInProgressLibationFilesRb = new System.Windows.Forms.RadioButton(); - this.decryptInProgressWinTempRb = new System.Windows.Forms.RadioButton(); - this.decryptInProgressDescLbl = new System.Windows.Forms.Label(); - this.saveBtn = new System.Windows.Forms.Button(); - this.cancelBtn = new System.Windows.Forms.Button(); - this.groupBox1 = new System.Windows.Forms.GroupBox(); - this.downloadsInProgressGb.SuspendLayout(); - this.decryptInProgressGb.SuspendLayout(); - this.groupBox1.SuspendLayout(); - this.SuspendLayout(); - // - // booksLocationLbl - // - this.booksLocationLbl.AutoSize = true; - this.booksLocationLbl.Location = new System.Drawing.Point(12, 17); - this.booksLocationLbl.Name = "booksLocationLbl"; - this.booksLocationLbl.Size = new System.Drawing.Size(77, 13); - this.booksLocationLbl.TabIndex = 0; - this.booksLocationLbl.Text = "Books location"; - // - // booksLocationTb - // - this.booksLocationTb.Location = new System.Drawing.Point(95, 14); - this.booksLocationTb.Name = "booksLocationTb"; - this.booksLocationTb.Size = new System.Drawing.Size(652, 20); - this.booksLocationTb.TabIndex = 1; - // - // booksLocationSearchBtn - // - this.booksLocationSearchBtn.Location = new System.Drawing.Point(753, 12); - this.booksLocationSearchBtn.Name = "booksLocationSearchBtn"; - this.booksLocationSearchBtn.Size = new System.Drawing.Size(35, 23); - this.booksLocationSearchBtn.TabIndex = 2; - this.booksLocationSearchBtn.Text = "..."; - this.booksLocationSearchBtn.UseVisualStyleBackColor = true; - // - // booksLocationDescLbl - // - this.booksLocationDescLbl.AutoSize = true; - this.booksLocationDescLbl.Location = new System.Drawing.Point(92, 37); - this.booksLocationDescLbl.Name = "booksLocationDescLbl"; - this.booksLocationDescLbl.Size = new System.Drawing.Size(36, 13); - this.booksLocationDescLbl.TabIndex = 3; - this.booksLocationDescLbl.Text = "[desc]"; - // - // downloadsInProgressGb - // - this.downloadsInProgressGb.Controls.Add(this.downloadsInProgressLibationFilesRb); - this.downloadsInProgressGb.Controls.Add(this.downloadsInProgressWinTempRb); - this.downloadsInProgressGb.Controls.Add(this.downloadsInProgressDescLbl); - this.downloadsInProgressGb.Location = new System.Drawing.Point(15, 19); - this.downloadsInProgressGb.Name = "downloadsInProgressGb"; - this.downloadsInProgressGb.Size = new System.Drawing.Size(758, 117); - this.downloadsInProgressGb.TabIndex = 4; - this.downloadsInProgressGb.TabStop = false; - this.downloadsInProgressGb.Text = "Downloads in progress"; - // - // downloadsInProgressLibationFilesRb - // - this.downloadsInProgressLibationFilesRb.AutoSize = true; - this.downloadsInProgressLibationFilesRb.CheckAlign = System.Drawing.ContentAlignment.TopLeft; - this.downloadsInProgressLibationFilesRb.Location = new System.Drawing.Point(9, 81); - this.downloadsInProgressLibationFilesRb.Name = "downloadsInProgressLibationFilesRb"; - this.downloadsInProgressLibationFilesRb.Size = new System.Drawing.Size(193, 30); - this.downloadsInProgressLibationFilesRb.TabIndex = 2; - this.downloadsInProgressLibationFilesRb.TabStop = true; - this.downloadsInProgressLibationFilesRb.Text = "[desc]\r\n[libationFiles\\DownloadsInProgress]"; - this.downloadsInProgressLibationFilesRb.UseVisualStyleBackColor = true; - // - // downloadsInProgressWinTempRb - // - this.downloadsInProgressWinTempRb.AutoSize = true; - this.downloadsInProgressWinTempRb.CheckAlign = System.Drawing.ContentAlignment.TopLeft; - this.downloadsInProgressWinTempRb.Location = new System.Drawing.Point(9, 45); - this.downloadsInProgressWinTempRb.Name = "downloadsInProgressWinTempRb"; - this.downloadsInProgressWinTempRb.Size = new System.Drawing.Size(182, 30); - this.downloadsInProgressWinTempRb.TabIndex = 1; - this.downloadsInProgressWinTempRb.TabStop = true; - this.downloadsInProgressWinTempRb.Text = "[desc]\r\n[winTemp\\DownloadsInProgress]"; - this.downloadsInProgressWinTempRb.UseVisualStyleBackColor = true; - // - // downloadsInProgressDescLbl - // - this.downloadsInProgressDescLbl.AutoSize = true; - this.downloadsInProgressDescLbl.Location = new System.Drawing.Point(6, 16); - this.downloadsInProgressDescLbl.Name = "downloadsInProgressDescLbl"; - this.downloadsInProgressDescLbl.Size = new System.Drawing.Size(38, 26); - this.downloadsInProgressDescLbl.TabIndex = 0; - this.downloadsInProgressDescLbl.Text = "[desc]\r\n[line 2]"; - // - // decryptInProgressGb - // - this.decryptInProgressGb.Controls.Add(this.decryptInProgressLibationFilesRb); - this.decryptInProgressGb.Controls.Add(this.decryptInProgressWinTempRb); - this.decryptInProgressGb.Controls.Add(this.decryptInProgressDescLbl); - this.decryptInProgressGb.Location = new System.Drawing.Point(9, 144); - this.decryptInProgressGb.Name = "decryptInProgressGb"; - this.decryptInProgressGb.Size = new System.Drawing.Size(758, 117); - this.decryptInProgressGb.TabIndex = 5; - this.decryptInProgressGb.TabStop = false; - this.decryptInProgressGb.Text = "Decrypt in progress"; - // - // decryptInProgressLibationFilesRb - // - this.decryptInProgressLibationFilesRb.AutoSize = true; - this.decryptInProgressLibationFilesRb.CheckAlign = System.Drawing.ContentAlignment.TopLeft; - this.decryptInProgressLibationFilesRb.Location = new System.Drawing.Point(6, 81); - this.decryptInProgressLibationFilesRb.Name = "decryptInProgressLibationFilesRb"; - this.decryptInProgressLibationFilesRb.Size = new System.Drawing.Size(177, 30); - this.decryptInProgressLibationFilesRb.TabIndex = 2; - this.decryptInProgressLibationFilesRb.TabStop = true; - this.decryptInProgressLibationFilesRb.Text = "[desc]\r\n[libationFiles\\DecryptInProgress]"; - this.decryptInProgressLibationFilesRb.UseVisualStyleBackColor = true; - // - // decryptInProgressWinTempRb - // - this.decryptInProgressWinTempRb.AutoSize = true; - this.decryptInProgressWinTempRb.CheckAlign = System.Drawing.ContentAlignment.TopLeft; - this.decryptInProgressWinTempRb.Location = new System.Drawing.Point(6, 45); - this.decryptInProgressWinTempRb.Name = "decryptInProgressWinTempRb"; - this.decryptInProgressWinTempRb.Size = new System.Drawing.Size(166, 30); - this.decryptInProgressWinTempRb.TabIndex = 1; - this.decryptInProgressWinTempRb.TabStop = true; - this.decryptInProgressWinTempRb.Text = "[desc]\r\n[winTemp\\DecryptInProgress]"; - this.decryptInProgressWinTempRb.UseVisualStyleBackColor = true; - // - // decryptInProgressDescLbl - // - this.decryptInProgressDescLbl.AutoSize = true; - this.decryptInProgressDescLbl.Location = new System.Drawing.Point(6, 16); - this.decryptInProgressDescLbl.Name = "decryptInProgressDescLbl"; - this.decryptInProgressDescLbl.Size = new System.Drawing.Size(38, 26); - this.decryptInProgressDescLbl.TabIndex = 0; - this.decryptInProgressDescLbl.Text = "[desc]\r\n[line 2]"; - // - // saveBtn - // - this.saveBtn.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); - this.saveBtn.Location = new System.Drawing.Point(612, 328); - this.saveBtn.Name = "saveBtn"; - this.saveBtn.Size = new System.Drawing.Size(75, 23); - this.saveBtn.TabIndex = 7; - this.saveBtn.Text = "Save"; - this.saveBtn.UseVisualStyleBackColor = true; - // - // cancelBtn - // - 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.Location = new System.Drawing.Point(713, 328); - this.cancelBtn.Name = "cancelBtn"; - this.cancelBtn.Size = new System.Drawing.Size(75, 23); - this.cancelBtn.TabIndex = 8; - this.cancelBtn.Text = "Cancel"; - this.cancelBtn.UseVisualStyleBackColor = true; - // - // groupBox1 - // - this.groupBox1.Controls.Add(this.downloadsInProgressGb); - this.groupBox1.Controls.Add(this.decryptInProgressGb); - this.groupBox1.Location = new System.Drawing.Point(15, 53); - this.groupBox1.Name = "groupBox1"; - this.groupBox1.Size = new System.Drawing.Size(773, 269); - this.groupBox1.TabIndex = 6; - this.groupBox1.TabStop = false; - this.groupBox1.Text = "Advanced settings for control freaks"; - // - // SettingsDialog - // - this.AcceptButton = this.saveBtn; - this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); - this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; - this.CancelButton = this.cancelBtn; - this.ClientSize = new System.Drawing.Size(800, 363); - this.Controls.Add(this.groupBox1); - this.Controls.Add(this.cancelBtn); - this.Controls.Add(this.saveBtn); - this.Controls.Add(this.booksLocationDescLbl); - this.Controls.Add(this.booksLocationSearchBtn); - this.Controls.Add(this.booksLocationTb); - this.Controls.Add(this.booksLocationLbl); - this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow; - this.Name = "SettingsDialog"; - this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent; - this.Text = "Edit Settings"; - this.downloadsInProgressGb.ResumeLayout(false); - this.downloadsInProgressGb.PerformLayout(); - this.decryptInProgressGb.ResumeLayout(false); - this.decryptInProgressGb.PerformLayout(); - this.groupBox1.ResumeLayout(false); - this.ResumeLayout(false); - this.PerformLayout(); - - } - - #endregion - private System.Windows.Forms.Label booksLocationLbl; - private System.Windows.Forms.TextBox booksLocationTb; - private System.Windows.Forms.Button booksLocationSearchBtn; - private System.Windows.Forms.Label booksLocationDescLbl; - private System.Windows.Forms.GroupBox downloadsInProgressGb; - private System.Windows.Forms.Label downloadsInProgressDescLbl; - private System.Windows.Forms.RadioButton downloadsInProgressWinTempRb; - private System.Windows.Forms.RadioButton downloadsInProgressLibationFilesRb; - private System.Windows.Forms.GroupBox decryptInProgressGb; - private System.Windows.Forms.Label decryptInProgressDescLbl; - private System.Windows.Forms.RadioButton decryptInProgressLibationFilesRb; - private System.Windows.Forms.RadioButton decryptInProgressWinTempRb; - private System.Windows.Forms.Button saveBtn; - private System.Windows.Forms.Button cancelBtn; - private System.Windows.Forms.GroupBox groupBox1; - } -} \ No newline at end of file diff --git a/WinFormsDesigner/Dialogs/SettingsDialog.cs b/WinFormsDesigner/Dialogs/SettingsDialog.cs deleted file mode 100644 index 98184d4d..00000000 --- a/WinFormsDesigner/Dialogs/SettingsDialog.cs +++ /dev/null @@ -1,13 +0,0 @@ -using System; -using System.Windows.Forms; - -namespace WinFormsDesigner.Dialogs -{ - public partial class SettingsDialog : Form - { - public SettingsDialog() - { - InitializeComponent(); - } - } -} diff --git a/WinFormsDesigner/Dialogs/SettingsDialog.resx b/WinFormsDesigner/Dialogs/SettingsDialog.resx deleted file mode 100644 index 1af7de15..00000000 --- a/WinFormsDesigner/Dialogs/SettingsDialog.resx +++ /dev/null @@ -1,120 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 2.0 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - \ No newline at end of file diff --git a/WinFormsDesigner/Dialogs/SetupDialog.Designer.cs b/WinFormsDesigner/Dialogs/SetupDialog.Designer.cs deleted file mode 100644 index 71bbaa50..00000000 --- a/WinFormsDesigner/Dialogs/SetupDialog.Designer.cs +++ /dev/null @@ -1,105 +0,0 @@ -namespace WinFormsDesigner.Dialogs -{ - partial class SetupDialog - { - /// - /// Required designer variable. - /// - private System.ComponentModel.IContainer components = null; - - /// - /// Clean up any resources being used. - /// - /// true if managed resources should be disposed; otherwise, false. - protected override void Dispose(bool disposing) - { - if (disposing && (components != null)) - { - components.Dispose(); - } - base.Dispose(disposing); - } - - #region Windows Form Designer generated code - - /// - /// Required method for Designer support - do not modify - /// the contents of this method with the code editor. - /// - private void InitializeComponent() - { - System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(SetupDialog)); - this.welcomeLbl = new System.Windows.Forms.Label(); - this.noQuestionsBtn = new System.Windows.Forms.Button(); - this.basicBtn = new System.Windows.Forms.Button(); - this.advancedBtn = new System.Windows.Forms.Button(); - this.SuspendLayout(); - // - // welcomeLbl - // - this.welcomeLbl.AutoSize = true; - this.welcomeLbl.Location = new System.Drawing.Point(12, 9); - this.welcomeLbl.Name = "welcomeLbl"; - this.welcomeLbl.Size = new System.Drawing.Size(399, 117); - this.welcomeLbl.TabIndex = 0; - this.welcomeLbl.Text = resources.GetString("welcomeLbl.Text"); - // - // noQuestionsBtn - // - this.noQuestionsBtn.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left) - | System.Windows.Forms.AnchorStyles.Right))); - this.noQuestionsBtn.Location = new System.Drawing.Point(15, 129); - this.noQuestionsBtn.Name = "noQuestionsBtn"; - this.noQuestionsBtn.Size = new System.Drawing.Size(396, 57); - this.noQuestionsBtn.TabIndex = 1; - this.noQuestionsBtn.Text = "NO-QUESTIONS SETUP\r\n\r\nAccept all defaults"; - this.noQuestionsBtn.UseVisualStyleBackColor = true; - // - // basicBtn - // - this.basicBtn.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left) - | System.Windows.Forms.AnchorStyles.Right))); - this.basicBtn.Location = new System.Drawing.Point(15, 192); - this.basicBtn.Name = "basicBtn"; - this.basicBtn.Size = new System.Drawing.Size(396, 57); - this.basicBtn.TabIndex = 2; - this.basicBtn.Text = "BASIC SETUP\r\n\r\nChoose settings"; - this.basicBtn.UseVisualStyleBackColor = true; - // - // advancedBtn - // - this.advancedBtn.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left) - | System.Windows.Forms.AnchorStyles.Right))); - this.advancedBtn.Location = new System.Drawing.Point(15, 255); - this.advancedBtn.Name = "advancedBtn"; - this.advancedBtn.Size = new System.Drawing.Size(396, 57); - this.advancedBtn.TabIndex = 3; - this.advancedBtn.Text = "ADVANCED SETUP\r\n\r\nChoose settings and where to store them"; - this.advancedBtn.UseVisualStyleBackColor = true; - // - // SetupDialog - // - this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); - this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; - this.ClientSize = new System.Drawing.Size(423, 324); - this.Controls.Add(this.advancedBtn); - this.Controls.Add(this.basicBtn); - this.Controls.Add(this.noQuestionsBtn); - this.Controls.Add(this.welcomeLbl); - this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow; - this.Name = "SetupDialog"; - this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; - this.Text = "Welcome to Libation"; - this.ResumeLayout(false); - this.PerformLayout(); - - } - - #endregion - - private System.Windows.Forms.Label welcomeLbl; - private System.Windows.Forms.Button noQuestionsBtn; - private System.Windows.Forms.Button basicBtn; - private System.Windows.Forms.Button advancedBtn; - } -} \ No newline at end of file diff --git a/WinFormsDesigner/Dialogs/SetupDialog.cs b/WinFormsDesigner/Dialogs/SetupDialog.cs deleted file mode 100644 index 551726e2..00000000 --- a/WinFormsDesigner/Dialogs/SetupDialog.cs +++ /dev/null @@ -1,20 +0,0 @@ -using System; -using System.Collections.Generic; -using System.ComponentModel; -using System.Data; -using System.Drawing; -using System.Linq; -using System.Text; -using System.Threading.Tasks; -using System.Windows.Forms; - -namespace WinFormsDesigner.Dialogs -{ - public partial class SetupDialog : Form - { - public SetupDialog() - { - InitializeComponent(); - } - } -} diff --git a/WinFormsDesigner/Dialogs/SetupDialog.resx b/WinFormsDesigner/Dialogs/SetupDialog.resx deleted file mode 100644 index 3afce6fa..00000000 --- a/WinFormsDesigner/Dialogs/SetupDialog.resx +++ /dev/null @@ -1,131 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 2.0 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - This appears to be your first time using Libation or a previous setup was incomplete. - -Please fill in a few settings. You can also change these settings later. - -After you make your selections, get started by importing your library. -Go to Import > Scan Library - -Download your entire library from the "Liberate" tab or -liberate your books one at a time by clicking the stoplight - - \ No newline at end of file diff --git a/WinFormsDesigner/WinFormsDesigner.csproj b/WinFormsDesigner/WinFormsDesigner.csproj index 8a05373d..cc091b42 100644 --- a/WinFormsDesigner/WinFormsDesigner.csproj +++ b/WinFormsDesigner/WinFormsDesigner.csproj @@ -41,114 +41,10 @@ - - - - Form - - - AutomatedBackupsForm.cs - - - Form - - - DownloadForm.cs - - - Form - - - DecryptForm.cs - - - Form - - - AccountsDialog.cs - - - Form - - - EditQuickFilters.cs - - - Form - - - IndexLibraryDialog.cs - - - Form - - - LibationFilesDialog.cs - - - Form - - - ApprovalNeededDialog.cs - - - Form - - - AudibleLoginDialog.cs - - - Form - - - CaptchaDialog.cs - - - Form - - - MfaDialog.cs - - - Form - - - _2faCodeDialog.cs - - - Form - - - EditTagsDialog.cs - - - Form - - - ScanAccountsDialog.cs - - - Form - - - SettingsDialog.cs - - - Form - - - SearchSyntaxDialog.cs - - - Form - - - SetupDialog.cs - Form @@ -163,49 +59,6 @@ - - AutomatedBackupsForm.cs - - - DownloadForm.cs - - - DecryptForm.cs - - - AccountsDialog.cs - - - EditQuickFilters.cs - Designer - - - EditTagsDialog.cs - - - IndexLibraryDialog.cs - - - LibationFilesDialog.cs - - - ApprovalNeededDialog.cs - - - MfaDialog.cs - - - ScanAccountsDialog.cs - - - SettingsDialog.cs - - - SearchSyntaxDialog.cs - - - SetupDialog.cs - Form1.cs