summaryrefslogtreecommitdiffstats
path: root/win/C#/frmDebug.Designer.cs
diff options
context:
space:
mode:
authorsr55 <[email protected]>2007-07-23 16:58:21 +0000
committersr55 <[email protected]>2007-07-23 16:58:21 +0000
commit65b6563124572dc4e37bd7b538e9fc61db403dae (patch)
tree8cc1d3d36d5c6fc6bb900c3a91cbf500f0f9d0ec /win/C#/frmDebug.Designer.cs
parent44fe349bb08b7127766a6612832a0ceb3ae0ac25 (diff)
WinGui:
- Automatically disable options which are H.264 only when a non H.264 encoder is selected. (Instead of annoying alerts) -Trimed the size of the GUI down a bit. Slight re-arrange on the Video Settings tab. - Initial Debug window. Still to be written. git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@722 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/C#/frmDebug.Designer.cs')
-rw-r--r--win/C#/frmDebug.Designer.cs94
1 files changed, 94 insertions, 0 deletions
diff --git a/win/C#/frmDebug.Designer.cs b/win/C#/frmDebug.Designer.cs
new file mode 100644
index 000000000..99b06e2d1
--- /dev/null
+++ b/win/C#/frmDebug.Designer.cs
@@ -0,0 +1,94 @@
+namespace Handbrake
+{
+ partial class frmDebug
+ {
+ /// <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()
+ {
+ System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmDebug));
+ this.Label2 = new System.Windows.Forms.Label();
+ this.rtf_dvdInfo = new System.Windows.Forms.RichTextBox();
+ this.btn_close = new System.Windows.Forms.Button();
+ this.SuspendLayout();
+ //
+ // Label2
+ //
+ this.Label2.AutoSize = true;
+ this.Label2.Location = new System.Drawing.Point(9, 13);
+ this.Label2.Name = "Label2";
+ this.Label2.Size = new System.Drawing.Size(274, 13);
+ this.Label2.TabIndex = 33;
+ this.Label2.Text = "Handbrake\'s CLI output during from the encode process.";
+ //
+ // rtf_dvdInfo
+ //
+ this.rtf_dvdInfo.DetectUrls = false;
+ this.rtf_dvdInfo.Location = new System.Drawing.Point(12, 41);
+ this.rtf_dvdInfo.Name = "rtf_dvdInfo";
+ this.rtf_dvdInfo.ReadOnly = true;
+ this.rtf_dvdInfo.Size = new System.Drawing.Size(514, 404);
+ this.rtf_dvdInfo.TabIndex = 32;
+ this.rtf_dvdInfo.Text = "";
+ //
+ // btn_close
+ //
+ this.btn_close.BackColor = System.Drawing.SystemColors.Control;
+ this.btn_close.FlatAppearance.BorderColor = System.Drawing.Color.Black;
+ this.btn_close.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.btn_close.Font = new System.Drawing.Font("Verdana", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.btn_close.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(128)))), ((int)(((byte)(0)))));
+ this.btn_close.Location = new System.Drawing.Point(417, 451);
+ this.btn_close.Name = "btn_close";
+ this.btn_close.Size = new System.Drawing.Size(110, 22);
+ this.btn_close.TabIndex = 31;
+ this.btn_close.TabStop = false;
+ this.btn_close.Text = "Close Window";
+ this.btn_close.UseVisualStyleBackColor = false;
+ this.btn_close.Click += new System.EventHandler(this.btn_close_Click);
+ //
+ // frmDebug
+ //
+ this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
+ this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
+ this.ClientSize = new System.Drawing.Size(538, 480);
+ this.Controls.Add(this.Label2);
+ this.Controls.Add(this.rtf_dvdInfo);
+ this.Controls.Add(this.btn_close);
+ this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
+ this.Name = "frmDebug";
+ this.Text = "Encode Debug Window";
+ this.ResumeLayout(false);
+ this.PerformLayout();
+
+ }
+
+ #endregion
+
+ internal System.Windows.Forms.Label Label2;
+ internal System.Windows.Forms.RichTextBox rtf_dvdInfo;
+ internal System.Windows.Forms.Button btn_close;
+ }
+} \ No newline at end of file