diff options
author | brianmario <[email protected]> | 2007-07-18 19:24:04 +0000 |
---|---|---|
committer | brianmario <[email protected]> | 2007-07-18 19:24:04 +0000 |
commit | a86e63089a22839b51890db36481c88e25a0a0c6 (patch) | |
tree | 837935de2c825a1b47bb8dae89cfaa2f34ddda11 /win/C#/frmReadDVD.Designer.cs | |
parent | cdac5d3a33743512011783afc9dd7f90c4f3a762 (diff) |
WinGui:
added OnScanProgress event to Parser class which is raised upon noticing "Scanning title # of #..." in the output
added progress bar to frmReadDVD to give better visual notification of scan progress
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@711 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/C#/frmReadDVD.Designer.cs')
-rw-r--r-- | win/C#/frmReadDVD.Designer.cs | 23 |
1 files changed, 10 insertions, 13 deletions
diff --git a/win/C#/frmReadDVD.Designer.cs b/win/C#/frmReadDVD.Designer.cs index 18bbd36a1..40ab0fc33 100644 --- a/win/C#/frmReadDVD.Designer.cs +++ b/win/C#/frmReadDVD.Designer.cs @@ -33,14 +33,14 @@ namespace Handbrake this.btn_ok = new System.Windows.Forms.Button();
this.Label3 = new System.Windows.Forms.Label();
this.Label2 = new System.Windows.Forms.Label();
- this.lbl_status = new System.Windows.Forms.Label();
+ this.scanProgress = new System.Windows.Forms.ProgressBar();
this.SuspendLayout();
//
// lbl_pressOk
//
this.lbl_pressOk.AutoSize = true;
this.lbl_pressOk.Font = new System.Drawing.Font("Verdana", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.lbl_pressOk.Location = new System.Drawing.Point(66, 60);
+ this.lbl_pressOk.Location = new System.Drawing.Point(216, 56);
this.lbl_pressOk.Name = "lbl_pressOk";
this.lbl_pressOk.Size = new System.Drawing.Size(178, 13);
this.lbl_pressOk.TabIndex = 29;
@@ -82,23 +82,20 @@ namespace Handbrake this.Label2.TabIndex = 26;
this.Label2.Text = "Status:";
//
- // lbl_status
+ // scanProgress
//
- this.lbl_status.AutoSize = true;
- this.lbl_status.Font = new System.Drawing.Font("Verdana", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
- this.lbl_status.Location = new System.Drawing.Point(66, 41);
- this.lbl_status.Name = "lbl_status";
- this.lbl_status.Size = new System.Drawing.Size(178, 13);
- this.lbl_status.TabIndex = 30;
- this.lbl_status.Text = "Processing.... Please Wait!";
- this.lbl_status.Visible = false;
+ this.scanProgress.Location = new System.Drawing.Point(22, 51);
+ this.scanProgress.Name = "scanProgress";
+ this.scanProgress.Size = new System.Drawing.Size(361, 23);
+ this.scanProgress.TabIndex = 30;
+ this.scanProgress.Visible = false;
//
// frmReadDVD
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(473, 86);
- this.Controls.Add(this.lbl_status);
+ this.Controls.Add(this.scanProgress);
this.Controls.Add(this.lbl_pressOk);
this.Controls.Add(this.btn_ok);
this.Controls.Add(this.Label3);
@@ -119,6 +116,6 @@ namespace Handbrake internal System.Windows.Forms.Button btn_ok;
internal System.Windows.Forms.Label Label3;
internal System.Windows.Forms.Label Label2;
- internal System.Windows.Forms.Label lbl_status;
+ private System.Windows.Forms.ProgressBar scanProgress;
}
}
\ No newline at end of file |