1 namespace Mesen.GUI.Debugger.Controls
2 {
3 	partial class ctrlSourceViewer
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 			if(_codeViewerActions != null) {
20 				_codeViewerActions.Dispose();
21 				_codeViewerActions = null;
22 			}
23 			if(_tooltipManager != null) {
24 				_tooltipManager.Dispose();
25 				_tooltipManager = null;
26 			}
27 			DebugWorkspaceManager.SymbolProviderChanged -= UpdateSymbolProvider;
28 			base.Dispose(disposing);
29 		}
30 
31 		#region Component Designer generated code
32 
33 		/// <summary>
34 		/// Required method for Designer support - do not modify
35 		/// the contents of this method with the code editor.
36 		/// </summary>
InitializeComponent()37 		private void InitializeComponent()
38 		{
39 			this.components = new System.ComponentModel.Container();
40 			this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
41 			this.lblFile = new System.Windows.Forms.Label();
42 			this.cboFile = new System.Windows.Forms.ComboBox();
43 			this.splitContainer = new System.Windows.Forms.SplitContainer();
44 			this.ctrlCodeViewer = new Mesen.GUI.Debugger.ctrlScrollableTextbox();
45 			this.ctrlFindOccurrences = new Mesen.GUI.Debugger.Controls.ctrlFindOccurrences();
46 			this.contextMenuMargin = new System.Windows.Forms.ContextMenuStrip(this.components);
47 			this.mnuEditBreakpoint = new System.Windows.Forms.ToolStripMenuItem();
48 			this.mnuDisableBreakpoint = new System.Windows.Forms.ToolStripMenuItem();
49 			this.mnuRemoveBreakpoint = new System.Windows.Forms.ToolStripMenuItem();
50 			this.tableLayoutPanel1.SuspendLayout();
51 			((System.ComponentModel.ISupportInitialize)(this.splitContainer)).BeginInit();
52 			this.splitContainer.Panel1.SuspendLayout();
53 			this.splitContainer.Panel2.SuspendLayout();
54 			this.splitContainer.SuspendLayout();
55 			this.contextMenuMargin.SuspendLayout();
56 			this.SuspendLayout();
57 			//
58 			// tableLayoutPanel1
59 			//
60 			this.tableLayoutPanel1.ColumnCount = 2;
61 			this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
62 			this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
63 			this.tableLayoutPanel1.Controls.Add(this.lblFile, 0, 0);
64 			this.tableLayoutPanel1.Controls.Add(this.cboFile, 1, 0);
65 			this.tableLayoutPanel1.Controls.Add(this.splitContainer, 0, 1);
66 			this.tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
67 			this.tableLayoutPanel1.Location = new System.Drawing.Point(0, 0);
68 			this.tableLayoutPanel1.Name = "tableLayoutPanel1";
69 			this.tableLayoutPanel1.RowCount = 2;
70 			this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle());
71 			this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
72 			this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
73 			this.tableLayoutPanel1.Size = new System.Drawing.Size(484, 366);
74 			this.tableLayoutPanel1.TabIndex = 0;
75 			//
76 			// lblFile
77 			//
78 			this.lblFile.Anchor = System.Windows.Forms.AnchorStyles.Left;
79 			this.lblFile.AutoSize = true;
80 			this.lblFile.Location = new System.Drawing.Point(3, 7);
81 			this.lblFile.Name = "lblFile";
82 			this.lblFile.Size = new System.Drawing.Size(26, 13);
83 			this.lblFile.TabIndex = 0;
84 			this.lblFile.Text = "File:";
85 			//
86 			// cboFile
87 			//
88 			this.cboFile.Dock = System.Windows.Forms.DockStyle.Fill;
89 			this.cboFile.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
90 			this.cboFile.FormattingEnabled = true;
91 			this.cboFile.Location = new System.Drawing.Point(35, 3);
92 			this.cboFile.Margin = new System.Windows.Forms.Padding(3, 3, 0, 3);
93 			this.cboFile.Name = "cboFile";
94 			this.cboFile.Size = new System.Drawing.Size(449, 21);
95 			this.cboFile.TabIndex = 1;
96 			this.cboFile.SelectedIndexChanged += new System.EventHandler(this.cboFile_SelectedIndexChanged);
97 			//
98 			// splitContainer
99 			//
100 			this.tableLayoutPanel1.SetColumnSpan(this.splitContainer, 2);
101 			this.splitContainer.Dock = System.Windows.Forms.DockStyle.Fill;
102 			this.splitContainer.FixedPanel = System.Windows.Forms.FixedPanel.Panel2;
103 			this.splitContainer.Location = new System.Drawing.Point(0, 27);
104 			this.splitContainer.Margin = new System.Windows.Forms.Padding(0);
105 			this.splitContainer.Name = "splitContainer";
106 			this.splitContainer.Orientation = System.Windows.Forms.Orientation.Horizontal;
107 			//
108 			// splitContainer.Panel1
109 			//
110 			this.splitContainer.Panel1.Controls.Add(this.ctrlCodeViewer);
111 			this.splitContainer.Panel1MinSize = 150;
112 			//
113 			// splitContainer.Panel2
114 			//
115 			this.splitContainer.Panel2.Controls.Add(this.ctrlFindOccurrences);
116 			this.splitContainer.Size = new System.Drawing.Size(484, 339);
117 			this.splitContainer.SplitterDistance = 159;
118 			this.splitContainer.TabIndex = 3;
119 			//
120 			// ctrlCodeViewer
121 			//
122 			this.ctrlCodeViewer.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
123 			this.ctrlCodeViewer.CodeHighlightingEnabled = false;
124 			this.ctrlCodeViewer.Dock = System.Windows.Forms.DockStyle.Fill;
125 			this.ctrlCodeViewer.HideSelection = false;
126 			this.ctrlCodeViewer.Location = new System.Drawing.Point(0, 0);
127 			this.ctrlCodeViewer.Margin = new System.Windows.Forms.Padding(0);
128 			this.ctrlCodeViewer.Name = "ctrlCodeViewer";
129 			this.ctrlCodeViewer.ShowCompactPrgAddresses = false;
130 			this.ctrlCodeViewer.ShowContentNotes = false;
131 			this.ctrlCodeViewer.ShowLineNumberNotes = false;
132 			this.ctrlCodeViewer.ShowMemoryValues = false;
133 			this.ctrlCodeViewer.ShowScrollbars = true;
134 			this.ctrlCodeViewer.ShowSingleContentLineNotes = true;
135 			this.ctrlCodeViewer.ShowSingleLineLineNumberNotes = false;
136 			this.ctrlCodeViewer.Size = new System.Drawing.Size(484, 159);
137 			this.ctrlCodeViewer.TabIndex = 2;
138 			this.ctrlCodeViewer.MouseUp += new System.Windows.Forms.MouseEventHandler(this.ctrlCodeViewer_MouseUp);
139 			this.ctrlCodeViewer.MouseMove += new System.Windows.Forms.MouseEventHandler(this.ctrlCodeViewer_MouseMove);
140 			this.ctrlCodeViewer.MouseDown += new System.Windows.Forms.MouseEventHandler(this.ctrlCodeViewer_MouseDown);
141 			this.ctrlCodeViewer.MouseDoubleClick += new System.Windows.Forms.MouseEventHandler(this.ctrlCodeViewer_MouseDoubleClick);
142 			this.ctrlCodeViewer.TextZoomChanged += new System.EventHandler(this.ctrlCodeViewer_TextZoomChanged);
143 			//
144 			// ctrlFindOccurrences
145 			//
146 			this.ctrlFindOccurrences.Dock = System.Windows.Forms.DockStyle.Fill;
147 			this.ctrlFindOccurrences.Location = new System.Drawing.Point(0, 0);
148 			this.ctrlFindOccurrences.Name = "ctrlFindOccurrences";
149 			this.ctrlFindOccurrences.Size = new System.Drawing.Size(484, 176);
150 			this.ctrlFindOccurrences.TabIndex = 1;
151 			this.ctrlFindOccurrences.Viewer = null;
152 			this.ctrlFindOccurrences.OnSearchResultsClosed += new System.EventHandler(this.ctrlFindOccurrences_OnSearchResultsClosed);
153 			//
154 			// contextMenuMargin
155 			//
156 			this.contextMenuMargin.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
157             this.mnuEditBreakpoint,
158             this.mnuDisableBreakpoint,
159             this.mnuRemoveBreakpoint});
160 			this.contextMenuMargin.Name = "contextMenuMargin";
161 			this.contextMenuMargin.Size = new System.Drawing.Size(178, 70);
162 			this.contextMenuMargin.Opening += new System.ComponentModel.CancelEventHandler(this.contextMenuMargin_Opening);
163 			//
164 			// mnuEditBreakpoint
165 			//
166 			this.mnuEditBreakpoint.Image = global::Mesen.GUI.Properties.Resources.Edit;
167 			this.mnuEditBreakpoint.Name = "mnuEditBreakpoint";
168 			this.mnuEditBreakpoint.Size = new System.Drawing.Size(177, 22);
169 			this.mnuEditBreakpoint.Text = "Edit breakpoint";
170 			this.mnuEditBreakpoint.Click += new System.EventHandler(this.mnuEditBreakpoint_Click);
171 			//
172 			// mnuDisableBreakpoint
173 			//
174 			this.mnuDisableBreakpoint.Image = global::Mesen.GUI.Properties.Resources.BreakpointEnableDisable;
175 			this.mnuDisableBreakpoint.Name = "mnuDisableBreakpoint";
176 			this.mnuDisableBreakpoint.Size = new System.Drawing.Size(177, 22);
177 			this.mnuDisableBreakpoint.Text = "Disable breakpoint";
178 			this.mnuDisableBreakpoint.Click += new System.EventHandler(this.mnuDisableBreakpoint_Click);
179 			//
180 			// mnuRemoveBreakpoint
181 			//
182 			this.mnuRemoveBreakpoint.Image = global::Mesen.GUI.Properties.Resources.Close;
183 			this.mnuRemoveBreakpoint.Name = "mnuRemoveBreakpoint";
184 			this.mnuRemoveBreakpoint.Size = new System.Drawing.Size(177, 22);
185 			this.mnuRemoveBreakpoint.Text = "Remove breakpoint";
186 			this.mnuRemoveBreakpoint.Click += new System.EventHandler(this.mnuRemoveBreakpoint_Click);
187 			//
188 			// ctrlSourceViewer
189 			//
190 			this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
191 			this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
192 			this.Controls.Add(this.tableLayoutPanel1);
193 			this.Name = "ctrlSourceViewer";
194 			this.Size = new System.Drawing.Size(484, 366);
195 			this.tableLayoutPanel1.ResumeLayout(false);
196 			this.tableLayoutPanel1.PerformLayout();
197 			this.splitContainer.Panel1.ResumeLayout(false);
198 			this.splitContainer.Panel2.ResumeLayout(false);
199 			((System.ComponentModel.ISupportInitialize)(this.splitContainer)).EndInit();
200 			this.splitContainer.ResumeLayout(false);
201 			this.contextMenuMargin.ResumeLayout(false);
202 			this.ResumeLayout(false);
203 
204 		}
205 
206 		#endregion
207 
208 		private System.Windows.Forms.TableLayoutPanel tableLayoutPanel1;
209 		private System.Windows.Forms.Label lblFile;
210 		private System.Windows.Forms.ComboBox cboFile;
211 		private ctrlScrollableTextbox ctrlCodeViewer;
212 		private System.Windows.Forms.ContextMenuStrip contextMenuMargin;
213 		private System.Windows.Forms.ToolStripMenuItem mnuEditBreakpoint;
214 		private System.Windows.Forms.ToolStripMenuItem mnuDisableBreakpoint;
215 		private System.Windows.Forms.ToolStripMenuItem mnuRemoveBreakpoint;
216 		private System.Windows.Forms.SplitContainer splitContainer;
217 		private ctrlFindOccurrences ctrlFindOccurrences;
218 	}
219 }
220