2012-09-30 00:53:08 +00:00
|
|
|
|
namespace BizHawk.MultiClient
|
|
|
|
|
{
|
|
|
|
|
partial class TraceLogger
|
|
|
|
|
{
|
|
|
|
|
/// <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()
|
|
|
|
|
{
|
2012-09-30 01:08:15 +00:00
|
|
|
|
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(TraceLogger));
|
2012-09-30 13:38:37 +00:00
|
|
|
|
this.TracerBox = new System.Windows.Forms.GroupBox();
|
2012-09-30 03:49:53 +00:00
|
|
|
|
this.TraceView = new BizHawk.VirtualListView();
|
|
|
|
|
this.Script = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
|
2013-08-21 20:27:54 +00:00
|
|
|
|
this.menuStrip1 = new MenuStripEx();
|
2012-09-30 00:53:08 +00:00
|
|
|
|
this.toolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
|
|
|
|
|
this.fileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
|
|
|
|
this.saveLogToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
|
|
|
|
this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
|
|
|
|
|
this.exitToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
2012-09-30 03:49:53 +00:00
|
|
|
|
this.optionsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
2012-09-30 14:52:36 +00:00
|
|
|
|
this.setMaxWindowLinesToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
|
|
|
|
this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
|
2012-09-30 03:49:53 +00:00
|
|
|
|
this.autoloadToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
2012-09-30 14:52:36 +00:00
|
|
|
|
this.saveWindowPositionToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
2012-09-30 00:53:08 +00:00
|
|
|
|
this.groupBox2 = new System.Windows.Forms.GroupBox();
|
2012-09-30 18:37:59 +00:00
|
|
|
|
this.BrowseBox = new System.Windows.Forms.Button();
|
|
|
|
|
this.FileBox = new System.Windows.Forms.TextBox();
|
2012-09-30 14:52:36 +00:00
|
|
|
|
this.ToFileRadio = new System.Windows.Forms.RadioButton();
|
|
|
|
|
this.ToWindowRadio = new System.Windows.Forms.RadioButton();
|
2012-09-30 00:53:08 +00:00
|
|
|
|
this.ClearButton = new System.Windows.Forms.Button();
|
|
|
|
|
this.LoggingEnabled = new System.Windows.Forms.CheckBox();
|
2012-11-28 18:59:56 +00:00
|
|
|
|
this.editToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
|
|
|
|
this.copyAllToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
2012-09-30 13:38:37 +00:00
|
|
|
|
this.TracerBox.SuspendLayout();
|
2012-09-30 00:53:08 +00:00
|
|
|
|
this.menuStrip1.SuspendLayout();
|
|
|
|
|
this.groupBox2.SuspendLayout();
|
|
|
|
|
this.SuspendLayout();
|
|
|
|
|
//
|
2012-09-30 13:38:37 +00:00
|
|
|
|
// TracerBox
|
2012-09-30 03:49:53 +00:00
|
|
|
|
//
|
2012-11-28 18:59:56 +00:00
|
|
|
|
this.TracerBox.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
|
|
|
|
| System.Windows.Forms.AnchorStyles.Left)
|
|
|
|
|
| System.Windows.Forms.AnchorStyles.Right)));
|
2012-09-30 13:38:37 +00:00
|
|
|
|
this.TracerBox.Controls.Add(this.TraceView);
|
|
|
|
|
this.TracerBox.Location = new System.Drawing.Point(12, 27);
|
|
|
|
|
this.TracerBox.Name = "TracerBox";
|
|
|
|
|
this.TracerBox.Size = new System.Drawing.Size(620, 444);
|
|
|
|
|
this.TracerBox.TabIndex = 1;
|
|
|
|
|
this.TracerBox.TabStop = false;
|
|
|
|
|
this.TracerBox.Text = "Trace log";
|
2012-09-30 03:49:53 +00:00
|
|
|
|
//
|
2012-09-30 00:53:08 +00:00
|
|
|
|
// TraceView
|
|
|
|
|
//
|
2012-11-28 18:59:56 +00:00
|
|
|
|
this.TraceView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
|
|
|
|
| System.Windows.Forms.AnchorStyles.Left)
|
|
|
|
|
| System.Windows.Forms.AnchorStyles.Right)));
|
2012-09-30 03:49:53 +00:00
|
|
|
|
this.TraceView.CheckBoxes = true;
|
2012-09-30 00:53:08 +00:00
|
|
|
|
this.TraceView.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
|
2012-09-30 03:49:53 +00:00
|
|
|
|
this.Script});
|
2012-09-30 04:28:06 +00:00
|
|
|
|
this.TraceView.Font = new System.Drawing.Font("Courier New", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
2012-09-30 00:53:08 +00:00
|
|
|
|
this.TraceView.FullRowSelect = true;
|
|
|
|
|
this.TraceView.GridLines = true;
|
|
|
|
|
this.TraceView.HideSelection = false;
|
|
|
|
|
this.TraceView.ItemCount = 0;
|
2012-09-30 04:28:06 +00:00
|
|
|
|
this.TraceView.Location = new System.Drawing.Point(8, 18);
|
2012-09-30 00:53:08 +00:00
|
|
|
|
this.TraceView.Name = "TraceView";
|
|
|
|
|
this.TraceView.selectedItem = -1;
|
2012-09-30 04:28:06 +00:00
|
|
|
|
this.TraceView.Size = new System.Drawing.Size(603, 414);
|
2012-09-30 03:49:53 +00:00
|
|
|
|
this.TraceView.TabIndex = 4;
|
2012-10-02 03:16:28 +00:00
|
|
|
|
this.TraceView.TabStop = false;
|
2012-09-30 00:53:08 +00:00
|
|
|
|
this.TraceView.UseCompatibleStateImageBehavior = false;
|
|
|
|
|
this.TraceView.View = System.Windows.Forms.View.Details;
|
2012-09-30 15:33:54 +00:00
|
|
|
|
this.TraceView.KeyDown += new System.Windows.Forms.KeyEventHandler(this.TraceView_KeyDown);
|
2012-09-30 00:53:08 +00:00
|
|
|
|
//
|
2012-09-30 03:49:53 +00:00
|
|
|
|
// Script
|
2012-09-30 00:53:08 +00:00
|
|
|
|
//
|
2012-09-30 03:49:53 +00:00
|
|
|
|
this.Script.Text = "Instructions";
|
2012-09-30 04:28:06 +00:00
|
|
|
|
this.Script.Width = 599;
|
2012-09-30 00:53:08 +00:00
|
|
|
|
//
|
|
|
|
|
// menuStrip1
|
|
|
|
|
//
|
|
|
|
|
this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
|
|
|
|
this.toolStripMenuItem1,
|
2012-09-30 03:09:41 +00:00
|
|
|
|
this.fileToolStripMenuItem,
|
2012-11-28 18:59:56 +00:00
|
|
|
|
this.editToolStripMenuItem,
|
2012-09-30 03:09:41 +00:00
|
|
|
|
this.optionsToolStripMenuItem});
|
2012-09-30 00:53:08 +00:00
|
|
|
|
this.menuStrip1.Location = new System.Drawing.Point(0, 0);
|
|
|
|
|
this.menuStrip1.Name = "menuStrip1";
|
2012-09-30 04:28:06 +00:00
|
|
|
|
this.menuStrip1.Size = new System.Drawing.Size(644, 24);
|
2012-09-30 00:53:08 +00:00
|
|
|
|
this.menuStrip1.TabIndex = 2;
|
|
|
|
|
this.menuStrip1.Text = "menuStrip1";
|
|
|
|
|
//
|
|
|
|
|
// toolStripMenuItem1
|
|
|
|
|
//
|
|
|
|
|
this.toolStripMenuItem1.Name = "toolStripMenuItem1";
|
|
|
|
|
this.toolStripMenuItem1.Size = new System.Drawing.Size(12, 20);
|
|
|
|
|
//
|
|
|
|
|
// fileToolStripMenuItem
|
|
|
|
|
//
|
|
|
|
|
this.fileToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
|
|
|
|
this.saveLogToolStripMenuItem,
|
|
|
|
|
this.toolStripSeparator1,
|
|
|
|
|
this.exitToolStripMenuItem});
|
|
|
|
|
this.fileToolStripMenuItem.Name = "fileToolStripMenuItem";
|
2012-11-28 18:59:56 +00:00
|
|
|
|
this.fileToolStripMenuItem.Size = new System.Drawing.Size(35, 20);
|
2012-09-30 00:53:08 +00:00
|
|
|
|
this.fileToolStripMenuItem.Text = "&File";
|
|
|
|
|
//
|
|
|
|
|
// saveLogToolStripMenuItem
|
|
|
|
|
//
|
2012-09-30 18:37:59 +00:00
|
|
|
|
this.saveLogToolStripMenuItem.Image = global::BizHawk.MultiClient.Properties.Resources.SaveAs;
|
2012-09-30 00:53:08 +00:00
|
|
|
|
this.saveLogToolStripMenuItem.Name = "saveLogToolStripMenuItem";
|
2012-11-28 18:59:56 +00:00
|
|
|
|
this.saveLogToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
|
2012-09-30 00:53:08 +00:00
|
|
|
|
this.saveLogToolStripMenuItem.Text = "&Save Log";
|
2012-09-30 18:37:59 +00:00
|
|
|
|
this.saveLogToolStripMenuItem.Click += new System.EventHandler(this.saveLogToolStripMenuItem_Click);
|
2012-09-30 00:53:08 +00:00
|
|
|
|
//
|
|
|
|
|
// toolStripSeparator1
|
|
|
|
|
//
|
|
|
|
|
this.toolStripSeparator1.Name = "toolStripSeparator1";
|
2012-11-28 18:59:56 +00:00
|
|
|
|
this.toolStripSeparator1.Size = new System.Drawing.Size(149, 6);
|
2012-09-30 00:53:08 +00:00
|
|
|
|
//
|
|
|
|
|
// exitToolStripMenuItem
|
|
|
|
|
//
|
|
|
|
|
this.exitToolStripMenuItem.Name = "exitToolStripMenuItem";
|
|
|
|
|
this.exitToolStripMenuItem.ShortcutKeyDisplayString = "Alt+F4";
|
2012-11-28 18:59:56 +00:00
|
|
|
|
this.exitToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
|
2012-09-30 00:53:08 +00:00
|
|
|
|
this.exitToolStripMenuItem.Text = "E&xit";
|
|
|
|
|
this.exitToolStripMenuItem.Click += new System.EventHandler(this.exitToolStripMenuItem_Click);
|
|
|
|
|
//
|
2012-09-30 03:49:53 +00:00
|
|
|
|
// optionsToolStripMenuItem
|
|
|
|
|
//
|
|
|
|
|
this.optionsToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
2012-09-30 13:38:37 +00:00
|
|
|
|
this.setMaxWindowLinesToolStripMenuItem,
|
|
|
|
|
this.toolStripSeparator2,
|
|
|
|
|
this.autoloadToolStripMenuItem,
|
|
|
|
|
this.saveWindowPositionToolStripMenuItem});
|
2012-09-30 03:49:53 +00:00
|
|
|
|
this.optionsToolStripMenuItem.Name = "optionsToolStripMenuItem";
|
2012-11-28 18:59:56 +00:00
|
|
|
|
this.optionsToolStripMenuItem.Size = new System.Drawing.Size(56, 20);
|
2012-09-30 03:49:53 +00:00
|
|
|
|
this.optionsToolStripMenuItem.Text = "&Options";
|
|
|
|
|
this.optionsToolStripMenuItem.DropDownOpened += new System.EventHandler(this.optionsToolStripMenuItem_DropDownOpened);
|
|
|
|
|
//
|
2012-09-30 14:52:36 +00:00
|
|
|
|
// setMaxWindowLinesToolStripMenuItem
|
|
|
|
|
//
|
|
|
|
|
this.setMaxWindowLinesToolStripMenuItem.Name = "setMaxWindowLinesToolStripMenuItem";
|
2012-11-28 18:59:56 +00:00
|
|
|
|
this.setMaxWindowLinesToolStripMenuItem.Size = new System.Drawing.Size(193, 22);
|
2012-09-30 14:52:36 +00:00
|
|
|
|
this.setMaxWindowLinesToolStripMenuItem.Text = "&Set Max Window Lines...";
|
|
|
|
|
this.setMaxWindowLinesToolStripMenuItem.Click += new System.EventHandler(this.setMaxWindowLinesToolStripMenuItem_Click);
|
|
|
|
|
//
|
|
|
|
|
// toolStripSeparator2
|
|
|
|
|
//
|
|
|
|
|
this.toolStripSeparator2.Name = "toolStripSeparator2";
|
2012-11-28 18:59:56 +00:00
|
|
|
|
this.toolStripSeparator2.Size = new System.Drawing.Size(190, 6);
|
2012-09-30 14:52:36 +00:00
|
|
|
|
//
|
2012-09-30 03:49:53 +00:00
|
|
|
|
// autoloadToolStripMenuItem
|
|
|
|
|
//
|
|
|
|
|
this.autoloadToolStripMenuItem.Name = "autoloadToolStripMenuItem";
|
2012-11-28 18:59:56 +00:00
|
|
|
|
this.autoloadToolStripMenuItem.Size = new System.Drawing.Size(193, 22);
|
2012-09-30 03:49:53 +00:00
|
|
|
|
this.autoloadToolStripMenuItem.Text = "&Autoload";
|
|
|
|
|
this.autoloadToolStripMenuItem.Click += new System.EventHandler(this.autoloadToolStripMenuItem_Click);
|
|
|
|
|
//
|
2012-09-30 14:52:36 +00:00
|
|
|
|
// saveWindowPositionToolStripMenuItem
|
|
|
|
|
//
|
|
|
|
|
this.saveWindowPositionToolStripMenuItem.Name = "saveWindowPositionToolStripMenuItem";
|
2012-11-28 18:59:56 +00:00
|
|
|
|
this.saveWindowPositionToolStripMenuItem.Size = new System.Drawing.Size(193, 22);
|
2012-09-30 14:52:36 +00:00
|
|
|
|
this.saveWindowPositionToolStripMenuItem.Text = "&Save Window Position";
|
|
|
|
|
this.saveWindowPositionToolStripMenuItem.Click += new System.EventHandler(this.saveWindowPositionToolStripMenuItem_Click);
|
|
|
|
|
//
|
2012-09-30 00:53:08 +00:00
|
|
|
|
// groupBox2
|
|
|
|
|
//
|
2012-11-28 18:59:56 +00:00
|
|
|
|
this.groupBox2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
|
|
|
|
|
| System.Windows.Forms.AnchorStyles.Right)));
|
2012-09-30 18:37:59 +00:00
|
|
|
|
this.groupBox2.Controls.Add(this.BrowseBox);
|
|
|
|
|
this.groupBox2.Controls.Add(this.FileBox);
|
2012-09-30 14:52:36 +00:00
|
|
|
|
this.groupBox2.Controls.Add(this.ToFileRadio);
|
|
|
|
|
this.groupBox2.Controls.Add(this.ToWindowRadio);
|
2012-09-30 00:53:08 +00:00
|
|
|
|
this.groupBox2.Controls.Add(this.ClearButton);
|
|
|
|
|
this.groupBox2.Controls.Add(this.LoggingEnabled);
|
2012-09-30 04:28:06 +00:00
|
|
|
|
this.groupBox2.Location = new System.Drawing.Point(12, 477);
|
2012-09-30 00:53:08 +00:00
|
|
|
|
this.groupBox2.Name = "groupBox2";
|
2012-09-30 18:37:59 +00:00
|
|
|
|
this.groupBox2.Size = new System.Drawing.Size(620, 50);
|
2012-09-30 00:53:08 +00:00
|
|
|
|
this.groupBox2.TabIndex = 3;
|
|
|
|
|
this.groupBox2.TabStop = false;
|
|
|
|
|
this.groupBox2.Text = "Control";
|
|
|
|
|
//
|
2012-09-30 18:37:59 +00:00
|
|
|
|
// BrowseBox
|
|
|
|
|
//
|
|
|
|
|
this.BrowseBox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
|
|
|
|
|
this.BrowseBox.Location = new System.Drawing.Point(477, 19);
|
|
|
|
|
this.BrowseBox.Name = "BrowseBox";
|
|
|
|
|
this.BrowseBox.Size = new System.Drawing.Size(54, 23);
|
2012-10-02 03:16:28 +00:00
|
|
|
|
this.BrowseBox.TabIndex = 20;
|
2012-09-30 18:37:59 +00:00
|
|
|
|
this.BrowseBox.Text = "&Browse";
|
|
|
|
|
this.BrowseBox.UseVisualStyleBackColor = true;
|
|
|
|
|
this.BrowseBox.Visible = false;
|
|
|
|
|
this.BrowseBox.Click += new System.EventHandler(this.BrowseBox_Click);
|
|
|
|
|
//
|
|
|
|
|
// FileBox
|
|
|
|
|
//
|
2012-11-28 18:59:56 +00:00
|
|
|
|
this.FileBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
|
|
|
|
| System.Windows.Forms.AnchorStyles.Right)));
|
2012-09-30 18:37:59 +00:00
|
|
|
|
this.FileBox.Location = new System.Drawing.Point(229, 20);
|
|
|
|
|
this.FileBox.Name = "FileBox";
|
|
|
|
|
this.FileBox.ReadOnly = true;
|
|
|
|
|
this.FileBox.Size = new System.Drawing.Size(242, 20);
|
2012-10-02 03:16:28 +00:00
|
|
|
|
this.FileBox.TabIndex = 15;
|
|
|
|
|
this.FileBox.TabStop = false;
|
2012-09-30 18:37:59 +00:00
|
|
|
|
this.FileBox.Visible = false;
|
|
|
|
|
//
|
2012-09-30 14:52:36 +00:00
|
|
|
|
// ToFileRadio
|
|
|
|
|
//
|
|
|
|
|
this.ToFileRadio.AutoSize = true;
|
|
|
|
|
this.ToFileRadio.Location = new System.Drawing.Point(173, 22);
|
|
|
|
|
this.ToFileRadio.Name = "ToFileRadio";
|
|
|
|
|
this.ToFileRadio.Size = new System.Drawing.Size(50, 17);
|
2012-10-02 03:16:28 +00:00
|
|
|
|
this.ToFileRadio.TabIndex = 10;
|
2012-09-30 14:52:36 +00:00
|
|
|
|
this.ToFileRadio.Text = "to file";
|
|
|
|
|
this.ToFileRadio.UseVisualStyleBackColor = true;
|
|
|
|
|
this.ToFileRadio.CheckedChanged += new System.EventHandler(this.ToFileRadio_CheckedChanged);
|
|
|
|
|
//
|
|
|
|
|
// ToWindowRadio
|
|
|
|
|
//
|
|
|
|
|
this.ToWindowRadio.AutoSize = true;
|
|
|
|
|
this.ToWindowRadio.Checked = true;
|
|
|
|
|
this.ToWindowRadio.Location = new System.Drawing.Point(94, 22);
|
|
|
|
|
this.ToWindowRadio.Name = "ToWindowRadio";
|
|
|
|
|
this.ToWindowRadio.Size = new System.Drawing.Size(73, 17);
|
2012-10-02 03:16:28 +00:00
|
|
|
|
this.ToWindowRadio.TabIndex = 5;
|
2012-09-30 14:52:36 +00:00
|
|
|
|
this.ToWindowRadio.TabStop = true;
|
|
|
|
|
this.ToWindowRadio.Text = "to window";
|
|
|
|
|
this.ToWindowRadio.UseVisualStyleBackColor = true;
|
|
|
|
|
//
|
2012-09-30 00:53:08 +00:00
|
|
|
|
// ClearButton
|
|
|
|
|
//
|
2012-09-30 18:37:59 +00:00
|
|
|
|
this.ClearButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
|
|
|
|
|
this.ClearButton.Location = new System.Drawing.Point(564, 19);
|
2012-09-30 00:53:08 +00:00
|
|
|
|
this.ClearButton.Name = "ClearButton";
|
2012-09-30 18:37:59 +00:00
|
|
|
|
this.ClearButton.Size = new System.Drawing.Size(47, 23);
|
2012-10-02 03:16:28 +00:00
|
|
|
|
this.ClearButton.TabIndex = 25;
|
2012-09-30 00:53:08 +00:00
|
|
|
|
this.ClearButton.Text = "&Clear";
|
|
|
|
|
this.ClearButton.UseVisualStyleBackColor = true;
|
|
|
|
|
this.ClearButton.Click += new System.EventHandler(this.ClearButton_Click);
|
|
|
|
|
//
|
|
|
|
|
// LoggingEnabled
|
|
|
|
|
//
|
|
|
|
|
this.LoggingEnabled.Appearance = System.Windows.Forms.Appearance.Button;
|
|
|
|
|
this.LoggingEnabled.AutoSize = true;
|
2012-09-30 04:28:06 +00:00
|
|
|
|
this.LoggingEnabled.Location = new System.Drawing.Point(9, 19);
|
2012-09-30 00:53:08 +00:00
|
|
|
|
this.LoggingEnabled.Name = "LoggingEnabled";
|
2012-09-30 14:52:36 +00:00
|
|
|
|
this.LoggingEnabled.Size = new System.Drawing.Size(55, 23);
|
2012-10-02 03:16:28 +00:00
|
|
|
|
this.LoggingEnabled.TabIndex = 1;
|
2012-09-30 14:52:36 +00:00
|
|
|
|
this.LoggingEnabled.Text = "&Logging";
|
2012-09-30 00:53:08 +00:00
|
|
|
|
this.LoggingEnabled.UseVisualStyleBackColor = true;
|
|
|
|
|
this.LoggingEnabled.CheckedChanged += new System.EventHandler(this.LoggingEnabled_CheckedChanged);
|
|
|
|
|
//
|
2012-11-28 18:59:56 +00:00
|
|
|
|
// editToolStripMenuItem
|
|
|
|
|
//
|
|
|
|
|
this.editToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
|
|
|
|
this.copyAllToolStripMenuItem});
|
|
|
|
|
this.editToolStripMenuItem.Name = "editToolStripMenuItem";
|
|
|
|
|
this.editToolStripMenuItem.Size = new System.Drawing.Size(37, 20);
|
|
|
|
|
this.editToolStripMenuItem.Text = "Edit";
|
|
|
|
|
//
|
|
|
|
|
// copyAllToolStripMenuItem
|
|
|
|
|
//
|
|
|
|
|
this.copyAllToolStripMenuItem.Name = "copyAllToolStripMenuItem";
|
|
|
|
|
this.copyAllToolStripMenuItem.ShortcutKeyDisplayString = "Ctrl+C";
|
|
|
|
|
this.copyAllToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
|
|
|
|
|
this.copyAllToolStripMenuItem.Text = "Copy All";
|
|
|
|
|
this.copyAllToolStripMenuItem.Click += new System.EventHandler(this.copyAllToolStripMenuItem_Click);
|
|
|
|
|
//
|
2012-09-30 00:53:08 +00:00
|
|
|
|
// TraceLogger
|
|
|
|
|
//
|
|
|
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|
|
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
2012-09-30 04:28:06 +00:00
|
|
|
|
this.ClientSize = new System.Drawing.Size(644, 539);
|
2012-09-30 00:53:08 +00:00
|
|
|
|
this.Controls.Add(this.groupBox2);
|
2012-09-30 13:38:37 +00:00
|
|
|
|
this.Controls.Add(this.TracerBox);
|
2012-09-30 00:53:08 +00:00
|
|
|
|
this.Controls.Add(this.menuStrip1);
|
2012-09-30 01:08:15 +00:00
|
|
|
|
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
|
2012-11-28 18:59:56 +00:00
|
|
|
|
this.KeyPreview = true;
|
2012-09-30 00:53:08 +00:00
|
|
|
|
this.MainMenuStrip = this.menuStrip1;
|
2012-09-30 18:37:59 +00:00
|
|
|
|
this.MinimumSize = new System.Drawing.Size(400, 230);
|
2012-09-30 00:53:08 +00:00
|
|
|
|
this.Name = "TraceLogger";
|
|
|
|
|
this.Text = "TraceLogger";
|
|
|
|
|
this.Load += new System.EventHandler(this.TraceLogger_Load);
|
2012-11-28 18:59:56 +00:00
|
|
|
|
this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.TraceLogger_KeyDown);
|
2012-09-30 13:38:37 +00:00
|
|
|
|
this.TracerBox.ResumeLayout(false);
|
2012-09-30 00:53:08 +00:00
|
|
|
|
this.menuStrip1.ResumeLayout(false);
|
|
|
|
|
this.menuStrip1.PerformLayout();
|
|
|
|
|
this.groupBox2.ResumeLayout(false);
|
|
|
|
|
this.groupBox2.PerformLayout();
|
|
|
|
|
this.ResumeLayout(false);
|
|
|
|
|
this.PerformLayout();
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
2012-09-30 13:38:37 +00:00
|
|
|
|
private System.Windows.Forms.GroupBox TracerBox;
|
2013-08-21 20:27:54 +00:00
|
|
|
|
private MenuStripEx menuStrip1;
|
2012-09-30 00:53:08 +00:00
|
|
|
|
private System.Windows.Forms.ToolStripMenuItem toolStripMenuItem1;
|
|
|
|
|
private System.Windows.Forms.ToolStripMenuItem fileToolStripMenuItem;
|
|
|
|
|
private System.Windows.Forms.ToolStripMenuItem saveLogToolStripMenuItem;
|
|
|
|
|
private System.Windows.Forms.ToolStripSeparator toolStripSeparator1;
|
|
|
|
|
private System.Windows.Forms.ToolStripMenuItem exitToolStripMenuItem;
|
|
|
|
|
private System.Windows.Forms.GroupBox groupBox2;
|
|
|
|
|
private System.Windows.Forms.CheckBox LoggingEnabled;
|
|
|
|
|
private System.Windows.Forms.Button ClearButton;
|
2012-09-30 03:09:41 +00:00
|
|
|
|
private System.Windows.Forms.ToolStripMenuItem optionsToolStripMenuItem;
|
|
|
|
|
private System.Windows.Forms.ToolStripMenuItem autoloadToolStripMenuItem;
|
2012-09-30 03:49:53 +00:00
|
|
|
|
private VirtualListView TraceView;
|
|
|
|
|
public System.Windows.Forms.ColumnHeader Script;
|
2012-09-30 13:38:37 +00:00
|
|
|
|
private System.Windows.Forms.ToolStripMenuItem setMaxWindowLinesToolStripMenuItem;
|
|
|
|
|
private System.Windows.Forms.ToolStripSeparator toolStripSeparator2;
|
|
|
|
|
private System.Windows.Forms.ToolStripMenuItem saveWindowPositionToolStripMenuItem;
|
2012-09-30 14:52:36 +00:00
|
|
|
|
private System.Windows.Forms.RadioButton ToFileRadio;
|
|
|
|
|
private System.Windows.Forms.RadioButton ToWindowRadio;
|
2012-09-30 18:37:59 +00:00
|
|
|
|
private System.Windows.Forms.TextBox FileBox;
|
|
|
|
|
private System.Windows.Forms.Button BrowseBox;
|
2012-11-28 18:59:56 +00:00
|
|
|
|
private System.Windows.Forms.ToolStripMenuItem editToolStripMenuItem;
|
|
|
|
|
private System.Windows.Forms.ToolStripMenuItem copyAllToolStripMenuItem;
|
2012-09-30 00:53:08 +00:00
|
|
|
|
}
|
|
|
|
|
}
|