diff options
author | sr55 <[email protected]> | 2010-05-19 19:22:01 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2010-05-19 19:22:01 +0000 |
commit | 7fda78b54bdc920653ca3d9d2da0be56712c0a77 (patch) | |
tree | ac5755fe215be6af02aef38d2e052a86c9fc2736 /win/C#/frmPreview.Designer.cs | |
parent | c80ba825d496edc98e2c4129896598e96b56a0d9 (diff) |
WinGui:
- Fix ingui encode status.
- Preview window now has a progress bar indicating encode status. CLI window no longer pops up during the encode.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@3306 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/C#/frmPreview.Designer.cs')
-rw-r--r-- | win/C#/frmPreview.Designer.cs | 29 |
1 files changed, 28 insertions, 1 deletions
diff --git a/win/C#/frmPreview.Designer.cs b/win/C#/frmPreview.Designer.cs index 086819348..2816e0016 100644 --- a/win/C#/frmPreview.Designer.cs +++ b/win/C#/frmPreview.Designer.cs @@ -42,6 +42,9 @@ this.QTControl = new AxQTOControlLib.AxQTControl();
this.panel1 = new System.Windows.Forms.Panel();
this.lbl_status = new System.Windows.Forms.Label();
+ this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
+ this.ProgressBarStatus = new System.Windows.Forms.ToolStripProgressBar();
+ this.lbl_encodeStatus = new System.Windows.Forms.ToolStripLabel();
this.toolBar.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.QTControl)).BeginInit();
this.panel1.SuspendLayout();
@@ -56,7 +59,10 @@ this.toolStripLabel2,
this.cb_duration,
this.btn_playQT,
- this.btn_playVLC});
+ this.btn_playVLC,
+ this.toolStripSeparator1,
+ this.ProgressBarStatus,
+ this.lbl_encodeStatus});
this.toolBar.Location = new System.Drawing.Point(0, 0);
this.toolBar.Name = "toolBar";
this.toolBar.RenderMode = System.Windows.Forms.ToolStripRenderMode.Professional;
@@ -175,6 +181,24 @@ this.lbl_status.Text = "{0}";
this.lbl_status.Visible = false;
//
+ // toolStripSeparator1
+ //
+ this.toolStripSeparator1.Name = "toolStripSeparator1";
+ this.toolStripSeparator1.Size = new System.Drawing.Size(6, 25);
+ //
+ // ProgressBarStatus
+ //
+ this.ProgressBarStatus.Name = "ProgressBarStatus";
+ this.ProgressBarStatus.Size = new System.Drawing.Size(100, 22);
+ this.ProgressBarStatus.Visible = false;
+ //
+ // lbl_encodeStatus
+ //
+ this.lbl_encodeStatus.Name = "lbl_encodeStatus";
+ this.lbl_encodeStatus.Size = new System.Drawing.Size(38, 22);
+ this.lbl_encodeStatus.Text = "0.00%";
+ this.lbl_encodeStatus.Visible = false;
+ //
// frmPreview
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
@@ -210,5 +234,8 @@ private System.Windows.Forms.ToolStripButton btn_playVLC;
private System.Windows.Forms.Panel panel1;
private System.Windows.Forms.Label lbl_status;
+ private System.Windows.Forms.ToolStripSeparator toolStripSeparator1;
+ private System.Windows.Forms.ToolStripProgressBar ProgressBarStatus;
+ private System.Windows.Forms.ToolStripLabel lbl_encodeStatus;
}
}
\ No newline at end of file |