ShareX/ShareX.MediaLib/Forms/VideoConverterForm.Designer.cs

305 lines
16 KiB
C#
Raw Normal View History

2019-11-17 08:34:32 +13:00
namespace ShareX.MediaLib
{
partial class VideoConverterForm
{
/// <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.lblInputFilePath = new System.Windows.Forms.Label();
this.txtInputFilePath = new System.Windows.Forms.TextBox();
this.btnInputFilePathBrowse = new System.Windows.Forms.Button();
this.txtOutputFolder = new System.Windows.Forms.TextBox();
this.lblOutputFolder = new System.Windows.Forms.Label();
this.btnOutputFolderBrowse = new System.Windows.Forms.Button();
this.lblOutputFileName = new System.Windows.Forms.Label();
this.txtOutputFileName = new System.Windows.Forms.TextBox();
this.lblVideoCodec = new System.Windows.Forms.Label();
this.cbVideoCodec = new System.Windows.Forms.ComboBox();
this.lblVideoQuality = new System.Windows.Forms.Label();
this.btnEncode = new System.Windows.Forms.Button();
2019-11-18 09:17:47 +13:00
this.txtArguments = new System.Windows.Forms.TextBox();
2019-11-20 02:52:34 +13:00
this.tbVideoQuality = new System.Windows.Forms.TrackBar();
this.lblVideoQualityValue = new System.Windows.Forms.Label();
this.lblVideoQualityHigher = new System.Windows.Forms.Label();
2019-12-02 05:26:38 +13:00
this.lblVideoQualityLower = new System.Windows.Forms.Label();
this.cbAutoOpenFolder = new System.Windows.Forms.CheckBox();
this.pbProgress = new ShareX.HelpersLib.BlackStyleProgressBar();
this.cbUseCustomArguments = new System.Windows.Forms.CheckBox();
2019-11-20 02:52:34 +13:00
((System.ComponentModel.ISupportInitialize)(this.tbVideoQuality)).BeginInit();
this.SuspendLayout();
//
// lblInputFilePath
//
this.lblInputFilePath.AutoSize = true;
this.lblInputFilePath.Location = new System.Drawing.Point(13, 16);
this.lblInputFilePath.Name = "lblInputFilePath";
this.lblInputFilePath.Size = new System.Drawing.Size(74, 13);
this.lblInputFilePath.TabIndex = 0;
this.lblInputFilePath.Text = "Input file path:";
//
// txtInputFilePath
//
this.txtInputFilePath.Location = new System.Drawing.Point(120, 12);
this.txtInputFilePath.Name = "txtInputFilePath";
this.txtInputFilePath.Size = new System.Drawing.Size(280, 20);
this.txtInputFilePath.TabIndex = 1;
2019-11-17 10:04:02 +13:00
this.txtInputFilePath.TextChanged += new System.EventHandler(this.txtInputFilePath_TextChanged);
//
// btnInputFilePathBrowse
//
this.btnInputFilePathBrowse.Location = new System.Drawing.Point(408, 11);
this.btnInputFilePathBrowse.Name = "btnInputFilePathBrowse";
this.btnInputFilePathBrowse.Size = new System.Drawing.Size(32, 23);
this.btnInputFilePathBrowse.TabIndex = 2;
this.btnInputFilePathBrowse.Text = "...";
this.btnInputFilePathBrowse.UseVisualStyleBackColor = true;
this.btnInputFilePathBrowse.Click += new System.EventHandler(this.btnInputFilePathBrowse_Click);
//
// txtOutputFolder
//
this.txtOutputFolder.Location = new System.Drawing.Point(120, 36);
this.txtOutputFolder.Name = "txtOutputFolder";
this.txtOutputFolder.Size = new System.Drawing.Size(280, 20);
this.txtOutputFolder.TabIndex = 4;
2019-11-17 10:04:02 +13:00
this.txtOutputFolder.TextChanged += new System.EventHandler(this.txtOutputFolder_TextChanged);
//
// lblOutputFolder
//
this.lblOutputFolder.AutoSize = true;
this.lblOutputFolder.Location = new System.Drawing.Point(13, 40);
this.lblOutputFolder.Name = "lblOutputFolder";
this.lblOutputFolder.Size = new System.Drawing.Size(71, 13);
this.lblOutputFolder.TabIndex = 3;
this.lblOutputFolder.Text = "Output folder:";
//
// btnOutputFolderBrowse
//
this.btnOutputFolderBrowse.Location = new System.Drawing.Point(408, 35);
this.btnOutputFolderBrowse.Name = "btnOutputFolderBrowse";
this.btnOutputFolderBrowse.Size = new System.Drawing.Size(32, 23);
this.btnOutputFolderBrowse.TabIndex = 5;
this.btnOutputFolderBrowse.Text = "...";
this.btnOutputFolderBrowse.UseVisualStyleBackColor = true;
2019-11-22 21:26:08 +13:00
this.btnOutputFolderBrowse.Click += new System.EventHandler(this.btnOutputFolderBrowse_Click);
//
// lblOutputFileName
//
this.lblOutputFileName.AutoSize = true;
this.lblOutputFileName.Location = new System.Drawing.Point(13, 64);
this.lblOutputFileName.Name = "lblOutputFileName";
this.lblOutputFileName.Size = new System.Drawing.Size(87, 13);
this.lblOutputFileName.TabIndex = 6;
this.lblOutputFileName.Text = "Output file name:";
//
// txtOutputFileName
//
this.txtOutputFileName.Location = new System.Drawing.Point(120, 60);
this.txtOutputFileName.Name = "txtOutputFileName";
this.txtOutputFileName.Size = new System.Drawing.Size(280, 20);
this.txtOutputFileName.TabIndex = 7;
2019-11-17 10:04:02 +13:00
this.txtOutputFileName.TextChanged += new System.EventHandler(this.txtOutputFileName_TextChanged);
//
// lblVideoCodec
//
this.lblVideoCodec.AutoSize = true;
this.lblVideoCodec.Location = new System.Drawing.Point(13, 96);
this.lblVideoCodec.Name = "lblVideoCodec";
this.lblVideoCodec.Size = new System.Drawing.Size(70, 13);
this.lblVideoCodec.TabIndex = 8;
this.lblVideoCodec.Text = "Video codec:";
//
// cbVideoCodec
//
this.cbVideoCodec.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.cbVideoCodec.FormattingEnabled = true;
this.cbVideoCodec.Location = new System.Drawing.Point(120, 92);
this.cbVideoCodec.Name = "cbVideoCodec";
2019-11-17 08:34:32 +13:00
this.cbVideoCodec.Size = new System.Drawing.Size(120, 21);
this.cbVideoCodec.TabIndex = 9;
2019-11-17 10:04:02 +13:00
this.cbVideoCodec.SelectedIndexChanged += new System.EventHandler(this.cbVideoCodec_SelectedIndexChanged);
//
// lblVideoQuality
//
this.lblVideoQuality.AutoSize = true;
this.lblVideoQuality.Location = new System.Drawing.Point(13, 128);
this.lblVideoQuality.Name = "lblVideoQuality";
this.lblVideoQuality.Size = new System.Drawing.Size(70, 13);
this.lblVideoQuality.TabIndex = 10;
this.lblVideoQuality.Text = "Video quality:";
//
// btnEncode
//
2019-11-18 09:17:47 +13:00
this.btnEncode.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.btnEncode.Location = new System.Drawing.Point(16, 232);
this.btnEncode.Name = "btnEncode";
2019-11-23 20:35:33 +13:00
this.btnEncode.Size = new System.Drawing.Size(184, 32);
2019-11-20 02:52:34 +13:00
this.btnEncode.TabIndex = 17;
this.btnEncode.Text = "Start encoding";
this.btnEncode.UseVisualStyleBackColor = true;
this.btnEncode.Click += new System.EventHandler(this.btnEncode_Click);
//
2019-11-18 09:17:47 +13:00
// txtArguments
//
2019-11-18 09:17:47 +13:00
this.txtArguments.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.txtArguments.Location = new System.Drawing.Point(16, 88);
2019-11-18 09:17:47 +13:00
this.txtArguments.Multiline = true;
this.txtArguments.Name = "txtArguments";
this.txtArguments.Size = new System.Drawing.Size(424, 80);
2019-11-20 02:52:34 +13:00
this.txtArguments.TabIndex = 16;
this.txtArguments.TextChanged += new System.EventHandler(this.txtArguments_TextChanged);
//
2019-11-20 02:52:34 +13:00
// tbVideoQuality
//
this.tbVideoQuality.AutoSize = false;
2019-11-23 03:40:11 +13:00
this.tbVideoQuality.BackColor = System.Drawing.SystemColors.Window;
this.tbVideoQuality.Location = new System.Drawing.Point(112, 123);
2019-11-20 02:52:34 +13:00
this.tbVideoQuality.Name = "tbVideoQuality";
this.tbVideoQuality.Size = new System.Drawing.Size(296, 22);
2019-11-20 02:52:34 +13:00
this.tbVideoQuality.TabIndex = 11;
this.tbVideoQuality.TickStyle = System.Windows.Forms.TickStyle.None;
this.tbVideoQuality.ValueChanged += new System.EventHandler(this.tbVideoQuality_ValueChanged);
//
// lblVideoQualityValue
//
this.lblVideoQualityValue.AutoSize = true;
2019-12-02 05:26:38 +13:00
this.lblVideoQualityValue.Location = new System.Drawing.Point(413, 126);
2019-11-20 02:52:34 +13:00
this.lblVideoQualityValue.Name = "lblVideoQualityValue";
this.lblVideoQualityValue.Size = new System.Drawing.Size(13, 13);
2019-11-21 01:53:14 +13:00
this.lblVideoQualityValue.TabIndex = 14;
2019-11-20 02:52:34 +13:00
this.lblVideoQualityValue.Text = "0";
//
// lblVideoQualityHigher
//
this.lblVideoQualityHigher.Location = new System.Drawing.Point(267, 146);
2019-11-20 02:52:34 +13:00
this.lblVideoQualityHigher.Name = "lblVideoQualityHigher";
this.lblVideoQualityHigher.Size = new System.Drawing.Size(136, 22);
2019-11-20 02:52:34 +13:00
this.lblVideoQualityHigher.TabIndex = 13;
this.lblVideoQualityHigher.Text = "->";
2019-11-21 01:53:14 +13:00
this.lblVideoQualityHigher.TextAlign = System.Drawing.ContentAlignment.TopRight;
2019-11-20 02:52:34 +13:00
//
2019-12-02 05:26:38 +13:00
// lblVideoQualityLower
2019-11-20 02:52:34 +13:00
//
this.lblVideoQualityLower.Location = new System.Drawing.Point(117, 146);
2019-12-02 05:26:38 +13:00
this.lblVideoQualityLower.Name = "lblVideoQualityLower";
this.lblVideoQualityLower.Size = new System.Drawing.Size(136, 22);
this.lblVideoQualityLower.TabIndex = 12;
this.lblVideoQualityLower.Text = "<-";
2019-11-20 02:52:34 +13:00
//
// cbAutoOpenFolder
//
this.cbAutoOpenFolder.AutoSize = true;
this.cbAutoOpenFolder.Location = new System.Drawing.Point(16, 200);
this.cbAutoOpenFolder.Name = "cbAutoOpenFolder";
this.cbAutoOpenFolder.Size = new System.Drawing.Size(152, 17);
this.cbAutoOpenFolder.TabIndex = 0;
this.cbAutoOpenFolder.Text = "Open folder after encoding";
this.cbAutoOpenFolder.UseVisualStyleBackColor = true;
this.cbAutoOpenFolder.CheckedChanged += new System.EventHandler(this.cbAutoOpenFolder_CheckedChanged);
//
2019-11-23 03:57:41 +13:00
// pbProgress
//
this.pbProgress.Font = new System.Drawing.Font("Arial", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.pbProgress.ForeColor = System.Drawing.Color.White;
this.pbProgress.Location = new System.Drawing.Point(208, 232);
2019-11-23 03:57:41 +13:00
this.pbProgress.Name = "pbProgress";
this.pbProgress.ShowPercentageText = true;
2019-11-23 20:35:33 +13:00
this.pbProgress.Size = new System.Drawing.Size(232, 32);
2019-11-23 03:57:41 +13:00
this.pbProgress.TabIndex = 19;
2019-11-23 20:35:33 +13:00
this.pbProgress.Text = null;
2019-11-23 03:57:41 +13:00
//
// cbUseCustomArguments
//
this.cbUseCustomArguments.AutoSize = true;
this.cbUseCustomArguments.Location = new System.Drawing.Point(16, 176);
this.cbUseCustomArguments.Name = "cbUseCustomArguments";
this.cbUseCustomArguments.Size = new System.Drawing.Size(134, 17);
this.cbUseCustomArguments.TabIndex = 17;
this.cbUseCustomArguments.Text = "Use custom arguments";
this.cbUseCustomArguments.UseVisualStyleBackColor = true;
this.cbUseCustomArguments.CheckedChanged += new System.EventHandler(this.cbUseCustomArguments_CheckedChanged);
//
// VideoConverterForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackColor = System.Drawing.SystemColors.Window;
this.ClientSize = new System.Drawing.Size(456, 278);
this.Controls.Add(this.lblVideoQualityValue);
this.Controls.Add(this.cbUseCustomArguments);
this.Controls.Add(this.cbAutoOpenFolder);
this.Controls.Add(this.lblVideoQualityHigher);
2019-12-02 05:26:38 +13:00
this.Controls.Add(this.lblVideoQualityLower);
this.Controls.Add(this.txtOutputFileName);
this.Controls.Add(this.lblOutputFileName);
this.Controls.Add(this.lblVideoCodec);
this.Controls.Add(this.tbVideoQuality);
this.Controls.Add(this.btnOutputFolderBrowse);
this.Controls.Add(this.cbVideoCodec);
this.Controls.Add(this.lblOutputFolder);
this.Controls.Add(this.lblVideoQuality);
this.Controls.Add(this.txtOutputFolder);
this.Controls.Add(this.btnInputFilePathBrowse);
this.Controls.Add(this.txtInputFilePath);
this.Controls.Add(this.lblInputFilePath);
2019-11-18 09:17:47 +13:00
this.Controls.Add(this.btnEncode);
2019-11-17 14:19:10 +13:00
this.Controls.Add(this.pbProgress);
2019-12-02 05:26:38 +13:00
this.Controls.Add(this.txtArguments);
2019-11-18 13:00:24 +13:00
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
this.MaximizeBox = false;
this.Name = "VideoConverterForm";
2019-11-17 08:34:32 +13:00
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "ShareX - Video converter";
2019-11-26 00:10:47 +13:00
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.VideoConverterForm_FormClosing);
2019-11-20 02:52:34 +13:00
((System.ComponentModel.ISupportInitialize)(this.tbVideoQuality)).EndInit();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Label lblInputFilePath;
private System.Windows.Forms.TextBox txtInputFilePath;
private System.Windows.Forms.Button btnInputFilePathBrowse;
private System.Windows.Forms.TextBox txtOutputFolder;
private System.Windows.Forms.Label lblOutputFolder;
private System.Windows.Forms.Button btnOutputFolderBrowse;
private System.Windows.Forms.Label lblOutputFileName;
private System.Windows.Forms.TextBox txtOutputFileName;
private System.Windows.Forms.Label lblVideoCodec;
private System.Windows.Forms.ComboBox cbVideoCodec;
private System.Windows.Forms.Label lblVideoQuality;
private System.Windows.Forms.Button btnEncode;
2019-11-18 09:17:47 +13:00
private System.Windows.Forms.TextBox txtArguments;
2019-11-20 02:52:34 +13:00
private System.Windows.Forms.TrackBar tbVideoQuality;
private System.Windows.Forms.Label lblVideoQualityValue;
private System.Windows.Forms.Label lblVideoQualityHigher;
2019-12-02 05:26:38 +13:00
private System.Windows.Forms.Label lblVideoQualityLower;
2019-11-23 03:57:41 +13:00
private HelpersLib.BlackStyleProgressBar pbProgress;
private System.Windows.Forms.CheckBox cbAutoOpenFolder;
private System.Windows.Forms.CheckBox cbUseCustomArguments;
}
}