1 namespace Mesen.GUI.Debugger.Controls
2 {
3 	partial class ctrlEventViewerListView
4 	{
5 		/// <summary>
6 		/// Required designer variable.
7 		/// </summary>
8 		private System.ComponentModel.IContainer components = null;
9 
10 		/// <summary>
11 		/// Clean up any resources being used.
12 		/// </summary>
13 		/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
Dispose(bool disposing)14 		protected override void Dispose(bool disposing)
15 		{
16 			if(disposing && (components != null)) {
17 				components.Dispose();
18 			}
19 			base.Dispose(disposing);
20 		}
21 
22 		#region Component Designer generated code
23 
24 		/// <summary>
25 		/// Required method for Designer support - do not modify
26 		/// the contents of this method with the code editor.
27 		/// </summary>
InitializeComponent()28 		private void InitializeComponent()
29 		{
30 			this.components = new System.ComponentModel.Container();
31 			this.lstEvents = new Mesen.GUI.Controls.DoubleBufferedListView();
32 			this.colProgramCounter = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
33 			this.colScanline = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
34 			this.colCycle = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
35 			this.colEventType = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
36 			this.colAddress = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
37 			this.colValue = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
38 			this.colDetails = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
39 			this.ctxMenu = new System.Windows.Forms.ContextMenuStrip(this.components);
40 			this.mnuCopy = new System.Windows.Forms.ToolStripMenuItem();
41 			this.ctxMenu.SuspendLayout();
42 			this.SuspendLayout();
43 			//
44 			// lstEvents
45 			//
46 			this.lstEvents.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
47             this.colProgramCounter,
48             this.colScanline,
49             this.colCycle,
50             this.colEventType,
51             this.colAddress,
52             this.colValue,
53             this.colDetails});
54 			this.lstEvents.ContextMenuStrip = this.ctxMenu;
55 			this.lstEvents.Dock = System.Windows.Forms.DockStyle.Fill;
56 			this.lstEvents.FullRowSelect = true;
57 			this.lstEvents.Location = new System.Drawing.Point(0, 0);
58 			this.lstEvents.Name = "lstEvents";
59 			this.lstEvents.Size = new System.Drawing.Size(749, 205);
60 			this.lstEvents.TabIndex = 0;
61 			this.lstEvents.UseCompatibleStateImageBehavior = false;
62 			this.lstEvents.View = System.Windows.Forms.View.Details;
63 			this.lstEvents.VirtualMode = true;
64 			this.lstEvents.ColumnClick += new System.Windows.Forms.ColumnClickEventHandler(this.lstEvents_ColumnClick);
65 			this.lstEvents.RetrieveVirtualItem += new System.Windows.Forms.RetrieveVirtualItemEventHandler(this.lstEvents_RetrieveVirtualItem);
66 			//
67 			// colProgramCounter
68 			//
69 			this.colProgramCounter.Text = "PC";
70 			this.colProgramCounter.Width = 50;
71 			//
72 			// colScanline
73 			//
74 			this.colScanline.Text = "Scanline";
75 			//
76 			// colCycle
77 			//
78 			this.colCycle.Text = "Cycle";
79 			this.colCycle.Width = 45;
80 			//
81 			// colEventType
82 			//
83 			this.colEventType.Text = "Type";
84 			this.colEventType.Width = 135;
85 			//
86 			// colAddress
87 			//
88 			this.colAddress.Text = "Address";
89 			this.colAddress.Width = 65;
90 			//
91 			// colValue
92 			//
93 			this.colValue.Text = "Value";
94 			this.colValue.Width = 51;
95 			//
96 			// colDetails
97 			//
98 			this.colDetails.Text = "Details";
99 			this.colDetails.Width = 289;
100 			//
101 			// ctxMenu
102 			//
103 			this.ctxMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
104             this.mnuCopy});
105 			this.ctxMenu.Name = "ctxMenu";
106 			this.ctxMenu.Size = new System.Drawing.Size(170, 48);
107 			//
108 			// mnuCopy
109 			//
110 			this.mnuCopy.Image = global::Mesen.GUI.Properties.Resources.Copy;
111 			this.mnuCopy.Name = "mnuCopy";
112 			this.mnuCopy.Size = new System.Drawing.Size(169, 22);
113 			this.mnuCopy.Text = "Copy List Content";
114 			this.mnuCopy.Click += new System.EventHandler(this.mnuCopy_Click);
115 			//
116 			// ctrlEventViewerListView
117 			//
118 			this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
119 			this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
120 			this.Controls.Add(this.lstEvents);
121 			this.Name = "ctrlEventViewerListView";
122 			this.Size = new System.Drawing.Size(749, 205);
123 			this.ctxMenu.ResumeLayout(false);
124 			this.ResumeLayout(false);
125 
126 		}
127 
128 		#endregion
129 
130 		private GUI.Controls.DoubleBufferedListView lstEvents;
131 		private System.Windows.Forms.ColumnHeader colScanline;
132 		private System.Windows.Forms.ColumnHeader colCycle;
133 		private System.Windows.Forms.ColumnHeader colEventType;
134 		private System.Windows.Forms.ColumnHeader colDetails;
135 		private System.Windows.Forms.ColumnHeader colAddress;
136 		private System.Windows.Forms.ColumnHeader colValue;
137 		private System.Windows.Forms.ColumnHeader colProgramCounter;
138 		private System.Windows.Forms.ContextMenuStrip ctxMenu;
139 		private System.Windows.Forms.ToolStripMenuItem mnuCopy;
140 	}
141 }
142