namespace CassiniDev.ServerLog { partial class LogView { /// /// Required designer variable. /// private System.ComponentModel.IContainer components = null; /// /// Clean up any resources being used. /// /// true if managed resources should be disposed; otherwise, false. protected override void Dispose(bool disposing) { if (disposing && (components != null)) { components.Dispose(); } base.Dispose(disposing); } #region Windows Form Designer generated code /// /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// private void InitializeComponent() { this.components = new System.ComponentModel.Container(); System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(LogView)); this.toolTip1 = new System.Windows.Forms.ToolTip(this.components); this.menuStrip1 = new System.Windows.Forms.MenuStrip(); this.fileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.clearToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator(); this.exitToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.optionsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.scrollLogToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.splitContainer1 = new System.Windows.Forms.SplitContainer(); this.listView1 = new System.Windows.Forms.ListView(); this.TypeHeader = new System.Windows.Forms.ColumnHeader(); this.CreatedHeader = new System.Windows.Forms.ColumnHeader(); this.StatusHeader = new System.Windows.Forms.ColumnHeader(); this.UrlHeader = new System.Windows.Forms.ColumnHeader(); this.PathTranslatedHeader = new System.Windows.Forms.ColumnHeader(); this.IdentityHeader = new System.Windows.Forms.ColumnHeader(); this.splitContainer2 = new System.Windows.Forms.SplitContainer(); this.splitContainer3 = new System.Windows.Forms.SplitContainer(); this.groupBox2 = new System.Windows.Forms.GroupBox(); this.headersRichTextBox = new System.Windows.Forms.RichTextBox(); this.groupBox1 = new System.Windows.Forms.GroupBox(); this.exceptionRichTextBox = new System.Windows.Forms.RichTextBox(); this.groupBox3 = new System.Windows.Forms.GroupBox(); this.bodyBodyView = new CassiniDev.ServerLog.BodyView(); this.menuStrip1.SuspendLayout(); this.splitContainer1.Panel1.SuspendLayout(); this.splitContainer1.Panel2.SuspendLayout(); this.splitContainer1.SuspendLayout(); this.splitContainer2.Panel1.SuspendLayout(); this.splitContainer2.Panel2.SuspendLayout(); this.splitContainer2.SuspendLayout(); this.splitContainer3.Panel1.SuspendLayout(); this.splitContainer3.Panel2.SuspendLayout(); this.splitContainer3.SuspendLayout(); this.groupBox2.SuspendLayout(); this.groupBox1.SuspendLayout(); this.groupBox3.SuspendLayout(); this.SuspendLayout(); // // menuStrip1 // this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.fileToolStripMenuItem, this.optionsToolStripMenuItem}); this.menuStrip1.Location = new System.Drawing.Point(0, 0); this.menuStrip1.Name = "menuStrip1"; this.menuStrip1.Size = new System.Drawing.Size(805, 24); this.menuStrip1.TabIndex = 38; this.menuStrip1.Text = "menuStrip1"; // // fileToolStripMenuItem // this.fileToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.clearToolStripMenuItem, this.toolStripSeparator1, this.exitToolStripMenuItem}); this.fileToolStripMenuItem.Name = "fileToolStripMenuItem"; this.fileToolStripMenuItem.Size = new System.Drawing.Size(35, 20); this.fileToolStripMenuItem.Text = "&File"; // // clearToolStripMenuItem // this.clearToolStripMenuItem.Name = "clearToolStripMenuItem"; this.clearToolStripMenuItem.Size = new System.Drawing.Size(99, 22); this.clearToolStripMenuItem.Text = "&Clear"; this.clearToolStripMenuItem.Click += new System.EventHandler(this.clearToolStripMenuItem_Click); // // toolStripSeparator1 // this.toolStripSeparator1.Name = "toolStripSeparator1"; this.toolStripSeparator1.Size = new System.Drawing.Size(96, 6); // // exitToolStripMenuItem // this.exitToolStripMenuItem.Name = "exitToolStripMenuItem"; this.exitToolStripMenuItem.Size = new System.Drawing.Size(99, 22); this.exitToolStripMenuItem.Text = "E&xit"; this.exitToolStripMenuItem.Click += new System.EventHandler(this.exitToolStripMenuItem_Click); // // optionsToolStripMenuItem // this.optionsToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.scrollLogToolStripMenuItem}); this.optionsToolStripMenuItem.Name = "optionsToolStripMenuItem"; this.optionsToolStripMenuItem.Size = new System.Drawing.Size(56, 20); this.optionsToolStripMenuItem.Text = "&Options"; // // scrollLogToolStripMenuItem // this.scrollLogToolStripMenuItem.Checked = true; this.scrollLogToolStripMenuItem.CheckOnClick = true; this.scrollLogToolStripMenuItem.CheckState = System.Windows.Forms.CheckState.Checked; this.scrollLogToolStripMenuItem.Name = "scrollLogToolStripMenuItem"; this.scrollLogToolStripMenuItem.Size = new System.Drawing.Size(119, 22); this.scrollLogToolStripMenuItem.Text = "&Scroll Log"; // // splitContainer1 // this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill; this.splitContainer1.Location = new System.Drawing.Point(0, 24); this.splitContainer1.Name = "splitContainer1"; this.splitContainer1.Orientation = System.Windows.Forms.Orientation.Horizontal; // // splitContainer1.Panel1 // this.splitContainer1.Panel1.Controls.Add(this.listView1); // // splitContainer1.Panel2 // this.splitContainer1.Panel2.Controls.Add(this.splitContainer2); this.splitContainer1.Size = new System.Drawing.Size(805, 436); this.splitContainer1.SplitterDistance = 196; this.splitContainer1.TabIndex = 39; // // listView1 // this.listView1.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] { this.TypeHeader, this.CreatedHeader, this.StatusHeader, this.UrlHeader, this.PathTranslatedHeader, this.IdentityHeader}); this.listView1.Dock = System.Windows.Forms.DockStyle.Fill; this.listView1.FullRowSelect = true; this.listView1.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.Nonclickable; this.listView1.HideSelection = false; this.listView1.Location = new System.Drawing.Point(0, 0); this.listView1.MultiSelect = false; this.listView1.Name = "listView1"; this.listView1.Size = new System.Drawing.Size(805, 196); this.listView1.TabIndex = 0; this.listView1.UseCompatibleStateImageBehavior = false; this.listView1.View = System.Windows.Forms.View.Details; this.listView1.SelectedIndexChanged += new System.EventHandler(this.listView1_SelectedIndexChanged); // // TypeHeader // this.TypeHeader.Text = "Type"; this.TypeHeader.Width = 80; // // CreatedHeader // this.CreatedHeader.Text = "Created"; this.CreatedHeader.Width = 180; // // StatusHeader // this.StatusHeader.Text = "Status"; // // UrlHeader // this.UrlHeader.Text = "Url"; this.UrlHeader.Width = 160; // // PathTranslatedHeader // this.PathTranslatedHeader.Text = "PathTranslated"; this.PathTranslatedHeader.Width = 200; // // IdentityHeader // this.IdentityHeader.Text = "Identity"; this.IdentityHeader.Width = 100; // // splitContainer2 // this.splitContainer2.Dock = System.Windows.Forms.DockStyle.Fill; this.splitContainer2.Location = new System.Drawing.Point(0, 0); this.splitContainer2.Name = "splitContainer2"; // // splitContainer2.Panel1 // this.splitContainer2.Panel1.Controls.Add(this.splitContainer3); // // splitContainer2.Panel2 // this.splitContainer2.Panel2.Controls.Add(this.groupBox3); this.splitContainer2.Size = new System.Drawing.Size(805, 236); this.splitContainer2.SplitterDistance = 289; this.splitContainer2.TabIndex = 0; // // splitContainer3 // this.splitContainer3.Dock = System.Windows.Forms.DockStyle.Fill; this.splitContainer3.Location = new System.Drawing.Point(0, 0); this.splitContainer3.Name = "splitContainer3"; this.splitContainer3.Orientation = System.Windows.Forms.Orientation.Horizontal; // // splitContainer3.Panel1 // this.splitContainer3.Panel1.Controls.Add(this.groupBox2); // // splitContainer3.Panel2 // this.splitContainer3.Panel2.Controls.Add(this.groupBox1); this.splitContainer3.Size = new System.Drawing.Size(289, 236); this.splitContainer3.SplitterDistance = 172; this.splitContainer3.TabIndex = 0; // // groupBox2 // this.groupBox2.Controls.Add(this.headersRichTextBox); this.groupBox2.Dock = System.Windows.Forms.DockStyle.Fill; this.groupBox2.Location = new System.Drawing.Point(0, 0); this.groupBox2.Name = "groupBox2"; this.groupBox2.Size = new System.Drawing.Size(289, 172); this.groupBox2.TabIndex = 0; this.groupBox2.TabStop = false; this.groupBox2.Text = "Headers"; // // headersRichTextBox // this.headersRichTextBox.Dock = System.Windows.Forms.DockStyle.Fill; this.headersRichTextBox.Location = new System.Drawing.Point(3, 16); this.headersRichTextBox.Name = "headersRichTextBox"; this.headersRichTextBox.ReadOnly = true; this.headersRichTextBox.Size = new System.Drawing.Size(283, 153); this.headersRichTextBox.TabIndex = 45; this.headersRichTextBox.Text = ""; this.headersRichTextBox.WordWrap = false; // // groupBox1 // this.groupBox1.Controls.Add(this.exceptionRichTextBox); this.groupBox1.Dock = System.Windows.Forms.DockStyle.Fill; this.groupBox1.Location = new System.Drawing.Point(0, 0); this.groupBox1.Name = "groupBox1"; this.groupBox1.Size = new System.Drawing.Size(289, 60); this.groupBox1.TabIndex = 0; this.groupBox1.TabStop = false; this.groupBox1.Text = "Exception - TODO"; // // exceptionRichTextBox // this.exceptionRichTextBox.Dock = System.Windows.Forms.DockStyle.Fill; this.exceptionRichTextBox.Location = new System.Drawing.Point(3, 16); this.exceptionRichTextBox.Name = "exceptionRichTextBox"; this.exceptionRichTextBox.ReadOnly = true; this.exceptionRichTextBox.Size = new System.Drawing.Size(283, 41); this.exceptionRichTextBox.TabIndex = 43; this.exceptionRichTextBox.Text = "This field will contain full exception detail.\nNo more ambiguous HttpExceptions.\n" + ""; this.exceptionRichTextBox.WordWrap = false; // // groupBox3 // this.groupBox3.Controls.Add(this.bodyBodyView); this.groupBox3.Dock = System.Windows.Forms.DockStyle.Fill; this.groupBox3.Location = new System.Drawing.Point(0, 0); this.groupBox3.Name = "groupBox3"; this.groupBox3.Size = new System.Drawing.Size(512, 236); this.groupBox3.TabIndex = 0; this.groupBox3.TabStop = false; this.groupBox3.Text = "Body"; // // bodyBodyView // this.bodyBodyView.BackColor = System.Drawing.SystemColors.GradientActiveCaption; this.bodyBodyView.Dock = System.Windows.Forms.DockStyle.Fill; this.bodyBodyView.Location = new System.Drawing.Point(3, 16); this.bodyBodyView.Name = "bodyBodyView"; this.bodyBodyView.Size = new System.Drawing.Size(506, 217); this.bodyBodyView.TabIndex = 41; this.bodyBodyView.Value = null; // // LogView // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.BackColor = System.Drawing.SystemColors.Control; this.ClientSize = new System.Drawing.Size(805, 460); this.Controls.Add(this.splitContainer1); this.Controls.Add(this.menuStrip1); this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); this.Name = "LogView"; this.Text = "LogView"; this.menuStrip1.ResumeLayout(false); this.menuStrip1.PerformLayout(); this.splitContainer1.Panel1.ResumeLayout(false); this.splitContainer1.Panel2.ResumeLayout(false); this.splitContainer1.ResumeLayout(false); this.splitContainer2.Panel1.ResumeLayout(false); this.splitContainer2.Panel2.ResumeLayout(false); this.splitContainer2.ResumeLayout(false); this.splitContainer3.Panel1.ResumeLayout(false); this.splitContainer3.Panel2.ResumeLayout(false); this.splitContainer3.ResumeLayout(false); this.groupBox2.ResumeLayout(false); this.groupBox1.ResumeLayout(false); this.groupBox3.ResumeLayout(false); this.ResumeLayout(false); this.PerformLayout(); } #endregion private System.Windows.Forms.ToolTip toolTip1; private System.Windows.Forms.MenuStrip menuStrip1; private System.Windows.Forms.ToolStripMenuItem fileToolStripMenuItem; private System.Windows.Forms.ToolStripMenuItem clearToolStripMenuItem; private System.Windows.Forms.ToolStripSeparator toolStripSeparator1; private System.Windows.Forms.ToolStripMenuItem exitToolStripMenuItem; private System.Windows.Forms.ToolStripMenuItem optionsToolStripMenuItem; private System.Windows.Forms.ToolStripMenuItem scrollLogToolStripMenuItem; private System.Windows.Forms.SplitContainer splitContainer1; private System.Windows.Forms.SplitContainer splitContainer2; private System.Windows.Forms.SplitContainer splitContainer3; private System.Windows.Forms.GroupBox groupBox2; private System.Windows.Forms.GroupBox groupBox1; private System.Windows.Forms.GroupBox groupBox3; private BodyView bodyBodyView; private System.Windows.Forms.RichTextBox exceptionRichTextBox; private System.Windows.Forms.RichTextBox headersRichTextBox; private System.Windows.Forms.ListView listView1; private System.Windows.Forms.ColumnHeader TypeHeader; private System.Windows.Forms.ColumnHeader CreatedHeader; private System.Windows.Forms.ColumnHeader StatusHeader; private System.Windows.Forms.ColumnHeader UrlHeader; private System.Windows.Forms.ColumnHeader PathTranslatedHeader; private System.Windows.Forms.ColumnHeader IdentityHeader; } }