2018-12-15 15:44:22 -05:00
using Mesen.GUI.Controls ;
namespace Mesen.GUI.Debugger.Controls
2015-08-08 22:36:39 -04:00
{
partial class ctrlNametableViewer
{
/// <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 ( )
{
2017-06-28 19:00:08 -04:00
this . components = new System . ComponentModel . Container ( ) ;
2015-08-08 22:36:39 -04:00
this . tableLayoutPanel1 = new System . Windows . Forms . TableLayoutPanel ( ) ;
2019-01-21 14:38:38 -05:00
this . picNametable = new Mesen . GUI . Controls . ctrlMesenPictureBox ( ) ;
2019-01-13 18:32:27 -05:00
this . ctxMenu = new Mesen . GUI . Controls . ctrlMesenContextMenuStrip ( this . components ) ;
2019-01-14 19:02:50 -05:00
this . mnuAddBreakpoint = new System . Windows . Forms . ToolStripMenuItem ( ) ;
2019-02-18 21:01:12 -05:00
this . mnuAddBreakpointAttribute = new System . Windows . Forms . ToolStripMenuItem ( ) ;
2018-12-15 15:44:22 -05:00
this . mnuEditInMemoryViewer = new System . Windows . Forms . ToolStripMenuItem ( ) ;
2017-09-02 18:52:48 -04:00
this . mnuShowInChrViewer = new System . Windows . Forms . ToolStripMenuItem ( ) ;
this . toolStripMenuItem1 = new System . Windows . Forms . ToolStripSeparator ( ) ;
2017-08-15 22:01:54 -04:00
this . mnuCopyHdPack = new System . Windows . Forms . ToolStripMenuItem ( ) ;
2018-02-16 20:33:48 -05:00
this . mnuCopyNametableHdPack = new System . Windows . Forms . ToolStripMenuItem ( ) ;
2018-12-15 15:44:22 -05:00
this . toolStripMenuItem2 = new System . Windows . Forms . ToolStripSeparator ( ) ;
2017-12-27 14:24:55 -05:00
this . mnuCopyToClipboard = new System . Windows . Forms . ToolStripMenuItem ( ) ;
2018-12-15 15:44:22 -05:00
this . mnuExportToPng = new System . Windows . Forms . ToolStripMenuItem ( ) ;
2015-08-08 22:36:39 -04:00
this . grpTileInfo = new System . Windows . Forms . GroupBox ( ) ;
this . tableLayoutPanel2 = new System . Windows . Forms . TableLayoutPanel ( ) ;
2017-06-28 19:00:08 -04:00
this . txtPpuAddress = new System . Windows . Forms . TextBox ( ) ;
this . txtLocation = new System . Windows . Forms . TextBox ( ) ;
this . txtNametable = new System . Windows . Forms . TextBox ( ) ;
2015-08-08 22:36:39 -04:00
this . txtPaletteAddress = new System . Windows . Forms . TextBox ( ) ;
this . txtAttributeAddress = new System . Windows . Forms . TextBox ( ) ;
this . txtAttributeData = new System . Windows . Forms . TextBox ( ) ;
this . txtTileAddress = new System . Windows . Forms . TextBox ( ) ;
this . lblTileIndex = new System . Windows . Forms . Label ( ) ;
this . lblTileAddress = new System . Windows . Forms . Label ( ) ;
this . lblAttributeData = new System . Windows . Forms . Label ( ) ;
this . lblAttributeAddress = new System . Windows . Forms . Label ( ) ;
this . lblPaletteAddress = new System . Windows . Forms . Label ( ) ;
this . lblTile = new System . Windows . Forms . Label ( ) ;
this . txtTileIndex = new System . Windows . Forms . TextBox ( ) ;
this . picTile = new System . Windows . Forms . PictureBox ( ) ;
2017-06-28 19:00:08 -04:00
this . lblNametableIndex = new System . Windows . Forms . Label ( ) ;
this . lblLocation = new System . Windows . Forms . Label ( ) ;
this . lblPpuAddress = new System . Windows . Forms . Label ( ) ;
2017-08-20 12:06:45 -04:00
this . ctrlTilePalette = new Mesen . GUI . Debugger . Controls . ctrlTilePalette ( ) ;
2016-12-04 10:47:48 -05:00
this . flowLayoutPanel1 = new System . Windows . Forms . FlowLayoutPanel ( ) ;
this . chkShowPpuScrollOverlay = new System . Windows . Forms . CheckBox ( ) ;
2019-01-21 14:38:38 -05:00
this . chkShowAttributeColorsOnly = new System . Windows . Forms . CheckBox ( ) ;
2016-12-04 10:47:48 -05:00
this . chkShowTileGrid = new System . Windows . Forms . CheckBox ( ) ;
this . chkShowAttributeGrid = new System . Windows . Forms . CheckBox ( ) ;
2018-04-09 22:38:06 -04:00
this . chkUseGrayscalePalette = new System . Windows . Forms . CheckBox ( ) ;
2017-08-20 12:06:45 -04:00
this . chkHighlightChrTile = new System . Windows . Forms . CheckBox ( ) ;
2018-02-16 20:33:48 -05:00
this . tableLayoutPanel3 = new System . Windows . Forms . TableLayoutPanel ( ) ;
this . lblMirroring = new System . Windows . Forms . Label ( ) ;
this . lblMirroringType = new System . Windows . Forms . Label ( ) ;
2019-01-13 18:32:27 -05:00
this . chkHighlightTileUpdates = new System . Windows . Forms . CheckBox ( ) ;
this . chkHighlightAttributeUpdates = new System . Windows . Forms . CheckBox ( ) ;
this . chkIgnoreRedundantWrites = new System . Windows . Forms . CheckBox ( ) ;
2019-02-18 21:01:12 -05:00
this . lblHighlight = new System . Windows . Forms . Label ( ) ;
2015-08-08 22:36:39 -04:00
this . tableLayoutPanel1 . SuspendLayout ( ) ;
2016-12-02 18:10:37 -05:00
( ( System . ComponentModel . ISupportInitialize ) ( this . picNametable ) ) . BeginInit ( ) ;
2017-08-15 22:01:54 -04:00
this . ctxMenu . SuspendLayout ( ) ;
2015-08-08 22:36:39 -04:00
this . grpTileInfo . SuspendLayout ( ) ;
this . tableLayoutPanel2 . SuspendLayout ( ) ;
( ( System . ComponentModel . ISupportInitialize ) ( this . picTile ) ) . BeginInit ( ) ;
2016-12-04 10:47:48 -05:00
this . flowLayoutPanel1 . SuspendLayout ( ) ;
2018-02-16 20:33:48 -05:00
this . tableLayoutPanel3 . SuspendLayout ( ) ;
2015-08-08 22:36:39 -04:00
this . SuspendLayout ( ) ;
//
// tableLayoutPanel1
//
2016-12-02 18:10:37 -05:00
this . tableLayoutPanel1 . ColumnCount = 2 ;
2015-08-08 22:36:39 -04:00
this . tableLayoutPanel1 . ColumnStyles . Add ( new System . Windows . Forms . ColumnStyle ( ) ) ;
this . tableLayoutPanel1 . ColumnStyles . Add ( new System . Windows . Forms . ColumnStyle ( System . Windows . Forms . SizeType . Percent , 100F ) ) ;
2016-12-02 18:10:37 -05:00
this . tableLayoutPanel1 . Controls . Add ( this . picNametable , 0 , 0 ) ;
this . tableLayoutPanel1 . Controls . Add ( this . grpTileInfo , 1 , 0 ) ;
2016-12-04 10:47:48 -05:00
this . tableLayoutPanel1 . Controls . Add ( this . flowLayoutPanel1 , 1 , 1 ) ;
2018-02-16 20:33:48 -05:00
this . tableLayoutPanel1 . Controls . Add ( this . tableLayoutPanel3 , 0 , 2 ) ;
2015-08-08 22:36:39 -04:00
this . tableLayoutPanel1 . Dock = System . Windows . Forms . DockStyle . Fill ;
this . tableLayoutPanel1 . Location = new System . Drawing . Point ( 0 , 0 ) ;
this . tableLayoutPanel1 . Name = "tableLayoutPanel1" ;
2018-02-16 20:33:48 -05:00
this . tableLayoutPanel1 . RowCount = 4 ;
2015-08-08 22:36:39 -04:00
this . tableLayoutPanel1 . RowStyles . Add ( new System . Windows . Forms . RowStyle ( ) ) ;
this . tableLayoutPanel1 . RowStyles . Add ( new System . Windows . Forms . RowStyle ( ) ) ;
2016-12-02 18:10:37 -05:00
this . tableLayoutPanel1 . RowStyles . Add ( new System . Windows . Forms . RowStyle ( ) ) ;
2018-02-16 20:33:48 -05:00
this . tableLayoutPanel1 . RowStyles . Add ( new System . Windows . Forms . RowStyle ( System . Windows . Forms . SizeType . Percent , 100F ) ) ;
2019-01-21 14:38:38 -05:00
this . tableLayoutPanel1 . Size = new System . Drawing . Size ( 701 , 530 ) ;
2015-08-08 22:36:39 -04:00
this . tableLayoutPanel1 . TabIndex = 2 ;
//
2016-12-02 18:10:37 -05:00
// picNametable
//
this . picNametable . BorderStyle = System . Windows . Forms . BorderStyle . FixedSingle ;
2017-06-28 19:00:08 -04:00
this . picNametable . ContextMenuStrip = this . ctxMenu ;
2019-01-21 14:38:38 -05:00
this . picNametable . InterpolationMode = System . Drawing . Drawing2D . InterpolationMode . Default ;
2017-11-14 20:56:56 -05:00
this . picNametable . Location = new System . Drawing . Point ( 4 , 4 ) ;
2019-01-13 18:32:27 -05:00
this . picNametable . Margin = new System . Windows . Forms . Padding ( 4 , 4 , 4 , 0 ) ;
2016-12-02 18:10:37 -05:00
this . picNametable . Name = "picNametable" ;
this . tableLayoutPanel1 . SetRowSpan ( this . picNametable , 2 ) ;
this . picNametable . Size = new System . Drawing . Size ( 514 , 482 ) ;
2017-09-16 22:02:05 -04:00
this . picNametable . SizeMode = System . Windows . Forms . PictureBoxSizeMode . StretchImage ;
2016-12-02 18:10:37 -05:00
this . picNametable . TabIndex = 0 ;
this . picNametable . TabStop = false ;
2017-08-20 14:18:35 -04:00
this . picNametable . DoubleClick + = new System . EventHandler ( this . picNametable_DoubleClick ) ;
2018-12-15 15:44:22 -05:00
this . picNametable . MouseEnter + = new System . EventHandler ( this . picNametable_MouseEnter ) ;
2019-01-19 12:08:14 -05:00
this . picNametable . MouseLeave + = new System . EventHandler ( this . picNametable_MouseLeave ) ;
2016-12-02 18:10:37 -05:00
this . picNametable . MouseMove + = new System . Windows . Forms . MouseEventHandler ( this . picNametable_MouseMove ) ;
//
2017-08-15 22:01:54 -04:00
// ctxMenu
//
this . ctxMenu . Items . AddRange ( new System . Windows . Forms . ToolStripItem [ ] {
2019-01-14 19:02:50 -05:00
this . mnuAddBreakpoint ,
2019-02-18 21:01:12 -05:00
this . mnuAddBreakpointAttribute ,
2018-12-15 15:44:22 -05:00
this . mnuEditInMemoryViewer ,
2017-08-20 14:18:35 -04:00
this . mnuShowInChrViewer ,
this . toolStripMenuItem1 ,
2017-12-21 17:48:24 -05:00
this . mnuCopyHdPack ,
2017-12-27 14:24:55 -05:00
this . mnuCopyNametableHdPack ,
2018-09-15 11:11:46 -04:00
this . toolStripMenuItem2 ,
this . mnuCopyToClipboard ,
this . mnuExportToPng } ) ;
2017-08-15 22:01:54 -04:00
this . ctxMenu . Name = "ctxMenu" ;
2019-02-18 21:01:12 -05:00
this . ctxMenu . Size = new System . Drawing . Size ( 261 , 214 ) ;
2017-08-15 22:01:54 -04:00
this . ctxMenu . Opening + = new System . ComponentModel . CancelEventHandler ( this . ctxMenu_Opening ) ;
//
2019-01-14 19:02:50 -05:00
// mnuAddBreakpoint
//
this . mnuAddBreakpoint . Image = global :: Mesen . GUI . Properties . Resources . Breakpoint ;
this . mnuAddBreakpoint . Name = "mnuAddBreakpoint" ;
this . mnuAddBreakpoint . Size = new System . Drawing . Size ( 260 , 22 ) ;
2019-02-18 21:01:12 -05:00
this . mnuAddBreakpoint . Text = "Add breakpoint (Tile)" ;
this . mnuAddBreakpoint . Click + = new System . EventHandler ( this . mnuAddBreakpoint_Click ) ;
//
// mnuAddBreakpointAttribute
//
this . mnuAddBreakpointAttribute . Image = global :: Mesen . GUI . Properties . Resources . Breakpoint ;
this . mnuAddBreakpointAttribute . Name = "mnuAddBreakpointAttribute" ;
this . mnuAddBreakpointAttribute . Size = new System . Drawing . Size ( 260 , 22 ) ;
this . mnuAddBreakpointAttribute . Text = "Add breakpoint (Attribute)" ;
this . mnuAddBreakpointAttribute . Click + = new System . EventHandler ( this . mnuAddBreakpointAttribute_Click ) ;
2019-01-14 19:02:50 -05:00
//
2018-12-15 15:44:22 -05:00
// mnuEditInMemoryViewer
//
this . mnuEditInMemoryViewer . Image = global :: Mesen . GUI . Properties . Resources . CheatCode ;
this . mnuEditInMemoryViewer . Name = "mnuEditInMemoryViewer" ;
this . mnuEditInMemoryViewer . Size = new System . Drawing . Size ( 260 , 22 ) ;
this . mnuEditInMemoryViewer . Text = "Edit in Memory Viewer" ;
this . mnuEditInMemoryViewer . Click + = new System . EventHandler ( this . mnuEditInMemoryViewer_Click ) ;
//
2017-09-02 18:52:48 -04:00
// mnuShowInChrViewer
//
this . mnuShowInChrViewer . Image = global :: Mesen . GUI . Properties . Resources . NextArrow ;
this . mnuShowInChrViewer . Name = "mnuShowInChrViewer" ;
this . mnuShowInChrViewer . ShortcutKeyDisplayString = "Dbl-Click" ;
2017-12-27 14:24:55 -05:00
this . mnuShowInChrViewer . Size = new System . Drawing . Size ( 260 , 22 ) ;
2017-09-02 18:52:48 -04:00
this . mnuShowInChrViewer . Text = "View in CHR viewer" ;
this . mnuShowInChrViewer . Click + = new System . EventHandler ( this . mnuShowInChrViewer_Click ) ;
//
// toolStripMenuItem1
//
this . toolStripMenuItem1 . Name = "toolStripMenuItem1" ;
2017-12-27 14:24:55 -05:00
this . toolStripMenuItem1 . Size = new System . Drawing . Size ( 257 , 6 ) ;
2017-09-02 18:52:48 -04:00
//
2017-08-15 22:01:54 -04:00
// mnuCopyHdPack
//
this . mnuCopyHdPack . Name = "mnuCopyHdPack" ;
2017-12-27 14:24:55 -05:00
this . mnuCopyHdPack . Size = new System . Drawing . Size ( 260 , 22 ) ;
2017-08-15 22:01:54 -04:00
this . mnuCopyHdPack . Text = "Copy Tile (HD Pack Format)" ;
this . mnuCopyHdPack . Click + = new System . EventHandler ( this . mnuCopyHdPack_Click ) ;
//
2018-02-16 20:33:48 -05:00
// mnuCopyNametableHdPack
//
this . mnuCopyNametableHdPack . Name = "mnuCopyNametableHdPack" ;
this . mnuCopyNametableHdPack . Size = new System . Drawing . Size ( 260 , 22 ) ;
this . mnuCopyNametableHdPack . Text = "Copy Nametable (HD Pack Format)" ;
this . mnuCopyNametableHdPack . Click + = new System . EventHandler ( this . mnuCopyNametableHdPack_Click ) ;
//
2018-12-15 15:44:22 -05:00
// toolStripMenuItem2
//
this . toolStripMenuItem2 . Name = "toolStripMenuItem2" ;
this . toolStripMenuItem2 . Size = new System . Drawing . Size ( 257 , 6 ) ;
//
2017-12-27 14:24:55 -05:00
// mnuCopyToClipboard
//
this . mnuCopyToClipboard . Image = global :: Mesen . GUI . Properties . Resources . Copy ;
this . mnuCopyToClipboard . Name = "mnuCopyToClipboard" ;
this . mnuCopyToClipboard . Size = new System . Drawing . Size ( 260 , 22 ) ;
this . mnuCopyToClipboard . Text = "Copy image to clipboard" ;
this . mnuCopyToClipboard . Click + = new System . EventHandler ( this . mnuCopyToClipboard_Click ) ;
//
2018-12-15 15:44:22 -05:00
// mnuExportToPng
//
this . mnuExportToPng . Image = global :: Mesen . GUI . Properties . Resources . Export ;
this . mnuExportToPng . Name = "mnuExportToPng" ;
this . mnuExportToPng . Size = new System . Drawing . Size ( 260 , 22 ) ;
this . mnuExportToPng . Text = "Export image to PNG" ;
this . mnuExportToPng . Click + = new System . EventHandler ( this . mnuExportToPng_Click ) ;
//
2015-08-08 22:36:39 -04:00
// grpTileInfo
//
this . grpTileInfo . Controls . Add ( this . tableLayoutPanel2 ) ;
2017-11-14 20:56:56 -05:00
this . grpTileInfo . Location = new System . Drawing . Point ( 525 , 3 ) ;
2015-08-08 22:36:39 -04:00
this . grpTileInfo . Name = "grpTileInfo" ;
2019-01-21 14:38:38 -05:00
this . grpTileInfo . Size = new System . Drawing . Size ( 173 , 345 ) ;
2015-08-08 22:36:39 -04:00
this . grpTileInfo . TabIndex = 4 ;
this . grpTileInfo . TabStop = false ;
this . grpTileInfo . Text = "Tile Info" ;
//
// tableLayoutPanel2
//
2017-09-16 22:02:05 -04:00
this . tableLayoutPanel2 . AutoSize = true ;
this . tableLayoutPanel2 . AutoSizeMode = System . Windows . Forms . AutoSizeMode . GrowAndShrink ;
this . tableLayoutPanel2 . ColumnCount = 3 ;
this . tableLayoutPanel2 . ColumnStyles . Add ( new System . Windows . Forms . ColumnStyle ( ) ) ;
2015-08-08 22:36:39 -04:00
this . tableLayoutPanel2 . ColumnStyles . Add ( new System . Windows . Forms . ColumnStyle ( ) ) ;
this . tableLayoutPanel2 . ColumnStyles . Add ( new System . Windows . Forms . ColumnStyle ( System . Windows . Forms . SizeType . Percent , 100F ) ) ;
2017-03-24 11:44:05 -04:00
this . tableLayoutPanel2 . Controls . Add ( this . txtPpuAddress , 1 , 0 ) ;
this . tableLayoutPanel2 . Controls . Add ( this . txtLocation , 1 , 2 ) ;
this . tableLayoutPanel2 . Controls . Add ( this . txtNametable , 1 , 1 ) ;
this . tableLayoutPanel2 . Controls . Add ( this . txtPaletteAddress , 1 , 7 ) ;
this . tableLayoutPanel2 . Controls . Add ( this . txtAttributeAddress , 1 , 6 ) ;
this . tableLayoutPanel2 . Controls . Add ( this . txtAttributeData , 1 , 5 ) ;
this . tableLayoutPanel2 . Controls . Add ( this . txtTileAddress , 1 , 4 ) ;
this . tableLayoutPanel2 . Controls . Add ( this . lblTileIndex , 0 , 3 ) ;
this . tableLayoutPanel2 . Controls . Add ( this . lblTileAddress , 0 , 4 ) ;
this . tableLayoutPanel2 . Controls . Add ( this . lblAttributeData , 0 , 5 ) ;
this . tableLayoutPanel2 . Controls . Add ( this . lblAttributeAddress , 0 , 6 ) ;
this . tableLayoutPanel2 . Controls . Add ( this . lblPaletteAddress , 0 , 7 ) ;
this . tableLayoutPanel2 . Controls . Add ( this . lblTile , 0 , 8 ) ;
this . tableLayoutPanel2 . Controls . Add ( this . txtTileIndex , 1 , 3 ) ;
this . tableLayoutPanel2 . Controls . Add ( this . picTile , 1 , 8 ) ;
this . tableLayoutPanel2 . Controls . Add ( this . lblNametableIndex , 0 , 1 ) ;
this . tableLayoutPanel2 . Controls . Add ( this . lblLocation , 0 , 2 ) ;
this . tableLayoutPanel2 . Controls . Add ( this . lblPpuAddress , 0 , 0 ) ;
2017-08-15 22:01:54 -04:00
this . tableLayoutPanel2 . Controls . Add ( this . ctrlTilePalette , 0 , 9 ) ;
2015-08-08 22:36:39 -04:00
this . tableLayoutPanel2 . Dock = System . Windows . Forms . DockStyle . Fill ;
this . tableLayoutPanel2 . Location = new System . Drawing . Point ( 3 , 16 ) ;
this . tableLayoutPanel2 . Name = "tableLayoutPanel2" ;
2017-08-15 22:01:54 -04:00
this . tableLayoutPanel2 . RowCount = 11 ;
this . tableLayoutPanel2 . RowStyles . Add ( new System . Windows . Forms . RowStyle ( ) ) ;
2017-03-24 11:44:05 -04:00
this . tableLayoutPanel2 . RowStyles . Add ( new System . Windows . Forms . RowStyle ( ) ) ;
this . tableLayoutPanel2 . RowStyles . Add ( new System . Windows . Forms . RowStyle ( ) ) ;
this . tableLayoutPanel2 . RowStyles . Add ( new System . Windows . Forms . RowStyle ( ) ) ;
2015-08-08 22:36:39 -04:00
this . tableLayoutPanel2 . RowStyles . Add ( new System . Windows . Forms . RowStyle ( ) ) ;
this . tableLayoutPanel2 . RowStyles . Add ( new System . Windows . Forms . RowStyle ( ) ) ;
this . tableLayoutPanel2 . RowStyles . Add ( new System . Windows . Forms . RowStyle ( ) ) ;
this . tableLayoutPanel2 . RowStyles . Add ( new System . Windows . Forms . RowStyle ( ) ) ;
this . tableLayoutPanel2 . RowStyles . Add ( new System . Windows . Forms . RowStyle ( ) ) ;
this . tableLayoutPanel2 . RowStyles . Add ( new System . Windows . Forms . RowStyle ( ) ) ;
this . tableLayoutPanel2 . RowStyles . Add ( new System . Windows . Forms . RowStyle ( System . Windows . Forms . SizeType . Percent , 100F ) ) ;
2019-01-21 14:38:38 -05:00
this . tableLayoutPanel2 . Size = new System . Drawing . Size ( 167 , 326 ) ;
2015-08-08 22:36:39 -04:00
this . tableLayoutPanel2 . TabIndex = 0 ;
//
2017-06-28 19:00:08 -04:00
// txtPpuAddress
//
2017-08-15 22:01:54 -04:00
this . txtPpuAddress . BackColor = System . Drawing . SystemColors . Window ;
2017-06-28 19:00:08 -04:00
this . txtPpuAddress . Location = new System . Drawing . Point ( 84 , 3 ) ;
this . txtPpuAddress . Name = "txtPpuAddress" ;
this . txtPpuAddress . ReadOnly = true ;
this . txtPpuAddress . Size = new System . Drawing . Size ( 42 , 20 ) ;
this . txtPpuAddress . TabIndex = 18 ;
//
// txtLocation
//
2017-08-15 22:01:54 -04:00
this . txtLocation . BackColor = System . Drawing . SystemColors . Window ;
2017-06-28 19:00:08 -04:00
this . txtLocation . Location = new System . Drawing . Point ( 84 , 55 ) ;
this . txtLocation . Name = "txtLocation" ;
this . txtLocation . ReadOnly = true ;
this . txtLocation . Size = new System . Drawing . Size ( 42 , 20 ) ;
this . txtLocation . TabIndex = 16 ;
//
// txtNametable
//
2017-08-15 22:01:54 -04:00
this . txtNametable . BackColor = System . Drawing . SystemColors . Window ;
2017-06-28 19:00:08 -04:00
this . txtNametable . Location = new System . Drawing . Point ( 84 , 29 ) ;
this . txtNametable . Name = "txtNametable" ;
this . txtNametable . ReadOnly = true ;
this . txtNametable . Size = new System . Drawing . Size ( 26 , 20 ) ;
this . txtNametable . TabIndex = 15 ;
//
2015-08-08 22:36:39 -04:00
// txtPaletteAddress
//
2017-08-15 22:01:54 -04:00
this . txtPaletteAddress . BackColor = System . Drawing . SystemColors . Window ;
2017-03-24 11:44:05 -04:00
this . txtPaletteAddress . Location = new System . Drawing . Point ( 84 , 185 ) ;
2015-08-08 22:36:39 -04:00
this . txtPaletteAddress . Name = "txtPaletteAddress" ;
this . txtPaletteAddress . ReadOnly = true ;
this . txtPaletteAddress . Size = new System . Drawing . Size ( 42 , 20 ) ;
this . txtPaletteAddress . TabIndex = 11 ;
//
// txtAttributeAddress
//
2017-08-15 22:01:54 -04:00
this . txtAttributeAddress . BackColor = System . Drawing . SystemColors . Window ;
2017-03-24 11:44:05 -04:00
this . txtAttributeAddress . Location = new System . Drawing . Point ( 84 , 159 ) ;
2015-08-08 22:36:39 -04:00
this . txtAttributeAddress . Name = "txtAttributeAddress" ;
this . txtAttributeAddress . ReadOnly = true ;
this . txtAttributeAddress . Size = new System . Drawing . Size ( 42 , 20 ) ;
this . txtAttributeAddress . TabIndex = 10 ;
//
// txtAttributeData
//
2017-08-15 22:01:54 -04:00
this . txtAttributeData . BackColor = System . Drawing . SystemColors . Window ;
2017-03-24 11:44:05 -04:00
this . txtAttributeData . Location = new System . Drawing . Point ( 84 , 133 ) ;
2015-08-08 22:36:39 -04:00
this . txtAttributeData . Name = "txtAttributeData" ;
this . txtAttributeData . ReadOnly = true ;
this . txtAttributeData . Size = new System . Drawing . Size ( 26 , 20 ) ;
this . txtAttributeData . TabIndex = 9 ;
//
// txtTileAddress
//
2017-08-15 22:01:54 -04:00
this . txtTileAddress . BackColor = System . Drawing . SystemColors . Window ;
2017-03-24 11:44:05 -04:00
this . txtTileAddress . Location = new System . Drawing . Point ( 84 , 107 ) ;
2015-08-08 22:36:39 -04:00
this . txtTileAddress . Name = "txtTileAddress" ;
this . txtTileAddress . ReadOnly = true ;
this . txtTileAddress . Size = new System . Drawing . Size ( 42 , 20 ) ;
this . txtTileAddress . TabIndex = 8 ;
//
// lblTileIndex
//
this . lblTileIndex . Anchor = System . Windows . Forms . AnchorStyles . Left ;
this . lblTileIndex . AutoSize = true ;
2017-03-24 11:44:05 -04:00
this . lblTileIndex . Location = new System . Drawing . Point ( 3 , 84 ) ;
2015-08-08 22:36:39 -04:00
this . lblTileIndex . Name = "lblTileIndex" ;
this . lblTileIndex . Size = new System . Drawing . Size ( 56 , 13 ) ;
this . lblTileIndex . TabIndex = 0 ;
this . lblTileIndex . Text = "Tile Index:" ;
//
// lblTileAddress
//
this . lblTileAddress . Anchor = System . Windows . Forms . AnchorStyles . Left ;
this . lblTileAddress . AutoSize = true ;
2017-03-24 11:44:05 -04:00
this . lblTileAddress . Location = new System . Drawing . Point ( 3 , 110 ) ;
2015-08-08 22:36:39 -04:00
this . lblTileAddress . Name = "lblTileAddress" ;
this . lblTileAddress . Size = new System . Drawing . Size ( 68 , 13 ) ;
this . lblTileAddress . TabIndex = 1 ;
this . lblTileAddress . Text = "Tile Address:" ;
//
// lblAttributeData
//
this . lblAttributeData . Anchor = System . Windows . Forms . AnchorStyles . Left ;
this . lblAttributeData . AutoSize = true ;
2017-03-24 11:44:05 -04:00
this . lblAttributeData . Location = new System . Drawing . Point ( 3 , 136 ) ;
2015-08-08 22:36:39 -04:00
this . lblAttributeData . Name = "lblAttributeData" ;
this . lblAttributeData . Size = new System . Drawing . Size ( 75 , 13 ) ;
this . lblAttributeData . TabIndex = 2 ;
this . lblAttributeData . Text = "Attribute Data:" ;
//
// lblAttributeAddress
//
this . lblAttributeAddress . Anchor = System . Windows . Forms . AnchorStyles . Left ;
this . lblAttributeAddress . AutoSize = true ;
2017-03-24 11:44:05 -04:00
this . lblAttributeAddress . Location = new System . Drawing . Point ( 3 , 162 ) ;
2015-08-08 22:36:39 -04:00
this . lblAttributeAddress . Name = "lblAttributeAddress" ;
2017-03-24 11:44:05 -04:00
this . lblAttributeAddress . Size = new System . Drawing . Size ( 74 , 13 ) ;
2015-08-08 22:36:39 -04:00
this . lblAttributeAddress . TabIndex = 3 ;
2016-12-13 22:19:18 -05:00
this . lblAttributeAddress . Text = "Attribute Addr:" ;
2015-08-08 22:36:39 -04:00
//
// lblPaletteAddress
//
this . lblPaletteAddress . Anchor = System . Windows . Forms . AnchorStyles . Left ;
this . lblPaletteAddress . AutoSize = true ;
2017-03-24 11:44:05 -04:00
this . lblPaletteAddress . Location = new System . Drawing . Point ( 3 , 188 ) ;
2015-08-08 22:36:39 -04:00
this . lblPaletteAddress . Name = "lblPaletteAddress" ;
2017-03-24 11:44:05 -04:00
this . lblPaletteAddress . Size = new System . Drawing . Size ( 68 , 13 ) ;
2015-08-08 22:36:39 -04:00
this . lblPaletteAddress . TabIndex = 4 ;
2016-12-13 22:19:18 -05:00
this . lblPaletteAddress . Text = "Palette Addr:" ;
2015-08-08 22:36:39 -04:00
//
// lblTile
//
this . lblTile . Anchor = System . Windows . Forms . AnchorStyles . Left ;
this . lblTile . AutoSize = true ;
2017-03-24 11:44:05 -04:00
this . lblTile . Location = new System . Drawing . Point ( 3 , 237 ) ;
2015-08-08 22:36:39 -04:00
this . lblTile . Name = "lblTile" ;
this . lblTile . Size = new System . Drawing . Size ( 27 , 13 ) ;
this . lblTile . TabIndex = 6 ;
this . lblTile . Text = "Tile:" ;
//
// txtTileIndex
//
2017-08-15 22:01:54 -04:00
this . txtTileIndex . BackColor = System . Drawing . SystemColors . Window ;
2017-03-24 11:44:05 -04:00
this . txtTileIndex . Location = new System . Drawing . Point ( 84 , 81 ) ;
2015-08-08 22:36:39 -04:00
this . txtTileIndex . Name = "txtTileIndex" ;
this . txtTileIndex . ReadOnly = true ;
this . txtTileIndex . Size = new System . Drawing . Size ( 26 , 20 ) ;
this . txtTileIndex . TabIndex = 7 ;
//
// picTile
//
this . picTile . BorderStyle = System . Windows . Forms . BorderStyle . FixedSingle ;
2017-03-24 11:44:05 -04:00
this . picTile . Location = new System . Drawing . Point ( 84 , 211 ) ;
2015-08-08 22:36:39 -04:00
this . picTile . Name = "picTile" ;
this . picTile . Size = new System . Drawing . Size ( 63 , 66 ) ;
2017-09-16 22:02:05 -04:00
this . picTile . SizeMode = System . Windows . Forms . PictureBoxSizeMode . StretchImage ;
2015-08-08 22:36:39 -04:00
this . picTile . TabIndex = 12 ;
this . picTile . TabStop = false ;
//
2017-06-28 19:00:08 -04:00
// lblNametableIndex
//
this . lblNametableIndex . Anchor = System . Windows . Forms . AnchorStyles . Left ;
this . lblNametableIndex . AutoSize = true ;
this . lblNametableIndex . Location = new System . Drawing . Point ( 3 , 32 ) ;
this . lblNametableIndex . Name = "lblNametableIndex" ;
this . lblNametableIndex . Size = new System . Drawing . Size ( 61 , 13 ) ;
this . lblNametableIndex . TabIndex = 13 ;
this . lblNametableIndex . Text = "Nametable:" ;
//
// lblLocation
//
this . lblLocation . Anchor = System . Windows . Forms . AnchorStyles . Left ;
this . lblLocation . AutoSize = true ;
this . lblLocation . Location = new System . Drawing . Point ( 3 , 58 ) ;
this . lblLocation . Name = "lblLocation" ;
this . lblLocation . Size = new System . Drawing . Size ( 51 , 13 ) ;
this . lblLocation . TabIndex = 14 ;
this . lblLocation . Text = "Location:" ;
//
// lblPpuAddress
//
this . lblPpuAddress . Anchor = System . Windows . Forms . AnchorStyles . Left ;
this . lblPpuAddress . AutoSize = true ;
this . lblPpuAddress . Location = new System . Drawing . Point ( 3 , 6 ) ;
this . lblPpuAddress . Name = "lblPpuAddress" ;
this . lblPpuAddress . Size = new System . Drawing . Size ( 57 , 13 ) ;
this . lblPpuAddress . TabIndex = 17 ;
this . lblPpuAddress . Text = "PPU Addr:" ;
//
2017-08-20 12:06:45 -04:00
// ctrlTilePalette
//
2017-09-16 22:02:05 -04:00
this . ctrlTilePalette . Anchor = System . Windows . Forms . AnchorStyles . Right ;
2017-08-20 12:06:45 -04:00
this . tableLayoutPanel2 . SetColumnSpan ( this . ctrlTilePalette , 2 ) ;
this . ctrlTilePalette . DisplayIndexes = false ;
this . ctrlTilePalette . HighlightMouseOver = false ;
2017-09-16 22:02:05 -04:00
this . ctrlTilePalette . Location = new System . Drawing . Point ( 17 , 283 ) ;
2017-08-20 12:06:45 -04:00
this . ctrlTilePalette . Name = "ctrlTilePalette" ;
this . ctrlTilePalette . Size = new System . Drawing . Size ( 130 , 34 ) ;
this . ctrlTilePalette . TabIndex = 19 ;
//
2016-12-04 10:47:48 -05:00
// flowLayoutPanel1
//
this . flowLayoutPanel1 . Controls . Add ( this . chkShowPpuScrollOverlay ) ;
2019-01-19 14:50:47 -05:00
this . flowLayoutPanel1 . Controls . Add ( this . chkShowAttributeColorsOnly ) ;
2016-12-04 10:47:48 -05:00
this . flowLayoutPanel1 . Controls . Add ( this . chkShowTileGrid ) ;
this . flowLayoutPanel1 . Controls . Add ( this . chkShowAttributeGrid ) ;
2018-02-20 22:21:51 -05:00
this . flowLayoutPanel1 . Controls . Add ( this . chkUseGrayscalePalette ) ;
2017-08-20 12:06:45 -04:00
this . flowLayoutPanel1 . Controls . Add ( this . chkHighlightChrTile ) ;
2018-04-09 22:38:06 -04:00
this . flowLayoutPanel1 . Location = new System . Drawing . Point ( 522 , 351 ) ;
2017-03-24 11:44:05 -04:00
this . flowLayoutPanel1 . Margin = new System . Windows . Forms . Padding ( 0 ) ;
2016-12-04 10:47:48 -05:00
this . flowLayoutPanel1 . Name = "flowLayoutPanel1" ;
2018-04-09 22:38:06 -04:00
this . tableLayoutPanel1 . SetRowSpan ( this . flowLayoutPanel1 , 3 ) ;
this . flowLayoutPanel1 . Size = new System . Drawing . Size ( 175 , 179 ) ;
2016-12-04 10:47:48 -05:00
this . flowLayoutPanel1 . TabIndex = 5 ;
//
// chkShowPpuScrollOverlay
//
this . chkShowPpuScrollOverlay . AutoSize = true ;
this . chkShowPpuScrollOverlay . Location = new System . Drawing . Point ( 3 , 3 ) ;
this . chkShowPpuScrollOverlay . Name = "chkShowPpuScrollOverlay" ;
this . chkShowPpuScrollOverlay . Size = new System . Drawing . Size ( 146 , 17 ) ;
this . chkShowPpuScrollOverlay . TabIndex = 1 ;
this . chkShowPpuScrollOverlay . Text = "Show PPU Scroll Overlay" ;
this . chkShowPpuScrollOverlay . UseVisualStyleBackColor = true ;
this . chkShowPpuScrollOverlay . Click + = new System . EventHandler ( this . chkShowScrollWindow_Click ) ;
//
2019-01-21 14:38:38 -05:00
// chkShowAttributeColorsOnly
//
this . chkShowAttributeColorsOnly . AutoSize = true ;
this . chkShowAttributeColorsOnly . Location = new System . Drawing . Point ( 3 , 26 ) ;
this . chkShowAttributeColorsOnly . Name = "chkShowAttributeColorsOnly" ;
this . chkShowAttributeColorsOnly . Size = new System . Drawing . Size ( 147 , 17 ) ;
this . chkShowAttributeColorsOnly . TabIndex = 6 ;
this . chkShowAttributeColorsOnly . Text = "Show attribute colors only" ;
this . chkShowAttributeColorsOnly . UseVisualStyleBackColor = true ;
this . chkShowAttributeColorsOnly . Click + = new System . EventHandler ( this . chkShowAttributeColorsOnly_Click ) ;
//
2016-12-04 10:47:48 -05:00
// chkShowTileGrid
//
this . chkShowTileGrid . AutoSize = true ;
2019-01-19 14:50:47 -05:00
this . chkShowTileGrid . Location = new System . Drawing . Point ( 3 , 49 ) ;
2016-12-04 10:47:48 -05:00
this . chkShowTileGrid . Name = "chkShowTileGrid" ;
this . chkShowTileGrid . Size = new System . Drawing . Size ( 95 , 17 ) ;
this . chkShowTileGrid . TabIndex = 2 ;
this . chkShowTileGrid . Text = "Show Tile Grid" ;
this . chkShowTileGrid . UseVisualStyleBackColor = true ;
this . chkShowTileGrid . Click + = new System . EventHandler ( this . chkShowTileGrid_Click ) ;
//
// chkShowAttributeGrid
//
this . chkShowAttributeGrid . AutoSize = true ;
2019-01-19 14:50:47 -05:00
this . chkShowAttributeGrid . Location = new System . Drawing . Point ( 3 , 72 ) ;
2016-12-04 10:47:48 -05:00
this . chkShowAttributeGrid . Name = "chkShowAttributeGrid" ;
this . chkShowAttributeGrid . Size = new System . Drawing . Size ( 117 , 17 ) ;
this . chkShowAttributeGrid . TabIndex = 3 ;
this . chkShowAttributeGrid . Text = "Show Attribute Grid" ;
this . chkShowAttributeGrid . UseVisualStyleBackColor = true ;
this . chkShowAttributeGrid . Click + = new System . EventHandler ( this . chkShowAttributeGrid_Click ) ;
//
2018-04-09 22:38:06 -04:00
// chkUseGrayscalePalette
//
this . chkUseGrayscalePalette . AutoSize = true ;
2019-01-19 14:50:47 -05:00
this . chkUseGrayscalePalette . Location = new System . Drawing . Point ( 3 , 95 ) ;
2018-04-09 22:38:06 -04:00
this . chkUseGrayscalePalette . Name = "chkUseGrayscalePalette" ;
this . chkUseGrayscalePalette . Size = new System . Drawing . Size ( 131 , 17 ) ;
this . chkUseGrayscalePalette . TabIndex = 5 ;
this . chkUseGrayscalePalette . Text = "Use Grayscale Palette" ;
this . chkUseGrayscalePalette . UseVisualStyleBackColor = true ;
this . chkUseGrayscalePalette . Click + = new System . EventHandler ( this . chkUseGrayscalePalette_Click ) ;
//
2017-08-20 12:06:45 -04:00
// chkHighlightChrTile
2017-03-24 11:44:05 -04:00
//
2017-08-20 12:06:45 -04:00
this . chkHighlightChrTile . CheckAlign = System . Drawing . ContentAlignment . TopLeft ;
2019-01-19 14:50:47 -05:00
this . chkHighlightChrTile . Location = new System . Drawing . Point ( 3 , 118 ) ;
2017-08-20 12:06:45 -04:00
this . chkHighlightChrTile . Name = "chkHighlightChrTile" ;
this . chkHighlightChrTile . Size = new System . Drawing . Size ( 150 , 31 ) ;
this . chkHighlightChrTile . TabIndex = 4 ;
this . chkHighlightChrTile . Text = "Highlight tile selected in CHR viewer" ;
this . chkHighlightChrTile . UseVisualStyleBackColor = true ;
this . chkHighlightChrTile . Click + = new System . EventHandler ( this . chkHighlightChrTile_Click ) ;
2017-03-24 11:44:05 -04:00
//
2018-02-16 20:33:48 -05:00
// tableLayoutPanel3
//
2019-01-13 18:32:27 -05:00
this . tableLayoutPanel3 . ColumnCount = 6 ;
2018-02-16 20:33:48 -05:00
this . tableLayoutPanel3 . ColumnStyles . Add ( new System . Windows . Forms . ColumnStyle ( ) ) ;
this . tableLayoutPanel3 . ColumnStyles . Add ( new System . Windows . Forms . ColumnStyle ( ) ) ;
this . tableLayoutPanel3 . ColumnStyles . Add ( new System . Windows . Forms . ColumnStyle ( System . Windows . Forms . SizeType . Percent , 100F ) ) ;
2019-01-13 18:32:27 -05:00
this . tableLayoutPanel3 . ColumnStyles . Add ( new System . Windows . Forms . ColumnStyle ( ) ) ;
this . tableLayoutPanel3 . ColumnStyles . Add ( new System . Windows . Forms . ColumnStyle ( ) ) ;
this . tableLayoutPanel3 . ColumnStyles . Add ( new System . Windows . Forms . ColumnStyle ( ) ) ;
2018-02-16 20:33:48 -05:00
this . tableLayoutPanel3 . Controls . Add ( this . lblMirroring , 0 , 0 ) ;
this . tableLayoutPanel3 . Controls . Add ( this . lblMirroringType , 1 , 0 ) ;
2019-01-13 18:32:27 -05:00
this . tableLayoutPanel3 . Controls . Add ( this . chkHighlightTileUpdates , 4 , 0 ) ;
this . tableLayoutPanel3 . Controls . Add ( this . chkHighlightAttributeUpdates , 5 , 0 ) ;
2019-01-21 14:38:38 -05:00
this . tableLayoutPanel3 . Controls . Add ( this . chkIgnoreRedundantWrites , 4 , 1 ) ;
2019-01-13 18:32:27 -05:00
this . tableLayoutPanel3 . Controls . Add ( this . lblHighlight , 3 , 0 ) ;
this . tableLayoutPanel3 . Location = new System . Drawing . Point ( 0 , 486 ) ;
2018-02-20 22:21:51 -05:00
this . tableLayoutPanel3 . Margin = new System . Windows . Forms . Padding ( 0 ) ;
2018-02-16 20:33:48 -05:00
this . tableLayoutPanel3 . Name = "tableLayoutPanel3" ;
2019-01-21 14:38:38 -05:00
this . tableLayoutPanel3 . RowCount = 2 ;
2018-02-16 20:33:48 -05:00
this . tableLayoutPanel3 . RowStyles . Add ( new System . Windows . Forms . RowStyle ( System . Windows . Forms . SizeType . Percent , 100F ) ) ;
2019-01-21 14:38:38 -05:00
this . tableLayoutPanel3 . RowStyles . Add ( new System . Windows . Forms . RowStyle ( System . Windows . Forms . SizeType . Absolute , 20F ) ) ;
this . tableLayoutPanel3 . Size = new System . Drawing . Size ( 522 , 40 ) ;
2018-02-16 20:33:48 -05:00
this . tableLayoutPanel3 . TabIndex = 6 ;
//
// lblMirroring
//
2019-01-13 18:32:27 -05:00
this . lblMirroring . Anchor = System . Windows . Forms . AnchorStyles . Left ;
2018-02-16 20:33:48 -05:00
this . lblMirroring . AutoSize = true ;
2019-01-13 18:32:27 -05:00
this . lblMirroring . Location = new System . Drawing . Point ( 3 , 3 ) ;
2018-02-16 20:33:48 -05:00
this . lblMirroring . Name = "lblMirroring" ;
this . lblMirroring . Size = new System . Drawing . Size ( 80 , 13 ) ;
this . lblMirroring . TabIndex = 0 ;
this . lblMirroring . Text = "Mirroring Type: " ;
//
// lblMirroringType
//
2019-01-13 18:32:27 -05:00
this . lblMirroringType . Anchor = System . Windows . Forms . AnchorStyles . Left ;
2018-02-16 20:33:48 -05:00
this . lblMirroringType . AutoSize = true ;
this . lblMirroringType . Font = new System . Drawing . Font ( "Microsoft Sans Serif" , 8.25F , System . Drawing . FontStyle . Bold , System . Drawing . GraphicsUnit . Point , ( ( byte ) ( 0 ) ) ) ;
2019-01-13 18:32:27 -05:00
this . lblMirroringType . Location = new System . Drawing . Point ( 89 , 3 ) ;
2018-02-16 20:33:48 -05:00
this . lblMirroringType . Name = "lblMirroringType" ;
this . lblMirroringType . Size = new System . Drawing . Size ( 64 , 13 ) ;
this . lblMirroringType . TabIndex = 1 ;
this . lblMirroringType . Text = "Horizontal" ;
2017-12-21 17:48:24 -05:00
//
2019-01-13 18:32:27 -05:00
// chkHighlightTileUpdates
//
this . chkHighlightTileUpdates . Anchor = System . Windows . Forms . AnchorStyles . Left ;
this . chkHighlightTileUpdates . AutoSize = true ;
this . chkHighlightTileUpdates . Location = new System . Drawing . Point ( 319 , 3 ) ;
this . chkHighlightTileUpdates . Margin = new System . Windows . Forms . Padding ( 3 , 3 , 3 , 0 ) ;
this . chkHighlightTileUpdates . Name = "chkHighlightTileUpdates" ;
this . chkHighlightTileUpdates . Size = new System . Drawing . Size ( 86 , 17 ) ;
this . chkHighlightTileUpdates . TabIndex = 6 ;
this . chkHighlightTileUpdates . Text = "Tile Updates" ;
this . chkHighlightTileUpdates . UseVisualStyleBackColor = true ;
this . chkHighlightTileUpdates . Click + = new System . EventHandler ( this . chkHighlightTileUpdates_Click ) ;
//
// chkHighlightAttributeUpdates
//
this . chkHighlightAttributeUpdates . Anchor = System . Windows . Forms . AnchorStyles . Left ;
this . chkHighlightAttributeUpdates . AutoSize = true ;
this . chkHighlightAttributeUpdates . Location = new System . Drawing . Point ( 411 , 3 ) ;
this . chkHighlightAttributeUpdates . Margin = new System . Windows . Forms . Padding ( 3 , 3 , 3 , 0 ) ;
this . chkHighlightAttributeUpdates . Name = "chkHighlightAttributeUpdates" ;
this . chkHighlightAttributeUpdates . Size = new System . Drawing . Size ( 108 , 17 ) ;
this . chkHighlightAttributeUpdates . TabIndex = 7 ;
this . chkHighlightAttributeUpdates . Text = "Attribute Updates" ;
this . chkHighlightAttributeUpdates . UseVisualStyleBackColor = true ;
this . chkHighlightAttributeUpdates . Click + = new System . EventHandler ( this . chkHighlightAttributeUpdates_Click ) ;
//
// chkIgnoreRedundantWrites
//
this . chkIgnoreRedundantWrites . Anchor = ( ( System . Windows . Forms . AnchorStyles ) ( ( System . Windows . Forms . AnchorStyles . Top | System . Windows . Forms . AnchorStyles . Right ) ) ) ;
this . chkIgnoreRedundantWrites . AutoSize = true ;
2019-01-21 14:38:38 -05:00
this . tableLayoutPanel3 . SetColumnSpan ( this . chkIgnoreRedundantWrites , 2 ) ;
this . chkIgnoreRedundantWrites . Location = new System . Drawing . Point ( 332 , 21 ) ;
2019-01-13 18:32:27 -05:00
this . chkIgnoreRedundantWrites . Margin = new System . Windows . Forms . Padding ( 3 , 1 , 3 , 0 ) ;
this . chkIgnoreRedundantWrites . Name = "chkIgnoreRedundantWrites" ;
this . chkIgnoreRedundantWrites . Size = new System . Drawing . Size ( 187 , 17 ) ;
this . chkIgnoreRedundantWrites . TabIndex = 7 ;
this . chkIgnoreRedundantWrites . Text = "Ignore writes that do not alter data" ;
this . chkIgnoreRedundantWrites . UseVisualStyleBackColor = true ;
this . chkIgnoreRedundantWrites . Click + = new System . EventHandler ( this . chkIgnoreRedundantWrites_Click ) ;
//
2019-02-18 21:01:12 -05:00
// lblHighlight
//
this . lblHighlight . Anchor = System . Windows . Forms . AnchorStyles . Left ;
this . lblHighlight . AutoSize = true ;
this . lblHighlight . Location = new System . Drawing . Point ( 262 , 3 ) ;
this . lblHighlight . Name = "lblHighlight" ;
this . lblHighlight . Size = new System . Drawing . Size ( 51 , 13 ) ;
this . lblHighlight . TabIndex = 2 ;
this . lblHighlight . Text = "Highlight:" ;
//
2015-08-08 22:36:39 -04:00
// ctrlNametableViewer
//
this . AutoScaleDimensions = new System . Drawing . SizeF ( 6F , 13F ) ;
this . AutoScaleMode = System . Windows . Forms . AutoScaleMode . Font ;
this . Controls . Add ( this . tableLayoutPanel1 ) ;
this . Name = "ctrlNametableViewer" ;
2019-01-21 14:38:38 -05:00
this . Size = new System . Drawing . Size ( 701 , 530 ) ;
2015-08-08 22:36:39 -04:00
this . tableLayoutPanel1 . ResumeLayout ( false ) ;
2016-12-02 18:10:37 -05:00
( ( System . ComponentModel . ISupportInitialize ) ( this . picNametable ) ) . EndInit ( ) ;
2017-08-15 22:01:54 -04:00
this . ctxMenu . ResumeLayout ( false ) ;
2015-08-08 22:36:39 -04:00
this . grpTileInfo . ResumeLayout ( false ) ;
2017-09-16 22:02:05 -04:00
this . grpTileInfo . PerformLayout ( ) ;
2015-08-08 22:36:39 -04:00
this . tableLayoutPanel2 . ResumeLayout ( false ) ;
this . tableLayoutPanel2 . PerformLayout ( ) ;
( ( System . ComponentModel . ISupportInitialize ) ( this . picTile ) ) . EndInit ( ) ;
2016-12-04 10:47:48 -05:00
this . flowLayoutPanel1 . ResumeLayout ( false ) ;
this . flowLayoutPanel1 . PerformLayout ( ) ;
2018-02-16 20:33:48 -05:00
this . tableLayoutPanel3 . ResumeLayout ( false ) ;
this . tableLayoutPanel3 . PerformLayout ( ) ;
2015-08-08 22:36:39 -04:00
this . ResumeLayout ( false ) ;
}
#endregion
private System . Windows . Forms . TableLayoutPanel tableLayoutPanel1 ;
2019-01-21 14:38:38 -05:00
private ctrlMesenPictureBox picNametable ;
2015-08-08 22:36:39 -04:00
private System . Windows . Forms . GroupBox grpTileInfo ;
private System . Windows . Forms . TableLayoutPanel tableLayoutPanel2 ;
private System . Windows . Forms . TextBox txtPaletteAddress ;
private System . Windows . Forms . TextBox txtAttributeAddress ;
private System . Windows . Forms . TextBox txtAttributeData ;
private System . Windows . Forms . TextBox txtTileAddress ;
private System . Windows . Forms . Label lblTileIndex ;
private System . Windows . Forms . Label lblTileAddress ;
private System . Windows . Forms . Label lblAttributeData ;
private System . Windows . Forms . Label lblAttributeAddress ;
private System . Windows . Forms . Label lblPaletteAddress ;
private System . Windows . Forms . Label lblTile ;
private System . Windows . Forms . TextBox txtTileIndex ;
private System . Windows . Forms . PictureBox picTile ;
2016-12-04 10:47:48 -05:00
private System . Windows . Forms . FlowLayoutPanel flowLayoutPanel1 ;
2016-12-02 18:10:37 -05:00
private System . Windows . Forms . CheckBox chkShowPpuScrollOverlay ;
2016-12-04 10:47:48 -05:00
private System . Windows . Forms . CheckBox chkShowTileGrid ;
private System . Windows . Forms . CheckBox chkShowAttributeGrid ;
2017-03-24 11:44:05 -04:00
private System . Windows . Forms . TextBox txtLocation ;
private System . Windows . Forms . TextBox txtNametable ;
private System . Windows . Forms . Label lblNametableIndex ;
private System . Windows . Forms . Label lblLocation ;
private System . Windows . Forms . TextBox txtPpuAddress ;
private System . Windows . Forms . Label lblPpuAddress ;
2018-12-15 15:44:22 -05:00
private ctrlMesenContextMenuStrip ctxMenu ;
2017-06-28 19:00:08 -04:00
private System . Windows . Forms . ToolStripMenuItem mnuCopyHdPack ;
2017-08-15 22:01:54 -04:00
private ctrlTilePalette ctrlTilePalette ;
2017-08-20 12:06:45 -04:00
private System . Windows . Forms . CheckBox chkHighlightChrTile ;
2017-08-20 14:18:35 -04:00
private System . Windows . Forms . ToolStripMenuItem mnuShowInChrViewer ;
private System . Windows . Forms . ToolStripSeparator toolStripMenuItem1 ;
2017-12-21 17:48:24 -05:00
private System . Windows . Forms . ToolStripMenuItem mnuCopyToClipboard ;
2017-12-27 14:24:55 -05:00
private System . Windows . Forms . ToolStripMenuItem mnuCopyNametableHdPack ;
2018-02-16 20:33:48 -05:00
private System . Windows . Forms . TableLayoutPanel tableLayoutPanel3 ;
private System . Windows . Forms . Label lblMirroring ;
private System . Windows . Forms . Label lblMirroringType ;
2018-02-20 22:21:51 -05:00
private System . Windows . Forms . CheckBox chkUseGrayscalePalette ;
2018-04-14 22:55:31 -04:00
private System . Windows . Forms . CheckBox chkHighlightTileUpdates ;
private System . Windows . Forms . CheckBox chkHighlightAttributeUpdates ;
2018-09-15 11:11:46 -04:00
private System . Windows . Forms . ToolStripSeparator toolStripMenuItem2 ;
private System . Windows . Forms . ToolStripMenuItem mnuExportToPng ;
2018-12-15 15:44:22 -05:00
private System . Windows . Forms . ToolStripMenuItem mnuEditInMemoryViewer ;
2019-01-13 18:32:27 -05:00
private System . Windows . Forms . Label lblHighlight ;
private System . Windows . Forms . CheckBox chkIgnoreRedundantWrites ;
2019-01-14 19:02:50 -05:00
private System . Windows . Forms . ToolStripMenuItem mnuAddBreakpoint ;
2019-01-19 14:50:47 -05:00
private System . Windows . Forms . CheckBox chkShowAttributeColorsOnly ;
2019-02-18 21:01:12 -05:00
private System . Windows . Forms . ToolStripMenuItem mnuAddBreakpointAttribute ;
2015-08-08 22:36:39 -04:00
}
}