| 1 | /* |
|---|
| 2 | * $Id$ |
|---|
| 3 | * Copyright 2008-2010 The Eraser Project |
|---|
| 4 | * Original Author: Joel Low <lowjoel@users.sourceforge.net> |
|---|
| 5 | * Modified By: |
|---|
| 6 | * |
|---|
| 7 | * This file is part of Eraser. |
|---|
| 8 | * |
|---|
| 9 | * Eraser is free software: you can redistribute it and/or modify it under the |
|---|
| 10 | * terms of the GNU General Public License as published by the Free Software |
|---|
| 11 | * Foundation, either version 3 of the License, or (at your option) any later |
|---|
| 12 | * version. |
|---|
| 13 | * |
|---|
| 14 | * Eraser is distributed in the hope that it will be useful, but WITHOUT ANY |
|---|
| 15 | * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR |
|---|
| 16 | * A PARTICULAR PURPOSE. See the GNU General Public License for more details. |
|---|
| 17 | * |
|---|
| 18 | * A copy of the GNU General Public License can be found at |
|---|
| 19 | * <http://www.gnu.org/licenses/>. |
|---|
| 20 | */ |
|---|
| 21 | |
|---|
| 22 | namespace Eraser |
|---|
| 23 | { |
|---|
| 24 | partial class LogForm |
|---|
| 25 | { |
|---|
| 26 | /// <summary> |
|---|
| 27 | /// Required designer variable. |
|---|
| 28 | /// </summary> |
|---|
| 29 | private System.ComponentModel.IContainer components = null; |
|---|
| 30 | |
|---|
| 31 | /// <summary> |
|---|
| 32 | /// Clean up any resources being used. |
|---|
| 33 | /// </summary> |
|---|
| 34 | /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param> |
|---|
| 35 | protected override void Dispose(bool disposing) |
|---|
| 36 | { |
|---|
| 37 | if (disposing && (components != null)) |
|---|
| 38 | { |
|---|
| 39 | components.Dispose(); |
|---|
| 40 | } |
|---|
| 41 | base.Dispose(disposing); |
|---|
| 42 | } |
|---|
| 43 | |
|---|
| 44 | #region Windows Form Designer generated code |
|---|
| 45 | |
|---|
| 46 | /// <summary> |
|---|
| 47 | /// Required method for Designer support - do not modify |
|---|
| 48 | /// the contents of this method with the code editor. |
|---|
| 49 | /// </summary> |
|---|
| 50 | private void InitializeComponent() |
|---|
| 51 | { |
|---|
| 52 | this.components = new System.ComponentModel.Container(); |
|---|
| 53 | System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(LogForm)); |
|---|
| 54 | this.log = new System.Windows.Forms.ListView(); |
|---|
| 55 | this.logTimestampColumn = new System.Windows.Forms.ColumnHeader(); |
|---|
| 56 | this.logSeverityColumn = new System.Windows.Forms.ColumnHeader(); |
|---|
| 57 | this.logMessageColumn = new System.Windows.Forms.ColumnHeader(); |
|---|
| 58 | this.clear = new System.Windows.Forms.Button(); |
|---|
| 59 | this.close = new System.Windows.Forms.Button(); |
|---|
| 60 | this.filterSeverityLabel = new System.Windows.Forms.Label(); |
|---|
| 61 | this.filterSeverityCombobox = new System.Windows.Forms.ComboBox(); |
|---|
| 62 | this.filterFilterTypeCombobox = new System.Windows.Forms.ComboBox(); |
|---|
| 63 | this.filterSessionLabel = new System.Windows.Forms.Label(); |
|---|
| 64 | this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel(); |
|---|
| 65 | this.filterSessionCombobox = new System.Windows.Forms.ComboBox(); |
|---|
| 66 | this.logContextMenuStrip = new System.Windows.Forms.ContextMenuStrip(this.components); |
|---|
| 67 | this.copySelectedEntriesToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); |
|---|
| 68 | this.tableLayoutPanel1.SuspendLayout(); |
|---|
| 69 | this.logContextMenuStrip.SuspendLayout(); |
|---|
| 70 | this.SuspendLayout(); |
|---|
| 71 | // |
|---|
| 72 | // log |
|---|
| 73 | // |
|---|
| 74 | resources.ApplyResources(this.log, "log"); |
|---|
| 75 | this.log.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] { |
|---|
| 76 | this.logTimestampColumn, |
|---|
| 77 | this.logSeverityColumn, |
|---|
| 78 | this.logMessageColumn}); |
|---|
| 79 | this.log.ContextMenuStrip = this.logContextMenuStrip; |
|---|
| 80 | this.log.FullRowSelect = true; |
|---|
| 81 | this.log.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.Nonclickable; |
|---|
| 82 | this.log.Name = "log"; |
|---|
| 83 | this.log.UseCompatibleStateImageBehavior = false; |
|---|
| 84 | this.log.View = System.Windows.Forms.View.Details; |
|---|
| 85 | this.log.VirtualMode = true; |
|---|
| 86 | this.log.VirtualItemsSelectionRangeChanged += new System.Windows.Forms.ListViewVirtualItemsSelectionRangeChangedEventHandler(this.log_VirtualItemsSelectionRangeChanged); |
|---|
| 87 | this.log.RetrieveVirtualItem += new System.Windows.Forms.RetrieveVirtualItemEventHandler(this.log_RetrieveVirtualItem); |
|---|
| 88 | this.log.ItemSelectionChanged += new System.Windows.Forms.ListViewItemSelectionChangedEventHandler(this.log_ItemSelectionChanged); |
|---|
| 89 | // |
|---|
| 90 | // logTimestampColumn |
|---|
| 91 | // |
|---|
| 92 | resources.ApplyResources(this.logTimestampColumn, "logTimestampColumn"); |
|---|
| 93 | // |
|---|
| 94 | // logSeverityColumn |
|---|
| 95 | // |
|---|
| 96 | resources.ApplyResources(this.logSeverityColumn, "logSeverityColumn"); |
|---|
| 97 | // |
|---|
| 98 | // logMessageColumn |
|---|
| 99 | // |
|---|
| 100 | resources.ApplyResources(this.logMessageColumn, "logMessageColumn"); |
|---|
| 101 | // |
|---|
| 102 | // clear |
|---|
| 103 | // |
|---|
| 104 | resources.ApplyResources(this.clear, "clear"); |
|---|
| 105 | this.clear.Name = "clear"; |
|---|
| 106 | this.clear.UseVisualStyleBackColor = true; |
|---|
| 107 | this.clear.Click += new System.EventHandler(this.clear_Click); |
|---|
| 108 | // |
|---|
| 109 | // close |
|---|
| 110 | // |
|---|
| 111 | resources.ApplyResources(this.close, "close"); |
|---|
| 112 | this.close.Name = "close"; |
|---|
| 113 | this.close.UseVisualStyleBackColor = true; |
|---|
| 114 | this.close.Click += new System.EventHandler(this.close_Click); |
|---|
| 115 | // |
|---|
| 116 | // filterSeverityLabel |
|---|
| 117 | // |
|---|
| 118 | resources.ApplyResources(this.filterSeverityLabel, "filterSeverityLabel"); |
|---|
| 119 | this.filterSeverityLabel.Name = "filterSeverityLabel"; |
|---|
| 120 | // |
|---|
| 121 | // filterSeverityCombobox |
|---|
| 122 | // |
|---|
| 123 | resources.ApplyResources(this.filterSeverityCombobox, "filterSeverityCombobox"); |
|---|
| 124 | this.filterSeverityCombobox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; |
|---|
| 125 | this.filterSeverityCombobox.Items.AddRange(new object[] { |
|---|
| 126 | resources.GetString("filterSeverityCombobox.Items"), |
|---|
| 127 | resources.GetString("filterSeverityCombobox.Items1"), |
|---|
| 128 | resources.GetString("filterSeverityCombobox.Items2"), |
|---|
| 129 | resources.GetString("filterSeverityCombobox.Items3"), |
|---|
| 130 | resources.GetString("filterSeverityCombobox.Items4")}); |
|---|
| 131 | this.filterSeverityCombobox.Name = "filterSeverityCombobox"; |
|---|
| 132 | this.filterSeverityCombobox.SelectedIndexChanged += new System.EventHandler(this.filter_Changed); |
|---|
| 133 | // |
|---|
| 134 | // filterFilterTypeCombobox |
|---|
| 135 | // |
|---|
| 136 | resources.ApplyResources(this.filterFilterTypeCombobox, "filterFilterTypeCombobox"); |
|---|
| 137 | this.filterFilterTypeCombobox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; |
|---|
| 138 | this.filterFilterTypeCombobox.FormattingEnabled = true; |
|---|
| 139 | this.filterFilterTypeCombobox.Items.AddRange(new object[] { |
|---|
| 140 | resources.GetString("filterFilterTypeCombobox.Items"), |
|---|
| 141 | resources.GetString("filterFilterTypeCombobox.Items1"), |
|---|
| 142 | resources.GetString("filterFilterTypeCombobox.Items2")}); |
|---|
| 143 | this.filterFilterTypeCombobox.Name = "filterFilterTypeCombobox"; |
|---|
| 144 | this.filterFilterTypeCombobox.SelectedIndexChanged += new System.EventHandler(this.filter_Changed); |
|---|
| 145 | // |
|---|
| 146 | // filterSessionLabel |
|---|
| 147 | // |
|---|
| 148 | resources.ApplyResources(this.filterSessionLabel, "filterSessionLabel"); |
|---|
| 149 | this.filterSessionLabel.Name = "filterSessionLabel"; |
|---|
| 150 | // |
|---|
| 151 | // tableLayoutPanel1 |
|---|
| 152 | // |
|---|
| 153 | resources.ApplyResources(this.tableLayoutPanel1, "tableLayoutPanel1"); |
|---|
| 154 | this.tableLayoutPanel1.Controls.Add(this.filterSessionLabel, 0, 0); |
|---|
| 155 | this.tableLayoutPanel1.Controls.Add(this.filterSeverityLabel, 0, 1); |
|---|
| 156 | this.tableLayoutPanel1.Controls.Add(this.filterFilterTypeCombobox, 2, 1); |
|---|
| 157 | this.tableLayoutPanel1.Controls.Add(this.filterSeverityCombobox, 1, 1); |
|---|
| 158 | this.tableLayoutPanel1.Controls.Add(this.filterSessionCombobox, 1, 0); |
|---|
| 159 | this.tableLayoutPanel1.Name = "tableLayoutPanel1"; |
|---|
| 160 | // |
|---|
| 161 | // filterSessionCombobox |
|---|
| 162 | // |
|---|
| 163 | this.tableLayoutPanel1.SetColumnSpan(this.filterSessionCombobox, 3); |
|---|
| 164 | resources.ApplyResources(this.filterSessionCombobox, "filterSessionCombobox"); |
|---|
| 165 | this.filterSessionCombobox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; |
|---|
| 166 | this.filterSessionCombobox.FormattingEnabled = true; |
|---|
| 167 | this.filterSessionCombobox.Name = "filterSessionCombobox"; |
|---|
| 168 | this.filterSessionCombobox.SelectedIndexChanged += new System.EventHandler(this.filter_Changed); |
|---|
| 169 | // |
|---|
| 170 | // logContextMenuStrip |
|---|
| 171 | // |
|---|
| 172 | this.logContextMenuStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { |
|---|
| 173 | this.copySelectedEntriesToolStripMenuItem}); |
|---|
| 174 | this.logContextMenuStrip.Name = "logContextMenuStrip"; |
|---|
| 175 | resources.ApplyResources(this.logContextMenuStrip, "logContextMenuStrip"); |
|---|
| 176 | this.logContextMenuStrip.Opening += new System.ComponentModel.CancelEventHandler(this.logContextMenuStrip_Opening); |
|---|
| 177 | // |
|---|
| 178 | // copySelectedEntriesToolStripMenuItem |
|---|
| 179 | // |
|---|
| 180 | this.copySelectedEntriesToolStripMenuItem.Name = "copySelectedEntriesToolStripMenuItem"; |
|---|
| 181 | resources.ApplyResources(this.copySelectedEntriesToolStripMenuItem, "copySelectedEntriesToolStripMenuItem"); |
|---|
| 182 | this.copySelectedEntriesToolStripMenuItem.Click += new System.EventHandler(this.copySelectedEntriesToolStripMenuItem_Click); |
|---|
| 183 | // |
|---|
| 184 | // LogForm |
|---|
| 185 | // |
|---|
| 186 | resources.ApplyResources(this, "$this"); |
|---|
| 187 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi; |
|---|
| 188 | this.Controls.Add(this.tableLayoutPanel1); |
|---|
| 189 | this.Controls.Add(this.close); |
|---|
| 190 | this.Controls.Add(this.log); |
|---|
| 191 | this.Controls.Add(this.clear); |
|---|
| 192 | this.MaximizeBox = false; |
|---|
| 193 | this.MinimizeBox = false; |
|---|
| 194 | this.Name = "LogForm"; |
|---|
| 195 | this.ShowIcon = false; |
|---|
| 196 | this.ShowInTaskbar = false; |
|---|
| 197 | this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.LogForm_FormClosed); |
|---|
| 198 | this.tableLayoutPanel1.ResumeLayout(false); |
|---|
| 199 | this.tableLayoutPanel1.PerformLayout(); |
|---|
| 200 | this.logContextMenuStrip.ResumeLayout(false); |
|---|
| 201 | this.ResumeLayout(false); |
|---|
| 202 | |
|---|
| 203 | } |
|---|
| 204 | |
|---|
| 205 | #endregion |
|---|
| 206 | |
|---|
| 207 | private System.Windows.Forms.ListView log; |
|---|
| 208 | private System.Windows.Forms.Button clear; |
|---|
| 209 | private System.Windows.Forms.Button close; |
|---|
| 210 | private System.Windows.Forms.ColumnHeader logTimestampColumn; |
|---|
| 211 | private System.Windows.Forms.ColumnHeader logSeverityColumn; |
|---|
| 212 | private System.Windows.Forms.ColumnHeader logMessageColumn; |
|---|
| 213 | private System.Windows.Forms.Label filterSeverityLabel; |
|---|
| 214 | private System.Windows.Forms.ComboBox filterSeverityCombobox; |
|---|
| 215 | private System.Windows.Forms.ComboBox filterFilterTypeCombobox; |
|---|
| 216 | private System.Windows.Forms.Label filterSessionLabel; |
|---|
| 217 | private System.Windows.Forms.TableLayoutPanel tableLayoutPanel1; |
|---|
| 218 | private System.Windows.Forms.ComboBox filterSessionCombobox; |
|---|
| 219 | private System.Windows.Forms.ContextMenuStrip logContextMenuStrip; |
|---|
| 220 | private System.Windows.Forms.ToolStripMenuItem copySelectedEntriesToolStripMenuItem; |
|---|
| 221 | } |
|---|
| 222 | } |
|---|