2015-08-02 19:27:02 -04:00
|
|
|
|
namespace Mesen.GUI.Debugger.Controls
|
|
|
|
|
{
|
|
|
|
|
partial class ctrlBreakpoints
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Required designer variable.
|
|
|
|
|
/// </summary>
|
|
|
|
|
private System.ComponentModel.IContainer components = null;
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Clean up any resources being used.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
|
|
|
|
|
protected override void Dispose(bool disposing)
|
|
|
|
|
{
|
|
|
|
|
if(disposing && (components != null)) {
|
|
|
|
|
components.Dispose();
|
|
|
|
|
}
|
2016-11-22 00:22:25 -05:00
|
|
|
|
BreakpointManager.BreakpointsChanged -= BreakpointManager_OnBreakpointChanged;
|
2015-08-02 19:27:02 -04:00
|
|
|
|
base.Dispose(disposing);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#region Component Designer generated code
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Required method for Designer support - do not modify
|
|
|
|
|
/// the contents of this method with the code editor.
|
|
|
|
|
/// </summary>
|
|
|
|
|
private void InitializeComponent()
|
|
|
|
|
{
|
|
|
|
|
this.components = new System.ComponentModel.Container();
|
2017-08-03 21:30:44 -04:00
|
|
|
|
this.mnuBreakpoints = new System.Windows.Forms.ContextMenuStrip(this.components);
|
2015-08-02 19:27:02 -04:00
|
|
|
|
this.mnuAddBreakpoint = new System.Windows.Forms.ToolStripMenuItem();
|
2016-12-17 16:58:18 -05:00
|
|
|
|
this.mnuEditBreakpoint = new System.Windows.Forms.ToolStripMenuItem();
|
2015-08-02 19:27:02 -04:00
|
|
|
|
this.mnuRemoveBreakpoint = new System.Windows.Forms.ToolStripMenuItem();
|
2016-12-17 16:58:18 -05:00
|
|
|
|
this.toolStripMenuItem1 = new System.Windows.Forms.ToolStripSeparator();
|
2016-01-10 13:23:19 -05:00
|
|
|
|
this.mnuGoToLocation = new System.Windows.Forms.ToolStripMenuItem();
|
2015-08-02 19:27:02 -04:00
|
|
|
|
this.lstBreakpoints = new Mesen.GUI.Controls.MyListView();
|
2016-01-09 13:15:43 -05:00
|
|
|
|
this.columnHeader3 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
|
2015-08-02 19:27:02 -04:00
|
|
|
|
this.columnHeader1 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
|
|
|
|
|
this.columnHeader2 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
|
2016-01-09 13:15:43 -05:00
|
|
|
|
this.columnHeader4 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
|
2015-08-02 19:27:02 -04:00
|
|
|
|
this.colLastColumn = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
|
2017-08-03 21:30:44 -04:00
|
|
|
|
this.mnuBreakpoints.SuspendLayout();
|
2015-08-02 19:27:02 -04:00
|
|
|
|
this.SuspendLayout();
|
|
|
|
|
//
|
2017-08-03 21:30:44 -04:00
|
|
|
|
// mnuBreakpoints
|
2015-08-02 19:27:02 -04:00
|
|
|
|
//
|
2017-08-03 21:30:44 -04:00
|
|
|
|
this.mnuBreakpoints.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
2015-08-02 19:27:02 -04:00
|
|
|
|
this.mnuAddBreakpoint,
|
2016-12-17 16:58:18 -05:00
|
|
|
|
this.mnuEditBreakpoint,
|
2016-01-10 00:33:33 -05:00
|
|
|
|
this.mnuRemoveBreakpoint,
|
2016-12-17 16:58:18 -05:00
|
|
|
|
this.toolStripMenuItem1,
|
2016-01-10 00:33:33 -05:00
|
|
|
|
this.mnuGoToLocation});
|
2017-08-03 21:30:44 -04:00
|
|
|
|
this.mnuBreakpoints.Name = "mnuBreakpoints";
|
|
|
|
|
this.mnuBreakpoints.Size = new System.Drawing.Size(153, 120);
|
2015-08-02 19:27:02 -04:00
|
|
|
|
//
|
|
|
|
|
// mnuAddBreakpoint
|
|
|
|
|
//
|
2017-03-11 11:46:29 -05:00
|
|
|
|
this.mnuAddBreakpoint.Image = global::Mesen.GUI.Properties.Resources.Add;
|
2015-08-02 19:27:02 -04:00
|
|
|
|
this.mnuAddBreakpoint.Name = "mnuAddBreakpoint";
|
2016-01-10 13:23:19 -05:00
|
|
|
|
this.mnuAddBreakpoint.ShortcutKeys = System.Windows.Forms.Keys.Insert;
|
2017-03-11 11:46:29 -05:00
|
|
|
|
this.mnuAddBreakpoint.Size = new System.Drawing.Size(152, 22);
|
2015-08-02 19:27:02 -04:00
|
|
|
|
this.mnuAddBreakpoint.Text = "Add...";
|
|
|
|
|
this.mnuAddBreakpoint.Click += new System.EventHandler(this.mnuAddBreakpoint_Click);
|
|
|
|
|
//
|
2016-12-17 16:58:18 -05:00
|
|
|
|
// mnuEditBreakpoint
|
|
|
|
|
//
|
2017-03-11 11:46:29 -05:00
|
|
|
|
this.mnuEditBreakpoint.Image = global::Mesen.GUI.Properties.Resources.Edit;
|
2016-12-17 16:58:18 -05:00
|
|
|
|
this.mnuEditBreakpoint.Name = "mnuEditBreakpoint";
|
|
|
|
|
this.mnuEditBreakpoint.ShortcutKeys = System.Windows.Forms.Keys.F2;
|
2017-03-11 11:46:29 -05:00
|
|
|
|
this.mnuEditBreakpoint.Size = new System.Drawing.Size(152, 22);
|
2016-12-17 16:58:18 -05:00
|
|
|
|
this.mnuEditBreakpoint.Text = "Edit";
|
|
|
|
|
this.mnuEditBreakpoint.Click += new System.EventHandler(this.mnuEditBreakpoint_Click);
|
|
|
|
|
//
|
2015-08-02 19:27:02 -04:00
|
|
|
|
// mnuRemoveBreakpoint
|
|
|
|
|
//
|
2017-03-11 11:46:29 -05:00
|
|
|
|
this.mnuRemoveBreakpoint.Image = global::Mesen.GUI.Properties.Resources.Close;
|
2015-08-02 19:27:02 -04:00
|
|
|
|
this.mnuRemoveBreakpoint.Name = "mnuRemoveBreakpoint";
|
|
|
|
|
this.mnuRemoveBreakpoint.ShortcutKeys = System.Windows.Forms.Keys.Delete;
|
2017-03-11 11:46:29 -05:00
|
|
|
|
this.mnuRemoveBreakpoint.Size = new System.Drawing.Size(152, 22);
|
2015-08-02 19:27:02 -04:00
|
|
|
|
this.mnuRemoveBreakpoint.Text = "Remove";
|
|
|
|
|
this.mnuRemoveBreakpoint.Click += new System.EventHandler(this.mnuRemoveBreakpoint_Click);
|
|
|
|
|
//
|
2016-12-17 16:58:18 -05:00
|
|
|
|
// toolStripMenuItem1
|
|
|
|
|
//
|
|
|
|
|
this.toolStripMenuItem1.Name = "toolStripMenuItem1";
|
2017-03-11 11:46:29 -05:00
|
|
|
|
this.toolStripMenuItem1.Size = new System.Drawing.Size(149, 6);
|
2016-12-17 16:58:18 -05:00
|
|
|
|
//
|
2016-01-10 13:23:19 -05:00
|
|
|
|
// mnuGoToLocation
|
|
|
|
|
//
|
|
|
|
|
this.mnuGoToLocation.Name = "mnuGoToLocation";
|
2017-03-11 11:46:29 -05:00
|
|
|
|
this.mnuGoToLocation.Size = new System.Drawing.Size(152, 22);
|
2016-01-10 13:23:19 -05:00
|
|
|
|
this.mnuGoToLocation.Text = "Go to location";
|
|
|
|
|
this.mnuGoToLocation.Click += new System.EventHandler(this.mnuGoToLocation_Click);
|
|
|
|
|
//
|
2015-08-02 19:27:02 -04:00
|
|
|
|
// lstBreakpoints
|
|
|
|
|
//
|
|
|
|
|
this.lstBreakpoints.CheckBoxes = true;
|
|
|
|
|
this.lstBreakpoints.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
|
|
|
|
|
this.columnHeader3,
|
|
|
|
|
this.columnHeader1,
|
|
|
|
|
this.columnHeader2,
|
2016-01-09 13:15:43 -05:00
|
|
|
|
this.columnHeader4,
|
2015-08-02 19:27:02 -04:00
|
|
|
|
this.colLastColumn});
|
2017-08-03 21:30:44 -04:00
|
|
|
|
this.lstBreakpoints.ContextMenuStrip = this.mnuBreakpoints;
|
2015-08-02 19:27:02 -04:00
|
|
|
|
this.lstBreakpoints.Dock = System.Windows.Forms.DockStyle.Fill;
|
|
|
|
|
this.lstBreakpoints.FullRowSelect = true;
|
|
|
|
|
this.lstBreakpoints.GridLines = true;
|
|
|
|
|
this.lstBreakpoints.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.Nonclickable;
|
|
|
|
|
this.lstBreakpoints.Location = new System.Drawing.Point(0, 0);
|
|
|
|
|
this.lstBreakpoints.Name = "lstBreakpoints";
|
|
|
|
|
this.lstBreakpoints.Size = new System.Drawing.Size(393, 101);
|
|
|
|
|
this.lstBreakpoints.TabIndex = 7;
|
|
|
|
|
this.lstBreakpoints.UseCompatibleStateImageBehavior = false;
|
|
|
|
|
this.lstBreakpoints.View = System.Windows.Forms.View.Details;
|
|
|
|
|
this.lstBreakpoints.ColumnWidthChanged += new System.Windows.Forms.ColumnWidthChangedEventHandler(this.lstBreakpoints_ColumnWidthChanged);
|
|
|
|
|
this.lstBreakpoints.ColumnWidthChanging += new System.Windows.Forms.ColumnWidthChangingEventHandler(this.lstBreakpoints_ColumnWidthChanging);
|
2016-12-17 16:58:18 -05:00
|
|
|
|
this.lstBreakpoints.SelectedIndexChanged += new System.EventHandler(this.lstBreakpoints_SelectedIndexChanged);
|
2015-08-02 19:27:02 -04:00
|
|
|
|
this.lstBreakpoints.DoubleClick += new System.EventHandler(this.lstBreakpoints_DoubleClick);
|
|
|
|
|
//
|
2016-01-09 13:15:43 -05:00
|
|
|
|
// columnHeader3
|
|
|
|
|
//
|
|
|
|
|
this.columnHeader3.Text = "";
|
|
|
|
|
this.columnHeader3.Width = 21;
|
|
|
|
|
//
|
2015-08-02 19:27:02 -04:00
|
|
|
|
// columnHeader1
|
|
|
|
|
//
|
|
|
|
|
this.columnHeader1.Text = "Type";
|
|
|
|
|
this.columnHeader1.Width = 70;
|
|
|
|
|
//
|
|
|
|
|
// columnHeader2
|
|
|
|
|
//
|
|
|
|
|
this.columnHeader2.Text = "Address";
|
2016-12-04 12:21:20 -05:00
|
|
|
|
this.columnHeader2.Width = 108;
|
2015-08-02 19:27:02 -04:00
|
|
|
|
//
|
2016-01-09 13:15:43 -05:00
|
|
|
|
// columnHeader4
|
2015-08-02 19:27:02 -04:00
|
|
|
|
//
|
2016-01-09 13:15:43 -05:00
|
|
|
|
this.columnHeader4.Text = "Condition";
|
2016-12-04 12:21:20 -05:00
|
|
|
|
this.columnHeader4.Width = 142;
|
2015-08-02 19:27:02 -04:00
|
|
|
|
//
|
2016-01-09 13:15:43 -05:00
|
|
|
|
// colLastColumn
|
2015-08-02 19:27:02 -04:00
|
|
|
|
//
|
2016-01-09 13:15:43 -05:00
|
|
|
|
this.colLastColumn.Text = "";
|
2016-12-04 12:21:20 -05:00
|
|
|
|
this.colLastColumn.Width = 29;
|
2015-08-02 19:27:02 -04:00
|
|
|
|
//
|
|
|
|
|
// ctrlBreakpoints
|
|
|
|
|
//
|
|
|
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|
|
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
|
|
|
this.Controls.Add(this.lstBreakpoints);
|
|
|
|
|
this.Name = "ctrlBreakpoints";
|
|
|
|
|
this.Size = new System.Drawing.Size(393, 101);
|
2017-08-03 21:30:44 -04:00
|
|
|
|
this.mnuBreakpoints.ResumeLayout(false);
|
2015-08-02 19:27:02 -04:00
|
|
|
|
this.ResumeLayout(false);
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
private Mesen.GUI.Controls.MyListView lstBreakpoints;
|
|
|
|
|
private System.Windows.Forms.ColumnHeader columnHeader1;
|
|
|
|
|
private System.Windows.Forms.ColumnHeader columnHeader2;
|
|
|
|
|
private System.Windows.Forms.ColumnHeader colLastColumn;
|
2017-08-03 21:30:44 -04:00
|
|
|
|
private System.Windows.Forms.ContextMenuStrip mnuBreakpoints;
|
2015-08-02 19:27:02 -04:00
|
|
|
|
private System.Windows.Forms.ToolStripMenuItem mnuAddBreakpoint;
|
|
|
|
|
private System.Windows.Forms.ToolStripMenuItem mnuRemoveBreakpoint;
|
|
|
|
|
private System.Windows.Forms.ColumnHeader columnHeader3;
|
2016-01-09 13:15:43 -05:00
|
|
|
|
private System.Windows.Forms.ColumnHeader columnHeader4;
|
2016-01-10 00:33:33 -05:00
|
|
|
|
private System.Windows.Forms.ToolStripMenuItem mnuGoToLocation;
|
2016-12-17 16:58:18 -05:00
|
|
|
|
private System.Windows.Forms.ToolStripMenuItem mnuEditBreakpoint;
|
|
|
|
|
private System.Windows.Forms.ToolStripSeparator toolStripMenuItem1;
|
2015-08-02 19:27:02 -04:00
|
|
|
|
}
|
|
|
|
|
}
|