mirror of
https://github.com/claunia/cuetools.net.git
synced 2025-12-16 18:14:25 +00:00
* ArCueDotNet: don't search for cover art * 'Silent track' diagnostics in AR log * LAME.dll: settings were not used * libwavpack: settings were not used (MD5Sum & extra mode) * workarounds for various Mono bugs * Path formatting: %discnumber% produces two-digit numbers if %totaldiscs% > 9 * Overwrite dialog: list files, 'remember the choice' option * Doesn't abort on broken Artwork files * Better locates files in some complicated cases, e.g. when only some tracks have tracknumber tags * Folder browser now sorts contents, because OS didn't do it when browsing external drives etc
120 lines
4.3 KiB
C#
120 lines
4.3 KiB
C#
namespace JDP
|
|
{
|
|
partial class frmOverwrite
|
|
{
|
|
/// <summary>
|
|
/// Required designer variable.
|
|
/// </summary>
|
|
private System.ComponentModel.IContainer components = null;
|
|
|
|
/// <summary>
|
|
/// Clean up any resources being used.
|
|
/// </summary>
|
|
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
|
|
protected override void Dispose(bool disposing)
|
|
{
|
|
if (disposing && (components != null))
|
|
{
|
|
components.Dispose();
|
|
}
|
|
base.Dispose(disposing);
|
|
}
|
|
|
|
#region Windows Form Designer generated code
|
|
|
|
/// <summary>
|
|
/// Required method for Designer support - do not modify
|
|
/// the contents of this method with the code editor.
|
|
/// </summary>
|
|
private void InitializeComponent()
|
|
{
|
|
this.buttonNo = new System.Windows.Forms.Button();
|
|
this.buttonYes = new System.Windows.Forms.Button();
|
|
this.checkBoxRemember = new System.Windows.Forms.CheckBox();
|
|
this.labelAlreadyExist = new System.Windows.Forms.Label();
|
|
this.textFiles = new System.Windows.Forms.TextBox();
|
|
this.SuspendLayout();
|
|
//
|
|
// buttonNo
|
|
//
|
|
this.buttonNo.DialogResult = System.Windows.Forms.DialogResult.No;
|
|
this.buttonNo.Location = new System.Drawing.Point(587, 278);
|
|
this.buttonNo.Name = "buttonNo";
|
|
this.buttonNo.Size = new System.Drawing.Size(75, 23);
|
|
this.buttonNo.TabIndex = 0;
|
|
this.buttonNo.Text = "No";
|
|
this.buttonNo.UseVisualStyleBackColor = true;
|
|
//
|
|
// buttonYes
|
|
//
|
|
this.buttonYes.DialogResult = System.Windows.Forms.DialogResult.Yes;
|
|
this.buttonYes.Location = new System.Drawing.Point(506, 278);
|
|
this.buttonYes.Name = "buttonYes";
|
|
this.buttonYes.Size = new System.Drawing.Size(75, 23);
|
|
this.buttonYes.TabIndex = 1;
|
|
this.buttonYes.Text = "Yes";
|
|
this.buttonYes.UseVisualStyleBackColor = true;
|
|
//
|
|
// checkBoxRemember
|
|
//
|
|
this.checkBoxRemember.AutoSize = true;
|
|
this.checkBoxRemember.Location = new System.Drawing.Point(12, 282);
|
|
this.checkBoxRemember.Name = "checkBoxRemember";
|
|
this.checkBoxRemember.Size = new System.Drawing.Size(128, 17);
|
|
this.checkBoxRemember.TabIndex = 3;
|
|
this.checkBoxRemember.Text = "Remember my choice";
|
|
this.checkBoxRemember.UseVisualStyleBackColor = true;
|
|
//
|
|
// labelAlreadyExist
|
|
//
|
|
this.labelAlreadyExist.AutoSize = true;
|
|
this.labelAlreadyExist.Location = new System.Drawing.Point(201, 283);
|
|
this.labelAlreadyExist.Name = "labelAlreadyExist";
|
|
this.labelAlreadyExist.Size = new System.Drawing.Size(203, 13);
|
|
this.labelAlreadyExist.TabIndex = 2;
|
|
this.labelAlreadyExist.Text = "Some of the files already exist. Overwrite?";
|
|
//
|
|
// textFiles
|
|
//
|
|
this.textFiles.Font = new System.Drawing.Font("Courier New", 8.25F);
|
|
this.textFiles.Location = new System.Drawing.Point(9, 9);
|
|
this.textFiles.Margin = new System.Windows.Forms.Padding(0);
|
|
this.textFiles.Multiline = true;
|
|
this.textFiles.Name = "textFiles";
|
|
this.textFiles.ReadOnly = true;
|
|
this.textFiles.ScrollBars = System.Windows.Forms.ScrollBars.Both;
|
|
this.textFiles.Size = new System.Drawing.Size(656, 254);
|
|
this.textFiles.TabIndex = 4;
|
|
this.textFiles.TabStop = false;
|
|
this.textFiles.WordWrap = false;
|
|
//
|
|
// frmOverwrite
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(674, 313);
|
|
this.Controls.Add(this.textFiles);
|
|
this.Controls.Add(this.labelAlreadyExist);
|
|
this.Controls.Add(this.checkBoxRemember);
|
|
this.Controls.Add(this.buttonYes);
|
|
this.Controls.Add(this.buttonNo);
|
|
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
|
|
this.MaximizeBox = false;
|
|
this.MinimizeBox = false;
|
|
this.Name = "frmOverwrite";
|
|
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
|
|
this.Text = "Overwrite?";
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.Button buttonNo;
|
|
private System.Windows.Forms.Button buttonYes;
|
|
private System.Windows.Forms.Label labelAlreadyExist;
|
|
internal System.Windows.Forms.TextBox textFiles;
|
|
internal System.Windows.Forms.CheckBox checkBoxRemember;
|
|
}
|
|
} |