1 namespace Mesen.GUI.Debugger
2 {
3 	partial class ctrlDebuggerCode
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.ctrlCodeViewer = new Mesen.GUI.Debugger.ctrlScrollableTextbox();
41 			this.contextMenuMargin = new System.Windows.Forms.ContextMenuStrip(this.components);
42 			this.mnuEditBreakpoint = new System.Windows.Forms.ToolStripMenuItem();
43 			this.mnuDisableBreakpoint = new System.Windows.Forms.ToolStripMenuItem();
44 			this.mnuRemoveBreakpoint = new System.Windows.Forms.ToolStripMenuItem();
45 			this.splitContainer = new System.Windows.Forms.SplitContainer();
46 			this.ctrlFindOccurrences = new Mesen.GUI.Debugger.Controls.ctrlFindOccurrences();
47 			this.contextMenuMargin.SuspendLayout();
48 			((System.ComponentModel.ISupportInitialize)(this.splitContainer)).BeginInit();
49 			this.splitContainer.Panel1.SuspendLayout();
50 			this.splitContainer.Panel2.SuspendLayout();
51 			this.splitContainer.SuspendLayout();
52 			this.SuspendLayout();
53 			//
54 			// ctrlCodeViewer
55 			//
56 			this.ctrlCodeViewer.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
57 			this.ctrlCodeViewer.CodeHighlightingEnabled = true;
58 			this.ctrlCodeViewer.Dock = System.Windows.Forms.DockStyle.Fill;
59 			this.ctrlCodeViewer.HideSelection = false;
60 			this.ctrlCodeViewer.Location = new System.Drawing.Point(0, 0);
61 			this.ctrlCodeViewer.Name = "ctrlCodeViewer";
62 			this.ctrlCodeViewer.ShowCompactPrgAddresses = false;
63 			this.ctrlCodeViewer.ShowContentNotes = false;
64 			this.ctrlCodeViewer.ShowLineNumberNotes = false;
65 			this.ctrlCodeViewer.ShowMemoryValues = false;
66 			this.ctrlCodeViewer.ShowScrollbars = true;
67 			this.ctrlCodeViewer.ShowSingleContentLineNotes = true;
68 			this.ctrlCodeViewer.ShowSingleLineLineNumberNotes = false;
69 			this.ctrlCodeViewer.Size = new System.Drawing.Size(479, 150);
70 			this.ctrlCodeViewer.TabIndex = 1;
71 			this.ctrlCodeViewer.MouseUp += new System.Windows.Forms.MouseEventHandler(this.ctrlCodeViewer_MouseUp);
72 			this.ctrlCodeViewer.MouseMove += new System.Windows.Forms.MouseEventHandler(this.ctrlCodeViewer_MouseMove);
73 			this.ctrlCodeViewer.MouseDown += new System.Windows.Forms.MouseEventHandler(this.ctrlCodeViewer_MouseDown);
74 			this.ctrlCodeViewer.MouseDoubleClick += new System.Windows.Forms.MouseEventHandler(this.ctrlCodeViewer_MouseDoubleClick);
75 			this.ctrlCodeViewer.TextZoomChanged += new System.EventHandler(this.ctrlCodeViewer_TextZoomChanged);
76 			//
77 			// contextMenuMargin
78 			//
79 			this.contextMenuMargin.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
80             this.mnuEditBreakpoint,
81             this.mnuDisableBreakpoint,
82             this.mnuRemoveBreakpoint});
83 			this.contextMenuMargin.Name = "contextMenuMargin";
84 			this.contextMenuMargin.Size = new System.Drawing.Size(178, 70);
85 			this.contextMenuMargin.Opening += new System.ComponentModel.CancelEventHandler(this.contextMenuMargin_Opening);
86 			//
87 			// mnuEditBreakpoint
88 			//
89 			this.mnuEditBreakpoint.Image = global::Mesen.GUI.Properties.Resources.Edit;
90 			this.mnuEditBreakpoint.Name = "mnuEditBreakpoint";
91 			this.mnuEditBreakpoint.Size = new System.Drawing.Size(177, 22);
92 			this.mnuEditBreakpoint.Text = "Edit breakpoint";
93 			this.mnuEditBreakpoint.Click += new System.EventHandler(this.mnuEditBreakpoint_Click);
94 			//
95 			// mnuDisableBreakpoint
96 			//
97 			this.mnuDisableBreakpoint.Image = global::Mesen.GUI.Properties.Resources.BreakpointEnableDisable;
98 			this.mnuDisableBreakpoint.Name = "mnuDisableBreakpoint";
99 			this.mnuDisableBreakpoint.Size = new System.Drawing.Size(177, 22);
100 			this.mnuDisableBreakpoint.Text = "Disable breakpoint";
101 			this.mnuDisableBreakpoint.Click += new System.EventHandler(this.mnuDisableBreakpoint_Click);
102 			//
103 			// mnuRemoveBreakpoint
104 			//
105 			this.mnuRemoveBreakpoint.Image = global::Mesen.GUI.Properties.Resources.Close;
106 			this.mnuRemoveBreakpoint.Name = "mnuRemoveBreakpoint";
107 			this.mnuRemoveBreakpoint.Size = new System.Drawing.Size(177, 22);
108 			this.mnuRemoveBreakpoint.Text = "Remove breakpoint";
109 			this.mnuRemoveBreakpoint.Click += new System.EventHandler(this.mnuRemoveBreakpoint_Click);
110 			//
111 			// splitContainer
112 			//
113 			this.splitContainer.Dock = System.Windows.Forms.DockStyle.Fill;
114 			this.splitContainer.FixedPanel = System.Windows.Forms.FixedPanel.Panel2;
115 			this.splitContainer.Location = new System.Drawing.Point(0, 0);
116 			this.splitContainer.Margin = new System.Windows.Forms.Padding(0);
117 			this.splitContainer.Name = "splitContainer";
118 			this.splitContainer.Orientation = System.Windows.Forms.Orientation.Horizontal;
119 			//
120 			// splitContainer.Panel1
121 			//
122 			this.splitContainer.Panel1.Controls.Add(this.ctrlCodeViewer);
123 			this.splitContainer.Panel1MinSize = 150;
124 			//
125 			// splitContainer.Panel2
126 			//
127 			this.splitContainer.Panel2.Controls.Add(this.ctrlFindOccurrences);
128 			this.splitContainer.Size = new System.Drawing.Size(479, 318);
129 			this.splitContainer.SplitterDistance = 150;
130 			this.splitContainer.TabIndex = 12;
131 			//
132 			// ctrlFindOccurrences
133 			//
134 			this.ctrlFindOccurrences.Dock = System.Windows.Forms.DockStyle.Fill;
135 			this.ctrlFindOccurrences.Location = new System.Drawing.Point(0, 0);
136 			this.ctrlFindOccurrences.Name = "ctrlFindOccurrences";
137 			this.ctrlFindOccurrences.Size = new System.Drawing.Size(479, 164);
138 			this.ctrlFindOccurrences.TabIndex = 0;
139 			this.ctrlFindOccurrences.Viewer = null;
140 			this.ctrlFindOccurrences.OnSearchResultsClosed += new System.EventHandler(this.ctrlFindOccurrences_OnSearchResultsClosed);
141 			//
142 			// ctrlDebuggerCode
143 			//
144 			this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
145 			this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
146 			this.Controls.Add(this.splitContainer);
147 			this.Name = "ctrlDebuggerCode";
148 			this.Size = new System.Drawing.Size(479, 318);
149 			this.contextMenuMargin.ResumeLayout(false);
150 			this.splitContainer.Panel1.ResumeLayout(false);
151 			this.splitContainer.Panel2.ResumeLayout(false);
152 			((System.ComponentModel.ISupportInitialize)(this.splitContainer)).EndInit();
153 			this.splitContainer.ResumeLayout(false);
154 			this.ResumeLayout(false);
155 
156 		}
157 
158 		#endregion
159 
160 		private Mesen.GUI.Debugger.ctrlScrollableTextbox ctrlCodeViewer;
161 		private System.Windows.Forms.ContextMenuStrip contextMenuMargin;
162 		private System.Windows.Forms.ToolStripMenuItem mnuRemoveBreakpoint;
163 		private System.Windows.Forms.ToolStripMenuItem mnuEditBreakpoint;
164 		private System.Windows.Forms.ToolStripMenuItem mnuDisableBreakpoint;
165 		private System.Windows.Forms.SplitContainer splitContainer;
166 		private Controls.ctrlFindOccurrences ctrlFindOccurrences;
167 	}
168 }
169