2016-11-20 13:15:37 -05:00
namespace Mesen.GUI.Debugger.Controls
{
partial class ctrlFunctionList
{
/// <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 ( ) ;
}
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 ( )
{
2016-11-27 10:56:37 -05:00
this . components = new System . ComponentModel . Container ( ) ;
2016-11-26 14:15:50 -05:00
this . lstFunctions = new Mesen . GUI . Controls . DoubleBufferedListView ( ) ;
2016-11-20 13:15:37 -05:00
this . colFunctionLabel = ( ( System . Windows . Forms . ColumnHeader ) ( new System . Windows . Forms . ColumnHeader ( ) ) ) ;
this . colFunctionAddress = ( ( System . Windows . Forms . ColumnHeader ) ( new System . Windows . Forms . ColumnHeader ( ) ) ) ;
this . colMemoryAddress = ( ( System . Windows . Forms . ColumnHeader ) ( new System . Windows . Forms . ColumnHeader ( ) ) ) ;
2016-11-27 10:56:37 -05:00
this . contextMenuStrip = new System . Windows . Forms . ContextMenuStrip ( this . components ) ;
this . mnuEditLabel = new System . Windows . Forms . ToolStripMenuItem ( ) ;
2017-03-11 11:46:29 -05:00
this . toolStripMenuItem1 = new System . Windows . Forms . ToolStripSeparator ( ) ;
2017-12-21 15:12:37 -05:00
this . mnuAddBreakpoint = new System . Windows . Forms . ToolStripMenuItem ( ) ;
this . toolStripMenuItem2 = new System . Windows . Forms . ToolStripSeparator ( ) ;
this . mnuFindOccurrences = new System . Windows . Forms . ToolStripMenuItem ( ) ;
2016-11-27 10:56:37 -05:00
this . contextMenuStrip . SuspendLayout ( ) ;
2016-11-20 13:15:37 -05:00
this . SuspendLayout ( ) ;
//
// lstFunctions
//
this . lstFunctions . Columns . AddRange ( new System . Windows . Forms . ColumnHeader [ ] {
this . colFunctionLabel ,
this . colFunctionAddress ,
this . colMemoryAddress } ) ;
2016-11-27 10:56:37 -05:00
this . lstFunctions . ContextMenuStrip = this . contextMenuStrip ;
2016-11-20 13:15:37 -05:00
this . lstFunctions . Dock = System . Windows . Forms . DockStyle . Fill ;
this . lstFunctions . Font = new System . Drawing . Font ( "Microsoft Sans Serif" , 8.25F , System . Drawing . FontStyle . Regular , System . Drawing . GraphicsUnit . Point , ( ( byte ) ( 0 ) ) ) ;
this . lstFunctions . FullRowSelect = true ;
this . lstFunctions . GridLines = true ;
this . lstFunctions . HeaderStyle = System . Windows . Forms . ColumnHeaderStyle . Nonclickable ;
2016-11-23 23:03:29 -05:00
this . lstFunctions . HideSelection = false ;
2016-11-20 13:15:37 -05:00
this . lstFunctions . Location = new System . Drawing . Point ( 0 , 0 ) ;
this . lstFunctions . MultiSelect = false ;
this . lstFunctions . Name = "lstFunctions" ;
this . lstFunctions . Size = new System . Drawing . Size ( 275 , 112 ) ;
this . lstFunctions . TabIndex = 2 ;
this . lstFunctions . UseCompatibleStateImageBehavior = false ;
this . lstFunctions . View = System . Windows . Forms . View . Details ;
2018-06-09 21:25:49 -04:00
this . lstFunctions . RetrieveVirtualItem + = new System . Windows . Forms . RetrieveVirtualItemEventHandler ( this . lstFunctions_RetrieveVirtualItem ) ;
this . lstFunctions . SearchForVirtualItem + = new System . Windows . Forms . SearchForVirtualItemEventHandler ( this . lstFunctions_SearchForVirtualItem ) ;
2018-03-10 09:58:24 -05:00
this . lstFunctions . SelectedIndexChanged + = new System . EventHandler ( this . lstFunctions_SelectedIndexChanged ) ;
2016-11-20 13:15:37 -05:00
this . lstFunctions . DoubleClick + = new System . EventHandler ( this . lstFunctions_DoubleClick ) ;
//
// colFunctionLabel
//
2018-12-16 16:02:43 -05:00
this . colFunctionLabel . Text = "Function Name" ;
2016-11-20 13:15:37 -05:00
this . colFunctionLabel . Width = 136 ;
//
// colFunctionAddress
//
this . colFunctionAddress . Text = "Address" ;
this . colFunctionAddress . Width = 62 ;
//
// colMemoryAddress
//
2016-12-04 09:16:09 -05:00
this . colMemoryAddress . Text = "ROM Addr" ;
2016-11-20 13:15:37 -05:00
this . colMemoryAddress . Width = 71 ;
//
2016-11-27 10:56:37 -05:00
// contextMenuStrip
//
this . contextMenuStrip . Items . AddRange ( new System . Windows . Forms . ToolStripItem [ ] {
this . mnuEditLabel ,
2017-03-11 11:46:29 -05:00
this . toolStripMenuItem1 ,
2017-12-21 15:12:37 -05:00
this . mnuAddBreakpoint ,
this . toolStripMenuItem2 ,
2016-11-27 10:56:37 -05:00
this . mnuFindOccurrences } ) ;
this . contextMenuStrip . Name = "contextMenuStrip" ;
2018-03-10 09:58:24 -05:00
this . contextMenuStrip . Size = new System . Drawing . Size ( 167 , 82 ) ;
2016-11-27 10:56:37 -05:00
//
// mnuEditLabel
//
2018-02-24 14:23:54 -05:00
this . mnuEditLabel . Image = global :: Mesen . GUI . Properties . Resources . EditLabel ;
2016-11-27 10:56:37 -05:00
this . mnuEditLabel . Name = "mnuEditLabel" ;
this . mnuEditLabel . Size = new System . Drawing . Size ( 166 , 22 ) ;
this . mnuEditLabel . Text = "Edit Label" ;
this . mnuEditLabel . Click + = new System . EventHandler ( this . mnuEditLabel_Click ) ;
//
2017-12-21 15:12:37 -05:00
// toolStripMenuItem1
//
this . toolStripMenuItem1 . Name = "toolStripMenuItem1" ;
this . toolStripMenuItem1 . Size = new System . Drawing . Size ( 163 , 6 ) ;
//
// mnuAddBreakpoint
//
this . mnuAddBreakpoint . Image = global :: Mesen . GUI . Properties . Resources . Breakpoint ;
this . mnuAddBreakpoint . Name = "mnuAddBreakpoint" ;
this . mnuAddBreakpoint . Size = new System . Drawing . Size ( 166 , 22 ) ;
this . mnuAddBreakpoint . Text = "Add breakpoint" ;
this . mnuAddBreakpoint . Click + = new System . EventHandler ( this . mnuAddBreakpoint_Click ) ;
//
// toolStripMenuItem2
//
this . toolStripMenuItem2 . Name = "toolStripMenuItem2" ;
this . toolStripMenuItem2 . Size = new System . Drawing . Size ( 163 , 6 ) ;
//
2016-11-27 10:56:37 -05:00
// mnuFindOccurrences
//
2017-03-11 11:46:29 -05:00
this . mnuFindOccurrences . Image = global :: Mesen . GUI . Properties . Resources . Find ;
2016-11-27 10:56:37 -05:00
this . mnuFindOccurrences . Name = "mnuFindOccurrences" ;
this . mnuFindOccurrences . Size = new System . Drawing . Size ( 166 , 22 ) ;
this . mnuFindOccurrences . Text = "Find Occurrences" ;
this . mnuFindOccurrences . Click + = new System . EventHandler ( this . mnuFindOccurrences_Click ) ;
//
2016-11-20 13:15:37 -05:00
// ctrlFunctionList
//
this . AutoScaleDimensions = new System . Drawing . SizeF ( 6F , 13F ) ;
this . AutoScaleMode = System . Windows . Forms . AutoScaleMode . Font ;
this . Controls . Add ( this . lstFunctions ) ;
this . Name = "ctrlFunctionList" ;
this . Size = new System . Drawing . Size ( 275 , 112 ) ;
2016-11-27 10:56:37 -05:00
this . contextMenuStrip . ResumeLayout ( false ) ;
2016-11-20 13:15:37 -05:00
this . ResumeLayout ( false ) ;
}
#endregion
2016-11-26 14:15:50 -05:00
private Mesen . GUI . Controls . DoubleBufferedListView lstFunctions ;
2016-11-20 13:15:37 -05:00
private System . Windows . Forms . ColumnHeader colFunctionLabel ;
private System . Windows . Forms . ColumnHeader colFunctionAddress ;
private System . Windows . Forms . ColumnHeader colMemoryAddress ;
2016-11-27 10:56:37 -05:00
private System . Windows . Forms . ContextMenuStrip contextMenuStrip ;
private System . Windows . Forms . ToolStripMenuItem mnuEditLabel ;
private System . Windows . Forms . ToolStripMenuItem mnuFindOccurrences ;
2017-03-11 11:46:29 -05:00
private System . Windows . Forms . ToolStripSeparator toolStripMenuItem1 ;
2017-12-21 15:12:37 -05:00
private System . Windows . Forms . ToolStripMenuItem mnuAddBreakpoint ;
private System . Windows . Forms . ToolStripSeparator toolStripMenuItem2 ;
2016-11-20 13:15:37 -05:00
}
}