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

330 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-17 14:19:10 +13:00
this.pbProgress = new System.Windows.Forms.ProgressBar();
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();
this.lvlVideoQualityLower = new System.Windows.Forms.Label();
2019-11-23 03:40:11 +13:00
this.tcMain = new System.Windows.Forms.TabControl();
this.tpOptions = new System.Windows.Forms.TabPage();
this.tpArguments = new System.Windows.Forms.TabPage();
this.tpAdvanced = new System.Windows.Forms.TabPage();
2019-11-20 02:52:34 +13:00
((System.ComponentModel.ISupportInitialize)(this.tbVideoQuality)).BeginInit();
2019-11-23 03:40:11 +13:00
this.tcMain.SuspendLayout();
this.tpOptions.SuspendLayout();
this.tpArguments.SuspendLayout();
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;
2019-11-23 03:40:11 +13:00
this.lblVideoCodec.Location = new System.Drawing.Point(9, 18);
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;
2019-11-23 03:40:11 +13:00
this.cbVideoCodec.Location = new System.Drawing.Point(112, 14);
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;
2019-11-23 03:40:11 +13:00
this.lblVideoQuality.Location = new System.Drawing.Point(9, 47);
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)));
2019-11-20 02:52:34 +13:00
this.btnEncode.Location = new System.Drawing.Point(16, 272);
this.btnEncode.Name = "btnEncode";
2019-11-18 09:17:47 +13:00
this.btnEncode.Size = new System.Drawing.Size(424, 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)));
2019-11-23 03:40:11 +13:00
this.txtArguments.Location = new System.Drawing.Point(8, 8);
2019-11-18 09:17:47 +13:00
this.txtArguments.Multiline = true;
this.txtArguments.Name = "txtArguments";
this.txtArguments.ReadOnly = true;
2019-11-23 03:40:11 +13:00
this.txtArguments.Size = new System.Drawing.Size(400, 136);
2019-11-20 02:52:34 +13:00
this.txtArguments.TabIndex = 16;
//
2019-11-17 14:19:10 +13:00
// pbProgress
//
2019-11-20 02:52:34 +13:00
this.pbProgress.Location = new System.Drawing.Point(16, 272);
2019-11-17 14:19:10 +13:00
this.pbProgress.Name = "pbProgress";
2019-11-18 09:17:47 +13:00
this.pbProgress.Size = new System.Drawing.Size(424, 32);
2019-11-17 14:19:10 +13:00
this.pbProgress.TabIndex = 16;
//
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(104, 42);
2019-11-20 02:52:34 +13:00
this.tbVideoQuality.Name = "tbVideoQuality";
2019-11-23 03:40:11 +13:00
this.tbVideoQuality.Size = new System.Drawing.Size(272, 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-11-23 03:40:11 +13:00
this.lblVideoQualityValue.Location = new System.Drawing.Point(384, 47);
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
//
2019-11-23 03:40:11 +13:00
this.lblVideoQualityHigher.Location = new System.Drawing.Point(240, 68);
2019-11-20 02:52:34 +13:00
this.lblVideoQualityHigher.Name = "lblVideoQualityHigher";
2019-11-23 03:40:11 +13:00
this.lblVideoQualityHigher.Size = new System.Drawing.Size(128, 22);
2019-11-20 02:52:34 +13:00
this.lblVideoQualityHigher.TabIndex = 13;
2019-11-21 01:53:14 +13:00
this.lblVideoQualityHigher.Text = "Higher quality/size ->";
this.lblVideoQualityHigher.TextAlign = System.Drawing.ContentAlignment.TopRight;
2019-11-20 02:52:34 +13:00
//
// lvlVideoQualityLower
//
2019-11-23 03:40:11 +13:00
this.lvlVideoQualityLower.Location = new System.Drawing.Point(112, 68);
2019-11-20 02:52:34 +13:00
this.lvlVideoQualityLower.Name = "lvlVideoQualityLower";
2019-11-23 03:40:11 +13:00
this.lvlVideoQualityLower.Size = new System.Drawing.Size(128, 22);
2019-11-21 01:53:14 +13:00
this.lvlVideoQualityLower.TabIndex = 12;
this.lvlVideoQualityLower.Text = "<- Lower quality/size";
2019-11-20 02:52:34 +13:00
//
2019-11-23 03:40:11 +13:00
// tcMain
//
this.tcMain.Controls.Add(this.tpOptions);
this.tcMain.Controls.Add(this.tpArguments);
this.tcMain.Controls.Add(this.tpAdvanced);
this.tcMain.Location = new System.Drawing.Point(16, 88);
this.tcMain.Name = "tcMain";
this.tcMain.SelectedIndex = 0;
this.tcMain.Size = new System.Drawing.Size(424, 176);
this.tcMain.TabIndex = 18;
//
// tpOptions
//
this.tpOptions.Controls.Add(this.lblVideoQualityHigher);
this.tpOptions.Controls.Add(this.lvlVideoQualityLower);
this.tpOptions.Controls.Add(this.lblVideoQualityValue);
this.tpOptions.Controls.Add(this.lblVideoCodec);
this.tpOptions.Controls.Add(this.tbVideoQuality);
this.tpOptions.Controls.Add(this.cbVideoCodec);
this.tpOptions.Controls.Add(this.lblVideoQuality);
this.tpOptions.Location = new System.Drawing.Point(4, 22);
this.tpOptions.Name = "tpOptions";
this.tpOptions.Padding = new System.Windows.Forms.Padding(3);
this.tpOptions.Size = new System.Drawing.Size(416, 150);
this.tpOptions.TabIndex = 0;
this.tpOptions.Text = "Options";
this.tpOptions.UseVisualStyleBackColor = true;
//
// tpArguments
//
this.tpArguments.Controls.Add(this.txtArguments);
this.tpArguments.Location = new System.Drawing.Point(4, 22);
this.tpArguments.Name = "tpArguments";
this.tpArguments.Padding = new System.Windows.Forms.Padding(3);
this.tpArguments.Size = new System.Drawing.Size(416, 150);
this.tpArguments.TabIndex = 1;
this.tpArguments.Text = "Arguments";
this.tpArguments.UseVisualStyleBackColor = true;
//
// tpAdvanced
//
this.tpAdvanced.Location = new System.Drawing.Point(4, 22);
this.tpAdvanced.Name = "tpAdvanced";
this.tpAdvanced.Padding = new System.Windows.Forms.Padding(3);
this.tpAdvanced.Size = new System.Drawing.Size(416, 150);
this.tpAdvanced.TabIndex = 2;
this.tpAdvanced.Text = "Advanced";
this.tpAdvanced.UseVisualStyleBackColor = true;
//
// VideoConverterForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackColor = System.Drawing.SystemColors.Window;
2019-11-20 02:52:34 +13:00
this.ClientSize = new System.Drawing.Size(456, 316);
2019-11-23 03:40:11 +13:00
this.Controls.Add(this.tcMain);
this.Controls.Add(this.txtOutputFileName);
this.Controls.Add(this.lblOutputFileName);
this.Controls.Add(this.btnOutputFolderBrowse);
this.Controls.Add(this.lblOutputFolder);
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-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-20 02:52:34 +13:00
((System.ComponentModel.ISupportInitialize)(this.tbVideoQuality)).EndInit();
2019-11-23 03:40:11 +13:00
this.tcMain.ResumeLayout(false);
this.tpOptions.ResumeLayout(false);
this.tpOptions.PerformLayout();
this.tpArguments.ResumeLayout(false);
this.tpArguments.PerformLayout();
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-17 14:19:10 +13:00
private System.Windows.Forms.ProgressBar pbProgress;
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;
private System.Windows.Forms.Label lvlVideoQualityLower;
2019-11-23 03:40:11 +13:00
private System.Windows.Forms.TabControl tcMain;
private System.Windows.Forms.TabPage tpOptions;
private System.Windows.Forms.TabPage tpArguments;
private System.Windows.Forms.TabPage tpAdvanced;
}
}