1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
|
/* frmDvdInfo.Designer.cs
This file is part of the HandBrake source code.
Homepage: <http://handbrake.fr>.
It may be used under the terms of the GNU General Public License. */
namespace Handbrake
{
partial class frmActivityWindow
{
/// <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()
{
this.components = new System.ComponentModel.Container();
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmActivityWindow));
this.rtf_actLog = new System.Windows.Forms.RichTextBox();
this.rightClickMenu = new System.Windows.Forms.ContextMenuStrip(this.components);
this.mnu_copy_log = new System.Windows.Forms.ToolStripMenuItem();
this.mnu_openLogFolder = new System.Windows.Forms.ToolStripMenuItem();
this.ToolTip = new System.Windows.Forms.ToolTip(this.components);
this.toolStrip1 = new System.Windows.Forms.ToolStrip();
this.btn_copy = new System.Windows.Forms.ToolStripButton();
this.logSelector = new System.Windows.Forms.ToolStripComboBox();
this.btn_openLogDirectory = new System.Windows.Forms.ToolStripButton();
this.panel1 = new System.Windows.Forms.Panel();
this.rightClickMenu.SuspendLayout();
this.toolStrip1.SuspendLayout();
this.SuspendLayout();
//
// rtf_actLog
//
this.rtf_actLog.ContextMenuStrip = this.rightClickMenu;
this.rtf_actLog.Cursor = System.Windows.Forms.Cursors.IBeam;
this.rtf_actLog.DetectUrls = false;
this.rtf_actLog.Dock = System.Windows.Forms.DockStyle.Fill;
this.rtf_actLog.Location = new System.Drawing.Point(0, 25);
this.rtf_actLog.Name = "rtf_actLog";
this.rtf_actLog.ReadOnly = true;
this.rtf_actLog.Size = new System.Drawing.Size(404, 552);
this.rtf_actLog.TabIndex = 29;
this.rtf_actLog.Text = "";
//
// rightClickMenu
//
this.rightClickMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.mnu_copy_log,
this.mnu_openLogFolder});
this.rightClickMenu.Name = "rightClickMenu";
this.rightClickMenu.Size = new System.Drawing.Size(178, 48);
//
// mnu_copy_log
//
this.mnu_copy_log.Image = global::Handbrake.Properties.Resources.copy;
this.mnu_copy_log.Name = "mnu_copy_log";
this.mnu_copy_log.Size = new System.Drawing.Size(177, 22);
this.mnu_copy_log.Text = "Copy";
this.mnu_copy_log.Click += new System.EventHandler(this.MnuCopyLogClick);
//
// mnu_openLogFolder
//
this.mnu_openLogFolder.Image = global::Handbrake.Properties.Resources.folder;
this.mnu_openLogFolder.Name = "mnu_openLogFolder";
this.mnu_openLogFolder.Size = new System.Drawing.Size(177, 22);
this.mnu_openLogFolder.Text = "Open Log Directory";
this.mnu_openLogFolder.Click += new System.EventHandler(this.MnuOpenLogFolderClick);
//
// ToolTip
//
this.ToolTip.Active = false;
//
// toolStrip1
//
this.toolStrip1.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden;
this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.btn_copy,
this.logSelector,
this.btn_openLogDirectory});
this.toolStrip1.Location = new System.Drawing.Point(0, 0);
this.toolStrip1.Name = "toolStrip1";
this.toolStrip1.RenderMode = System.Windows.Forms.ToolStripRenderMode.Professional;
this.toolStrip1.Size = new System.Drawing.Size(404, 25);
this.toolStrip1.TabIndex = 96;
this.toolStrip1.Text = "toolStrip1";
//
// btn_copy
//
this.btn_copy.Image = ((System.Drawing.Image)(resources.GetObject("btn_copy.Image")));
this.btn_copy.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
this.btn_copy.ImageTransparentColor = System.Drawing.Color.Magenta;
this.btn_copy.Name = "btn_copy";
this.btn_copy.Size = new System.Drawing.Size(55, 22);
this.btn_copy.Text = "Copy";
this.btn_copy.Click += new System.EventHandler(this.BtnCopyClick);
//
// logSelector
//
this.logSelector.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right;
this.logSelector.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.logSelector.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.logSelector.Items.AddRange(new object[] {
"Scan Log",
"Encode Log"});
this.logSelector.Name = "logSelector";
this.logSelector.Size = new System.Drawing.Size(121, 25);
this.logSelector.SelectedIndexChanged += new System.EventHandler(this.LogSelectorClick);
//
// btn_openLogDirectory
//
this.btn_openLogDirectory.Image = global::Handbrake.Properties.Resources.folder;
this.btn_openLogDirectory.ImageTransparentColor = System.Drawing.Color.Magenta;
this.btn_openLogDirectory.Name = "btn_openLogDirectory";
this.btn_openLogDirectory.Size = new System.Drawing.Size(130, 22);
this.btn_openLogDirectory.Text = "Open Log Directory";
this.btn_openLogDirectory.Click += new System.EventHandler(this.btn_openLogDirectory_Click);
//
// panel1
//
this.panel1.Dock = System.Windows.Forms.DockStyle.Fill;
this.panel1.Location = new System.Drawing.Point(0, 25);
this.panel1.Name = "panel1";
this.panel1.Size = new System.Drawing.Size(404, 552);
this.panel1.TabIndex = 97;
//
// frmActivityWindow
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackColor = System.Drawing.SystemColors.ControlLight;
this.ClientSize = new System.Drawing.Size(404, 577);
this.Controls.Add(this.rtf_actLog);
this.Controls.Add(this.panel1);
this.Controls.Add(this.toolStrip1);
this.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "frmActivityWindow";
this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Show;
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "Activity Window";
this.Load += new System.EventHandler(this.ActivityWindowLoad);
this.rightClickMenu.ResumeLayout(false);
this.toolStrip1.ResumeLayout(false);
this.toolStrip1.PerformLayout();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
internal System.Windows.Forms.RichTextBox rtf_actLog;
internal System.Windows.Forms.ToolTip ToolTip;
private System.Windows.Forms.ToolStrip toolStrip1;
private System.Windows.Forms.Panel panel1;
private System.Windows.Forms.ToolStripButton btn_copy;
private System.Windows.Forms.ContextMenuStrip rightClickMenu;
private System.Windows.Forms.ToolStripMenuItem mnu_copy_log;
private System.Windows.Forms.ToolStripMenuItem mnu_openLogFolder;
private System.Windows.Forms.ToolStripComboBox logSelector;
private System.Windows.Forms.ToolStripButton btn_openLogDirectory;
}
}
|