diff options
author | brianmario <[email protected]> | 2007-07-19 05:13:50 +0000 |
---|---|---|
committer | brianmario <[email protected]> | 2007-07-19 05:13:50 +0000 |
commit | e4adf35f39f2108514495b1e8be3f49b98edb6b9 (patch) | |
tree | 099709921187c04703c22d2ca30a986a38fd5227 /win/C#/frmMain.Designer.cs | |
parent | 5a4f0a4e0089f3418df1e09eace439703bad9bb8 (diff) |
WinGui:
updated parsing code events to not be static anymore
added encode parsing to catch encode progress
added OnEncodeProgress event
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@717 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/C#/frmMain.Designer.cs')
-rw-r--r-- | win/C#/frmMain.Designer.cs | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/win/C#/frmMain.Designer.cs b/win/C#/frmMain.Designer.cs index 59c864c24..3d6431f5f 100644 --- a/win/C#/frmMain.Designer.cs +++ b/win/C#/frmMain.Designer.cs @@ -170,6 +170,7 @@ namespace Handbrake this.btn_queue = new System.Windows.Forms.Button();
this.btn_encode = new System.Windows.Forms.Button();
this.Version = new System.Windows.Forms.Label();
+ this.tempEncodeLbl = new System.Windows.Forms.Label();
Label38 = new System.Windows.Forms.Label();
this.frmMainMenu.SuspendLayout();
this.GroupBox1.SuspendLayout();
@@ -1283,7 +1284,7 @@ namespace Handbrake this.slider_videoQuality.Location = new System.Drawing.Point(129, 90);
this.slider_videoQuality.Maximum = 100;
this.slider_videoQuality.Name = "slider_videoQuality";
- this.slider_videoQuality.Size = new System.Drawing.Size(167, 42);
+ this.slider_videoQuality.Size = new System.Drawing.Size(167, 45);
this.slider_videoQuality.TabIndex = 6;
this.slider_videoQuality.TickFrequency = 17;
this.slider_videoQuality.Scroll += new System.EventHandler(this.slider_videoQuality_Scroll);
@@ -1711,11 +1712,23 @@ namespace Handbrake this.Version.TabIndex = 415;
this.Version.Text = "Version 2.3";
//
+ // tempEncodeLbl
+ //
+ this.tempEncodeLbl.AutoSize = true;
+ this.tempEncodeLbl.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.tempEncodeLbl.Location = new System.Drawing.Point(370, 19);
+ this.tempEncodeLbl.Name = "tempEncodeLbl";
+ this.tempEncodeLbl.Size = new System.Drawing.Size(115, 13);
+ this.tempEncodeLbl.TabIndex = 418;
+ this.tempEncodeLbl.Text = "Encoding started...";
+ this.tempEncodeLbl.Visible = false;
+ //
// frmMain
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(675, 621);
+ this.Controls.Add(this.tempEncodeLbl);
this.Controls.Add(this.lbl_update);
this.Controls.Add(this.btn_queue);
this.Controls.Add(this.btn_encode);
@@ -1893,6 +1906,7 @@ namespace Handbrake internal System.Windows.Forms.Label Version;
private System.Windows.Forms.Label lbl_chptWarn;
internal System.Windows.Forms.SaveFileDialog DVD_Save;
+ private System.Windows.Forms.Label tempEncodeLbl;
}
}
\ No newline at end of file |