summaryrefslogtreecommitdiffstats
path: root/win/C#/frmMain.Designer.cs
diff options
context:
space:
mode:
authorsr55 <[email protected]>2008-12-16 18:01:48 +0000
committersr55 <[email protected]>2008-12-16 18:01:48 +0000
commit89b5566c50b3f19c760351845a85c3efa4afe10f (patch)
treea53adf8349e8da34b95f2c61c90d1f9c09b67195 /win/C#/frmMain.Designer.cs
parentc26a35a7b7a5839946123c9670aac337c8bcf518 (diff)
WinGui:
- Preview Generator Window. Can generate previews form 5 to 60 seconds long. Will launch VLC (from a user specified (in options) install path) to play back the clip. Note: Clip duration is currently waiting for a patch to the CLI, so this part won't work yet. - Experimental in-gui VLC media player via ActiveX. (This causes a Blue Screen of Death (See comments in code), however if anyone can fix this and submit a patch, id be grateful) Alternative suggestions welcome! git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@2036 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/C#/frmMain.Designer.cs')
-rw-r--r--win/C#/frmMain.Designer.cs23
1 files changed, 22 insertions, 1 deletions
diff --git a/win/C#/frmMain.Designer.cs b/win/C#/frmMain.Designer.cs
index e64cfadb0..ca288cea8 100644
--- a/win/C#/frmMain.Designer.cs
+++ b/win/C#/frmMain.Designer.cs
@@ -257,6 +257,8 @@ namespace Handbrake
this.btn_ActivityWindow = new System.Windows.Forms.ToolStripButton();
this.toolStripSeparator8 = new System.Windows.Forms.ToolStripSeparator();
this.btn_minimize = new System.Windows.Forms.ToolStripButton();
+ this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
+ this.btn_vidPreview = new System.Windows.Forms.ToolStripButton();
this.notifyIcon = new System.Windows.Forms.NotifyIcon(this.components);
this.StatusStrip = new System.Windows.Forms.StatusStrip();
this.lbl_encode = new System.Windows.Forms.ToolStripStatusLabel();
@@ -3038,9 +3040,11 @@ namespace Handbrake
this.btn_add2Queue,
this.btn_showQueue,
this.toolStripSeparator4,
+ this.btn_vidPreview,
this.btn_ActivityWindow,
this.toolStripSeparator8,
- this.btn_minimize});
+ this.btn_minimize,
+ this.toolStripSeparator2});
this.toolStrip1.Location = new System.Drawing.Point(0, 24);
this.toolStrip1.Name = "toolStrip1";
this.toolStrip1.RenderMode = System.Windows.Forms.ToolStripRenderMode.System;
@@ -3164,6 +3168,21 @@ namespace Handbrake
this.btn_minimize.Text = "Minimize To System Tray";
this.btn_minimize.Click += new System.EventHandler(this.btn_minimize_Click);
//
+ // toolStripSeparator2
+ //
+ this.toolStripSeparator2.Name = "toolStripSeparator2";
+ this.toolStripSeparator2.Size = new System.Drawing.Size(6, 39);
+ //
+ // btn_vidPreview
+ //
+ this.btn_vidPreview.Image = global::Handbrake.Properties.Resources.picture;
+ this.btn_vidPreview.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
+ this.btn_vidPreview.ImageTransparentColor = System.Drawing.Color.Magenta;
+ this.btn_vidPreview.Name = "btn_vidPreview";
+ this.btn_vidPreview.Size = new System.Drawing.Size(86, 36);
+ this.btn_vidPreview.Text = "Preview";
+ this.btn_vidPreview.Click += new System.EventHandler(this.btn_vidPreview_Click);
+ //
// notifyIcon
//
this.notifyIcon.BalloonTipIcon = System.Windows.Forms.ToolTipIcon.Info;
@@ -3480,6 +3499,8 @@ namespace Handbrake
private System.Windows.Forms.ToolStripSeparator sep1;
private System.Windows.Forms.ToolStripMenuItem pmnu_delete;
private System.Windows.Forms.SplitContainer splitContainer1;
+ private System.Windows.Forms.ToolStripSeparator toolStripSeparator2;
+ private System.Windows.Forms.ToolStripButton btn_vidPreview;
}
} \ No newline at end of file