Add some menu "Ex" controls (#2187)

* add MenuItemEx and StatusLabelEx and use in MainForm

* use ToolStripMenuItemEx

* use ToolStripSeparatorEx

* fix toolbox sizing
This commit is contained in:
adelikat 2020-07-02 08:35:15 -05:00 committed by GitHub
parent 1360210331
commit 21823196fc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
36 changed files with 2082 additions and 4490 deletions

File diff suppressed because it is too large Load Diff

View File

@ -39,9 +39,9 @@
this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
this.pictureBox1 = new System.Windows.Forms.PictureBox();
this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components);
this.testToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.loadDefaultsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.clearToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.testToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.loadDefaultsToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.clearToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.toolTip1 = new System.Windows.Forms.ToolTip(this.components);
this.label3 = new BizHawk.WinForms.Controls.LocLabelEx();
this.label2 = new BizHawk.WinForms.Controls.LocLabelEx();
@ -169,22 +169,16 @@
//
// testToolStripMenuItem
//
this.testToolStripMenuItem.Name = "testToolStripMenuItem";
this.testToolStripMenuItem.Size = new System.Drawing.Size(146, 22);
this.testToolStripMenuItem.Text = "Save Defaults";
this.testToolStripMenuItem.Click += new System.EventHandler(this.ButtonSaveDefaults_Click);
//
// loadDefaultsToolStripMenuItem
//
this.loadDefaultsToolStripMenuItem.Name = "loadDefaultsToolStripMenuItem";
this.loadDefaultsToolStripMenuItem.Size = new System.Drawing.Size(146, 22);
this.loadDefaultsToolStripMenuItem.Text = "Load Defaults";
this.loadDefaultsToolStripMenuItem.Click += new System.EventHandler(this.ButtonLoadDefaults_Click);
//
// clearToolStripMenuItem
//
this.clearToolStripMenuItem.Name = "clearToolStripMenuItem";
this.clearToolStripMenuItem.Size = new System.Drawing.Size(146, 22);
this.clearToolStripMenuItem.Text = "Clear";
this.clearToolStripMenuItem.Click += new System.EventHandler(this.ClearBtn_Click);
//
@ -275,9 +269,9 @@
private System.Windows.Forms.ContextMenuStrip contextMenuStrip1;
private System.Windows.Forms.ToolTip toolTip1;
private MenuButton btnMisc;
private System.Windows.Forms.ToolStripMenuItem testToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem loadDefaultsToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem clearToolStripMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx testToolStripMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx loadDefaultsToolStripMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx clearToolStripMenuItem;
private BizHawk.WinForms.Controls.LocLabelEx label3;
private BizHawk.WinForms.Controls.LocLabelEx label2;
private BizHawk.WinForms.Controls.LocLabelEx label38;

View File

@ -30,7 +30,7 @@
{
this.components = new System.ComponentModel.Container();
this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components);
this.clearToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.clearToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.contextMenuStrip1.SuspendLayout();
this.SuspendLayout();
//
@ -43,8 +43,6 @@
//
// clearToolStripMenuItem
//
this.clearToolStripMenuItem.Name = "clearToolStripMenuItem";
this.clearToolStripMenuItem.Size = new System.Drawing.Size(99, 22);
this.clearToolStripMenuItem.Text = "&Clear";
this.clearToolStripMenuItem.Click += new System.EventHandler(this.ClearToolStripMenuItem_Click);
//
@ -62,6 +60,6 @@
#endregion
private System.Windows.Forms.ContextMenuStrip contextMenuStrip1;
private System.Windows.Forms.ToolStripMenuItem clearToolStripMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx clearToolStripMenuItem;
}
}

View File

@ -42,19 +42,19 @@ namespace BizHawk.Client.EmuHawk
this.columnHeader8 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.columnHeader7 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.lvFirmwaresContextMenuStrip = new System.Windows.Forms.ContextMenuStrip(this.components);
this.tsmiSetCustomization = new System.Windows.Forms.ToolStripMenuItem();
this.tsmiClearCustomization = new System.Windows.Forms.ToolStripMenuItem();
this.tsmiInfo = new System.Windows.Forms.ToolStripMenuItem();
this.tsmiCopy = new System.Windows.Forms.ToolStripMenuItem();
this.tsmiSetCustomization = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.tsmiClearCustomization = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.tsmiInfo = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.tsmiCopy = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.panel1 = new System.Windows.Forms.Panel();
this.toolStrip1 = new ToolStripEx();
this.tbbGroup = new System.Windows.Forms.ToolStripButton();
this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
this.toolStripSeparator2 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx();
this.tbbScan = new System.Windows.Forms.ToolStripButton();
this.tbbOrganize = new System.Windows.Forms.ToolStripButton();
this.tbbImport = new System.Windows.Forms.ToolStripButton();
this.tbbClose = new System.Windows.Forms.ToolStripButton();
this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
this.toolStripSeparator1 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx();
this.tbbCloseReload = new System.Windows.Forms.ToolStripButton();
this.tbbOpenFolder = new System.Windows.Forms.ToolStripButton();
this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
@ -156,29 +156,21 @@ namespace BizHawk.Client.EmuHawk
//
// tsmiSetCustomization
//
this.tsmiSetCustomization.Name = "tsmiSetCustomization";
this.tsmiSetCustomization.Size = new System.Drawing.Size(181, 22);
this.tsmiSetCustomization.Text = "&Set Customization";
this.tsmiSetCustomization.Click += new System.EventHandler(this.tsmiSetCustomization_Click);
//
// tsmiClearCustomization
//
this.tsmiClearCustomization.Name = "tsmiClearCustomization";
this.tsmiClearCustomization.Size = new System.Drawing.Size(181, 22);
this.tsmiClearCustomization.Text = "C&lear Customization";
this.tsmiClearCustomization.Click += new System.EventHandler(this.tsmiClearCustomization_Click);
//
// tsmiInfo
//
this.tsmiInfo.Name = "tsmiInfo";
this.tsmiInfo.Size = new System.Drawing.Size(181, 22);
this.tsmiInfo.Text = "&Info";
this.tsmiInfo.Click += new System.EventHandler(this.tsmiInfo_Click);
//
// tsmiCopy
//
this.tsmiCopy.Name = "tsmiCopy";
this.tsmiCopy.Size = new System.Drawing.Size(181, 22);
this.tsmiCopy.Text = "&Copy";
this.tsmiCopy.Click += new System.EventHandler(this.tsmiCopy_Click);
//
@ -220,11 +212,6 @@ namespace BizHawk.Client.EmuHawk
this.tbbGroup.Text = "Group";
this.tbbGroup.Click += new System.EventHandler(this.tbbGroup_Click);
//
// toolStripSeparator2
//
this.toolStripSeparator2.Name = "toolStripSeparator2";
this.toolStripSeparator2.Size = new System.Drawing.Size(6, 25);
//
// tbbScan
//
this.tbbScan.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
@ -262,12 +249,7 @@ namespace BizHawk.Client.EmuHawk
this.tbbClose.Size = new System.Drawing.Size(40, 22);
this.tbbClose.Text = "Close";
this.tbbClose.Click += new System.EventHandler(this.tbbClose_Click);
//
// toolStripSeparator1
//
this.toolStripSeparator1.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right;
this.toolStripSeparator1.Name = "toolStripSeparator1";
this.toolStripSeparator1.Size = new System.Drawing.Size(6, 25);
this.toolStripSeparator1.Visible = false;
//
// tbbCloseReload
@ -381,7 +363,7 @@ namespace BizHawk.Client.EmuHawk
private System.Windows.Forms.Panel panel1;
private ToolStripEx toolStrip1;
private System.Windows.Forms.ToolStripButton tbbGroup;
private System.Windows.Forms.ToolStripSeparator toolStripSeparator2;
private BizHawk.WinForms.Controls.ToolStripSeparatorEx toolStripSeparator2;
private System.Windows.Forms.ToolStripButton tbbScan;
private System.Windows.Forms.ToolStripButton tbbOrganize;
private System.Windows.Forms.TableLayoutPanel tableLayoutPanel1;
@ -391,10 +373,10 @@ namespace BizHawk.Client.EmuHawk
private System.Windows.Forms.ColumnHeader columnHeader3;
private System.Windows.Forms.ColumnHeader columnHeader7;
private System.Windows.Forms.ContextMenuStrip lvFirmwaresContextMenuStrip;
private System.Windows.Forms.ToolStripMenuItem tsmiSetCustomization;
private System.Windows.Forms.ToolStripMenuItem tsmiClearCustomization;
private System.Windows.Forms.ToolStripMenuItem tsmiInfo;
private System.Windows.Forms.ToolStripMenuItem tsmiCopy;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx tsmiSetCustomization;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx tsmiClearCustomization;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx tsmiInfo;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx tsmiCopy;
private System.Windows.Forms.Panel panel2;
private System.Windows.Forms.LinkLabel linkBasePath;
private BizHawk.WinForms.Controls.LocLabelEx label1;
@ -402,7 +384,7 @@ namespace BizHawk.Client.EmuHawk
private System.Windows.Forms.ColumnHeader columnHeader8;
private System.Windows.Forms.ToolStripButton tbbClose;
private System.Windows.Forms.ToolStripButton tbbCloseReload;
private System.Windows.Forms.ToolStripSeparator toolStripSeparator1;
private BizHawk.WinForms.Controls.ToolStripSeparatorEx toolStripSeparator1;
private BizHawk.WinForms.Controls.LocLabelEx label2;
private System.Windows.Forms.ToolStripButton tbbOpenFolder;
}

View File

@ -43,7 +43,7 @@
this.label2 = new BizHawk.WinForms.Controls.LocLabelEx();
this.lblFirmware = new BizHawk.WinForms.Controls.LocLabelEx();
this.lvmiOptionsContextMenuStrip = new System.Windows.Forms.ContextMenuStrip(this.components);
this.tsmiOptionsCopy = new System.Windows.Forms.ToolStripMenuItem();
this.tsmiOptionsCopy = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.toolTip1 = new System.Windows.Forms.ToolTip(this.components);
this.tableLayoutPanel1.SuspendLayout();
this.flowLayoutPanel1.SuspendLayout();
@ -173,8 +173,6 @@
//
// tsmiOptionsCopy
//
this.tsmiOptionsCopy.Name = "tsmiOptionsCopy";
this.tsmiOptionsCopy.Size = new System.Drawing.Size(99, 22);
this.tsmiOptionsCopy.Text = "&Copy";
this.tsmiOptionsCopy.Click += new System.EventHandler(this.TsmiOptionsCopy_Click);
//
@ -212,7 +210,7 @@
private BizHawk.WinForms.Controls.LocLabelEx label2;
public BizHawk.WinForms.Controls.LocLabelEx lblFirmware;
private System.Windows.Forms.ContextMenuStrip lvmiOptionsContextMenuStrip;
private System.Windows.Forms.ToolStripMenuItem tsmiOptionsCopy;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx tsmiOptionsCopy;
private System.Windows.Forms.ColumnHeader colInfo;
private System.Windows.Forms.ImageList imageList1;
private System.Windows.Forms.ColumnHeader colSize;

View File

@ -42,10 +42,10 @@
this.toolTip1 = new System.Windows.Forms.ToolTip(this.components);
this.MiscButton = new BizHawk.Client.EmuHawk.MenuButton();
this.clearBtnContextMenu = new System.Windows.Forms.ContextMenuStrip(this.components);
this.clearAllToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.clearCurrentTabToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.restoreDefaultsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
this.clearAllToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.clearCurrentTabToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.restoreDefaultsToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.toolStripSeparator1 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx();
this.HotkeyTabControl.SuspendLayout();
this.clearBtnContextMenu.SuspendLayout();
this.SuspendLayout();
@ -171,30 +171,19 @@
//
// clearAllToolStripMenuItem
//
this.clearAllToolStripMenuItem.Name = "clearAllToolStripMenuItem";
this.clearAllToolStripMenuItem.Size = new System.Drawing.Size(167, 22);
this.clearAllToolStripMenuItem.Text = "Clear All";
this.clearAllToolStripMenuItem.Click += new System.EventHandler(this.ClearAllToolStripMenuItem_Click);
//
// clearCurrentTabToolStripMenuItem
//
this.clearCurrentTabToolStripMenuItem.Name = "clearCurrentTabToolStripMenuItem";
this.clearCurrentTabToolStripMenuItem.Size = new System.Drawing.Size(167, 22);
this.clearCurrentTabToolStripMenuItem.Text = "Clear Current Tab";
this.clearCurrentTabToolStripMenuItem.Click += new System.EventHandler(this.ClearCurrentTabToolStripMenuItem_Click);
//
// restoreDefaultsToolStripMenuItem
//
this.restoreDefaultsToolStripMenuItem.Name = "restoreDefaultsToolStripMenuItem";
this.restoreDefaultsToolStripMenuItem.Size = new System.Drawing.Size(167, 22);
this.restoreDefaultsToolStripMenuItem.Text = "Restore Defaults";
this.restoreDefaultsToolStripMenuItem.Click += new System.EventHandler(this.RestoreDefaultsToolStripMenuItem_Click);
//
// toolStripSeparator1
//
this.toolStripSeparator1.Name = "toolStripSeparator1";
this.toolStripSeparator1.Size = new System.Drawing.Size(164, 6);
//
// HotkeyConfig
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
@ -238,9 +227,9 @@
private System.Windows.Forms.ToolTip toolTip1;
private MenuButton MiscButton;
private System.Windows.Forms.ContextMenuStrip clearBtnContextMenu;
private System.Windows.Forms.ToolStripMenuItem clearAllToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem clearCurrentTabToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem restoreDefaultsToolStripMenuItem;
private System.Windows.Forms.ToolStripSeparator toolStripSeparator1;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx clearAllToolStripMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx clearCurrentTabToolStripMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx restoreDefaultsToolStripMenuItem;
private BizHawk.WinForms.Controls.ToolStripSeparatorEx toolStripSeparator1;
}
}

View File

@ -45,7 +45,7 @@
this.toolTip1 = new System.Windows.Forms.ToolTip(this.components);
this.MatchHashCheckBox = new System.Windows.Forms.CheckBox();
this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components);
this.editToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.editToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.StopOnFrameCheckbox = new System.Windows.Forms.CheckBox();
this.StopOnFrameTextBox = new BizHawk.Client.EmuHawk.WatchValueBox();
this.MovieView = new System.Windows.Forms.ListView();
@ -225,8 +225,6 @@
//
// editToolStripMenuItem
//
this.editToolStripMenuItem.Name = "editToolStripMenuItem";
this.editToolStripMenuItem.Size = new System.Drawing.Size(92, 22);
this.editToolStripMenuItem.Text = "&Edit";
this.editToolStripMenuItem.Click += new System.EventHandler(this.EditMenuItem_Click);
//
@ -387,7 +385,7 @@
private System.Windows.Forms.ToolTip toolTip1;
private System.Windows.Forms.CheckBox MatchHashCheckBox;
private System.Windows.Forms.ContextMenuStrip contextMenuStrip1;
private System.Windows.Forms.ToolStripMenuItem editToolStripMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx editToolStripMenuItem;
private System.Windows.Forms.CheckBox StopOnFrameCheckbox;
private WatchValueBox StopOnFrameTextBox;
private System.Windows.Forms.CheckBox LastFrameCheckbox;

View File

@ -32,25 +32,25 @@ namespace BizHawk.Client.EmuHawk
{
this.components = new System.ComponentModel.Container();
this.BotMenu = new MenuStripEx();
this.FileSubMenu = new System.Windows.Forms.ToolStripMenuItem();
this.NewMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.OpenMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.SaveMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.SaveAsMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.RecentSubMenu = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
this.ExitMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.OptionsSubMenu = new System.Windows.Forms.ToolStripMenuItem();
this.MemoryDomainsMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripSeparator3 = new System.Windows.Forms.ToolStripSeparator();
this.DataSizeMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this._1ByteMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this._2ByteMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this._4ByteMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.BigEndianMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripSeparator4 = new System.Windows.Forms.ToolStripSeparator();
this.TurboWhileBottingMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.FileSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.NewMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.OpenMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.SaveMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.SaveAsMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.RecentSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.toolStripSeparator2 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx();
this.toolStripSeparator1 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx();
this.ExitMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.OptionsSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.MemoryDomainsMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.toolStripSeparator3 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx();
this.DataSizeMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this._1ByteMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this._2ByteMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this._4ByteMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.BigEndianMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.toolStripSeparator4 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx();
this.TurboWhileBottingMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.RunBtn = new System.Windows.Forms.Button();
this.BotStatusStrip = new System.Windows.Forms.StatusStrip();
this.BotStatusButton = new System.Windows.Forms.ToolStripStatusLabel();
@ -120,9 +120,9 @@ namespace BizHawk.Client.EmuHawk
this.InvisibleEmulationCheckBox = new System.Windows.Forms.CheckBox();
this.panel2 = new System.Windows.Forms.Panel();
this.StatsContextMenu = new System.Windows.Forms.ContextMenuStrip(this.components);
this.ClearStatsContextMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.ClearStatsContextMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.toolTip1 = new System.Windows.Forms.ToolTip(this.components);
this.helpToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.helpToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.BotMenu.SuspendLayout();
this.BotStatusStrip.SuspendLayout();
this.ControlsBox.SuspendLayout();
@ -163,41 +163,31 @@ namespace BizHawk.Client.EmuHawk
this.RecentSubMenu,
this.toolStripSeparator1,
this.ExitMenuItem});
this.FileSubMenu.Name = "FileSubMenu";
this.FileSubMenu.Size = new System.Drawing.Size(37, 20);
this.FileSubMenu.Text = "&File";
this.FileSubMenu.DropDownOpened += new System.EventHandler(this.FileSubMenu_DropDownOpened);
//
// NewMenuItem
//
this.NewMenuItem.Name = "NewMenuItem";
this.NewMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.N)));
this.NewMenuItem.Size = new System.Drawing.Size(195, 22);
this.NewMenuItem.Text = "&New";
this.NewMenuItem.Click += new System.EventHandler(this.NewMenuItem_Click);
//
// OpenMenuItem
//
this.OpenMenuItem.Name = "OpenMenuItem";
this.OpenMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.O)));
this.OpenMenuItem.Size = new System.Drawing.Size(195, 22);
this.OpenMenuItem.Text = "&Open...";
this.OpenMenuItem.Click += new System.EventHandler(this.OpenMenuItem_Click);
//
// SaveMenuItem
//
this.SaveMenuItem.Name = "SaveMenuItem";
this.SaveMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.S)));
this.SaveMenuItem.Size = new System.Drawing.Size(195, 22);
this.SaveMenuItem.Text = "&Save";
this.SaveMenuItem.Click += new System.EventHandler(this.SaveMenuItem_Click);
//
// SaveAsMenuItem
//
this.SaveAsMenuItem.Name = "SaveAsMenuItem";
this.SaveAsMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)(((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.Shift)
| System.Windows.Forms.Keys.S)));
this.SaveAsMenuItem.Size = new System.Drawing.Size(195, 22);
this.SaveAsMenuItem.Text = "Save &As...";
this.SaveAsMenuItem.Click += new System.EventHandler(this.SaveAsMenuItem_Click);
//
@ -205,26 +195,12 @@ namespace BizHawk.Client.EmuHawk
//
this.RecentSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.toolStripSeparator2});
this.RecentSubMenu.Name = "RecentSubMenu";
this.RecentSubMenu.Size = new System.Drawing.Size(195, 22);
this.RecentSubMenu.Text = "Recent";
this.RecentSubMenu.DropDownOpened += new System.EventHandler(this.RecentSubMenu_DropDownOpened);
//
// toolStripSeparator2
//
this.toolStripSeparator2.Name = "toolStripSeparator2";
this.toolStripSeparator2.Size = new System.Drawing.Size(57, 6);
//
// toolStripSeparator1
//
this.toolStripSeparator1.Name = "toolStripSeparator1";
this.toolStripSeparator1.Size = new System.Drawing.Size(192, 6);
//
// ExitMenuItem
//
this.ExitMenuItem.Name = "ExitMenuItem";
this.ExitMenuItem.ShortcutKeyDisplayString = "Alt+F4";
this.ExitMenuItem.Size = new System.Drawing.Size(195, 22);
this.ExitMenuItem.Text = "E&xit";
this.ExitMenuItem.Click += new System.EventHandler(this.ExitMenuItem_Click);
//
@ -236,8 +212,6 @@ namespace BizHawk.Client.EmuHawk
this.BigEndianMenuItem,
this.toolStripSeparator4,
this.TurboWhileBottingMenuItem});
this.OptionsSubMenu.Name = "OptionsSubMenu";
this.OptionsSubMenu.Size = new System.Drawing.Size(61, 20);
this.OptionsSubMenu.Text = "&Options";
this.OptionsSubMenu.DropDownOpened += new System.EventHandler(this.OptionsSubMenu_DropDownOpened);
//
@ -245,64 +219,40 @@ namespace BizHawk.Client.EmuHawk
//
this.MemoryDomainsMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.toolStripSeparator3});
this.MemoryDomainsMenuItem.Name = "MemoryDomainsMenuItem";
this.MemoryDomainsMenuItem.Size = new System.Drawing.Size(181, 22);
this.MemoryDomainsMenuItem.Text = "Memory Domains";
this.MemoryDomainsMenuItem.DropDownOpened += new System.EventHandler(this.MemoryDomainsMenuItem_DropDownOpened);
//
// toolStripSeparator3
//
this.toolStripSeparator3.Name = "toolStripSeparator3";
this.toolStripSeparator3.Size = new System.Drawing.Size(57, 6);
//
// DataSizeMenuItem
//
this.DataSizeMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this._1ByteMenuItem,
this._2ByteMenuItem,
this._4ByteMenuItem});
this.DataSizeMenuItem.Name = "DataSizeMenuItem";
this.DataSizeMenuItem.Size = new System.Drawing.Size(181, 22);
this.DataSizeMenuItem.Text = "Data Size";
this.DataSizeMenuItem.DropDownOpened += new System.EventHandler(this.DataSizeMenuItem_DropDownOpened);
//
// _1ByteMenuItem
//
this._1ByteMenuItem.Name = "_1ByteMenuItem";
this._1ByteMenuItem.Size = new System.Drawing.Size(111, 22);
this._1ByteMenuItem.Text = "1 Byte";
this._1ByteMenuItem.Click += new System.EventHandler(this._1ByteMenuItem_Click);
//
// _2ByteMenuItem
//
this._2ByteMenuItem.Name = "_2ByteMenuItem";
this._2ByteMenuItem.Size = new System.Drawing.Size(111, 22);
this._2ByteMenuItem.Text = "2 Bytes";
this._2ByteMenuItem.Click += new System.EventHandler(this._2ByteMenuItem_Click);
//
// _4ByteMenuItem
//
this._4ByteMenuItem.Name = "_4ByteMenuItem";
this._4ByteMenuItem.Size = new System.Drawing.Size(111, 22);
this._4ByteMenuItem.Text = "4 Bytes";
this._4ByteMenuItem.Click += new System.EventHandler(this._4ByteMenuItem_Click);
//
// BigEndianMenuItem
//
this.BigEndianMenuItem.Name = "BigEndianMenuItem";
this.BigEndianMenuItem.Size = new System.Drawing.Size(181, 22);
this.BigEndianMenuItem.Text = "Big Endian";
this.BigEndianMenuItem.Click += new System.EventHandler(this.BigEndianMenuItem_Click);
//
// toolStripSeparator4
//
this.toolStripSeparator4.Name = "toolStripSeparator4";
this.toolStripSeparator4.Size = new System.Drawing.Size(178, 6);
//
// TurboWhileBottingMenuItem
//
this.TurboWhileBottingMenuItem.Name = "TurboWhileBottingMenuItem";
this.TurboWhileBottingMenuItem.Size = new System.Drawing.Size(181, 22);
this.TurboWhileBottingMenuItem.Text = "Turbo While Botting";
this.TurboWhileBottingMenuItem.Click += new System.EventHandler(this.TurboWhileBottingMenuItem_Click);
//
@ -1069,15 +1019,11 @@ namespace BizHawk.Client.EmuHawk
//
// ClearStatsContextMenuItem
//
this.ClearStatsContextMenuItem.Name = "ClearStatsContextMenuItem";
this.ClearStatsContextMenuItem.Size = new System.Drawing.Size(101, 22);
this.ClearStatsContextMenuItem.Text = "&Clear";
this.ClearStatsContextMenuItem.Click += new System.EventHandler(this.ClearStatsContextMenuItem_Click);
//
// helpToolStripMenuItem
//
this.helpToolStripMenuItem.Name = "helpToolStripMenuItem";
this.helpToolStripMenuItem.Size = new System.Drawing.Size(44, 20);
this.helpToolStripMenuItem.Text = "Help";
this.helpToolStripMenuItem.Click += new System.EventHandler(this.HelpToolStripMenuItem_Click);
//
@ -1135,13 +1081,13 @@ namespace BizHawk.Client.EmuHawk
#endregion
private MenuStripEx BotMenu;
private System.Windows.Forms.ToolStripMenuItem FileSubMenu;
private System.Windows.Forms.ToolStripMenuItem ExitMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx FileSubMenu;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx ExitMenuItem;
private System.Windows.Forms.Button RunBtn;
private System.Windows.Forms.ToolStripMenuItem OpenMenuItem;
private System.Windows.Forms.ToolStripMenuItem SaveMenuItem;
private System.Windows.Forms.ToolStripMenuItem RecentSubMenu;
private System.Windows.Forms.ToolStripSeparator toolStripSeparator1;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx OpenMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx SaveMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx RecentSubMenu;
private BizHawk.WinForms.Controls.ToolStripSeparatorEx toolStripSeparator1;
private System.Windows.Forms.StatusStrip BotStatusStrip;
private System.Windows.Forms.GroupBox ControlsBox;
private System.Windows.Forms.Panel ControlProbabilityPanel;
@ -1150,7 +1096,7 @@ namespace BizHawk.Client.EmuHawk
private BizHawk.WinForms.Controls.LocLabelEx label2;
private BizHawk.WinForms.Controls.LocLabelEx AttemptsLabel;
private BizHawk.WinForms.Controls.LocLabelEx FramesLabel;
private System.Windows.Forms.ToolStripMenuItem OptionsSubMenu;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx OptionsSubMenu;
private System.Windows.Forms.GroupBox GoalGroupBox;
private BizHawk.WinForms.Controls.LocLabelEx label6;
private HexTextBox TieBreaker1Box;
@ -1177,25 +1123,25 @@ namespace BizHawk.Client.EmuHawk
private BizHawk.WinForms.Controls.LocLabelEx label17;
private BizHawk.WinForms.Controls.LocLabelEx BestAttemptLogLabel;
private System.Windows.Forms.Button ClearBestButton;
private System.Windows.Forms.ToolStripMenuItem SaveAsMenuItem;
private System.Windows.Forms.ToolStripSeparator toolStripSeparator2;
private System.Windows.Forms.ToolStripMenuItem NewMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx SaveAsMenuItem;
private BizHawk.WinForms.Controls.ToolStripSeparatorEx toolStripSeparator2;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx NewMenuItem;
private System.Windows.Forms.Button PlayBestButton;
private System.Windows.Forms.ToolStripStatusLabel MessageLabel;
private System.Windows.Forms.GroupBox ControlGroupBox;
private System.Windows.Forms.ToolStripMenuItem TurboWhileBottingMenuItem;
private System.Windows.Forms.ToolStripMenuItem MemoryDomainsMenuItem;
private System.Windows.Forms.ToolStripSeparator toolStripSeparator3;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx TurboWhileBottingMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx MemoryDomainsMenuItem;
private BizHawk.WinForms.Controls.ToolStripSeparatorEx toolStripSeparator3;
private System.Windows.Forms.Panel panel2;
private System.Windows.Forms.ContextMenuStrip StatsContextMenu;
private System.Windows.Forms.ToolStripMenuItem ClearStatsContextMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx ClearStatsContextMenuItem;
private System.Windows.Forms.ToolStripStatusLabel BotStatusButton;
private System.Windows.Forms.ToolStripMenuItem BigEndianMenuItem;
private System.Windows.Forms.ToolStripSeparator toolStripSeparator4;
private System.Windows.Forms.ToolStripMenuItem DataSizeMenuItem;
private System.Windows.Forms.ToolStripMenuItem _1ByteMenuItem;
private System.Windows.Forms.ToolStripMenuItem _2ByteMenuItem;
private System.Windows.Forms.ToolStripMenuItem _4ByteMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx BigEndianMenuItem;
private BizHawk.WinForms.Controls.ToolStripSeparatorEx toolStripSeparator4;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx DataSizeMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx _1ByteMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx _2ByteMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx _4ByteMenuItem;
private System.Windows.Forms.ComboBox Tiebreak2Operator;
private System.Windows.Forms.ComboBox Tiebreak1Operator;
private System.Windows.Forms.Panel panel6;
@ -1224,7 +1170,7 @@ namespace BizHawk.Client.EmuHawk
private BizHawk.WinForms.Controls.LocLabelEx maximizeLabeltext;
private System.Windows.Forms.Button btnCopyBestInput;
private System.Windows.Forms.ToolTip toolTip1;
private System.Windows.Forms.ToolStripMenuItem helpToolStripMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx helpToolStripMenuItem;
private System.Windows.Forms.CheckBox InvisibleEmulationCheckBox;
}
}

View File

@ -1,60 +1,60 @@
using BizHawk.WinForms.Controls;
namespace BizHawk.Client.EmuHawk
{
partial class CDL
{
/// <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 Windows Form 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()
{
namespace BizHawk.Client.EmuHawk
{
partial class CDL
{
/// <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 Windows Form 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.menuStrip1 = new MenuStripEx();
this.FileSubMenu = new System.Windows.Forms.ToolStripMenuItem();
this.NewMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.OpenMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.SaveMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.SaveAsMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.AppendMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.RecentSubMenu = new System.Windows.Forms.ToolStripMenuItem();
this.noneToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.miAutoStart = new System.Windows.Forms.ToolStripMenuItem();
this.miAutoSave = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
this.ClearMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.DisassembleMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
this.ExitMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.FileSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.NewMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.OpenMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.SaveMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.SaveAsMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.AppendMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.RecentSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.noneToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.miAutoStart = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.miAutoSave = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.toolStripSeparator2 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx();
this.ClearMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.DisassembleMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.toolStripSeparator1 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx();
this.ExitMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.toolStrip1 = new ToolStripEx();
this.tsbLoggingActive = new System.Windows.Forms.ToolStripButton();
this.toolStripSeparator3 = new System.Windows.Forms.ToolStripSeparator();
this.toolStripSeparator3 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx();
this.tsbViewUpdate = new System.Windows.Forms.ToolStripButton();
this.tsbViewStyle = new System.Windows.Forms.ToolStripComboBox();
this.toolStripSeparator4 = new System.Windows.Forms.ToolStripSeparator();
this.toolStripSeparator4 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx();
this.tsbExportText = new System.Windows.Forms.ToolStripButton();
this.lvCDL = new InputRoll();
this.miAutoResume = new System.Windows.Forms.ToolStripMenuItem();
this.miAutoResume = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.menuStrip1.SuspendLayout();
this.toolStrip1.SuspendLayout();
this.SuspendLayout();
@ -84,48 +84,36 @@ namespace BizHawk.Client.EmuHawk
this.DisassembleMenuItem,
this.toolStripSeparator1,
this.ExitMenuItem});
this.FileSubMenu.Name = "FileSubMenu";
this.FileSubMenu.Size = new System.Drawing.Size(35, 20);
this.FileSubMenu.Text = "&File";
this.FileSubMenu.DropDownOpened += new System.EventHandler(this.FileSubMenu_DropDownOpened);
//
// NewMenuItem
//
this.NewMenuItem.Name = "NewMenuItem";
this.NewMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.N)));
this.NewMenuItem.Size = new System.Drawing.Size(193, 22);
this.NewMenuItem.Text = "&New";
this.NewMenuItem.Click += new System.EventHandler(this.NewMenuItem_Click);
//
// OpenMenuItem
//
this.OpenMenuItem.Name = "OpenMenuItem";
this.OpenMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.O)));
this.OpenMenuItem.Size = new System.Drawing.Size(193, 22);
this.OpenMenuItem.Text = "&Open...";
this.OpenMenuItem.Click += new System.EventHandler(this.OpenMenuItem_Click);
//
// SaveMenuItem
//
this.SaveMenuItem.Name = "SaveMenuItem";
this.SaveMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.S)));
this.SaveMenuItem.Size = new System.Drawing.Size(193, 22);
this.SaveMenuItem.Text = "&Save";
this.SaveMenuItem.Click += new System.EventHandler(this.SaveMenuItem_Click);
//
// SaveAsMenuItem
//
this.SaveAsMenuItem.Name = "SaveAsMenuItem";
this.SaveAsMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)(((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.Shift)
| System.Windows.Forms.Keys.S)));
this.SaveAsMenuItem.Size = new System.Drawing.Size(193, 22);
this.SaveAsMenuItem.Text = "&Save As...";
this.SaveAsMenuItem.Click += new System.EventHandler(this.SaveAsMenuItem_Click);
//
// AppendMenuItem
//
this.AppendMenuItem.Name = "AppendMenuItem";
this.AppendMenuItem.Size = new System.Drawing.Size(193, 22);
this.AppendMenuItem.Text = "&Append File...";
this.AppendMenuItem.Click += new System.EventHandler(this.AppendMenuItem_Click);
//
@ -133,60 +121,36 @@ namespace BizHawk.Client.EmuHawk
//
this.RecentSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.noneToolStripMenuItem});
this.RecentSubMenu.Name = "RecentSubMenu";
this.RecentSubMenu.Size = new System.Drawing.Size(193, 22);
this.RecentSubMenu.Text = "Recent";
this.RecentSubMenu.DropDownOpened += new System.EventHandler(this.RecentSubMenu_DropDownOpened);
//
// noneToolStripMenuItem
//
this.noneToolStripMenuItem.Name = "noneToolStripMenuItem";
this.noneToolStripMenuItem.Size = new System.Drawing.Size(99, 22);
this.noneToolStripMenuItem.Text = "None";
//
// miAutoStart
//
this.miAutoStart.Name = "miAutoStart";
this.miAutoStart.Size = new System.Drawing.Size(193, 22);
this.miAutoStart.Text = "Auto-Start";
this.miAutoStart.Click += new System.EventHandler(this.miAutoStart_Click);
//
// miAutoSave
//
this.miAutoSave.Name = "miAutoSave";
this.miAutoSave.Size = new System.Drawing.Size(193, 22);
this.miAutoSave.Text = "Auto-Save";
this.miAutoSave.Click += new System.EventHandler(this.miAutoSave_Click);
//
// toolStripSeparator2
//
this.toolStripSeparator2.Name = "toolStripSeparator2";
this.toolStripSeparator2.Size = new System.Drawing.Size(190, 6);
//
// ClearMenuItem
//
this.ClearMenuItem.Name = "ClearMenuItem";
this.ClearMenuItem.Size = new System.Drawing.Size(193, 22);
this.ClearMenuItem.Text = "&Clear";
this.ClearMenuItem.Click += new System.EventHandler(this.ClearMenuItem_Click);
//
// DisassembleMenuItem
//
this.DisassembleMenuItem.Name = "DisassembleMenuItem";
this.DisassembleMenuItem.Size = new System.Drawing.Size(193, 22);
this.DisassembleMenuItem.Text = "&Disassemble...";
this.DisassembleMenuItem.Click += new System.EventHandler(this.DisassembleMenuItem_Click);
//
// toolStripSeparator1
//
this.toolStripSeparator1.Name = "toolStripSeparator1";
this.toolStripSeparator1.Size = new System.Drawing.Size(190, 6);
//
// ExitMenuItem
//
this.ExitMenuItem.Name = "ExitMenuItem";
this.ExitMenuItem.ShortcutKeyDisplayString = "Alt+F4";
this.ExitMenuItem.Size = new System.Drawing.Size(193, 22);
this.ExitMenuItem.Text = "&Close";
this.ExitMenuItem.Click += new System.EventHandler(this.ExitMenuItem_Click);
//
@ -213,11 +177,6 @@ namespace BizHawk.Client.EmuHawk
this.tsbLoggingActive.Text = "Active";
this.tsbLoggingActive.CheckedChanged += new System.EventHandler(this.tsbLoggingActive_CheckedChanged);
//
// toolStripSeparator3
//
this.toolStripSeparator3.Name = "toolStripSeparator3";
this.toolStripSeparator3.Size = new System.Drawing.Size(6, 25);
//
// tsbViewUpdate
//
this.tsbViewUpdate.Checked = true;
@ -240,11 +199,6 @@ namespace BizHawk.Client.EmuHawk
this.tsbViewStyle.Size = new System.Drawing.Size(121, 25);
this.tsbViewStyle.SelectedIndexChanged += new System.EventHandler(this.tsbViewStyle_SelectedIndexChanged);
//
// toolStripSeparator4
//
this.toolStripSeparator4.Name = "toolStripSeparator4";
this.toolStripSeparator4.Size = new System.Drawing.Size(6, 25);
//
// tsbExportText
//
this.tsbExportText.ImageTransparentColor = System.Drawing.Color.Magenta;
@ -270,8 +224,6 @@ namespace BizHawk.Client.EmuHawk
//
// miAutoResume
//
this.miAutoResume.Name = "miAutoResume";
this.miAutoResume.Size = new System.Drawing.Size(193, 22);
this.miAutoResume.Text = "Auto-Resume";
this.miAutoResume.Click += new System.EventHandler(this.miAutoResume_Click);
//
@ -299,34 +251,34 @@ namespace BizHawk.Client.EmuHawk
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private MenuStripEx menuStrip1;
private System.Windows.Forms.ToolStripMenuItem FileSubMenu;
private System.Windows.Forms.ToolStripMenuItem ClearMenuItem;
private System.Windows.Forms.ToolStripMenuItem OpenMenuItem;
private System.Windows.Forms.ToolStripMenuItem SaveAsMenuItem;
private System.Windows.Forms.ToolStripMenuItem AppendMenuItem;
private System.Windows.Forms.ToolStripMenuItem NewMenuItem;
private System.Windows.Forms.ToolStripMenuItem DisassembleMenuItem;
private System.Windows.Forms.ToolStripSeparator toolStripSeparator1;
private System.Windows.Forms.ToolStripMenuItem ExitMenuItem;
private System.Windows.Forms.ToolStripMenuItem SaveMenuItem;
private System.Windows.Forms.ToolStripMenuItem RecentSubMenu;
private System.Windows.Forms.ToolStripSeparator toolStripSeparator2;
private System.Windows.Forms.ToolStripMenuItem noneToolStripMenuItem;
private System.Windows.Forms.ToolStripButton tsbLoggingActive;
private System.Windows.Forms.ToolStripSeparator toolStripSeparator3;
private System.Windows.Forms.ToolStripButton tsbViewUpdate;
private System.Windows.Forms.ToolStripComboBox tsbViewStyle;
private InputRoll lvCDL;
private System.Windows.Forms.ToolStripSeparator toolStripSeparator4;
}
#endregion
private MenuStripEx menuStrip1;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx FileSubMenu;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx ClearMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx OpenMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx SaveAsMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx AppendMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx NewMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx DisassembleMenuItem;
private BizHawk.WinForms.Controls.ToolStripSeparatorEx toolStripSeparator1;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx ExitMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx SaveMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx RecentSubMenu;
private BizHawk.WinForms.Controls.ToolStripSeparatorEx toolStripSeparator2;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx noneToolStripMenuItem;
private System.Windows.Forms.ToolStripButton tsbLoggingActive;
private BizHawk.WinForms.Controls.ToolStripSeparatorEx toolStripSeparator3;
private System.Windows.Forms.ToolStripButton tsbViewUpdate;
private System.Windows.Forms.ToolStripComboBox tsbViewStyle;
private InputRoll lvCDL;
private BizHawk.WinForms.Controls.ToolStripSeparatorEx toolStripSeparator4;
private System.Windows.Forms.ToolStripButton tsbExportText;
private System.Windows.Forms.ToolStripMenuItem miAutoStart;
private System.Windows.Forms.ToolStripMenuItem miAutoSave;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx miAutoStart;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx miAutoSave;
private ToolStripEx toolStrip1;
private System.Windows.Forms.ToolStripMenuItem miAutoResume;
}
private BizHawk.WinForms.Controls.ToolStripMenuItemEx miAutoResume;
}
}

View File

@ -33,55 +33,55 @@ namespace BizHawk.Client.EmuHawk
this.components = new System.ComponentModel.Container();
this.CheatListView = new InputRoll();
this.CheatsContextMenu = new System.Windows.Forms.ContextMenuStrip(this.components);
this.ToggleContextMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.RemoveContextMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.DisableAllContextMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.ViewInHexEditorContextMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.ToggleContextMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.RemoveContextMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.DisableAllContextMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.ViewInHexEditorContextMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.CheatsMenu = new MenuStripEx();
this.FileSubMenu = new System.Windows.Forms.ToolStripMenuItem();
this.NewMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.OpenMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.SaveMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.SaveAsMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.AppendMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.RecentSubMenu = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripSeparator4 = new System.Windows.Forms.ToolStripSeparator();
this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
this.ExitMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.CheatsSubMenu = new System.Windows.Forms.ToolStripMenuItem();
this.RemoveCheatMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.InsertSeparatorMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripSeparator3 = new System.Windows.Forms.ToolStripSeparator();
this.MoveUpMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.MoveDownMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.SelectAllMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripSeparator6 = new System.Windows.Forms.ToolStripSeparator();
this.ToggleMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.DisableAllCheatsMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.GameGenieSeparator = new System.Windows.Forms.ToolStripSeparator();
this.OpenGameGenieEncoderDecoderMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.OptionsSubMenu = new System.Windows.Forms.ToolStripMenuItem();
this.AlwaysLoadCheatsMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.AutoSaveCheatsMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.DisableCheatsOnLoadMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripSeparator7 = new System.Windows.Forms.ToolStripSeparator();
this.AutoloadMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.SaveWindowPositionMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.AlwaysOnTopMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.FloatingWindowMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripSeparator5 = new System.Windows.Forms.ToolStripSeparator();
this.RestoreWindowSizeMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.FileSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.NewMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.OpenMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.SaveMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.SaveAsMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.AppendMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.RecentSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.toolStripSeparator4 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx();
this.toolStripSeparator1 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx();
this.ExitMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.CheatsSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.RemoveCheatMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.InsertSeparatorMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.toolStripSeparator3 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx();
this.MoveUpMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.MoveDownMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.SelectAllMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.toolStripSeparator6 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx();
this.ToggleMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.DisableAllCheatsMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.GameGenieSeparator = new BizHawk.WinForms.Controls.ToolStripSeparatorEx();
this.OpenGameGenieEncoderDecoderMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.OptionsSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.AlwaysLoadCheatsMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.AutoSaveCheatsMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.DisableCheatsOnLoadMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.toolStripSeparator7 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx();
this.AutoloadMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.SaveWindowPositionMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.AlwaysOnTopMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.FloatingWindowMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.toolStripSeparator5 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx();
this.RestoreWindowSizeMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.toolStrip1 = new ToolStripEx();
this.NewToolBarItem = new System.Windows.Forms.ToolStripButton();
this.OpenToolBarItem = new System.Windows.Forms.ToolStripButton();
this.SaveToolBarItem = new System.Windows.Forms.ToolStripButton();
this.toolStripSeparator = new System.Windows.Forms.ToolStripSeparator();
this.toolStripSeparator = new BizHawk.WinForms.Controls.ToolStripSeparatorEx();
this.RemoveToolbarItem = new System.Windows.Forms.ToolStripButton();
this.SeparatorToolbarItem = new System.Windows.Forms.ToolStripButton();
this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
this.toolStripSeparator2 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx();
this.MoveUpToolbarItem = new System.Windows.Forms.ToolStripButton();
this.MoveDownToolbarItem = new System.Windows.Forms.ToolStripButton();
this.GameGenieToolbarSeparator = new System.Windows.Forms.ToolStripSeparator();
this.GameGenieToolbarSeparator = new BizHawk.WinForms.Controls.ToolStripSeparatorEx();
this.LoadGameGenieToolbarItem = new System.Windows.Forms.ToolStripButton();
this.TotalLabel = new BizHawk.WinForms.Controls.LocLabelEx();
this.MessageLabel = new BizHawk.WinForms.Controls.LocLabelEx();
@ -131,31 +131,23 @@ namespace BizHawk.Client.EmuHawk
//
// ToggleContextMenuItem
//
this.ToggleContextMenuItem.Name = "ToggleContextMenuItem";
this.ToggleContextMenuItem.ShortcutKeyDisplayString = "Enter";
this.ToggleContextMenuItem.Size = new System.Drawing.Size(169, 22);
this.ToggleContextMenuItem.Text = "&Toggle";
this.ToggleContextMenuItem.Click += new System.EventHandler(this.ToggleMenuItem_Click);
//
// RemoveContextMenuItem
//
this.RemoveContextMenuItem.Name = "RemoveContextMenuItem";
this.RemoveContextMenuItem.ShortcutKeyDisplayString = "Delete";
this.RemoveContextMenuItem.Size = new System.Drawing.Size(169, 22);
this.RemoveContextMenuItem.Text = "&Remove";
this.RemoveContextMenuItem.Click += new System.EventHandler(this.RemoveCheatMenuItem_Click);
//
// DisableAllContextMenuItem
//
this.DisableAllContextMenuItem.Name = "DisableAllContextMenuItem";
this.DisableAllContextMenuItem.Size = new System.Drawing.Size(169, 22);
this.DisableAllContextMenuItem.Text = "&Disable All";
this.DisableAllContextMenuItem.Click += new System.EventHandler(this.DisableAllCheatsMenuItem_Click);
//
// ViewInHexEditorContextMenuItem
//
this.ViewInHexEditorContextMenuItem.Name = "ViewInHexEditorContextMenuItem";
this.ViewInHexEditorContextMenuItem.Size = new System.Drawing.Size(169, 22);
this.ViewInHexEditorContextMenuItem.Text = "View in Hex Editor";
this.ViewInHexEditorContextMenuItem.Click += new System.EventHandler(this.ViewInHexEditorContextMenuItem_Click);
//
@ -180,74 +172,48 @@ namespace BizHawk.Client.EmuHawk
this.RecentSubMenu,
this.toolStripSeparator1,
this.ExitMenuItem});
this.FileSubMenu.Name = "FileSubMenu";
this.FileSubMenu.Size = new System.Drawing.Size(37, 20);
this.FileSubMenu.Text = "&File";
this.FileSubMenu.DropDownOpened += new System.EventHandler(this.FileSubMenu_DropDownOpened);
//
// NewMenuItem
//
this.NewMenuItem.Name = "NewMenuItem";
this.NewMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.N)));
this.NewMenuItem.Size = new System.Drawing.Size(195, 22);
this.NewMenuItem.Text = "&New";
this.NewMenuItem.Click += new System.EventHandler(this.NewMenuItem_Click);
//
// OpenMenuItem
//
this.OpenMenuItem.Name = "OpenMenuItem";
this.OpenMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.O)));
this.OpenMenuItem.Size = new System.Drawing.Size(195, 22);
this.OpenMenuItem.Text = "&Open...";
this.OpenMenuItem.Click += new System.EventHandler(this.OpenMenuItem_Click);
//
// SaveMenuItem
//
this.SaveMenuItem.Name = "SaveMenuItem";
this.SaveMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.S)));
this.SaveMenuItem.Size = new System.Drawing.Size(195, 22);
this.SaveMenuItem.Text = "&Save";
this.SaveMenuItem.Click += new System.EventHandler(this.SaveMenuItem_Click);
//
// SaveAsMenuItem
//
this.SaveAsMenuItem.Name = "SaveAsMenuItem";
this.SaveAsMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)(((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.Shift)
| System.Windows.Forms.Keys.S)));
this.SaveAsMenuItem.Size = new System.Drawing.Size(195, 22);
this.SaveAsMenuItem.Text = "Save &As...";
this.SaveAsMenuItem.Click += new System.EventHandler(this.SaveAsMenuItem_Click);
//
// AppendMenuItem
//
this.AppendMenuItem.Name = "AppendMenuItem";
this.AppendMenuItem.Size = new System.Drawing.Size(195, 22);
this.AppendMenuItem.Text = "Append File";
//
// RecentSubMenu
//
this.RecentSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.toolStripSeparator4});
this.RecentSubMenu.Name = "RecentSubMenu";
this.RecentSubMenu.Size = new System.Drawing.Size(195, 22);
this.RecentSubMenu.Text = "Recent";
this.RecentSubMenu.DropDownOpened += new System.EventHandler(this.RecentSubMenu_DropDownOpened);
//
// toolStripSeparator4
//
this.toolStripSeparator4.Name = "toolStripSeparator4";
this.toolStripSeparator4.Size = new System.Drawing.Size(57, 6);
//
// toolStripSeparator1
//
this.toolStripSeparator1.Name = "toolStripSeparator1";
this.toolStripSeparator1.Size = new System.Drawing.Size(192, 6);
//
// ExitMenuItem
//
this.ExitMenuItem.Name = "ExitMenuItem";
this.ExitMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Alt | System.Windows.Forms.Keys.F4)));
this.ExitMenuItem.Size = new System.Drawing.Size(195, 22);
this.ExitMenuItem.Text = "E&xit";
this.ExitMenuItem.Click += new System.EventHandler(this.ExitMenuItem_Click);
//
@ -265,88 +231,55 @@ namespace BizHawk.Client.EmuHawk
this.DisableAllCheatsMenuItem,
this.GameGenieSeparator,
this.OpenGameGenieEncoderDecoderMenuItem});
this.CheatsSubMenu.Name = "CheatsSubMenu";
this.CheatsSubMenu.Size = new System.Drawing.Size(55, 20);
this.CheatsSubMenu.Text = "&Cheats";
this.CheatsSubMenu.DropDownOpened += new System.EventHandler(this.CheatsSubMenu_DropDownOpened);
//
// RemoveCheatMenuItem
//
this.RemoveCheatMenuItem.Name = "RemoveCheatMenuItem";
this.RemoveCheatMenuItem.ShortcutKeyDisplayString = "Delete";
this.RemoveCheatMenuItem.Size = new System.Drawing.Size(233, 22);
this.RemoveCheatMenuItem.Text = "&Remove Cheat";
this.RemoveCheatMenuItem.Click += new System.EventHandler(this.RemoveCheatMenuItem_Click);
//
// InsertSeparatorMenuItem
//
this.InsertSeparatorMenuItem.Name = "InsertSeparatorMenuItem";
this.InsertSeparatorMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.I)));
this.InsertSeparatorMenuItem.Size = new System.Drawing.Size(233, 22);
this.InsertSeparatorMenuItem.Text = "Insert Separator";
this.InsertSeparatorMenuItem.Click += new System.EventHandler(this.InsertSeparatorMenuItem_Click);
//
// toolStripSeparator3
//
this.toolStripSeparator3.Name = "toolStripSeparator3";
this.toolStripSeparator3.Size = new System.Drawing.Size(230, 6);
//
// MoveUpMenuItem
//
this.MoveUpMenuItem.Name = "MoveUpMenuItem";
this.MoveUpMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.U)));
this.MoveUpMenuItem.Size = new System.Drawing.Size(233, 22);
this.MoveUpMenuItem.Text = "Move &Up";
this.MoveUpMenuItem.Click += new System.EventHandler(this.MoveUpMenuItem_Click);
//
// MoveDownMenuItem
//
this.MoveDownMenuItem.Name = "MoveDownMenuItem";
this.MoveDownMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.D)));
this.MoveDownMenuItem.Size = new System.Drawing.Size(233, 22);
this.MoveDownMenuItem.Text = "Move &Down";
this.MoveDownMenuItem.Click += new System.EventHandler(this.MoveDownMenuItem_Click);
//
// SelectAllMenuItem
//
this.SelectAllMenuItem.Name = "SelectAllMenuItem";
this.SelectAllMenuItem.ShortcutKeyDisplayString = "Ctrl+A";
this.SelectAllMenuItem.Size = new System.Drawing.Size(233, 22);
this.SelectAllMenuItem.Text = "Select &All";
this.SelectAllMenuItem.Click += new System.EventHandler(this.SelectAllMenuItem_Click);
//
// toolStripSeparator6
//
this.toolStripSeparator6.Name = "toolStripSeparator6";
this.toolStripSeparator6.Size = new System.Drawing.Size(230, 6);
//
// ToggleMenuItem
//
this.ToggleMenuItem.Name = "ToggleMenuItem";
this.ToggleMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.Enter)));
this.ToggleMenuItem.ShortcutKeyDisplayString = "Ctrl + Enter";
this.ToggleMenuItem.Size = new System.Drawing.Size(233, 22);
this.ToggleMenuItem.Text = "&Toggle";
this.ToggleMenuItem.Click += new System.EventHandler(this.ToggleMenuItem_Click);
//
// DisableAllCheatsMenuItem
//
this.DisableAllCheatsMenuItem.Name = "DisableAllCheatsMenuItem";
this.DisableAllCheatsMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.Back)));
this.DisableAllCheatsMenuItem.ShortcutKeyDisplayString = "Ctrl + Backspace";
this.DisableAllCheatsMenuItem.Size = new System.Drawing.Size(233, 22);
this.DisableAllCheatsMenuItem.Text = "Disable all";
this.DisableAllCheatsMenuItem.Click += new System.EventHandler(this.DisableAllCheatsMenuItem_Click);
//
// GameGenieSeparator
//
this.GameGenieSeparator.Name = "GameGenieSeparator";
this.GameGenieSeparator.Size = new System.Drawing.Size(230, 6);
//
// OpenGameGenieEncoderDecoderMenuItem
//
this.OpenGameGenieEncoderDecoderMenuItem.Name = "OpenGameGenieEncoderDecoderMenuItem";
this.OpenGameGenieEncoderDecoderMenuItem.Size = new System.Drawing.Size(233, 22);
this.OpenGameGenieEncoderDecoderMenuItem.Text = "Code Converter";
this.OpenGameGenieEncoderDecoderMenuItem.Click += new System.EventHandler(this.OpenGameGenieEncoderDecoderMenuItem_Click);
//
@ -363,74 +296,46 @@ namespace BizHawk.Client.EmuHawk
this.FloatingWindowMenuItem,
this.toolStripSeparator5,
this.RestoreWindowSizeMenuItem});
this.OptionsSubMenu.Name = "OptionsSubMenu";
this.OptionsSubMenu.Size = new System.Drawing.Size(61, 20);
this.OptionsSubMenu.Text = "&Options";
this.OptionsSubMenu.DropDownOpened += new System.EventHandler(this.OptionsSubMenu_DropDownOpened);
//
// AlwaysLoadCheatsMenuItem
//
this.AlwaysLoadCheatsMenuItem.Name = "AlwaysLoadCheatsMenuItem";
this.AlwaysLoadCheatsMenuItem.Size = new System.Drawing.Size(199, 22);
this.AlwaysLoadCheatsMenuItem.Text = "Always load cheats";
this.AlwaysLoadCheatsMenuItem.Click += new System.EventHandler(this.AlwaysLoadCheatsMenuItem_Click);
//
// AutoSaveCheatsMenuItem
//
this.AutoSaveCheatsMenuItem.Name = "AutoSaveCheatsMenuItem";
this.AutoSaveCheatsMenuItem.Size = new System.Drawing.Size(199, 22);
this.AutoSaveCheatsMenuItem.Text = "Autosave cheats";
this.AutoSaveCheatsMenuItem.Click += new System.EventHandler(this.AutoSaveCheatsMenuItem_Click);
//
// DisableCheatsOnLoadMenuItem
//
this.DisableCheatsOnLoadMenuItem.Name = "DisableCheatsOnLoadMenuItem";
this.DisableCheatsOnLoadMenuItem.Size = new System.Drawing.Size(199, 22);
this.DisableCheatsOnLoadMenuItem.Text = "Disable Cheats on Load";
this.DisableCheatsOnLoadMenuItem.Click += new System.EventHandler(this.CheatsOnOffLoadMenuItem_Click);
//
// toolStripSeparator7
//
this.toolStripSeparator7.Name = "toolStripSeparator7";
this.toolStripSeparator7.Size = new System.Drawing.Size(196, 6);
//
// AutoloadMenuItem
//
this.AutoloadMenuItem.Name = "AutoloadMenuItem";
this.AutoloadMenuItem.Size = new System.Drawing.Size(199, 22);
this.AutoloadMenuItem.Text = "Autoload";
this.AutoloadMenuItem.Click += new System.EventHandler(this.AutoloadMenuItem_Click);
//
// SaveWindowPositionMenuItem
//
this.SaveWindowPositionMenuItem.Name = "SaveWindowPositionMenuItem";
this.SaveWindowPositionMenuItem.Size = new System.Drawing.Size(199, 22);
this.SaveWindowPositionMenuItem.Text = "Save Window Position";
this.SaveWindowPositionMenuItem.Click += new System.EventHandler(this.SaveWindowPositionMenuItem_Click);
//
// AlwaysOnTopMenuItem
//
this.AlwaysOnTopMenuItem.Name = "AlwaysOnTopMenuItem";
this.AlwaysOnTopMenuItem.Size = new System.Drawing.Size(199, 22);
this.AlwaysOnTopMenuItem.Text = "Always on &Top";
this.AlwaysOnTopMenuItem.Click += new System.EventHandler(this.AlwaysOnTopMenuItem_Click);
//
// FloatingWindowMenuItem
//
this.FloatingWindowMenuItem.Name = "FloatingWindowMenuItem";
this.FloatingWindowMenuItem.Size = new System.Drawing.Size(199, 22);
this.FloatingWindowMenuItem.Text = "Floating Window";
this.FloatingWindowMenuItem.Click += new System.EventHandler(this.FloatingWindowMenuItem_Click);
//
// toolStripSeparator5
//
this.toolStripSeparator5.Name = "toolStripSeparator5";
this.toolStripSeparator5.Size = new System.Drawing.Size(196, 6);
//
// RestoreWindowSizeMenuItem
//
this.RestoreWindowSizeMenuItem.Name = "RestoreWindowSizeMenuItem";
this.RestoreWindowSizeMenuItem.Size = new System.Drawing.Size(199, 22);
this.RestoreWindowSizeMenuItem.Text = "Restore Default Settings";
this.RestoreWindowSizeMenuItem.Click += new System.EventHandler(this.RestoreDefaultsMenuItem_Click);
//
@ -479,11 +384,6 @@ namespace BizHawk.Client.EmuHawk
this.SaveToolBarItem.Text = "&Save";
this.SaveToolBarItem.Click += new System.EventHandler(this.SaveMenuItem_Click);
//
// toolStripSeparator
//
this.toolStripSeparator.Name = "toolStripSeparator";
this.toolStripSeparator.Size = new System.Drawing.Size(6, 25);
//
// RemoveToolbarItem
//
this.RemoveToolbarItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
@ -502,11 +402,6 @@ namespace BizHawk.Client.EmuHawk
this.SeparatorToolbarItem.Text = "Insert Separator";
this.SeparatorToolbarItem.Click += new System.EventHandler(this.InsertSeparatorMenuItem_Click);
//
// toolStripSeparator2
//
this.toolStripSeparator2.Name = "toolStripSeparator2";
this.toolStripSeparator2.Size = new System.Drawing.Size(6, 25);
//
// MoveUpToolbarItem
//
this.MoveUpToolbarItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
@ -525,11 +420,6 @@ namespace BizHawk.Client.EmuHawk
this.MoveDownToolbarItem.Text = "Move Down";
this.MoveDownToolbarItem.Click += new System.EventHandler(this.MoveDownMenuItem_Click);
//
// GameGenieToolbarSeparator
//
this.GameGenieToolbarSeparator.Name = "GameGenieToolbarSeparator";
this.GameGenieToolbarSeparator.Size = new System.Drawing.Size(6, 25);
//
// LoadGameGenieToolbarItem
//
this.LoadGameGenieToolbarItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
@ -608,59 +498,59 @@ namespace BizHawk.Client.EmuHawk
private InputRoll CheatListView;
private MenuStripEx CheatsMenu;
private System.Windows.Forms.ToolStripMenuItem FileSubMenu;
private System.Windows.Forms.ToolStripMenuItem NewMenuItem;
private System.Windows.Forms.ToolStripMenuItem OpenMenuItem;
private System.Windows.Forms.ToolStripMenuItem SaveMenuItem;
private System.Windows.Forms.ToolStripMenuItem SaveAsMenuItem;
private System.Windows.Forms.ToolStripMenuItem AppendMenuItem;
private System.Windows.Forms.ToolStripMenuItem RecentSubMenu;
private System.Windows.Forms.ToolStripSeparator toolStripSeparator4;
private System.Windows.Forms.ToolStripSeparator toolStripSeparator1;
private System.Windows.Forms.ToolStripMenuItem ExitMenuItem;
private System.Windows.Forms.ToolStripMenuItem CheatsSubMenu;
private System.Windows.Forms.ToolStripMenuItem RemoveCheatMenuItem;
private System.Windows.Forms.ToolStripMenuItem InsertSeparatorMenuItem;
private System.Windows.Forms.ToolStripSeparator toolStripSeparator3;
private System.Windows.Forms.ToolStripMenuItem MoveUpMenuItem;
private System.Windows.Forms.ToolStripMenuItem MoveDownMenuItem;
private System.Windows.Forms.ToolStripMenuItem SelectAllMenuItem;
private System.Windows.Forms.ToolStripSeparator toolStripSeparator6;
private System.Windows.Forms.ToolStripMenuItem DisableAllCheatsMenuItem;
private System.Windows.Forms.ToolStripSeparator GameGenieSeparator;
private System.Windows.Forms.ToolStripMenuItem OpenGameGenieEncoderDecoderMenuItem;
private System.Windows.Forms.ToolStripMenuItem OptionsSubMenu;
private System.Windows.Forms.ToolStripMenuItem AlwaysLoadCheatsMenuItem;
private System.Windows.Forms.ToolStripMenuItem AutoSaveCheatsMenuItem;
private System.Windows.Forms.ToolStripMenuItem DisableCheatsOnLoadMenuItem;
private System.Windows.Forms.ToolStripMenuItem AutoloadMenuItem;
private System.Windows.Forms.ToolStripMenuItem SaveWindowPositionMenuItem;
private System.Windows.Forms.ToolStripSeparator toolStripSeparator5;
private System.Windows.Forms.ToolStripMenuItem RestoreWindowSizeMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx FileSubMenu;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx NewMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx OpenMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx SaveMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx SaveAsMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx AppendMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx RecentSubMenu;
private BizHawk.WinForms.Controls.ToolStripSeparatorEx toolStripSeparator4;
private BizHawk.WinForms.Controls.ToolStripSeparatorEx toolStripSeparator1;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx ExitMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx CheatsSubMenu;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx RemoveCheatMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx InsertSeparatorMenuItem;
private BizHawk.WinForms.Controls.ToolStripSeparatorEx toolStripSeparator3;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx MoveUpMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx MoveDownMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx SelectAllMenuItem;
private BizHawk.WinForms.Controls.ToolStripSeparatorEx toolStripSeparator6;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx DisableAllCheatsMenuItem;
private BizHawk.WinForms.Controls.ToolStripSeparatorEx GameGenieSeparator;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx OpenGameGenieEncoderDecoderMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx OptionsSubMenu;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx AlwaysLoadCheatsMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx AutoSaveCheatsMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx DisableCheatsOnLoadMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx AutoloadMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx SaveWindowPositionMenuItem;
private BizHawk.WinForms.Controls.ToolStripSeparatorEx toolStripSeparator5;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx RestoreWindowSizeMenuItem;
private ToolStripEx toolStrip1;
private System.Windows.Forms.ToolStripButton NewToolBarItem;
private System.Windows.Forms.ToolStripButton OpenToolBarItem;
private System.Windows.Forms.ToolStripButton SaveToolBarItem;
private System.Windows.Forms.ToolStripSeparator toolStripSeparator;
private BizHawk.WinForms.Controls.ToolStripSeparatorEx toolStripSeparator;
private System.Windows.Forms.ToolStripButton RemoveToolbarItem;
private System.Windows.Forms.ToolStripButton SeparatorToolbarItem;
private System.Windows.Forms.ToolStripSeparator toolStripSeparator2;
private BizHawk.WinForms.Controls.ToolStripSeparatorEx toolStripSeparator2;
private System.Windows.Forms.ToolStripButton MoveUpToolbarItem;
private System.Windows.Forms.ToolStripButton MoveDownToolbarItem;
private System.Windows.Forms.ToolStripButton LoadGameGenieToolbarItem;
private BizHawk.WinForms.Controls.LocLabelEx TotalLabel;
private BizHawk.WinForms.Controls.LocLabelEx MessageLabel;
private System.Windows.Forms.ToolStripMenuItem AlwaysOnTopMenuItem;
private System.Windows.Forms.ToolStripMenuItem ToggleMenuItem;
private System.Windows.Forms.ToolStripSeparator GameGenieToolbarSeparator;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx AlwaysOnTopMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx ToggleMenuItem;
private BizHawk.WinForms.Controls.ToolStripSeparatorEx GameGenieToolbarSeparator;
private System.Windows.Forms.ContextMenuStrip CheatsContextMenu;
private System.Windows.Forms.ToolStripMenuItem ToggleContextMenuItem;
private System.Windows.Forms.ToolStripMenuItem RemoveContextMenuItem;
private System.Windows.Forms.ToolStripMenuItem DisableAllContextMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx ToggleContextMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx RemoveContextMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx DisableAllContextMenuItem;
private System.Windows.Forms.GroupBox CheatGroupBox;
private CheatEdit CheatEditor;
private System.Windows.Forms.ToolStripSeparator toolStripSeparator7;
private System.Windows.Forms.ToolStripMenuItem ViewInHexEditorContextMenuItem;
private System.Windows.Forms.ToolStripMenuItem FloatingWindowMenuItem;
private BizHawk.WinForms.Controls.ToolStripSeparatorEx toolStripSeparator7;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx ViewInHexEditorContextMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx FloatingWindowMenuItem;
}
}

View File

@ -32,14 +32,14 @@ namespace BizHawk.Client.EmuHawk
{
this.components = new System.ComponentModel.Container();
this.menuStrip1 = new MenuStripEx();
this.fileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.ExitMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.DebugSubMenu = new System.Windows.Forms.ToolStripMenuItem();
this.StepIntoMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.StepOverMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.StepOutMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
this.RefreshMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.fileToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.ExitMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.DebugSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.StepIntoMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.StepOverMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.StepOutMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.toolStripSeparator1 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx();
this.RefreshMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.RegistersGroupBox = new System.Windows.Forms.GroupBox();
this.RegisterPanel = new BizHawk.Client.EmuHawk.RegisterBoxControl();
this.BreakpointsGroupBox = new System.Windows.Forms.GroupBox();
@ -49,7 +49,7 @@ namespace BizHawk.Client.EmuHawk
this.label1 = new BizHawk.WinForms.Controls.LocLabelEx();
this.DisassemblerView = new InputRoll();
this.DisassemblerContextMenu = new System.Windows.Forms.ContextMenuStrip(this.components);
this.AddBreakpointContextMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.AddBreakpointContextMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.StepOutBtn = new System.Windows.Forms.Button();
this.StepIntoBtn = new System.Windows.Forms.Button();
this.StepOverBtn = new System.Windows.Forms.Button();
@ -78,15 +78,11 @@ namespace BizHawk.Client.EmuHawk
//
this.fileToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.ExitMenuItem});
this.fileToolStripMenuItem.Name = "fileToolStripMenuItem";
this.fileToolStripMenuItem.Size = new System.Drawing.Size(35, 20);
this.fileToolStripMenuItem.Text = "&File";
//
// ExitMenuItem
//
this.ExitMenuItem.Name = "ExitMenuItem";
this.ExitMenuItem.ShortcutKeyDisplayString = "Alt+F4";
this.ExitMenuItem.Size = new System.Drawing.Size(151, 22);
this.ExitMenuItem.Text = "&Close";
this.ExitMenuItem.Click += new System.EventHandler(this.ExitMenuItem_Click);
//
@ -98,47 +94,32 @@ namespace BizHawk.Client.EmuHawk
this.StepOutMenuItem,
this.toolStripSeparator1,
this.RefreshMenuItem});
this.DebugSubMenu.Name = "DebugSubMenu";
this.DebugSubMenu.Size = new System.Drawing.Size(50, 20);
this.DebugSubMenu.Text = "&Debug";
//
// StepIntoMenuItem
//
this.StepIntoMenuItem.Enabled = false;
this.StepIntoMenuItem.Name = "StepIntoMenuItem";
this.StepIntoMenuItem.ShortcutKeyDisplayString = "F11";
this.StepIntoMenuItem.Size = new System.Drawing.Size(183, 22);
this.StepIntoMenuItem.Text = "Step &Into";
this.StepIntoMenuItem.Click += new System.EventHandler(this.StepIntoMenuItem_Click);
//
// StepOverMenuItem
//
this.StepOverMenuItem.Enabled = false;
this.StepOverMenuItem.Name = "StepOverMenuItem";
this.StepOverMenuItem.ShortcutKeyDisplayString = "F10";
this.StepOverMenuItem.Size = new System.Drawing.Size(183, 22);
this.StepOverMenuItem.Text = "Step O&ver";
this.StepOverMenuItem.Click += new System.EventHandler(this.StepOverMenuItem_Click);
//
// StepOutMenuItem
//
this.StepOutMenuItem.Enabled = false;
this.StepOutMenuItem.Name = "StepOutMenuItem";
this.StepOutMenuItem.ShortcutKeyDisplayString = "Shift+F11";
this.StepOutMenuItem.Size = new System.Drawing.Size(183, 22);
this.StepOutMenuItem.Text = "Step Ou&t";
this.StepOutMenuItem.Click += new System.EventHandler(this.StepOutMenuItem_Click);
//
// toolStripSeparator1
//
this.toolStripSeparator1.Name = "toolStripSeparator1";
this.toolStripSeparator1.Size = new System.Drawing.Size(180, 6);
//
// RefreshMenuItem
//
this.RefreshMenuItem.Name = "RefreshMenuItem";
this.RefreshMenuItem.ShortcutKeys = System.Windows.Forms.Keys.F5;
this.RefreshMenuItem.Size = new System.Drawing.Size(183, 22);
this.RefreshMenuItem.Text = "Refresh";
this.RefreshMenuItem.Click += new System.EventHandler(this.RefreshMenuItem_Click);
//
@ -258,8 +239,6 @@ namespace BizHawk.Client.EmuHawk
//
// AddBreakpointContextMenuItem
//
this.AddBreakpointContextMenuItem.Name = "AddBreakpointContextMenuItem";
this.AddBreakpointContextMenuItem.Size = new System.Drawing.Size(147, 22);
this.AddBreakpointContextMenuItem.Text = "Add Breakpoint";
this.AddBreakpointContextMenuItem.Click += new System.EventHandler(this.AddBreakpointContextMenuItem_Click);
//
@ -378,8 +357,8 @@ namespace BizHawk.Client.EmuHawk
#endregion
private MenuStripEx menuStrip1;
private System.Windows.Forms.ToolStripMenuItem fileToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem ExitMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx fileToolStripMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx ExitMenuItem;
private System.Windows.Forms.GroupBox RegistersGroupBox;
private RegisterBoxControl RegisterPanel;
private System.Windows.Forms.GroupBox BreakpointsGroupBox;
@ -390,19 +369,19 @@ namespace BizHawk.Client.EmuHawk
private System.Windows.Forms.Button StepOutBtn;
private System.Windows.Forms.Button StepIntoBtn;
private System.Windows.Forms.Button StepOverBtn;
private System.Windows.Forms.ToolStripMenuItem DebugSubMenu;
private System.Windows.Forms.ToolStripMenuItem StepIntoMenuItem;
private System.Windows.Forms.ToolStripMenuItem StepOverMenuItem;
private System.Windows.Forms.ToolStripMenuItem StepOutMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx DebugSubMenu;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx StepIntoMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx StepOverMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx StepOutMenuItem;
private System.Windows.Forms.ToolTip toolTip1;
private System.Windows.Forms.Button SeekToBtn;
private HexTextBox SeekToBox;
private System.Windows.Forms.Button CancelSeekBtn;
private System.Windows.Forms.Button ToPCBtn;
private System.Windows.Forms.ToolStripSeparator toolStripSeparator1;
private System.Windows.Forms.ToolStripMenuItem RefreshMenuItem;
private BizHawk.WinForms.Controls.ToolStripSeparatorEx toolStripSeparator1;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx RefreshMenuItem;
private System.Windows.Forms.ContextMenuStrip DisassemblerContextMenu;
private System.Windows.Forms.ToolStripMenuItem AddBreakpointContextMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx AddBreakpointContextMenuItem;
private System.Windows.Forms.Button RunBtn;
}
}

View File

@ -32,10 +32,10 @@
this.label1 = new BizHawk.WinForms.Controls.LocLabelEx();
this.paperScroll = new System.Windows.Forms.VScrollBar();
this.menuStrip1 = new System.Windows.Forms.MenuStrip();
this.fileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.saveImageToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.editToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.copyToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.fileToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.saveImageToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.editToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.copyToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.menuStrip1.SuspendLayout();
this.SuspendLayout();
//
@ -54,15 +54,11 @@
//
this.fileToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.saveImageToolStripMenuItem});
this.fileToolStripMenuItem.Name = "fileToolStripMenuItem";
this.fileToolStripMenuItem.Size = new System.Drawing.Size(37, 20);
this.fileToolStripMenuItem.Text = "&File";
//
// saveImageToolStripMenuItem
//
this.saveImageToolStripMenuItem.Name = "saveImageToolStripMenuItem";
this.saveImageToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.S)));
this.saveImageToolStripMenuItem.Size = new System.Drawing.Size(183, 22);
this.saveImageToolStripMenuItem.Text = "&Save Image...";
this.saveImageToolStripMenuItem.Click += new System.EventHandler(this.saveImageToolStripMenuItem_Click);
//
@ -70,15 +66,11 @@
//
this.editToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.copyToolStripMenuItem});
this.editToolStripMenuItem.Name = "editToolStripMenuItem";
this.editToolStripMenuItem.Size = new System.Drawing.Size(39, 20);
this.editToolStripMenuItem.Text = "&Edit";
//
// copyToolStripMenuItem
//
this.copyToolStripMenuItem.Name = "copyToolStripMenuItem";
this.copyToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.C)));
this.copyToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
this.copyToolStripMenuItem.Text = "&Copy";
this.copyToolStripMenuItem.Click += new System.EventHandler(this.copyToolStripMenuItem_Click);
//
@ -134,10 +126,10 @@
#endregion
private System.Windows.Forms.MenuStrip menuStrip1;
private System.Windows.Forms.ToolStripMenuItem fileToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem saveImageToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem editToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem copyToolStripMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx fileToolStripMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx saveImageToolStripMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx editToolStripMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx copyToolStripMenuItem;
private BmpView paperView;
private BizHawk.WinForms.Controls.LocLabelEx label1;
private System.Windows.Forms.VScrollBar paperScroll;

View File

@ -42,14 +42,14 @@ namespace BizHawk.Client.EmuHawk
this.bmpViewNTB = new BizHawk.Client.EmuHawk.BmpView();
this.label1 = new BizHawk.WinForms.Controls.LocLabelEx();
this.menuStrip1 = new MenuStripEx();
this.fileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.saveBGAScreenshotToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.saveBGBScreenshotToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.saveTilesScreenshotToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.saveWindowScreenshotToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.savePaletteScreenshotToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
this.closeToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.fileToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.saveBGAScreenshotToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.saveBGBScreenshotToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.saveTilesScreenshotToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.saveWindowScreenshotToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.savePaletteScreenshotToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.toolStripSeparator1 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx();
this.closeToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.groupBox1.SuspendLayout();
this.groupBox2.SuspendLayout();
this.groupBox3.SuspendLayout();
@ -173,55 +173,36 @@ namespace BizHawk.Client.EmuHawk
this.savePaletteScreenshotToolStripMenuItem,
this.toolStripSeparator1,
this.closeToolStripMenuItem});
this.fileToolStripMenuItem.Name = "fileToolStripMenuItem";
this.fileToolStripMenuItem.Size = new System.Drawing.Size(35, 20);
this.fileToolStripMenuItem.Text = "&File";
//
// saveBGAScreenshotToolStripMenuItem
//
this.saveBGAScreenshotToolStripMenuItem.Name = "saveBGAScreenshotToolStripMenuItem";
this.saveBGAScreenshotToolStripMenuItem.Size = new System.Drawing.Size(208, 22);
this.saveBGAScreenshotToolStripMenuItem.Text = "Save BG A Screenshot...";
this.saveBGAScreenshotToolStripMenuItem.Click += new System.EventHandler(this.SaveBGAScreenshotToolStripMenuItem_Click);
//
// saveBGBScreenshotToolStripMenuItem
//
this.saveBGBScreenshotToolStripMenuItem.Name = "saveBGBScreenshotToolStripMenuItem";
this.saveBGBScreenshotToolStripMenuItem.Size = new System.Drawing.Size(208, 22);
this.saveBGBScreenshotToolStripMenuItem.Text = "Save BG B Screenshot...";
this.saveBGBScreenshotToolStripMenuItem.Click += new System.EventHandler(this.SaveBGBScreenshotToolStripMenuItem_Click);
//
// saveTilesScreenshotToolStripMenuItem
//
this.saveTilesScreenshotToolStripMenuItem.Name = "saveTilesScreenshotToolStripMenuItem";
this.saveTilesScreenshotToolStripMenuItem.Size = new System.Drawing.Size(208, 22);
this.saveTilesScreenshotToolStripMenuItem.Text = "Save Tiles Screenshot...";
this.saveTilesScreenshotToolStripMenuItem.Click += new System.EventHandler(this.SaveTilesScreenshotToolStripMenuItem_Click);
//
// saveWindowScreenshotToolStripMenuItem
//
this.saveWindowScreenshotToolStripMenuItem.Name = "saveWindowScreenshotToolStripMenuItem";
this.saveWindowScreenshotToolStripMenuItem.Size = new System.Drawing.Size(208, 22);
this.saveWindowScreenshotToolStripMenuItem.Text = "Save Window Screenshot...";
this.saveWindowScreenshotToolStripMenuItem.Click += new System.EventHandler(this.SaveWindowScreenshotToolStripMenuItem_Click);
//
// savePaletteScreenshotToolStripMenuItem
//
this.savePaletteScreenshotToolStripMenuItem.Name = "savePaletteScreenshotToolStripMenuItem";
this.savePaletteScreenshotToolStripMenuItem.Size = new System.Drawing.Size(208, 22);
this.savePaletteScreenshotToolStripMenuItem.Text = "Save Palette Screenshot...";
this.savePaletteScreenshotToolStripMenuItem.Click += new System.EventHandler(this.SavePaletteScreenshotToolStripMenuItem_Click);
//
// toolStripSeparator1
//
this.toolStripSeparator1.Name = "toolStripSeparator1";
this.toolStripSeparator1.Size = new System.Drawing.Size(205, 6);
//
// closeToolStripMenuItem
//
this.closeToolStripMenuItem.Name = "closeToolStripMenuItem";
this.closeToolStripMenuItem.ShortcutKeyDisplayString = "Alt+F4";
this.closeToolStripMenuItem.Size = new System.Drawing.Size(208, 22);
this.closeToolStripMenuItem.Text = "&Close";
this.closeToolStripMenuItem.Click += new System.EventHandler(this.CloseMenuItem_Click);
//
@ -270,13 +251,13 @@ namespace BizHawk.Client.EmuHawk
private System.Windows.Forms.GroupBox groupBox5;
private BizHawk.WinForms.Controls.LocLabelEx label1;
private MenuStripEx menuStrip1;
private System.Windows.Forms.ToolStripMenuItem fileToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem saveBGAScreenshotToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem saveBGBScreenshotToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem saveTilesScreenshotToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem saveWindowScreenshotToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem savePaletteScreenshotToolStripMenuItem;
private System.Windows.Forms.ToolStripSeparator toolStripSeparator1;
private System.Windows.Forms.ToolStripMenuItem closeToolStripMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx fileToolStripMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx saveBGAScreenshotToolStripMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx saveBGBScreenshotToolStripMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx saveTilesScreenshotToolStripMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx saveWindowScreenshotToolStripMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx savePaletteScreenshotToolStripMenuItem;
private BizHawk.WinForms.Controls.ToolStripSeparatorEx toolStripSeparator1;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx closeToolStripMenuItem;
}
}

View File

@ -32,62 +32,62 @@ namespace BizHawk.Client.EmuHawk
{
this.components = new System.ComponentModel.Container();
this.HexMenuStrip = new MenuStripEx();
this.FileSubMenu = new System.Windows.Forms.ToolStripMenuItem();
this.SaveMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.SaveAsBinaryMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.SaveAsTextMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.importAsBinaryToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripSeparator4 = new System.Windows.Forms.ToolStripSeparator();
this.LoadTableFileMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.CloseTableFileMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.RecentTablesSubMenu = new System.Windows.Forms.ToolStripMenuItem();
this.noneToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
this.ExitMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.EditMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.CopyMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.ExportMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.PasteMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripSeparator6 = new System.Windows.Forms.ToolStripSeparator();
this.FindMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.FindNextMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.FindPrevMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.OptionsSubMenu = new System.Windows.Forms.ToolStripMenuItem();
this.MemoryDomainsMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripSeparator3 = new System.Windows.Forms.ToolStripSeparator();
this.DataSizeSubMenu = new System.Windows.Forms.ToolStripMenuItem();
this.DataSizeByteMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.DataSizeWordMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.DataSizeDWordMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.BigEndianMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
this.GoToAddressMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.AddToRamWatchMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.FreezeAddressMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.UnfreezeAllMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.PokeAddressMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.SettingsSubMenu = new System.Windows.Forms.ToolStripMenuItem();
this.CustomColorsSubMenu = new System.Windows.Forms.ToolStripMenuItem();
this.SetColorsMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripSeparator8 = new System.Windows.Forms.ToolStripSeparator();
this.ResetColorsToDefaultMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripSeparator7 = new System.Windows.Forms.ToolStripSeparator();
this.resetToDefaultToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.FileSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.SaveMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.SaveAsBinaryMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.SaveAsTextMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.importAsBinaryToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.toolStripSeparator4 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx();
this.LoadTableFileMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.CloseTableFileMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.RecentTablesSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.noneToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.toolStripSeparator1 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx();
this.ExitMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.EditMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.CopyMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.ExportMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.PasteMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.toolStripSeparator6 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx();
this.FindMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.FindNextMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.FindPrevMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.OptionsSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.MemoryDomainsMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.toolStripSeparator3 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx();
this.DataSizeSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.DataSizeByteMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.DataSizeWordMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.DataSizeDWordMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.BigEndianMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.toolStripSeparator2 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx();
this.GoToAddressMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.AddToRamWatchMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.FreezeAddressMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.UnfreezeAllMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.PokeAddressMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.SettingsSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.CustomColorsSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.SetColorsMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.toolStripSeparator8 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx();
this.ResetColorsToDefaultMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.toolStripSeparator7 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx();
this.resetToDefaultToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.ViewerContextMenuStrip = new System.Windows.Forms.ContextMenuStrip(this.components);
this.CopyContextItem = new System.Windows.Forms.ToolStripMenuItem();
this.ExportContextItem = new System.Windows.Forms.ToolStripMenuItem();
this.PasteContextItem = new System.Windows.Forms.ToolStripMenuItem();
this.FreezeContextItem = new System.Windows.Forms.ToolStripMenuItem();
this.AddToRamWatchContextItem = new System.Windows.Forms.ToolStripMenuItem();
this.UnfreezeAllContextItem = new System.Windows.Forms.ToolStripMenuItem();
this.PokeContextItem = new System.Windows.Forms.ToolStripMenuItem();
this.ContextSeparator1 = new System.Windows.Forms.ToolStripSeparator();
this.IncrementContextItem = new System.Windows.Forms.ToolStripMenuItem();
this.DecrementContextItem = new System.Windows.Forms.ToolStripMenuItem();
this.ContextSeparator2 = new System.Windows.Forms.ToolStripSeparator();
this.GoToContextItem = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripMenuItem1 = new System.Windows.Forms.ToolStripSeparator();
this.viewN64MatrixToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.CopyContextItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.ExportContextItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.PasteContextItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.FreezeContextItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.AddToRamWatchContextItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.UnfreezeAllContextItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.PokeContextItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.ContextSeparator1 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx();
this.IncrementContextItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.DecrementContextItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.ContextSeparator2 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx();
this.GoToContextItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.toolStripMenuItem1 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx();
this.viewN64MatrixToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.MemoryViewerBox = new System.Windows.Forms.GroupBox();
this.HexScrollBar = new System.Windows.Forms.VScrollBar();
this.AddressLabel = new BizHawk.WinForms.Controls.LocLabelEx();
@ -122,59 +122,40 @@ namespace BizHawk.Client.EmuHawk
this.RecentTablesSubMenu,
this.toolStripSeparator1,
this.ExitMenuItem});
this.FileSubMenu.Name = "FileSubMenu";
this.FileSubMenu.Size = new System.Drawing.Size(37, 20);
this.FileSubMenu.Text = "&File";
this.FileSubMenu.DropDownOpened += new System.EventHandler(this.FileSubMenu_DropDownOpened);
//
// SaveMenuItem
//
this.SaveMenuItem.Name = "SaveMenuItem";
this.SaveMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.S)));
this.SaveMenuItem.Size = new System.Drawing.Size(229, 22);
this.SaveMenuItem.Text = "Save";
this.SaveMenuItem.Click += new System.EventHandler(this.SaveMenuItem_Click);
//
// SaveAsBinaryMenuItem
//
this.SaveAsBinaryMenuItem.Name = "SaveAsBinaryMenuItem";
this.SaveAsBinaryMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)(((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.Shift)
| System.Windows.Forms.Keys.S)));
this.SaveAsBinaryMenuItem.Size = new System.Drawing.Size(229, 22);
this.SaveAsBinaryMenuItem.Text = "Save as binary...";
this.SaveAsBinaryMenuItem.Click += new System.EventHandler(this.SaveAsBinaryMenuItem_Click);
//
// SaveAsTextMenuItem
//
this.SaveAsTextMenuItem.Name = "SaveAsTextMenuItem";
this.SaveAsTextMenuItem.Size = new System.Drawing.Size(229, 22);
this.SaveAsTextMenuItem.Text = "Save as text...";
this.SaveAsTextMenuItem.Click += new System.EventHandler(this.SaveAsTextMenuItem_Click);
//
// importAsBinaryToolStripMenuItem
//
this.importAsBinaryToolStripMenuItem.Name = "importAsBinaryToolStripMenuItem";
this.importAsBinaryToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.I)));
this.importAsBinaryToolStripMenuItem.Size = new System.Drawing.Size(229, 22);
this.importAsBinaryToolStripMenuItem.Text = "Import as binary...";
this.importAsBinaryToolStripMenuItem.Click += new System.EventHandler(this.importAsBinaryToolStripMenuItem_Click);
//
// toolStripSeparator4
//
this.toolStripSeparator4.Name = "toolStripSeparator4";
this.toolStripSeparator4.Size = new System.Drawing.Size(226, 6);
//
// LoadTableFileMenuItem
//
this.LoadTableFileMenuItem.Name = "LoadTableFileMenuItem";
this.LoadTableFileMenuItem.Size = new System.Drawing.Size(229, 22);
this.LoadTableFileMenuItem.Text = "&Load .tbl file";
this.LoadTableFileMenuItem.Click += new System.EventHandler(this.LoadTableFileMenuItem_Click);
//
// CloseTableFileMenuItem
//
this.CloseTableFileMenuItem.Name = "CloseTableFileMenuItem";
this.CloseTableFileMenuItem.Size = new System.Drawing.Size(229, 22);
this.CloseTableFileMenuItem.Text = "Close .tbl file";
this.CloseTableFileMenuItem.Click += new System.EventHandler(this.CloseTableFileMenuItem_Click);
//
@ -182,27 +163,16 @@ namespace BizHawk.Client.EmuHawk
//
this.RecentTablesSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.noneToolStripMenuItem});
this.RecentTablesSubMenu.Name = "RecentTablesSubMenu";
this.RecentTablesSubMenu.Size = new System.Drawing.Size(229, 22);
this.RecentTablesSubMenu.Text = "Recent";
this.RecentTablesSubMenu.DropDownOpened += new System.EventHandler(this.RecentTablesSubMenu_DropDownOpened);
//
// noneToolStripMenuItem
//
this.noneToolStripMenuItem.Name = "noneToolStripMenuItem";
this.noneToolStripMenuItem.Size = new System.Drawing.Size(103, 22);
this.noneToolStripMenuItem.Text = "None";
//
// toolStripSeparator1
//
this.toolStripSeparator1.Name = "toolStripSeparator1";
this.toolStripSeparator1.Size = new System.Drawing.Size(226, 6);
//
// ExitMenuItem
//
this.ExitMenuItem.Name = "ExitMenuItem";
this.ExitMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Alt | System.Windows.Forms.Keys.F4)));
this.ExitMenuItem.Size = new System.Drawing.Size(229, 22);
this.ExitMenuItem.Text = "E&xit";
this.ExitMenuItem.Click += new System.EventHandler(this.ExitMenuItem_Click);
//
@ -216,61 +186,42 @@ namespace BizHawk.Client.EmuHawk
this.FindMenuItem,
this.FindNextMenuItem,
this.FindPrevMenuItem});
this.EditMenuItem.Name = "EditMenuItem";
this.EditMenuItem.Size = new System.Drawing.Size(39, 20);
this.EditMenuItem.Text = "&Edit";
this.EditMenuItem.DropDownOpened += new System.EventHandler(this.EditMenuItem_DropDownOpened);
//
// CopyMenuItem
//
this.CopyMenuItem.Name = "CopyMenuItem";
this.CopyMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.C)));
this.CopyMenuItem.Size = new System.Drawing.Size(147, 22);
this.CopyMenuItem.Text = "&Copy";
this.CopyMenuItem.Click += new System.EventHandler(this.CopyMenuItem_Click);
//
// ExportMenuItem
//
this.ExportMenuItem.Name = "ExportMenuItem";
this.ExportMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.E)));
this.ExportMenuItem.Size = new System.Drawing.Size(147, 22);
this.ExportMenuItem.Text = "&Export";
this.ExportMenuItem.Click += new System.EventHandler(this.ExportMenuItem_Click);
//
// PasteMenuItem
//
this.PasteMenuItem.Name = "PasteMenuItem";
this.PasteMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.V)));
this.PasteMenuItem.Size = new System.Drawing.Size(147, 22);
this.PasteMenuItem.Text = "&Paste";
this.PasteMenuItem.Click += new System.EventHandler(this.PasteMenuItem_Click);
//
// toolStripSeparator6
//
this.toolStripSeparator6.Name = "toolStripSeparator6";
this.toolStripSeparator6.Size = new System.Drawing.Size(144, 6);
//
// FindMenuItem
//
this.FindMenuItem.Name = "FindMenuItem";
this.FindMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.F)));
this.FindMenuItem.Size = new System.Drawing.Size(147, 22);
this.FindMenuItem.Text = "&Find...";
this.FindMenuItem.Click += new System.EventHandler(this.FindMenuItem_Click);
//
// FindNextMenuItem
//
this.FindNextMenuItem.Name = "FindNextMenuItem";
this.FindNextMenuItem.ShortcutKeys = System.Windows.Forms.Keys.F3;
this.FindNextMenuItem.Size = new System.Drawing.Size(147, 22);
this.FindNextMenuItem.Text = "Find Next";
this.FindNextMenuItem.Click += new System.EventHandler(this.FindNextMenuItem_Click);
//
// FindPrevMenuItem
//
this.FindPrevMenuItem.Name = "FindPrevMenuItem";
this.FindPrevMenuItem.ShortcutKeys = System.Windows.Forms.Keys.F2;
this.FindPrevMenuItem.Size = new System.Drawing.Size(147, 22);
this.FindPrevMenuItem.Text = "Find Prev";
this.FindPrevMenuItem.Click += new System.EventHandler(this.FindPrevMenuItem_Click);
//
@ -286,8 +237,6 @@ namespace BizHawk.Client.EmuHawk
this.FreezeAddressMenuItem,
this.UnfreezeAllMenuItem,
this.PokeAddressMenuItem});
this.OptionsSubMenu.Name = "OptionsSubMenu";
this.OptionsSubMenu.Size = new System.Drawing.Size(61, 20);
this.OptionsSubMenu.Text = "&Options";
this.OptionsSubMenu.DropDownOpened += new System.EventHandler(this.OptionsSubMenu_DropDownOpened);
//
@ -295,96 +244,64 @@ namespace BizHawk.Client.EmuHawk
//
this.MemoryDomainsMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.toolStripSeparator3});
this.MemoryDomainsMenuItem.Name = "MemoryDomainsMenuItem";
this.MemoryDomainsMenuItem.Size = new System.Drawing.Size(221, 22);
this.MemoryDomainsMenuItem.Text = "&Memory Domains";
this.MemoryDomainsMenuItem.DropDownOpened += new System.EventHandler(this.MemoryDomainsMenuItem_DropDownOpened);
//
// toolStripSeparator3
//
this.toolStripSeparator3.Name = "toolStripSeparator3";
this.toolStripSeparator3.Size = new System.Drawing.Size(57, 6);
//
// DataSizeSubMenu
//
this.DataSizeSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.DataSizeByteMenuItem,
this.DataSizeWordMenuItem,
this.DataSizeDWordMenuItem});
this.DataSizeSubMenu.Name = "DataSizeSubMenu";
this.DataSizeSubMenu.Size = new System.Drawing.Size(221, 22);
this.DataSizeSubMenu.Text = "Data Size";
//
// DataSizeByteMenuItem
//
this.DataSizeByteMenuItem.Name = "DataSizeByteMenuItem";
this.DataSizeByteMenuItem.Size = new System.Drawing.Size(106, 22);
this.DataSizeByteMenuItem.Text = "1 Byte";
this.DataSizeByteMenuItem.Click += new System.EventHandler(this.DataSizeByteMenuItem_Click);
//
// DataSizeWordMenuItem
//
this.DataSizeWordMenuItem.Name = "DataSizeWordMenuItem";
this.DataSizeWordMenuItem.Size = new System.Drawing.Size(106, 22);
this.DataSizeWordMenuItem.Text = "2 Byte";
this.DataSizeWordMenuItem.Click += new System.EventHandler(this.DataSizeWordMenuItem_Click);
//
// DataSizeDWordMenuItem
//
this.DataSizeDWordMenuItem.Name = "DataSizeDWordMenuItem";
this.DataSizeDWordMenuItem.Size = new System.Drawing.Size(106, 22);
this.DataSizeDWordMenuItem.Text = "4 Byte";
this.DataSizeDWordMenuItem.Click += new System.EventHandler(this.DataSizeDWordMenuItem_Click);
//
// BigEndianMenuItem
//
this.BigEndianMenuItem.Name = "BigEndianMenuItem";
this.BigEndianMenuItem.Size = new System.Drawing.Size(221, 22);
this.BigEndianMenuItem.Text = "Big Endian";
this.BigEndianMenuItem.Click += new System.EventHandler(this.BigEndianMenuItem_Click);
//
// toolStripSeparator2
//
this.toolStripSeparator2.Name = "toolStripSeparator2";
this.toolStripSeparator2.Size = new System.Drawing.Size(218, 6);
//
// GoToAddressMenuItem
//
this.GoToAddressMenuItem.Name = "GoToAddressMenuItem";
this.GoToAddressMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.G)));
this.GoToAddressMenuItem.Size = new System.Drawing.Size(221, 22);
this.GoToAddressMenuItem.Text = "&Go to Address...";
this.GoToAddressMenuItem.Click += new System.EventHandler(this.GoToAddressMenuItem_Click);
//
// AddToRamWatchMenuItem
//
this.AddToRamWatchMenuItem.Name = "AddToRamWatchMenuItem";
this.AddToRamWatchMenuItem.ShortcutKeyDisplayString = "Ctrl+W";
this.AddToRamWatchMenuItem.Size = new System.Drawing.Size(221, 22);
this.AddToRamWatchMenuItem.Text = "Add to RAM Watch";
this.AddToRamWatchMenuItem.Click += new System.EventHandler(this.AddToRamWatchMenuItem_Click);
//
// FreezeAddressMenuItem
//
this.FreezeAddressMenuItem.Name = "FreezeAddressMenuItem";
this.FreezeAddressMenuItem.ShortcutKeyDisplayString = "Space";
this.FreezeAddressMenuItem.Size = new System.Drawing.Size(221, 22);
this.FreezeAddressMenuItem.Text = "&Freeze Address";
this.FreezeAddressMenuItem.Click += new System.EventHandler(this.FreezeAddressMenuItem_Click);
//
// UnfreezeAllMenuItem
//
this.UnfreezeAllMenuItem.Name = "UnfreezeAllMenuItem";
this.UnfreezeAllMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Shift | System.Windows.Forms.Keys.Delete)));
this.UnfreezeAllMenuItem.Size = new System.Drawing.Size(221, 22);
this.UnfreezeAllMenuItem.Text = "Unfreeze All";
this.UnfreezeAllMenuItem.Click += new System.EventHandler(this.UnfreezeAllMenuItem_Click);
//
// PokeAddressMenuItem
//
this.PokeAddressMenuItem.Name = "PokeAddressMenuItem";
this.PokeAddressMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.P)));
this.PokeAddressMenuItem.Size = new System.Drawing.Size(221, 22);
this.PokeAddressMenuItem.Text = "&Poke Address";
this.PokeAddressMenuItem.Click += new System.EventHandler(this.PokeAddressMenuItem_Click);
//
@ -392,8 +309,6 @@ namespace BizHawk.Client.EmuHawk
//
this.SettingsSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.CustomColorsSubMenu});
this.SettingsSubMenu.Name = "SettingsSubMenu";
this.SettingsSubMenu.Size = new System.Drawing.Size(61, 20);
this.SettingsSubMenu.Text = "&Settings";
//
// CustomColorsSubMenu
@ -402,38 +317,20 @@ namespace BizHawk.Client.EmuHawk
this.SetColorsMenuItem,
this.toolStripSeparator8,
this.ResetColorsToDefaultMenuItem});
this.CustomColorsSubMenu.Name = "CustomColorsSubMenu";
this.CustomColorsSubMenu.Size = new System.Drawing.Size(153, 22);
this.CustomColorsSubMenu.Text = "Custom Colors";
//
// SetColorsMenuItem
//
this.SetColorsMenuItem.Name = "SetColorsMenuItem";
this.SetColorsMenuItem.Size = new System.Drawing.Size(157, 22);
this.SetColorsMenuItem.Text = "Set Colors";
this.SetColorsMenuItem.Click += new System.EventHandler(this.SetColorsMenuItem_Click);
//
// toolStripSeparator8
//
this.toolStripSeparator8.Name = "toolStripSeparator8";
this.toolStripSeparator8.Size = new System.Drawing.Size(154, 6);
//
// ResetColorsToDefaultMenuItem
//
this.ResetColorsToDefaultMenuItem.Name = "ResetColorsToDefaultMenuItem";
this.ResetColorsToDefaultMenuItem.Size = new System.Drawing.Size(157, 22);
this.ResetColorsToDefaultMenuItem.Text = "Reset to Default";
this.ResetColorsToDefaultMenuItem.Click += new System.EventHandler(this.ResetColorsToDefaultMenuItem_Click);
//
// toolStripSeparator7
//
this.toolStripSeparator7.Name = "toolStripSeparator7";
this.toolStripSeparator7.Size = new System.Drawing.Size(154, 6);
//
// resetToDefaultToolStripMenuItem
//
this.resetToDefaultToolStripMenuItem.Name = "resetToDefaultToolStripMenuItem";
this.resetToDefaultToolStripMenuItem.Size = new System.Drawing.Size(157, 22);
this.resetToDefaultToolStripMenuItem.Text = "Reset to Default";
//
// ViewerContextMenuStrip
@ -459,102 +356,65 @@ namespace BizHawk.Client.EmuHawk
//
// CopyContextItem
//
this.CopyContextItem.Name = "CopyContextItem";
this.CopyContextItem.ShortcutKeyDisplayString = "Ctrl+C";
this.CopyContextItem.Size = new System.Drawing.Size(221, 22);
this.CopyContextItem.Text = "&Copy";
this.CopyContextItem.Click += new System.EventHandler(this.CopyMenuItem_Click);
//
// ExportContextItem
//
this.ExportContextItem.Name = "ExportContextItem";
this.ExportContextItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.E)));
this.ExportContextItem.Size = new System.Drawing.Size(221, 22);
this.ExportContextItem.Text = "&Export";
//
// PasteContextItem
//
this.PasteContextItem.Name = "PasteContextItem";
this.PasteContextItem.ShortcutKeyDisplayString = "Ctrl+V";
this.PasteContextItem.Size = new System.Drawing.Size(221, 22);
this.PasteContextItem.Text = "&Paste";
this.PasteContextItem.Click += new System.EventHandler(this.PasteMenuItem_Click);
//
// FreezeContextItem
//
this.FreezeContextItem.Name = "FreezeContextItem";
this.FreezeContextItem.ShortcutKeyDisplayString = "Space";
this.FreezeContextItem.Size = new System.Drawing.Size(221, 22);
this.FreezeContextItem.Text = "&Freeze";
this.FreezeContextItem.Click += new System.EventHandler(this.FreezeAddressMenuItem_Click);
//
// AddToRamWatchContextItem
//
this.AddToRamWatchContextItem.Name = "AddToRamWatchContextItem";
this.AddToRamWatchContextItem.ShortcutKeyDisplayString = "Ctrl+W";
this.AddToRamWatchContextItem.Size = new System.Drawing.Size(221, 22);
this.AddToRamWatchContextItem.Text = "&Add to RAM Watch";
this.AddToRamWatchContextItem.Click += new System.EventHandler(this.AddToRamWatchMenuItem_Click);
//
// UnfreezeAllContextItem
//
this.UnfreezeAllContextItem.Name = "UnfreezeAllContextItem";
this.UnfreezeAllContextItem.ShortcutKeyDisplayString = "Shift+Del";
this.UnfreezeAllContextItem.Size = new System.Drawing.Size(221, 22);
this.UnfreezeAllContextItem.Text = "&Unfreeze All";
this.UnfreezeAllContextItem.Click += new System.EventHandler(this.UnfreezeAllMenuItem_Click);
//
// PokeContextItem
//
this.PokeContextItem.Name = "PokeContextItem";
this.PokeContextItem.ShortcutKeyDisplayString = "Ctrl+P";
this.PokeContextItem.Size = new System.Drawing.Size(221, 22);
this.PokeContextItem.Text = "&Poke Address";
this.PokeContextItem.Click += new System.EventHandler(this.PokeAddressMenuItem_Click);
//
// ContextSeparator1
//
this.ContextSeparator1.Name = "ContextSeparator1";
this.ContextSeparator1.Size = new System.Drawing.Size(218, 6);
//
// IncrementContextItem
//
this.IncrementContextItem.Name = "IncrementContextItem";
this.IncrementContextItem.ShortcutKeyDisplayString = "+";
this.IncrementContextItem.Size = new System.Drawing.Size(221, 22);
this.IncrementContextItem.Text = "&Increment";
this.IncrementContextItem.Click += new System.EventHandler(this.IncrementContextItem_Click);
//
// DecrementContextItem
//
this.DecrementContextItem.Name = "DecrementContextItem";
this.DecrementContextItem.ShortcutKeyDisplayString = "-";
this.DecrementContextItem.Size = new System.Drawing.Size(221, 22);
this.DecrementContextItem.Text = "&Decrement";
this.DecrementContextItem.Click += new System.EventHandler(this.DecrementContextItem_Click);
//
// ContextSeparator2
//
this.ContextSeparator2.Name = "ContextSeparator2";
this.ContextSeparator2.Size = new System.Drawing.Size(218, 6);
//
// GoToContextItem
//
this.GoToContextItem.Name = "GoToContextItem";
this.GoToContextItem.ShortcutKeyDisplayString = "Ctrl+G";
this.GoToContextItem.Size = new System.Drawing.Size(221, 22);
this.GoToContextItem.Text = "&Go to Address...";
this.GoToContextItem.Click += new System.EventHandler(this.GoToAddressMenuItem_Click);
//
// toolStripMenuItem1
//
this.toolStripMenuItem1.Name = "toolStripMenuItem1";
this.toolStripMenuItem1.Size = new System.Drawing.Size(218, 6);
//
// viewN64MatrixToolStripMenuItem
//
this.viewN64MatrixToolStripMenuItem.Name = "viewN64MatrixToolStripMenuItem";
this.viewN64MatrixToolStripMenuItem.Size = new System.Drawing.Size(221, 22);
this.viewN64MatrixToolStripMenuItem.Text = "View N64 Matrix";
this.viewN64MatrixToolStripMenuItem.Click += new System.EventHandler(this.viewN64MatrixToolStripMenuItem_Click);
//
@ -645,66 +505,66 @@ namespace BizHawk.Client.EmuHawk
#endregion
public MenuStripEx HexMenuStrip;
private System.Windows.Forms.ToolStripMenuItem FileSubMenu;
private System.Windows.Forms.ToolStripMenuItem SaveAsTextMenuItem;
private System.Windows.Forms.ToolStripSeparator toolStripSeparator1;
private System.Windows.Forms.ToolStripMenuItem ExitMenuItem;
private System.Windows.Forms.ToolStripMenuItem OptionsSubMenu;
private System.Windows.Forms.ToolStripMenuItem MemoryDomainsMenuItem;
private System.Windows.Forms.ToolStripMenuItem DataSizeSubMenu;
private System.Windows.Forms.ToolStripMenuItem DataSizeByteMenuItem;
private System.Windows.Forms.ToolStripMenuItem DataSizeWordMenuItem;
private System.Windows.Forms.ToolStripMenuItem DataSizeDWordMenuItem;
private System.Windows.Forms.ToolStripMenuItem GoToAddressMenuItem;
private System.Windows.Forms.ToolStripMenuItem SettingsSubMenu;
private System.Windows.Forms.ToolStripMenuItem BigEndianMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx FileSubMenu;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx SaveAsTextMenuItem;
private BizHawk.WinForms.Controls.ToolStripSeparatorEx toolStripSeparator1;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx ExitMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx OptionsSubMenu;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx MemoryDomainsMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx DataSizeSubMenu;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx DataSizeByteMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx DataSizeWordMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx DataSizeDWordMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx GoToAddressMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx SettingsSubMenu;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx BigEndianMenuItem;
private System.Windows.Forms.ContextMenuStrip ViewerContextMenuStrip;
private System.Windows.Forms.ToolStripMenuItem FreezeContextItem;
private System.Windows.Forms.ToolStripMenuItem AddToRamWatchContextItem;
private System.Windows.Forms.ToolStripSeparator toolStripSeparator2;
private System.Windows.Forms.ToolStripMenuItem AddToRamWatchMenuItem;
private System.Windows.Forms.ToolStripMenuItem FreezeAddressMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx FreezeContextItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx AddToRamWatchContextItem;
private BizHawk.WinForms.Controls.ToolStripSeparatorEx toolStripSeparator2;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx AddToRamWatchMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx FreezeAddressMenuItem;
public System.Windows.Forms.GroupBox MemoryViewerBox;
private BizHawk.WinForms.Controls.LocLabelEx AddressesLabel;
private System.Windows.Forms.VScrollBar HexScrollBar;
private System.Windows.Forms.ToolStripMenuItem UnfreezeAllMenuItem;
private System.Windows.Forms.ToolStripMenuItem UnfreezeAllContextItem;
private System.Windows.Forms.ToolStripSeparator ContextSeparator1;
private System.Windows.Forms.ToolStripMenuItem IncrementContextItem;
private System.Windows.Forms.ToolStripMenuItem DecrementContextItem;
private System.Windows.Forms.ToolStripMenuItem GoToContextItem;
private System.Windows.Forms.ToolStripSeparator ContextSeparator2;
private System.Windows.Forms.ToolStripMenuItem EditMenuItem;
private System.Windows.Forms.ToolStripMenuItem CopyMenuItem;
private System.Windows.Forms.ToolStripMenuItem PasteMenuItem;
private System.Windows.Forms.ToolStripMenuItem FindMenuItem;
private System.Windows.Forms.ToolStripSeparator toolStripSeparator6;
private System.Windows.Forms.ToolStripMenuItem SaveAsBinaryMenuItem;
private System.Windows.Forms.ToolStripSeparator toolStripSeparator7;
private System.Windows.Forms.ToolStripMenuItem resetToDefaultToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem CustomColorsSubMenu;
private System.Windows.Forms.ToolStripMenuItem SetColorsMenuItem;
private System.Windows.Forms.ToolStripSeparator toolStripSeparator8;
private System.Windows.Forms.ToolStripMenuItem ResetColorsToDefaultMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx UnfreezeAllMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx UnfreezeAllContextItem;
private BizHawk.WinForms.Controls.ToolStripSeparatorEx ContextSeparator1;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx IncrementContextItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx DecrementContextItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx GoToContextItem;
private BizHawk.WinForms.Controls.ToolStripSeparatorEx ContextSeparator2;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx EditMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx CopyMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx PasteMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx FindMenuItem;
private BizHawk.WinForms.Controls.ToolStripSeparatorEx toolStripSeparator6;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx SaveAsBinaryMenuItem;
private BizHawk.WinForms.Controls.ToolStripSeparatorEx toolStripSeparator7;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx resetToDefaultToolStripMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx CustomColorsSubMenu;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx SetColorsMenuItem;
private BizHawk.WinForms.Controls.ToolStripSeparatorEx toolStripSeparator8;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx ResetColorsToDefaultMenuItem;
public BizHawk.WinForms.Controls.LocLabelEx Header;
private BizHawk.WinForms.Controls.LocLabelEx AddressLabel;
private System.Windows.Forms.ToolStripMenuItem CopyContextItem;
private System.Windows.Forms.ToolStripMenuItem PasteContextItem;
private System.Windows.Forms.ToolStripMenuItem FindNextMenuItem;
private System.Windows.Forms.ToolStripMenuItem FindPrevMenuItem;
private System.Windows.Forms.ToolStripMenuItem SaveMenuItem;
private System.Windows.Forms.ToolStripMenuItem PokeAddressMenuItem;
private System.Windows.Forms.ToolStripMenuItem PokeContextItem;
private System.Windows.Forms.ToolStripSeparator toolStripSeparator4;
private System.Windows.Forms.ToolStripMenuItem LoadTableFileMenuItem;
private System.Windows.Forms.ToolStripMenuItem RecentTablesSubMenu;
private System.Windows.Forms.ToolStripMenuItem noneToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem CloseTableFileMenuItem;
private System.Windows.Forms.ToolStripSeparator toolStripSeparator3;
private System.Windows.Forms.ToolStripSeparator toolStripMenuItem1;
private System.Windows.Forms.ToolStripMenuItem viewN64MatrixToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem ExportContextItem;
private System.Windows.Forms.ToolStripMenuItem ExportMenuItem;
private System.Windows.Forms.ToolStripMenuItem importAsBinaryToolStripMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx CopyContextItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx PasteContextItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx FindNextMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx FindPrevMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx SaveMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx PokeAddressMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx PokeContextItem;
private BizHawk.WinForms.Controls.ToolStripSeparatorEx toolStripSeparator4;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx LoadTableFileMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx RecentTablesSubMenu;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx noneToolStripMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx CloseTableFileMenuItem;
private BizHawk.WinForms.Controls.ToolStripSeparatorEx toolStripSeparator3;
private BizHawk.WinForms.Controls.ToolStripSeparatorEx toolStripMenuItem1;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx viewN64MatrixToolStripMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx ExportContextItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx ExportMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx importAsBinaryToolStripMenuItem;
}
}

View File

@ -32,63 +32,63 @@ namespace BizHawk.Client.EmuHawk
{
this.components = new System.ComponentModel.Container();
this.ScriptListContextMenu = new System.Windows.Forms.ContextMenuStrip(this.components);
this.ToggleScriptContextItem = new System.Windows.Forms.ToolStripMenuItem();
this.PauseScriptContextItem = new System.Windows.Forms.ToolStripMenuItem();
this.EditScriptContextItem = new System.Windows.Forms.ToolStripMenuItem();
this.RemoveScriptContextItem = new System.Windows.Forms.ToolStripMenuItem();
this.InsertSeperatorContextItem = new System.Windows.Forms.ToolStripMenuItem();
this.ScriptContextSeparator = new System.Windows.Forms.ToolStripSeparator();
this.StopAllScriptsContextItem = new System.Windows.Forms.ToolStripMenuItem();
this.ClearRegisteredFunctionsContextItem = new System.Windows.Forms.ToolStripMenuItem();
this.ToggleScriptContextItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.PauseScriptContextItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.EditScriptContextItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.RemoveScriptContextItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.InsertSeperatorContextItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.ScriptContextSeparator = new BizHawk.WinForms.Controls.ToolStripSeparatorEx();
this.StopAllScriptsContextItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.ClearRegisteredFunctionsContextItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.menuStrip1 = new MenuStripEx();
this.FileSubMenu = new System.Windows.Forms.ToolStripMenuItem();
this.NewSessionMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.OpenSessionMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.SaveSessionMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.SaveSessionAsMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripSeparator9 = new System.Windows.Forms.ToolStripSeparator();
this.RecentSessionsSubMenu = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripSeparator8 = new System.Windows.Forms.ToolStripSeparator();
this.RecentScriptsSubMenu = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripSeparator3 = new System.Windows.Forms.ToolStripSeparator();
this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
this.ExitMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.ScriptSubMenu = new System.Windows.Forms.ToolStripMenuItem();
this.NewScriptMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.OpenScriptMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.RefreshScriptMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.ToggleScriptMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.PauseScriptMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.EditScriptMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.RemoveScriptMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.DuplicateScriptMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripSeparator7 = new System.Windows.Forms.ToolStripSeparator();
this.InsertSeparatorMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.MoveUpMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.MoveDownMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.SelectAllMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripSeparator6 = new System.Windows.Forms.ToolStripSeparator();
this.StopAllScriptsMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.RegisteredFunctionsMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.SettingsSubMenu = new System.Windows.Forms.ToolStripMenuItem();
this.DisableScriptsOnLoadMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.ReturnAllIfNoneSelectedMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.ReloadWhenScriptFileChangesMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripSeparator4 = new System.Windows.Forms.ToolStripSeparator();
this.RegisterToTextEditorsSubMenu = new System.Windows.Forms.ToolStripMenuItem();
this.RegisterSublimeText2MenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.RegisterNotePadMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.HelpSubMenu = new System.Windows.Forms.ToolStripMenuItem();
this.FunctionsListMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.OnlineDocsMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.FileSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.NewSessionMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.OpenSessionMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.SaveSessionMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.SaveSessionAsMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.toolStripSeparator9 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx();
this.RecentSessionsSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.toolStripSeparator8 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx();
this.RecentScriptsSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.toolStripSeparator3 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx();
this.toolStripSeparator1 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx();
this.ExitMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.ScriptSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.NewScriptMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.OpenScriptMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.RefreshScriptMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.ToggleScriptMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.PauseScriptMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.EditScriptMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.RemoveScriptMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.DuplicateScriptMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.toolStripSeparator7 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx();
this.InsertSeparatorMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.MoveUpMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.MoveDownMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.SelectAllMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.toolStripSeparator6 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx();
this.StopAllScriptsMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.RegisteredFunctionsMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.SettingsSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.DisableScriptsOnLoadMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.ReturnAllIfNoneSelectedMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.ReloadWhenScriptFileChangesMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.toolStripSeparator4 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx();
this.RegisterToTextEditorsSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.RegisterSublimeText2MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.RegisterNotePadMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.HelpSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.FunctionsListMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.OnlineDocsMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.OutputBox = new System.Windows.Forms.RichTextBox();
this.ConsoleContextMenu = new System.Windows.Forms.ContextMenuStrip(this.components);
this.ClearConsoleContextItem = new System.Windows.Forms.ToolStripMenuItem();
this.SelectAllContextItem = new System.Windows.Forms.ToolStripMenuItem();
this.CopyContextItem = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripSeparator5 = new System.Windows.Forms.ToolStripSeparator();
this.RegisteredFunctionsContextItem = new System.Windows.Forms.ToolStripMenuItem();
this.ClearRegisteredFunctionsLogContextItem = new System.Windows.Forms.ToolStripMenuItem();
this.ClearConsoleContextItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.SelectAllContextItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.CopyContextItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.toolStripSeparator5 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx();
this.RegisteredFunctionsContextItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.ClearRegisteredFunctionsLogContextItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.groupBox1 = new System.Windows.Forms.GroupBox();
this.InputBox = new System.Windows.Forms.TextBox();
this.NumberOfScripts = new BizHawk.WinForms.Controls.LocLabelEx();
@ -102,11 +102,11 @@ namespace BizHawk.Client.EmuHawk
this.EditToolbarItem = new System.Windows.Forms.ToolStripButton();
this.RemoveScriptToolbarItem = new System.Windows.Forms.ToolStripButton();
this.DuplicateToolbarButton = new System.Windows.Forms.ToolStripButton();
this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
this.toolStripSeparator2 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx();
this.MoveUpToolbarItem = new System.Windows.Forms.ToolStripButton();
this.toolStripButtonMoveDown = new System.Windows.Forms.ToolStripButton();
this.InsertSeparatorToolbarItem = new System.Windows.Forms.ToolStripButton();
this.toolStripSeparator10 = new System.Windows.Forms.ToolStripSeparator();
this.toolStripSeparator10 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx();
this.EraseToolbarItem = new System.Windows.Forms.ToolStripButton();
this.LuaListView = new BizHawk.Client.EmuHawk.InputRoll();
this.splitContainer1 = new System.Windows.Forms.SplitContainer();
@ -138,55 +138,36 @@ namespace BizHawk.Client.EmuHawk
//
// ToggleScriptContextItem
//
this.ToggleScriptContextItem.Name = "ToggleScriptContextItem";
this.ToggleScriptContextItem.Size = new System.Drawing.Size(203, 22);
this.ToggleScriptContextItem.Text = "&Toggle";
this.ToggleScriptContextItem.Click += new System.EventHandler(this.ToggleScriptMenuItem_Click);
//
// PauseScriptContextItem
//
this.PauseScriptContextItem.Name = "PauseScriptContextItem";
this.PauseScriptContextItem.Size = new System.Drawing.Size(203, 22);
this.PauseScriptContextItem.Text = "Pause or Resume";
this.PauseScriptContextItem.Click += new System.EventHandler(this.PauseScriptMenuItem_Click);
//
// EditScriptContextItem
//
this.EditScriptContextItem.Name = "EditScriptContextItem";
this.EditScriptContextItem.Size = new System.Drawing.Size(203, 22);
this.EditScriptContextItem.Text = "&Edit";
this.EditScriptContextItem.Click += new System.EventHandler(this.EditScriptMenuItem_Click);
//
// RemoveScriptContextItem
//
this.RemoveScriptContextItem.Name = "RemoveScriptContextItem";
this.RemoveScriptContextItem.Size = new System.Drawing.Size(203, 22);
this.RemoveScriptContextItem.Text = "&Remove";
this.RemoveScriptContextItem.Click += new System.EventHandler(this.RemoveScriptMenuItem_Click);
//
// InsertSeperatorContextItem
//
this.InsertSeperatorContextItem.Name = "InsertSeperatorContextItem";
this.InsertSeperatorContextItem.Size = new System.Drawing.Size(203, 22);
this.InsertSeperatorContextItem.Text = "Insert Seperator";
this.InsertSeperatorContextItem.Click += new System.EventHandler(this.InsertSeparatorMenuItem_Click);
//
// ScriptContextSeparator
//
this.ScriptContextSeparator.Name = "ScriptContextSeparator";
this.ScriptContextSeparator.Size = new System.Drawing.Size(200, 6);
//
// StopAllScriptsContextItem
//
this.StopAllScriptsContextItem.Name = "StopAllScriptsContextItem";
this.StopAllScriptsContextItem.Size = new System.Drawing.Size(203, 22);
this.StopAllScriptsContextItem.Text = "Stop All Scripts";
this.StopAllScriptsContextItem.Click += new System.EventHandler(this.StopAllScriptsMenuItem_Click);
//
// ClearRegisteredFunctionsContextItem
//
this.ClearRegisteredFunctionsContextItem.Name = "ClearRegisteredFunctionsContextItem";
this.ClearRegisteredFunctionsContextItem.Size = new System.Drawing.Size(203, 22);
this.ClearRegisteredFunctionsContextItem.Text = "Clear Registered Functions";
this.ClearRegisteredFunctionsContextItem.Click += new System.EventHandler(this.ClearRegisteredFunctionsContextMenuItem_Click);
//
@ -213,89 +194,53 @@ namespace BizHawk.Client.EmuHawk
this.RecentScriptsSubMenu,
this.toolStripSeparator1,
this.ExitMenuItem});
this.FileSubMenu.Name = "FileSubMenu";
this.FileSubMenu.Size = new System.Drawing.Size(35, 20);
this.FileSubMenu.Text = "&File";
this.FileSubMenu.DropDownOpened += new System.EventHandler(this.FileSubMenu_DropDownOpened);
//
// NewSessionMenuItem
//
this.NewSessionMenuItem.Name = "NewSessionMenuItem";
this.NewSessionMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)(((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.Shift)
| System.Windows.Forms.Keys.N)));
this.NewSessionMenuItem.Size = new System.Drawing.Size(232, 22);
this.NewSessionMenuItem.Text = "&New Session";
this.NewSessionMenuItem.Click += new System.EventHandler(this.NewSessionMenuItem_Click);
//
// OpenSessionMenuItem
//
this.OpenSessionMenuItem.Name = "OpenSessionMenuItem";
this.OpenSessionMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)(((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.Shift)
| System.Windows.Forms.Keys.O)));
this.OpenSessionMenuItem.Size = new System.Drawing.Size(232, 22);
this.OpenSessionMenuItem.Text = "&Open Session...";
this.OpenSessionMenuItem.Click += new System.EventHandler(this.OpenSessionMenuItem_Click);
//
// SaveSessionMenuItem
//
this.SaveSessionMenuItem.Name = "SaveSessionMenuItem";
this.SaveSessionMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.S)));
this.SaveSessionMenuItem.Size = new System.Drawing.Size(232, 22);
this.SaveSessionMenuItem.Text = "&Save Session";
this.SaveSessionMenuItem.Click += new System.EventHandler(this.SaveSessionMenuItem_Click);
//
// SaveSessionAsMenuItem
//
this.SaveSessionAsMenuItem.Name = "SaveSessionAsMenuItem";
this.SaveSessionAsMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)(((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.Shift)
| System.Windows.Forms.Keys.S)));
this.SaveSessionAsMenuItem.Size = new System.Drawing.Size(232, 22);
this.SaveSessionAsMenuItem.Text = "Save Session &As...";
this.SaveSessionAsMenuItem.Click += new System.EventHandler(this.SaveSessionAsMenuItem_Click);
//
// toolStripSeparator9
//
this.toolStripSeparator9.Name = "toolStripSeparator9";
this.toolStripSeparator9.Size = new System.Drawing.Size(229, 6);
//
// RecentSessionsSubMenu
//
this.RecentSessionsSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.toolStripSeparator8});
this.RecentSessionsSubMenu.Name = "RecentSessionsSubMenu";
this.RecentSessionsSubMenu.Size = new System.Drawing.Size(232, 22);
this.RecentSessionsSubMenu.Text = "Recent Sessions";
this.RecentSessionsSubMenu.DropDownOpened += new System.EventHandler(this.RecentSessionsSubMenu_DropDownOpened);
//
// toolStripSeparator8
//
this.toolStripSeparator8.Name = "toolStripSeparator8";
this.toolStripSeparator8.Size = new System.Drawing.Size(57, 6);
//
// RecentScriptsSubMenu
//
this.RecentScriptsSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.toolStripSeparator3});
this.RecentScriptsSubMenu.Name = "RecentScriptsSubMenu";
this.RecentScriptsSubMenu.Size = new System.Drawing.Size(232, 22);
this.RecentScriptsSubMenu.Text = "Recent Scripts";
this.RecentScriptsSubMenu.DropDownOpened += new System.EventHandler(this.RecentScriptsSubMenu_DropDownOpened);
//
// toolStripSeparator3
//
this.toolStripSeparator3.Name = "toolStripSeparator3";
this.toolStripSeparator3.Size = new System.Drawing.Size(57, 6);
//
// toolStripSeparator1
//
this.toolStripSeparator1.Name = "toolStripSeparator1";
this.toolStripSeparator1.Size = new System.Drawing.Size(229, 6);
//
// ExitMenuItem
//
this.ExitMenuItem.Name = "ExitMenuItem";
this.ExitMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Alt | System.Windows.Forms.Keys.F4)));
this.ExitMenuItem.Size = new System.Drawing.Size(232, 22);
this.ExitMenuItem.Text = "E&xit";
this.ExitMenuItem.Click += new System.EventHandler(this.ExitMenuItem_Click);
//
@ -318,127 +263,87 @@ namespace BizHawk.Client.EmuHawk
this.toolStripSeparator6,
this.StopAllScriptsMenuItem,
this.RegisteredFunctionsMenuItem});
this.ScriptSubMenu.Name = "ScriptSubMenu";
this.ScriptSubMenu.Size = new System.Drawing.Size(46, 20);
this.ScriptSubMenu.Text = "&Script";
this.ScriptSubMenu.DropDownOpened += new System.EventHandler(this.ScriptSubMenu_DropDownOpened);
//
// NewScriptMenuItem
//
this.NewScriptMenuItem.Name = "NewScriptMenuItem";
this.NewScriptMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.N)));
this.NewScriptMenuItem.Size = new System.Drawing.Size(212, 22);
this.NewScriptMenuItem.Text = "New Script";
this.NewScriptMenuItem.Click += new System.EventHandler(this.NewScriptMenuItem_Click);
//
// OpenScriptMenuItem
//
this.OpenScriptMenuItem.Name = "OpenScriptMenuItem";
this.OpenScriptMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.O)));
this.OpenScriptMenuItem.Size = new System.Drawing.Size(212, 22);
this.OpenScriptMenuItem.Text = "&Open Script...";
this.OpenScriptMenuItem.Click += new System.EventHandler(this.OpenScriptMenuItem_Click);
//
// RefreshScriptMenuItem
//
this.RefreshScriptMenuItem.Name = "RefreshScriptMenuItem";
this.RefreshScriptMenuItem.ShortcutKeys = System.Windows.Forms.Keys.F5;
this.RefreshScriptMenuItem.Size = new System.Drawing.Size(212, 22);
this.RefreshScriptMenuItem.Text = "&Re&fresh";
this.RefreshScriptMenuItem.Click += new System.EventHandler(this.RefreshScriptMenuItem_Click);
//
// ToggleScriptMenuItem
//
this.ToggleScriptMenuItem.Name = "ToggleScriptMenuItem";
this.ToggleScriptMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.T)));
this.ToggleScriptMenuItem.Size = new System.Drawing.Size(212, 22);
this.ToggleScriptMenuItem.Text = "&Toggle";
this.ToggleScriptMenuItem.Click += new System.EventHandler(this.ToggleScriptMenuItem_Click);
//
// PauseScriptMenuItem
//
this.PauseScriptMenuItem.Name = "PauseScriptMenuItem";
this.PauseScriptMenuItem.Size = new System.Drawing.Size(212, 22);
this.PauseScriptMenuItem.Text = "Pause or Resume";
this.PauseScriptMenuItem.Click += new System.EventHandler(this.PauseScriptMenuItem_Click);
//
// EditScriptMenuItem
//
this.EditScriptMenuItem.Name = "EditScriptMenuItem";
this.EditScriptMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.E)));
this.EditScriptMenuItem.Size = new System.Drawing.Size(212, 22);
this.EditScriptMenuItem.Text = "&Edit Script";
this.EditScriptMenuItem.Click += new System.EventHandler(this.EditScriptMenuItem_Click);
//
// RemoveScriptMenuItem
//
this.RemoveScriptMenuItem.Name = "RemoveScriptMenuItem";
this.RemoveScriptMenuItem.ShortcutKeys = System.Windows.Forms.Keys.Delete;
this.RemoveScriptMenuItem.Size = new System.Drawing.Size(212, 22);
this.RemoveScriptMenuItem.Text = "&Remove Script";
this.RemoveScriptMenuItem.Click += new System.EventHandler(this.RemoveScriptMenuItem_Click);
//
// DuplicateScriptMenuItem
//
this.DuplicateScriptMenuItem.Name = "DuplicateScriptMenuItem";
this.DuplicateScriptMenuItem.Size = new System.Drawing.Size(212, 22);
this.DuplicateScriptMenuItem.Text = "&Duplicate Script";
this.DuplicateScriptMenuItem.Click += new System.EventHandler(this.DuplicateScriptMenuItem_Click);
//
// toolStripSeparator7
//
this.toolStripSeparator7.Name = "toolStripSeparator7";
this.toolStripSeparator7.Size = new System.Drawing.Size(209, 6);
//
// InsertSeparatorMenuItem
//
this.InsertSeparatorMenuItem.Name = "InsertSeparatorMenuItem";
this.InsertSeparatorMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.I)));
this.InsertSeparatorMenuItem.Size = new System.Drawing.Size(212, 22);
this.InsertSeparatorMenuItem.Text = "Insert Separator";
this.InsertSeparatorMenuItem.Click += new System.EventHandler(this.InsertSeparatorMenuItem_Click);
//
// MoveUpMenuItem
//
this.MoveUpMenuItem.Name = "MoveUpMenuItem";
this.MoveUpMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.U)));
this.MoveUpMenuItem.Size = new System.Drawing.Size(212, 22);
this.MoveUpMenuItem.Text = "Move &Up";
this.MoveUpMenuItem.Click += new System.EventHandler(this.MoveUpMenuItem_Click);
//
// MoveDownMenuItem
//
this.MoveDownMenuItem.Name = "MoveDownMenuItem";
this.MoveDownMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.D)));
this.MoveDownMenuItem.Size = new System.Drawing.Size(212, 22);
this.MoveDownMenuItem.Text = "Move &Down";
this.MoveDownMenuItem.Click += new System.EventHandler(this.MoveDownMenuItem_Click);
//
// SelectAllMenuItem
//
this.SelectAllMenuItem.Name = "SelectAllMenuItem";
this.SelectAllMenuItem.ShortcutKeyDisplayString = "Ctrl+A";
this.SelectAllMenuItem.Size = new System.Drawing.Size(212, 22);
this.SelectAllMenuItem.Text = "Select &All";
this.SelectAllMenuItem.Click += new System.EventHandler(this.SelectAllMenuItem_Click);
//
// toolStripSeparator6
//
this.toolStripSeparator6.Name = "toolStripSeparator6";
this.toolStripSeparator6.Size = new System.Drawing.Size(209, 6);
//
// StopAllScriptsMenuItem
//
this.StopAllScriptsMenuItem.Name = "StopAllScriptsMenuItem";
this.StopAllScriptsMenuItem.Size = new System.Drawing.Size(212, 22);
this.StopAllScriptsMenuItem.Text = "Stop All Scripts";
this.StopAllScriptsMenuItem.Click += new System.EventHandler(this.StopAllScriptsMenuItem_Click);
//
// RegisteredFunctionsMenuItem
//
this.RegisteredFunctionsMenuItem.Name = "RegisteredFunctionsMenuItem";
this.RegisteredFunctionsMenuItem.ShortcutKeyDisplayString = "F12";
this.RegisteredFunctionsMenuItem.Size = new System.Drawing.Size(212, 22);
this.RegisteredFunctionsMenuItem.Text = "&Registered Functions...";
this.RegisteredFunctionsMenuItem.Click += new System.EventHandler(this.RegisteredFunctionsMenuItem_Click);
//
@ -450,58 +355,39 @@ namespace BizHawk.Client.EmuHawk
this.ReloadWhenScriptFileChangesMenuItem,
this.toolStripSeparator4,
this.RegisterToTextEditorsSubMenu});
this.SettingsSubMenu.Name = "SettingsSubMenu";
this.SettingsSubMenu.Size = new System.Drawing.Size(58, 20);
this.SettingsSubMenu.Text = "&Settings";
this.SettingsSubMenu.DropDownOpened += new System.EventHandler(this.OptionsSubMenu_DropDownOpened);
//
// DisableScriptsOnLoadMenuItem
//
this.DisableScriptsOnLoadMenuItem.Name = "DisableScriptsOnLoadMenuItem";
this.DisableScriptsOnLoadMenuItem.Size = new System.Drawing.Size(232, 22);
this.DisableScriptsOnLoadMenuItem.Text = "Disable Scripts on Load";
this.DisableScriptsOnLoadMenuItem.Click += new System.EventHandler(this.DisableScriptsOnLoadMenuItem_Click);
//
// ReturnAllIfNoneSelectedMenuItem
//
this.ReturnAllIfNoneSelectedMenuItem.Name = "ReturnAllIfNoneSelectedMenuItem";
this.ReturnAllIfNoneSelectedMenuItem.Size = new System.Drawing.Size(232, 22);
this.ReturnAllIfNoneSelectedMenuItem.Text = "Toggle All if None Selected";
this.ReturnAllIfNoneSelectedMenuItem.Click += new System.EventHandler(this.ToggleAllIfNoneSelectedMenuItem_Click);
//
// ReloadWhenScriptFileChangesMenuItem
//
this.ReloadWhenScriptFileChangesMenuItem.Name = "ReloadWhenScriptFileChangesMenuItem";
this.ReloadWhenScriptFileChangesMenuItem.Size = new System.Drawing.Size(232, 22);
this.ReloadWhenScriptFileChangesMenuItem.Text = "Reload When Script File Changes";
this.ReloadWhenScriptFileChangesMenuItem.Click += new System.EventHandler(this.ReloadWhenScriptFileChangesMenuItem_Click);
//
// toolStripSeparator4
//
this.toolStripSeparator4.Name = "toolStripSeparator4";
this.toolStripSeparator4.Size = new System.Drawing.Size(229, 6);
//
// RegisterToTextEditorsSubMenu
//
this.RegisterToTextEditorsSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.RegisterSublimeText2MenuItem,
this.RegisterNotePadMenuItem});
this.RegisterToTextEditorsSubMenu.Name = "RegisterToTextEditorsSubMenu";
this.RegisterToTextEditorsSubMenu.Size = new System.Drawing.Size(232, 22);
this.RegisterToTextEditorsSubMenu.Text = "Register To Text Editors";
this.RegisterToTextEditorsSubMenu.DropDownOpened += new System.EventHandler(this.RegisterToTextEditorsSubMenu_DropDownOpened);
//
// RegisterSublimeText2MenuItem
//
this.RegisterSublimeText2MenuItem.Name = "RegisterSublimeText2MenuItem";
this.RegisterSublimeText2MenuItem.Size = new System.Drawing.Size(144, 22);
this.RegisterSublimeText2MenuItem.Text = "&Sublime Text 2";
this.RegisterSublimeText2MenuItem.Click += new System.EventHandler(this.RegisterSublimeText2MenuItem_Click);
//
// RegisterNotePadMenuItem
//
this.RegisterNotePadMenuItem.Name = "RegisterNotePadMenuItem";
this.RegisterNotePadMenuItem.Size = new System.Drawing.Size(144, 22);
this.RegisterNotePadMenuItem.Text = "Notepad++";
this.RegisterNotePadMenuItem.Click += new System.EventHandler(this.RegisterNotePadMenuItem_Click);
//
@ -510,22 +396,16 @@ namespace BizHawk.Client.EmuHawk
this.HelpSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.FunctionsListMenuItem,
this.OnlineDocsMenuItem});
this.HelpSubMenu.Name = "HelpSubMenu";
this.HelpSubMenu.Size = new System.Drawing.Size(40, 20);
this.HelpSubMenu.Text = "&Help";
//
// FunctionsListMenuItem
//
this.FunctionsListMenuItem.Name = "FunctionsListMenuItem";
this.FunctionsListMenuItem.ShortcutKeys = System.Windows.Forms.Keys.F1;
this.FunctionsListMenuItem.Size = new System.Drawing.Size(189, 22);
this.FunctionsListMenuItem.Text = "&Lua Functions List";
this.FunctionsListMenuItem.Click += new System.EventHandler(this.FunctionsListMenuItem_Click);
//
// OnlineDocsMenuItem
//
this.OnlineDocsMenuItem.Name = "OnlineDocsMenuItem";
this.OnlineDocsMenuItem.Size = new System.Drawing.Size(189, 22);
this.OnlineDocsMenuItem.Text = "Documentation online...";
this.OnlineDocsMenuItem.Click += new System.EventHandler(this.OnlineDocsMenuItem_Click);
//
@ -560,41 +440,26 @@ namespace BizHawk.Client.EmuHawk
//
// ClearConsoleContextItem
//
this.ClearConsoleContextItem.Name = "ClearConsoleContextItem";
this.ClearConsoleContextItem.Size = new System.Drawing.Size(203, 22);
this.ClearConsoleContextItem.Text = "&Clear";
this.ClearConsoleContextItem.Click += new System.EventHandler(this.ClearConsoleContextItem_Click);
//
// SelectAllContextItem
//
this.SelectAllContextItem.Name = "SelectAllContextItem";
this.SelectAllContextItem.Size = new System.Drawing.Size(203, 22);
this.SelectAllContextItem.Text = "Select &All";
this.SelectAllContextItem.Click += new System.EventHandler(this.SelectAllContextItem_Click);
//
// CopyContextItem
//
this.CopyContextItem.Name = "CopyContextItem";
this.CopyContextItem.Size = new System.Drawing.Size(203, 22);
this.CopyContextItem.Text = "Copy";
this.CopyContextItem.Click += new System.EventHandler(this.CopyContextItem_Click);
//
// toolStripSeparator5
//
this.toolStripSeparator5.Name = "toolStripSeparator5";
this.toolStripSeparator5.Size = new System.Drawing.Size(200, 6);
//
// RegisteredFunctionsContextItem
//
this.RegisteredFunctionsContextItem.Name = "RegisteredFunctionsContextItem";
this.RegisteredFunctionsContextItem.Size = new System.Drawing.Size(203, 22);
this.RegisteredFunctionsContextItem.Text = "&Registered Functions";
this.RegisteredFunctionsContextItem.Click += new System.EventHandler(this.RegisteredFunctionsMenuItem_Click);
//
// ClearRegisteredFunctionsLogContextItem
//
this.ClearRegisteredFunctionsLogContextItem.Name = "ClearRegisteredFunctionsLogContextItem";
this.ClearRegisteredFunctionsLogContextItem.Size = new System.Drawing.Size(203, 22);
this.ClearRegisteredFunctionsLogContextItem.Text = "Clear Registered Functions";
this.ClearRegisteredFunctionsLogContextItem.Click += new System.EventHandler(this.ClearRegisteredFunctionsContextMenuItem_Click);
//
@ -729,11 +594,6 @@ namespace BizHawk.Client.EmuHawk
this.DuplicateToolbarButton.Text = "Duplicate Script";
this.DuplicateToolbarButton.Click += new System.EventHandler(this.DuplicateScriptMenuItem_Click);
//
// toolStripSeparator2
//
this.toolStripSeparator2.Name = "toolStripSeparator2";
this.toolStripSeparator2.Size = new System.Drawing.Size(6, 25);
//
// MoveUpToolbarItem
//
this.MoveUpToolbarItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
@ -761,11 +621,6 @@ namespace BizHawk.Client.EmuHawk
this.InsertSeparatorToolbarItem.Text = "Insert Separator";
this.InsertSeparatorToolbarItem.Click += new System.EventHandler(this.InsertSeparatorMenuItem_Click);
//
// toolStripSeparator10
//
this.toolStripSeparator10.Name = "toolStripSeparator10";
this.toolStripSeparator10.Size = new System.Drawing.Size(6, 25);
//
// EraseToolbarItem
//
this.EraseToolbarItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
@ -861,82 +716,82 @@ namespace BizHawk.Client.EmuHawk
private InputRoll LuaListView;
private MenuStripEx menuStrip1;
private System.Windows.Forms.ToolStripMenuItem FileSubMenu;
private System.Windows.Forms.ToolStripMenuItem SaveSessionMenuItem;
private System.Windows.Forms.ToolStripMenuItem SaveSessionAsMenuItem;
private System.Windows.Forms.ToolStripSeparator toolStripSeparator1;
private System.Windows.Forms.ToolStripMenuItem ExitMenuItem;
private System.Windows.Forms.ToolStripMenuItem ScriptSubMenu;
private System.Windows.Forms.ToolStripMenuItem EditScriptMenuItem;
private System.Windows.Forms.ToolStripMenuItem ToggleScriptMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx FileSubMenu;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx SaveSessionMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx SaveSessionAsMenuItem;
private BizHawk.WinForms.Controls.ToolStripSeparatorEx toolStripSeparator1;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx ExitMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx ScriptSubMenu;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx EditScriptMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx ToggleScriptMenuItem;
private System.Windows.Forms.GroupBox groupBox1;
private System.Windows.Forms.ToolStripMenuItem NewSessionMenuItem;
private System.Windows.Forms.ToolStripMenuItem SettingsSubMenu;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx NewSessionMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx SettingsSubMenu;
private BizHawk.WinForms.Controls.LocLabelEx NumberOfScripts;
private System.Windows.Forms.ToolStripMenuItem InsertSeparatorMenuItem;
private System.Windows.Forms.ToolStripMenuItem StopAllScriptsMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx InsertSeparatorMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx StopAllScriptsMenuItem;
private System.Windows.Forms.ContextMenuStrip ScriptListContextMenu;
private System.Windows.Forms.ToolStripMenuItem RecentScriptsSubMenu;
private System.Windows.Forms.ToolStripSeparator toolStripSeparator3;
private System.Windows.Forms.ToolStripMenuItem StopAllScriptsContextItem;
private System.Windows.Forms.ToolStripMenuItem RemoveScriptContextItem;
private System.Windows.Forms.ToolStripMenuItem InsertSeperatorContextItem;
private System.Windows.Forms.ToolStripSeparator ScriptContextSeparator;
private System.Windows.Forms.ToolStripMenuItem EditScriptContextItem;
private System.Windows.Forms.ToolStripMenuItem ToggleScriptContextItem;
private System.Windows.Forms.ToolStripMenuItem RemoveScriptMenuItem;
private System.Windows.Forms.ToolStripSeparator toolStripSeparator6;
private System.Windows.Forms.ToolStripSeparator toolStripSeparator7;
private System.Windows.Forms.ToolStripMenuItem MoveUpMenuItem;
private System.Windows.Forms.ToolStripMenuItem MoveDownMenuItem;
private System.Windows.Forms.ToolStripMenuItem SelectAllMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx RecentScriptsSubMenu;
private BizHawk.WinForms.Controls.ToolStripSeparatorEx toolStripSeparator3;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx StopAllScriptsContextItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx RemoveScriptContextItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx InsertSeperatorContextItem;
private BizHawk.WinForms.Controls.ToolStripSeparatorEx ScriptContextSeparator;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx EditScriptContextItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx ToggleScriptContextItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx RemoveScriptMenuItem;
private BizHawk.WinForms.Controls.ToolStripSeparatorEx toolStripSeparator6;
private BizHawk.WinForms.Controls.ToolStripSeparatorEx toolStripSeparator7;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx MoveUpMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx MoveDownMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx SelectAllMenuItem;
private ToolStripEx toolStrip1;
private System.Windows.Forms.ToolStripButton OpenScriptToolbarItem;
private System.Windows.Forms.ToolStripButton RemoveScriptToolbarItem;
private System.Windows.Forms.ToolStripButton ToggleScriptToolbarItem;
private System.Windows.Forms.ToolStripButton InsertSeparatorToolbarItem;
private System.Windows.Forms.ToolStripSeparator toolStripSeparator2;
private BizHawk.WinForms.Controls.ToolStripSeparatorEx toolStripSeparator2;
private System.Windows.Forms.ToolStripButton MoveUpToolbarItem;
private System.Windows.Forms.ToolStripButton toolStripButtonMoveDown;
private System.Windows.Forms.ToolStripButton EditToolbarItem;
private System.Windows.Forms.ToolStripMenuItem OpenScriptMenuItem;
private System.Windows.Forms.ToolStripMenuItem OpenSessionMenuItem;
private System.Windows.Forms.ToolStripSeparator toolStripSeparator9;
private System.Windows.Forms.ToolStripMenuItem RecentSessionsSubMenu;
private System.Windows.Forms.ToolStripSeparator toolStripSeparator8;
private System.Windows.Forms.ToolStripMenuItem HelpSubMenu;
private System.Windows.Forms.ToolStripMenuItem FunctionsListMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx OpenScriptMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx OpenSessionMenuItem;
private BizHawk.WinForms.Controls.ToolStripSeparatorEx toolStripSeparator9;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx RecentSessionsSubMenu;
private BizHawk.WinForms.Controls.ToolStripSeparatorEx toolStripSeparator8;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx HelpSubMenu;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx FunctionsListMenuItem;
private System.Windows.Forms.ContextMenuStrip ConsoleContextMenu;
private System.Windows.Forms.ToolStripMenuItem ClearConsoleContextItem;
private System.Windows.Forms.ToolStripMenuItem DisableScriptsOnLoadMenuItem;
private System.Windows.Forms.ToolStripMenuItem PauseScriptMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx ClearConsoleContextItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx DisableScriptsOnLoadMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx PauseScriptMenuItem;
private System.Windows.Forms.ToolStripButton PauseToolbarItem;
private System.Windows.Forms.ToolStripMenuItem PauseScriptContextItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx PauseScriptContextItem;
public System.Windows.Forms.RichTextBox OutputBox;
private BizHawk.WinForms.Controls.LocLabelEx OutputMessages;
private System.Windows.Forms.ToolStripMenuItem OnlineDocsMenuItem;
private System.Windows.Forms.ToolStripMenuItem NewScriptMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx OnlineDocsMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx NewScriptMenuItem;
private System.Windows.Forms.ToolStripButton NewScriptToolbarItem;
private System.Windows.Forms.ToolStripMenuItem RegisteredFunctionsMenuItem;
private System.Windows.Forms.ToolStripMenuItem RegisteredFunctionsContextItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx RegisteredFunctionsMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx RegisteredFunctionsContextItem;
private System.Windows.Forms.ToolStripButton RefreshScriptToolbarItem;
private System.Windows.Forms.ToolStripMenuItem RefreshScriptMenuItem;
private System.Windows.Forms.ToolStripSeparator toolStripSeparator10;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx RefreshScriptMenuItem;
private BizHawk.WinForms.Controls.ToolStripSeparatorEx toolStripSeparator10;
private System.Windows.Forms.ToolStripButton EraseToolbarItem;
private System.Windows.Forms.ToolStripButton DuplicateToolbarButton;
private System.Windows.Forms.ToolStripMenuItem DuplicateScriptMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx DuplicateScriptMenuItem;
private System.Windows.Forms.TextBox InputBox;
private System.Windows.Forms.SplitContainer splitContainer1;
private System.Windows.Forms.ToolStripMenuItem ReturnAllIfNoneSelectedMenuItem;
private System.Windows.Forms.ToolStripMenuItem ReloadWhenScriptFileChangesMenuItem;
private System.Windows.Forms.ToolStripSeparator toolStripSeparator4;
private System.Windows.Forms.ToolStripMenuItem RegisterToTextEditorsSubMenu;
private System.Windows.Forms.ToolStripMenuItem RegisterSublimeText2MenuItem;
private System.Windows.Forms.ToolStripMenuItem RegisterNotePadMenuItem;
private System.Windows.Forms.ToolStripMenuItem SelectAllContextItem;
private System.Windows.Forms.ToolStripMenuItem CopyContextItem;
private System.Windows.Forms.ToolStripMenuItem ClearRegisteredFunctionsContextItem;
private System.Windows.Forms.ToolStripSeparator toolStripSeparator5;
private System.Windows.Forms.ToolStripMenuItem ClearRegisteredFunctionsLogContextItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx ReturnAllIfNoneSelectedMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx ReloadWhenScriptFileChangesMenuItem;
private BizHawk.WinForms.Controls.ToolStripSeparatorEx toolStripSeparator4;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx RegisterToTextEditorsSubMenu;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx RegisterSublimeText2MenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx RegisterNotePadMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx SelectAllContextItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx CopyContextItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx ClearRegisteredFunctionsContextItem;
private BizHawk.WinForms.Controls.ToolStripSeparatorEx toolStripSeparator5;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx ClearRegisteredFunctionsLogContextItem;
}
}

View File

@ -37,8 +37,8 @@
this.CallButton = new System.Windows.Forms.Button();
this.RemoveButton = new System.Windows.Forms.Button();
this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components);
this.callToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.removeToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.callToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.removeToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.RemoveAllBtn = new System.Windows.Forms.Button();
this.contextMenuStrip1.SuspendLayout();
this.SuspendLayout();
@ -126,15 +126,11 @@
//
// callToolStripMenuItem
//
this.callToolStripMenuItem.Name = "callToolStripMenuItem";
this.callToolStripMenuItem.Size = new System.Drawing.Size(117, 22);
this.callToolStripMenuItem.Text = "&Call";
this.callToolStripMenuItem.Click += new System.EventHandler(this.CallButton_Click);
//
// removeToolStripMenuItem
//
this.removeToolStripMenuItem.Name = "removeToolStripMenuItem";
this.removeToolStripMenuItem.Size = new System.Drawing.Size(117, 22);
this.removeToolStripMenuItem.Text = "&Remove";
this.removeToolStripMenuItem.Click += new System.EventHandler(this.RemoveButton_Click);
//
@ -181,8 +177,8 @@
private System.Windows.Forms.Button CallButton;
private System.Windows.Forms.Button RemoveButton;
private System.Windows.Forms.ContextMenuStrip contextMenuStrip1;
private System.Windows.Forms.ToolStripMenuItem callToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem removeToolStripMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx callToolStripMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx removeToolStripMenuItem;
private System.Windows.Forms.Button RemoveAllBtn;
}
}

View File

@ -29,13 +29,13 @@
private void InitializeComponent()
{
this.MacroMenu = new System.Windows.Forms.MenuStrip();
this.FileSubMenu = new System.Windows.Forms.ToolStripMenuItem();
this.saveAsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.loadMacroToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.RecentToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
this.sepToolStripMenuItem = new System.Windows.Forms.ToolStripSeparator();
this.ExitMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.FileSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.saveAsToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.loadMacroToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.RecentToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.toolStripSeparator1 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx();
this.sepToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripSeparatorEx();
this.ExitMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.NameTextbox = new System.Windows.Forms.TextBox();
this.ReplaceBox = new System.Windows.Forms.CheckBox();
this.label2 = new BizHawk.WinForms.Controls.LocLabelEx();
@ -73,21 +73,15 @@
this.RecentToolStripMenuItem,
this.sepToolStripMenuItem,
this.ExitMenuItem});
this.FileSubMenu.Name = "FileSubMenu";
this.FileSubMenu.Size = new System.Drawing.Size(37, 20);
this.FileSubMenu.Text = "&File";
//
// saveAsToolStripMenuItem
//
this.saveAsToolStripMenuItem.Name = "saveAsToolStripMenuItem";
this.saveAsToolStripMenuItem.Size = new System.Drawing.Size(170, 22);
this.saveAsToolStripMenuItem.Text = "Save Selected As...";
this.saveAsToolStripMenuItem.Click += new System.EventHandler(this.SaveAsToolStripMenuItem_Click);
//
// loadMacroToolStripMenuItem
//
this.loadMacroToolStripMenuItem.Name = "loadMacroToolStripMenuItem";
this.loadMacroToolStripMenuItem.Size = new System.Drawing.Size(170, 22);
this.loadMacroToolStripMenuItem.Text = "Load Macro...";
this.loadMacroToolStripMenuItem.Click += new System.EventHandler(this.LoadMacroToolStripMenuItem_Click);
//
@ -95,26 +89,12 @@
//
this.RecentToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.toolStripSeparator1});
this.RecentToolStripMenuItem.Name = "RecentToolStripMenuItem";
this.RecentToolStripMenuItem.Size = new System.Drawing.Size(170, 22);
this.RecentToolStripMenuItem.Text = "Recent";
this.RecentToolStripMenuItem.DropDownOpened += new System.EventHandler(this.RecentToolStripMenuItem_DropDownOpened);
//
// toolStripSeparator1
//
this.toolStripSeparator1.Name = "toolStripSeparator1";
this.toolStripSeparator1.Size = new System.Drawing.Size(57, 6);
//
// sepToolStripMenuItem
//
this.sepToolStripMenuItem.Name = "sepToolStripMenuItem";
this.sepToolStripMenuItem.Size = new System.Drawing.Size(167, 6);
//
// ExitMenuItem
//
this.ExitMenuItem.Name = "ExitMenuItem";
this.ExitMenuItem.ShortcutKeyDisplayString = "Alt+F4";
this.ExitMenuItem.Size = new System.Drawing.Size(170, 22);
this.ExitMenuItem.Text = "E&xit";
this.ExitMenuItem.Click += new System.EventHandler(this.ExitMenuItem_Click);
//
@ -292,8 +272,8 @@
#endregion
private System.Windows.Forms.MenuStrip MacroMenu;
private System.Windows.Forms.ToolStripMenuItem FileSubMenu;
private System.Windows.Forms.ToolStripMenuItem ExitMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx FileSubMenu;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx ExitMenuItem;
private System.Windows.Forms.TextBox NameTextbox;
private System.Windows.Forms.CheckBox ReplaceBox;
private BizHawk.WinForms.Controls.LocLabelEx label2;
@ -305,12 +285,12 @@
private System.Windows.Forms.ListBox ZonesList;
private BizHawk.WinForms.Controls.LocLabelEx label3;
private BizHawk.WinForms.Controls.LocLabelEx label1;
private System.Windows.Forms.ToolStripMenuItem saveAsToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem loadMacroToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem RecentToolStripMenuItem;
private System.Windows.Forms.ToolStripSeparator sepToolStripMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx saveAsToolStripMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx loadMacroToolStripMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx RecentToolStripMenuItem;
private BizHawk.WinForms.Controls.ToolStripSeparatorEx sepToolStripMenuItem;
private System.Windows.Forms.Button CurrentButton;
private System.Windows.Forms.ToolStripSeparator toolStripSeparator1;
private BizHawk.WinForms.Controls.ToolStripSeparatorEx toolStripSeparator1;
private System.Windows.Forms.CheckBox OverlayBox;
}

View File

@ -42,9 +42,9 @@ namespace BizHawk.Client.EmuHawk
this.label2 = new BizHawk.WinForms.Controls.LocLabelEx();
this.groupBox2 = new System.Windows.Forms.GroupBox();
this.menuStrip1 = new MenuStripEx();
this.FileSubMenu = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
this.ExitMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.FileSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.toolStripSeparator2 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx();
this.ExitMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.groupBox1.SuspendLayout();
this.groupBox2.SuspendLayout();
this.menuStrip1.SuspendLayout();
@ -153,20 +153,11 @@ namespace BizHawk.Client.EmuHawk
this.FileSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.toolStripSeparator2,
this.ExitMenuItem});
this.FileSubMenu.Name = "FileSubMenu";
this.FileSubMenu.Size = new System.Drawing.Size(37, 20);
this.FileSubMenu.Text = "&File";
//
// toolStripSeparator2
//
this.toolStripSeparator2.Name = "toolStripSeparator2";
this.toolStripSeparator2.Size = new System.Drawing.Size(131, 6);
//
// ExitMenuItem
//
this.ExitMenuItem.Name = "ExitMenuItem";
this.ExitMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Alt | System.Windows.Forms.Keys.F4)));
this.ExitMenuItem.Size = new System.Drawing.Size(134, 22);
this.ExitMenuItem.Text = "E&xit";
this.ExitMenuItem.Click += new System.EventHandler(this.ExitMenuItem_Click);
//
@ -202,9 +193,9 @@ namespace BizHawk.Client.EmuHawk
private System.Windows.Forms.Button btnExport;
private BizHawk.WinForms.Controls.LocLabelEx lblContents;
private MenuStripEx menuStrip1;
private System.Windows.Forms.ToolStripMenuItem FileSubMenu;
private System.Windows.Forms.ToolStripSeparator toolStripSeparator2;
private System.Windows.Forms.ToolStripMenuItem ExitMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx FileSubMenu;
private BizHawk.WinForms.Controls.ToolStripSeparatorEx toolStripSeparator2;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx ExitMenuItem;
private System.Windows.Forms.TextBox textBox1;
private System.Windows.Forms.TextBox txtPatternLength;
private System.Windows.Forms.GroupBox groupBox1;

View File

@ -34,15 +34,15 @@ namespace BizHawk.Client.EmuHawk
this.groupBox1 = new System.Windows.Forms.GroupBox();
this.NameTableView = new BizHawk.Client.EmuHawk.NameTableViewer();
this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components);
this.ScreenshotAsContextMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.SaveImageClipboardMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.RefreshImageContextMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.ScreenshotAsContextMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.SaveImageClipboardMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.RefreshImageContextMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.menuStrip1 = new MenuStripEx();
this.FileSubMenu = new System.Windows.Forms.ToolStripMenuItem();
this.ScreenshotMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.ScreenshotToClipboardMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
this.ExitMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.FileSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.ScreenshotMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.ScreenshotToClipboardMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.toolStripSeparator2 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx();
this.ExitMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.txtScanline = new System.Windows.Forms.TextBox();
this.rbNametableNW = new System.Windows.Forms.RadioButton();
this.rbNametableNE = new System.Windows.Forms.RadioButton();
@ -109,23 +109,17 @@ namespace BizHawk.Client.EmuHawk
//
// ScreenshotAsContextMenuItem
//
this.ScreenshotAsContextMenuItem.Name = "ScreenshotAsContextMenuItem";
this.ScreenshotAsContextMenuItem.Size = new System.Drawing.Size(247, 22);
this.ScreenshotAsContextMenuItem.Text = "&Save Image...";
this.ScreenshotAsContextMenuItem.Click += new System.EventHandler(this.ScreenshotMenuItem_Click);
//
// SaveImageClipboardMenuItem
//
this.SaveImageClipboardMenuItem.Name = "SaveImageClipboardMenuItem";
this.SaveImageClipboardMenuItem.ShortcutKeyDisplayString = "Ctrl+C";
this.SaveImageClipboardMenuItem.Size = new System.Drawing.Size(247, 22);
this.SaveImageClipboardMenuItem.Text = "&Copy Image to clipboard";
this.SaveImageClipboardMenuItem.Click += new System.EventHandler(this.ScreenshotToClipboardMenuItem_Click);
//
// RefreshImageContextMenuItem
//
this.RefreshImageContextMenuItem.Name = "RefreshImageContextMenuItem";
this.RefreshImageContextMenuItem.Size = new System.Drawing.Size(247, 22);
this.RefreshImageContextMenuItem.Text = "&Refresh Image";
this.RefreshImageContextMenuItem.Click += new System.EventHandler(this.RefreshImageContextMenuItem_Click);
//
@ -144,35 +138,22 @@ namespace BizHawk.Client.EmuHawk
this.ScreenshotToClipboardMenuItem,
this.toolStripSeparator2,
this.ExitMenuItem});
this.FileSubMenu.Name = "FileSubMenu";
this.FileSubMenu.Size = new System.Drawing.Size(37, 20);
this.FileSubMenu.Text = "&File";
//
// ScreenshotMenuItem
//
this.ScreenshotMenuItem.Name = "ScreenshotMenuItem";
this.ScreenshotMenuItem.Size = new System.Drawing.Size(243, 22);
this.ScreenshotMenuItem.Text = "Save Screenshot &As...";
this.ScreenshotMenuItem.Click += new System.EventHandler(this.ScreenshotMenuItem_Click);
//
// ScreenshotToClipboardMenuItem
//
this.ScreenshotToClipboardMenuItem.Name = "ScreenshotToClipboardMenuItem";
this.ScreenshotToClipboardMenuItem.ShortcutKeyDisplayString = "Ctrl+C";
this.ScreenshotToClipboardMenuItem.Size = new System.Drawing.Size(243, 22);
this.ScreenshotToClipboardMenuItem.Text = "Screenshot to &Clipboard";
this.ScreenshotToClipboardMenuItem.Click += new System.EventHandler(this.ScreenshotToClipboardMenuItem_Click);
//
// toolStripSeparator2
//
this.toolStripSeparator2.Name = "toolStripSeparator2";
this.toolStripSeparator2.Size = new System.Drawing.Size(240, 6);
//
// ExitMenuItem
//
this.ExitMenuItem.Name = "ExitMenuItem";
this.ExitMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Alt | System.Windows.Forms.Keys.F4)));
this.ExitMenuItem.Size = new System.Drawing.Size(243, 22);
this.ExitMenuItem.Text = "E&xit";
this.ExitMenuItem.Click += new System.EventHandler(this.ExitMenuItem_Click);
//
@ -447,15 +428,15 @@ namespace BizHawk.Client.EmuHawk
private BizHawk.WinForms.Controls.LocLabelEx label6;
private System.Windows.Forms.TrackBar RefreshRate;
private BizHawk.WinForms.Controls.LocLabelEx label7;
private System.Windows.Forms.ToolStripMenuItem FileSubMenu;
private System.Windows.Forms.ToolStripMenuItem ScreenshotMenuItem;
private System.Windows.Forms.ToolStripSeparator toolStripSeparator2;
private System.Windows.Forms.ToolStripMenuItem ExitMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx FileSubMenu;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx ScreenshotMenuItem;
private BizHawk.WinForms.Controls.ToolStripSeparatorEx toolStripSeparator2;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx ExitMenuItem;
private System.Windows.Forms.ContextMenuStrip contextMenuStrip1;
private System.Windows.Forms.ToolStripMenuItem ScreenshotAsContextMenuItem;
private System.Windows.Forms.ToolStripMenuItem RefreshImageContextMenuItem;
private System.Windows.Forms.ToolStripMenuItem SaveImageClipboardMenuItem;
private System.Windows.Forms.ToolStripMenuItem ScreenshotToClipboardMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx ScreenshotAsContextMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx RefreshImageContextMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx SaveImageClipboardMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx ScreenshotToClipboardMenuItem;
private System.Windows.Forms.ToolTip toolTip1;
}
}

View File

@ -36,15 +36,15 @@ namespace BizHawk.Client.EmuHawk
this.Table0PaletteLabel = new BizHawk.WinForms.Controls.LocLabelEx();
this.PatternView = new BizHawk.Client.EmuHawk.PatternViewer();
this.PatternContext = new System.Windows.Forms.ContextMenuStrip(this.components);
this.PatternSaveImageMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.PatternImageToClipboardMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.PatternRefreshMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.PatternSaveImageMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.PatternImageToClipboardMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.PatternRefreshMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.PalettesGroup = new System.Windows.Forms.GroupBox();
this.PaletteView = new BizHawk.Client.EmuHawk.PaletteViewer();
this.PaletteContext = new System.Windows.Forms.ContextMenuStrip(this.components);
this.PaletteSaveImageMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.PaletteImageToClipboardMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.PaletteRefreshMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.PaletteSaveImageMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.PaletteImageToClipboardMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.PaletteRefreshMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.DetailsBox = new System.Windows.Forms.GroupBox();
this.label2 = new BizHawk.WinForms.Controls.LocLabelEx();
this.Value5Label = new BizHawk.WinForms.Controls.LocLabelEx();
@ -58,9 +58,9 @@ namespace BizHawk.Client.EmuHawk
this.SpriteViewerBox = new System.Windows.Forms.GroupBox();
this.SpriteView = new BizHawk.Client.EmuHawk.SpriteViewer();
this.SpriteContext = new System.Windows.Forms.ContextMenuStrip(this.components);
this.SpriteSaveImageMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.SpriteImageToClipboardMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.SpriteRefreshMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.SpriteSaveImageMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.SpriteImageToClipboardMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.SpriteRefreshMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.txtScanline = new System.Windows.Forms.TextBox();
this.groupBox1 = new System.Windows.Forms.GroupBox();
this.groupBox2 = new System.Windows.Forms.GroupBox();
@ -68,37 +68,37 @@ namespace BizHawk.Client.EmuHawk
this.label3 = new BizHawk.WinForms.Controls.LocLabelEx();
this.RefreshRate = new System.Windows.Forms.TrackBar();
this.NesPPUMenu = new MenuStripEx();
this.FileSubMenu = new System.Windows.Forms.ToolStripMenuItem();
this.SavePaletteScreenshotMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.SavePatternScreenshotMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.SaveSpriteScreenshotMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
this.CopyPaletteToClipboardMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.CopyPatternToClipboardMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.CopySpriteToClipboardMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
this.ExitMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.PatternSubMenu = new System.Windows.Forms.ToolStripMenuItem();
this.Table0PaletteSubMenu = new System.Windows.Forms.ToolStripMenuItem();
this.Table0P0MenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.Table0P1MenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.Table0P2MenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.Table0P3MenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.Table0P4MenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.Table0P5MenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.Table0P6MenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.Table0P7MenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.Table1PaletteSubMenu = new System.Windows.Forms.ToolStripMenuItem();
this.Table1P0MenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.Table1P1MenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.Table1P2MenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.Table1P3MenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.Table1P4MenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.Table1P5MenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.Table1P6MenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.Table1P7MenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.SettingsSubMenu = new System.Windows.Forms.ToolStripMenuItem();
this.cHRROMTileViewerToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.FileSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.SavePaletteScreenshotMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.SavePatternScreenshotMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.SaveSpriteScreenshotMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.toolStripSeparator1 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx();
this.CopyPaletteToClipboardMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.CopyPatternToClipboardMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.CopySpriteToClipboardMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.toolStripSeparator2 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx();
this.ExitMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.PatternSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.Table0PaletteSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.Table0P0MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.Table0P1MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.Table0P2MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.Table0P3MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.Table0P4MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.Table0P5MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.Table0P6MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.Table0P7MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.Table1PaletteSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.Table1P0MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.Table1P1MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.Table1P2MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.Table1P3MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.Table1P4MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.Table1P5MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.Table1P6MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.Table1P7MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.SettingsSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.cHRROMTileViewerToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.NesPPUStatusBar = new StatusStripEx();
this.toolStripStatusLabel1 = new System.Windows.Forms.ToolStripStatusLabel();
this.Messagetimer = new System.Windows.Forms.Timer(this.components);
@ -178,22 +178,16 @@ namespace BizHawk.Client.EmuHawk
//
// PatternSaveImageMenuItem
//
this.PatternSaveImageMenuItem.Name = "PatternSaveImageMenuItem";
this.PatternSaveImageMenuItem.Size = new System.Drawing.Size(214, 26);
this.PatternSaveImageMenuItem.Text = "&Save Image...";
this.PatternSaveImageMenuItem.Click += new System.EventHandler(this.SavePatternScreenshotMenuItem_Click);
//
// PatternImageToClipboardMenuItem
//
this.PatternImageToClipboardMenuItem.Name = "PatternImageToClipboardMenuItem";
this.PatternImageToClipboardMenuItem.Size = new System.Drawing.Size(214, 26);
this.PatternImageToClipboardMenuItem.Text = "Image to &Clipboard";
this.PatternImageToClipboardMenuItem.Click += new System.EventHandler(this.CopyPatternToClipboardMenuItem_Click);
//
// PatternRefreshMenuItem
//
this.PatternRefreshMenuItem.Name = "PatternRefreshMenuItem";
this.PatternRefreshMenuItem.Size = new System.Drawing.Size(214, 26);
this.PatternRefreshMenuItem.Text = "&Refresh";
this.PatternRefreshMenuItem.Click += new System.EventHandler(this.PatternRefreshMenuItem_Click);
//
@ -236,22 +230,16 @@ namespace BizHawk.Client.EmuHawk
//
// PaletteSaveImageMenuItem
//
this.PaletteSaveImageMenuItem.Name = "PaletteSaveImageMenuItem";
this.PaletteSaveImageMenuItem.Size = new System.Drawing.Size(214, 26);
this.PaletteSaveImageMenuItem.Text = "&Save Image...";
this.PaletteSaveImageMenuItem.Click += new System.EventHandler(this.SavePaletteScreenshotMenuItem_Click);
//
// PaletteImageToClipboardMenuItem
//
this.PaletteImageToClipboardMenuItem.Name = "PaletteImageToClipboardMenuItem";
this.PaletteImageToClipboardMenuItem.Size = new System.Drawing.Size(214, 26);
this.PaletteImageToClipboardMenuItem.Text = "Image to &Clipboard";
this.PaletteImageToClipboardMenuItem.Click += new System.EventHandler(this.CopyPaletteToClipboardMenuItem_Click);
//
// PaletteRefreshMenuItem
//
this.PaletteRefreshMenuItem.Name = "PaletteRefreshMenuItem";
this.PaletteRefreshMenuItem.Size = new System.Drawing.Size(214, 26);
this.PaletteRefreshMenuItem.Text = "&Refresh";
this.PaletteRefreshMenuItem.Click += new System.EventHandler(this.PaletteRefreshMenuItem_Click);
//
@ -380,22 +368,16 @@ namespace BizHawk.Client.EmuHawk
//
// SpriteSaveImageMenuItem
//
this.SpriteSaveImageMenuItem.Name = "SpriteSaveImageMenuItem";
this.SpriteSaveImageMenuItem.Size = new System.Drawing.Size(214, 26);
this.SpriteSaveImageMenuItem.Text = "&Save Image...";
this.SpriteSaveImageMenuItem.Click += new System.EventHandler(this.SaveSpriteScreenshotMenuItem_Click);
//
// SpriteImageToClipboardMenuItem
//
this.SpriteImageToClipboardMenuItem.Name = "SpriteImageToClipboardMenuItem";
this.SpriteImageToClipboardMenuItem.Size = new System.Drawing.Size(214, 26);
this.SpriteImageToClipboardMenuItem.Text = "Image to &Clipboard";
this.SpriteImageToClipboardMenuItem.Click += new System.EventHandler(this.CopySpriteToClipboardMenuItem_Click);
//
// SpriteRefreshMenuItem
//
this.SpriteRefreshMenuItem.Name = "SpriteRefreshMenuItem";
this.SpriteRefreshMenuItem.Size = new System.Drawing.Size(214, 26);
this.SpriteRefreshMenuItem.Text = "&Refresh";
this.SpriteRefreshMenuItem.Click += new System.EventHandler(this.SpriteRefreshMenuItem_Click);
//
@ -487,66 +469,40 @@ namespace BizHawk.Client.EmuHawk
this.CopySpriteToClipboardMenuItem,
this.toolStripSeparator2,
this.ExitMenuItem});
this.FileSubMenu.Name = "FileSubMenu";
this.FileSubMenu.Size = new System.Drawing.Size(44, 24);
this.FileSubMenu.Text = "&File";
//
// SavePaletteScreenshotMenuItem
//
this.SavePaletteScreenshotMenuItem.Name = "SavePaletteScreenshotMenuItem";
this.SavePaletteScreenshotMenuItem.Size = new System.Drawing.Size(256, 26);
this.SavePaletteScreenshotMenuItem.Text = "Save Palette Screenshot...";
this.SavePaletteScreenshotMenuItem.Click += new System.EventHandler(this.SavePaletteScreenshotMenuItem_Click);
//
// SavePatternScreenshotMenuItem
//
this.SavePatternScreenshotMenuItem.Name = "SavePatternScreenshotMenuItem";
this.SavePatternScreenshotMenuItem.Size = new System.Drawing.Size(256, 26);
this.SavePatternScreenshotMenuItem.Text = "Save Pattern Screenshot...";
this.SavePatternScreenshotMenuItem.Click += new System.EventHandler(this.SavePatternScreenshotMenuItem_Click);
//
// SaveSpriteScreenshotMenuItem
//
this.SaveSpriteScreenshotMenuItem.Name = "SaveSpriteScreenshotMenuItem";
this.SaveSpriteScreenshotMenuItem.Size = new System.Drawing.Size(256, 26);
this.SaveSpriteScreenshotMenuItem.Text = "Save Sprite Screenshot...";
this.SaveSpriteScreenshotMenuItem.Click += new System.EventHandler(this.SaveSpriteScreenshotMenuItem_Click);
//
// toolStripSeparator1
//
this.toolStripSeparator1.Name = "toolStripSeparator1";
this.toolStripSeparator1.Size = new System.Drawing.Size(253, 6);
//
// CopyPaletteToClipboardMenuItem
//
this.CopyPaletteToClipboardMenuItem.Name = "CopyPaletteToClipboardMenuItem";
this.CopyPaletteToClipboardMenuItem.Size = new System.Drawing.Size(256, 26);
this.CopyPaletteToClipboardMenuItem.Text = "Copy Palette to Clipboard";
this.CopyPaletteToClipboardMenuItem.Click += new System.EventHandler(this.CopyPaletteToClipboardMenuItem_Click);
//
// CopyPatternToClipboardMenuItem
//
this.CopyPatternToClipboardMenuItem.Name = "CopyPatternToClipboardMenuItem";
this.CopyPatternToClipboardMenuItem.Size = new System.Drawing.Size(256, 26);
this.CopyPatternToClipboardMenuItem.Text = "Copy Pattern to Clipboard";
this.CopyPatternToClipboardMenuItem.Click += new System.EventHandler(this.CopyPatternToClipboardMenuItem_Click);
//
// CopySpriteToClipboardMenuItem
//
this.CopySpriteToClipboardMenuItem.Name = "CopySpriteToClipboardMenuItem";
this.CopySpriteToClipboardMenuItem.Size = new System.Drawing.Size(256, 26);
this.CopySpriteToClipboardMenuItem.Text = "Copy Sprite to Clipboard";
this.CopySpriteToClipboardMenuItem.Click += new System.EventHandler(this.CopySpriteToClipboardMenuItem_Click);
//
// toolStripSeparator2
//
this.toolStripSeparator2.Name = "toolStripSeparator2";
this.toolStripSeparator2.Size = new System.Drawing.Size(253, 6);
//
// ExitMenuItem
//
this.ExitMenuItem.Name = "ExitMenuItem";
this.ExitMenuItem.Size = new System.Drawing.Size(256, 26);
this.ExitMenuItem.Text = "E&xit";
this.ExitMenuItem.Click += new System.EventHandler(this.ExitMenuItem_Click);
//
@ -555,8 +511,6 @@ namespace BizHawk.Client.EmuHawk
this.PatternSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.Table0PaletteSubMenu,
this.Table1PaletteSubMenu});
this.PatternSubMenu.Name = "PatternSubMenu";
this.PatternSubMenu.Size = new System.Drawing.Size(67, 24);
this.PatternSubMenu.Text = "&Pattern";
//
// Table0PaletteSubMenu
@ -570,64 +524,46 @@ namespace BizHawk.Client.EmuHawk
this.Table0P5MenuItem,
this.Table0P6MenuItem,
this.Table0P7MenuItem});
this.Table0PaletteSubMenu.Name = "Table0PaletteSubMenu";
this.Table0PaletteSubMenu.Size = new System.Drawing.Size(180, 26);
this.Table0PaletteSubMenu.Text = "Table 0 Palette";
this.Table0PaletteSubMenu.DropDownOpened += new System.EventHandler(this.Table0PaletteSubMenu_DropDownOpened);
//
// Table0P0MenuItem
//
this.Table0P0MenuItem.Name = "Table0P0MenuItem";
this.Table0P0MenuItem.Size = new System.Drawing.Size(92, 26);
this.Table0P0MenuItem.Text = "0";
this.Table0P0MenuItem.Click += new System.EventHandler(this.Palette_Click);
//
// Table0P1MenuItem
//
this.Table0P1MenuItem.Name = "Table0P1MenuItem";
this.Table0P1MenuItem.Size = new System.Drawing.Size(92, 26);
this.Table0P1MenuItem.Text = "1";
this.Table0P1MenuItem.Click += new System.EventHandler(this.Palette_Click);
//
// Table0P2MenuItem
//
this.Table0P2MenuItem.Name = "Table0P2MenuItem";
this.Table0P2MenuItem.Size = new System.Drawing.Size(92, 26);
this.Table0P2MenuItem.Text = "2";
this.Table0P2MenuItem.Click += new System.EventHandler(this.Palette_Click);
//
// Table0P3MenuItem
//
this.Table0P3MenuItem.Name = "Table0P3MenuItem";
this.Table0P3MenuItem.Size = new System.Drawing.Size(92, 26);
this.Table0P3MenuItem.Text = "3";
this.Table0P3MenuItem.Click += new System.EventHandler(this.Palette_Click);
//
// Table0P4MenuItem
//
this.Table0P4MenuItem.Name = "Table0P4MenuItem";
this.Table0P4MenuItem.Size = new System.Drawing.Size(92, 26);
this.Table0P4MenuItem.Text = "4";
this.Table0P4MenuItem.Click += new System.EventHandler(this.Palette_Click);
//
// Table0P5MenuItem
//
this.Table0P5MenuItem.Name = "Table0P5MenuItem";
this.Table0P5MenuItem.Size = new System.Drawing.Size(92, 26);
this.Table0P5MenuItem.Text = "5";
this.Table0P5MenuItem.Click += new System.EventHandler(this.Palette_Click);
//
// Table0P6MenuItem
//
this.Table0P6MenuItem.Name = "Table0P6MenuItem";
this.Table0P6MenuItem.Size = new System.Drawing.Size(92, 26);
this.Table0P6MenuItem.Text = "6";
this.Table0P6MenuItem.Click += new System.EventHandler(this.Palette_Click);
//
// Table0P7MenuItem
//
this.Table0P7MenuItem.Name = "Table0P7MenuItem";
this.Table0P7MenuItem.Size = new System.Drawing.Size(92, 26);
this.Table0P7MenuItem.Text = "7";
this.Table0P7MenuItem.Click += new System.EventHandler(this.Palette_Click);
//
@ -642,64 +578,46 @@ namespace BizHawk.Client.EmuHawk
this.Table1P5MenuItem,
this.Table1P6MenuItem,
this.Table1P7MenuItem});
this.Table1PaletteSubMenu.Name = "Table1PaletteSubMenu";
this.Table1PaletteSubMenu.Size = new System.Drawing.Size(180, 26);
this.Table1PaletteSubMenu.Text = "Table 1 Palette";
this.Table1PaletteSubMenu.DropDownOpened += new System.EventHandler(this.Table1PaletteSubMenu_DropDownOpened);
//
// Table1P0MenuItem
//
this.Table1P0MenuItem.Name = "Table1P0MenuItem";
this.Table1P0MenuItem.Size = new System.Drawing.Size(92, 26);
this.Table1P0MenuItem.Text = "0";
this.Table1P0MenuItem.Click += new System.EventHandler(this.Palette_Click);
//
// Table1P1MenuItem
//
this.Table1P1MenuItem.Name = "Table1P1MenuItem";
this.Table1P1MenuItem.Size = new System.Drawing.Size(92, 26);
this.Table1P1MenuItem.Text = "1";
this.Table1P1MenuItem.Click += new System.EventHandler(this.Palette_Click);
//
// Table1P2MenuItem
//
this.Table1P2MenuItem.Name = "Table1P2MenuItem";
this.Table1P2MenuItem.Size = new System.Drawing.Size(92, 26);
this.Table1P2MenuItem.Text = "2";
this.Table1P2MenuItem.Click += new System.EventHandler(this.Palette_Click);
//
// Table1P3MenuItem
//
this.Table1P3MenuItem.Name = "Table1P3MenuItem";
this.Table1P3MenuItem.Size = new System.Drawing.Size(92, 26);
this.Table1P3MenuItem.Text = "3";
this.Table1P3MenuItem.Click += new System.EventHandler(this.Palette_Click);
//
// Table1P4MenuItem
//
this.Table1P4MenuItem.Name = "Table1P4MenuItem";
this.Table1P4MenuItem.Size = new System.Drawing.Size(92, 26);
this.Table1P4MenuItem.Text = "4";
this.Table1P4MenuItem.Click += new System.EventHandler(this.Palette_Click);
//
// Table1P5MenuItem
//
this.Table1P5MenuItem.Name = "Table1P5MenuItem";
this.Table1P5MenuItem.Size = new System.Drawing.Size(92, 26);
this.Table1P5MenuItem.Text = "5";
this.Table1P5MenuItem.Click += new System.EventHandler(this.Palette_Click);
//
// Table1P6MenuItem
//
this.Table1P6MenuItem.Name = "Table1P6MenuItem";
this.Table1P6MenuItem.Size = new System.Drawing.Size(92, 26);
this.Table1P6MenuItem.Text = "6";
this.Table1P6MenuItem.Click += new System.EventHandler(this.Palette_Click);
//
// Table1P7MenuItem
//
this.Table1P7MenuItem.Name = "Table1P7MenuItem";
this.Table1P7MenuItem.Size = new System.Drawing.Size(92, 26);
this.Table1P7MenuItem.Text = "7";
this.Table1P7MenuItem.Click += new System.EventHandler(this.Palette_Click);
//
@ -707,15 +625,11 @@ namespace BizHawk.Client.EmuHawk
//
this.SettingsSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.cHRROMTileViewerToolStripMenuItem});
this.SettingsSubMenu.Name = "SettingsSubMenu";
this.SettingsSubMenu.Size = new System.Drawing.Size(74, 24);
this.SettingsSubMenu.Text = "&Settings";
this.SettingsSubMenu.DropDownOpened += new System.EventHandler(this.SettingsSubMenu_DropDownOpened);
//
// cHRROMTileViewerToolStripMenuItem
//
this.cHRROMTileViewerToolStripMenuItem.Name = "cHRROMTileViewerToolStripMenuItem";
this.cHRROMTileViewerToolStripMenuItem.Size = new System.Drawing.Size(227, 26);
this.cHRROMTileViewerToolStripMenuItem.Text = "CHR ROM Tile Viewer";
this.cHRROMTileViewerToolStripMenuItem.Click += new System.EventHandler(this.ChrROMTileViewerToolStripMenuItem_Click);
//
@ -861,48 +775,48 @@ namespace BizHawk.Client.EmuHawk
private BizHawk.WinForms.Controls.LocLabelEx label4;
private BizHawk.WinForms.Controls.LocLabelEx label3;
private MenuStripEx NesPPUMenu;
private System.Windows.Forms.ToolStripMenuItem SettingsSubMenu;
private System.Windows.Forms.ToolStripMenuItem PatternSubMenu;
private System.Windows.Forms.ToolStripMenuItem Table0PaletteSubMenu;
private System.Windows.Forms.ToolStripMenuItem Table0P0MenuItem;
private System.Windows.Forms.ToolStripMenuItem Table0P1MenuItem;
private System.Windows.Forms.ToolStripMenuItem Table0P2MenuItem;
private System.Windows.Forms.ToolStripMenuItem Table0P3MenuItem;
private System.Windows.Forms.ToolStripMenuItem Table0P4MenuItem;
private System.Windows.Forms.ToolStripMenuItem Table0P5MenuItem;
private System.Windows.Forms.ToolStripMenuItem Table0P6MenuItem;
private System.Windows.Forms.ToolStripMenuItem Table0P7MenuItem;
private System.Windows.Forms.ToolStripMenuItem Table1PaletteSubMenu;
private System.Windows.Forms.ToolStripMenuItem Table1P0MenuItem;
private System.Windows.Forms.ToolStripMenuItem Table1P1MenuItem;
private System.Windows.Forms.ToolStripMenuItem Table1P2MenuItem;
private System.Windows.Forms.ToolStripMenuItem Table1P3MenuItem;
private System.Windows.Forms.ToolStripMenuItem Table1P4MenuItem;
private System.Windows.Forms.ToolStripMenuItem Table1P5MenuItem;
private System.Windows.Forms.ToolStripMenuItem Table1P6MenuItem;
private System.Windows.Forms.ToolStripMenuItem Table1P7MenuItem;
private System.Windows.Forms.ToolStripMenuItem FileSubMenu;
private System.Windows.Forms.ToolStripMenuItem SavePaletteScreenshotMenuItem;
private System.Windows.Forms.ToolStripMenuItem SavePatternScreenshotMenuItem;
private System.Windows.Forms.ToolStripMenuItem SaveSpriteScreenshotMenuItem;
private System.Windows.Forms.ToolStripSeparator toolStripSeparator1;
private System.Windows.Forms.ToolStripMenuItem ExitMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx SettingsSubMenu;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx PatternSubMenu;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx Table0PaletteSubMenu;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx Table0P0MenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx Table0P1MenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx Table0P2MenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx Table0P3MenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx Table0P4MenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx Table0P5MenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx Table0P6MenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx Table0P7MenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx Table1PaletteSubMenu;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx Table1P0MenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx Table1P1MenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx Table1P2MenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx Table1P3MenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx Table1P4MenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx Table1P5MenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx Table1P6MenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx Table1P7MenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx FileSubMenu;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx SavePaletteScreenshotMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx SavePatternScreenshotMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx SaveSpriteScreenshotMenuItem;
private BizHawk.WinForms.Controls.ToolStripSeparatorEx toolStripSeparator1;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx ExitMenuItem;
private System.Windows.Forms.ContextMenuStrip PaletteContext;
private System.Windows.Forms.ToolStripMenuItem PaletteSaveImageMenuItem;
private System.Windows.Forms.ToolStripMenuItem PaletteRefreshMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx PaletteSaveImageMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx PaletteRefreshMenuItem;
private System.Windows.Forms.ContextMenuStrip PatternContext;
private System.Windows.Forms.ToolStripMenuItem PatternSaveImageMenuItem;
private System.Windows.Forms.ToolStripMenuItem PatternRefreshMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx PatternSaveImageMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx PatternRefreshMenuItem;
private System.Windows.Forms.ContextMenuStrip SpriteContext;
private System.Windows.Forms.ToolStripMenuItem SpriteSaveImageMenuItem;
private System.Windows.Forms.ToolStripMenuItem SpriteRefreshMenuItem;
private System.Windows.Forms.ToolStripMenuItem SpriteImageToClipboardMenuItem;
private System.Windows.Forms.ToolStripMenuItem PatternImageToClipboardMenuItem;
private System.Windows.Forms.ToolStripMenuItem PaletteImageToClipboardMenuItem;
private System.Windows.Forms.ToolStripMenuItem CopyPaletteToClipboardMenuItem;
private System.Windows.Forms.ToolStripMenuItem CopyPatternToClipboardMenuItem;
private System.Windows.Forms.ToolStripMenuItem CopySpriteToClipboardMenuItem;
private System.Windows.Forms.ToolStripSeparator toolStripSeparator2;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx SpriteSaveImageMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx SpriteRefreshMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx SpriteImageToClipboardMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx PatternImageToClipboardMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx PaletteImageToClipboardMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx CopyPaletteToClipboardMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx CopyPatternToClipboardMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx CopySpriteToClipboardMenuItem;
private BizHawk.WinForms.Controls.ToolStripSeparatorEx toolStripSeparator2;
private StatusStripEx NesPPUStatusBar;
private System.Windows.Forms.ToolStripStatusLabel toolStripStatusLabel1;
private System.Windows.Forms.Timer Messagetimer;
@ -910,6 +824,6 @@ namespace BizHawk.Client.EmuHawk
private BizHawk.WinForms.Controls.LocLabelEx label5;
private System.Windows.Forms.NumericUpDown numericUpDownCHRROMBank;
private PatternViewer CHRROMView;
private System.Windows.Forms.ToolStripMenuItem cHRROMTileViewerToolStripMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx cHRROMTileViewerToolStripMenuItem;
}
}

View File

@ -31,11 +31,11 @@ namespace BizHawk.Client.EmuHawk
private void InitializeComponent()
{
this.PceBgViewerMenu = new MenuStripEx();
this.ViewerSubMenu = new System.Windows.Forms.ToolStripMenuItem();
this.VDC1MenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.VDC2MenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
this.ExitMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.ViewerSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.VDC1MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.VDC2MenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.toolStripSeparator1 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx();
this.ExitMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.groupBox1 = new System.Windows.Forms.GroupBox();
this.canvas = new BizHawk.Client.EmuHawk.PceBgCanvas();
this.groupBox5 = new System.Windows.Forms.GroupBox();
@ -72,35 +72,22 @@ namespace BizHawk.Client.EmuHawk
this.VDC2MenuItem,
this.toolStripSeparator1,
this.ExitMenuItem});
this.ViewerSubMenu.Name = "ViewerSubMenu";
this.ViewerSubMenu.Size = new System.Drawing.Size(51, 20);
this.ViewerSubMenu.Text = "&Viewer";
this.ViewerSubMenu.DropDownOpened += new System.EventHandler(this.FileSubMenu_DropDownOpened);
//
// VDC1MenuItem
//
this.VDC1MenuItem.Name = "VDC1MenuItem";
this.VDC1MenuItem.Size = new System.Drawing.Size(152, 22);
this.VDC1MenuItem.Text = "VDC&1";
this.VDC1MenuItem.Click += new System.EventHandler(this.VDC1MenuItem_Click);
//
// VDC2MenuItem
//
this.VDC2MenuItem.Name = "VDC2MenuItem";
this.VDC2MenuItem.Size = new System.Drawing.Size(152, 22);
this.VDC2MenuItem.Text = "VCD&2";
this.VDC2MenuItem.Click += new System.EventHandler(this.VDC2MenuItem_Click);
//
// toolStripSeparator1
//
this.toolStripSeparator1.Name = "toolStripSeparator1";
this.toolStripSeparator1.Size = new System.Drawing.Size(149, 6);
//
// ExitMenuItem
//
this.ExitMenuItem.Name = "ExitMenuItem";
this.ExitMenuItem.ShortcutKeyDisplayString = "Alt+F4";
this.ExitMenuItem.Size = new System.Drawing.Size(152, 22);
this.ExitMenuItem.Text = "E&xit";
this.ExitMenuItem.Click += new System.EventHandler(this.ExitMenuItem_Click);
//
@ -247,11 +234,11 @@ namespace BizHawk.Client.EmuHawk
private PceBgCanvas canvas;
private MenuStripEx PceBgViewerMenu;
private System.Windows.Forms.ToolStripMenuItem ViewerSubMenu;
private System.Windows.Forms.ToolStripMenuItem ExitMenuItem;
private System.Windows.Forms.ToolStripMenuItem VDC1MenuItem;
private System.Windows.Forms.ToolStripMenuItem VDC2MenuItem;
private System.Windows.Forms.ToolStripSeparator toolStripSeparator1;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx ViewerSubMenu;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx ExitMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx VDC1MenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx VDC2MenuItem;
private BizHawk.WinForms.Controls.ToolStripSeparatorEx toolStripSeparator1;
private System.Windows.Forms.GroupBox groupBox1;
private System.Windows.Forms.GroupBox groupBox5;
private BizHawk.WinForms.Controls.LocLabelEx label7;

View File

@ -39,11 +39,11 @@ namespace BizHawk.Client.EmuHawk
this.checkBoxVDC2 = new System.Windows.Forms.CheckBox();
this.label1 = new BizHawk.WinForms.Controls.LocLabelEx();
this.menuStrip1 = new MenuStripEx();
this.FileSubMenu = new System.Windows.Forms.ToolStripMenuItem();
this.saveBackgroundScreenshotToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.saveSpriteScreenshotToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
this.closeToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.FileSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.saveBackgroundScreenshotToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.saveSpriteScreenshotToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.toolStripSeparator1 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx();
this.closeToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.groupBox1.SuspendLayout();
this.groupBox2.SuspendLayout();
this.menuStrip1.SuspendLayout();
@ -137,34 +137,21 @@ namespace BizHawk.Client.EmuHawk
this.saveSpriteScreenshotToolStripMenuItem,
this.toolStripSeparator1,
this.closeToolStripMenuItem});
this.FileSubMenu.Name = "FileSubMenu";
this.FileSubMenu.Size = new System.Drawing.Size(35, 20);
this.FileSubMenu.Text = "&File";
//
// saveBackgroundScreenshotToolStripMenuItem
//
this.saveBackgroundScreenshotToolStripMenuItem.Name = "saveBackgroundScreenshotToolStripMenuItem";
this.saveBackgroundScreenshotToolStripMenuItem.Size = new System.Drawing.Size(198, 22);
this.saveBackgroundScreenshotToolStripMenuItem.Text = "Save BG Screenshot...";
this.saveBackgroundScreenshotToolStripMenuItem.Click += new System.EventHandler(this.SaveBackgroundScreenshotMenuItem_Click);
//
// saveSpriteScreenshotToolStripMenuItem
//
this.saveSpriteScreenshotToolStripMenuItem.Name = "saveSpriteScreenshotToolStripMenuItem";
this.saveSpriteScreenshotToolStripMenuItem.Size = new System.Drawing.Size(198, 22);
this.saveSpriteScreenshotToolStripMenuItem.Text = "Save Sprite Screenshot...";
this.saveSpriteScreenshotToolStripMenuItem.Click += new System.EventHandler(this.SaveSpriteScreenshotMenuItem_Click);
//
// toolStripSeparator1
//
this.toolStripSeparator1.Name = "toolStripSeparator1";
this.toolStripSeparator1.Size = new System.Drawing.Size(195, 6);
//
// closeToolStripMenuItem
//
this.closeToolStripMenuItem.Name = "closeToolStripMenuItem";
this.closeToolStripMenuItem.ShortcutKeyDisplayString = "Alt+F4";
this.closeToolStripMenuItem.Size = new System.Drawing.Size(198, 22);
this.closeToolStripMenuItem.Text = "&Close";
this.closeToolStripMenuItem.Click += new System.EventHandler(this.CloseMenuItem_Click);
//
@ -204,10 +191,10 @@ namespace BizHawk.Client.EmuHawk
private BmpView bmpViewSP;
private BizHawk.WinForms.Controls.LocLabelEx label1;
private MenuStripEx menuStrip1;
private System.Windows.Forms.ToolStripMenuItem FileSubMenu;
private System.Windows.Forms.ToolStripMenuItem closeToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem saveBackgroundScreenshotToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem saveSpriteScreenshotToolStripMenuItem;
private System.Windows.Forms.ToolStripSeparator toolStripSeparator1;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx FileSubMenu;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx closeToolStripMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx saveBackgroundScreenshotToolStripMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx saveSpriteScreenshotToolStripMenuItem;
private BizHawk.WinForms.Controls.ToolStripSeparatorEx toolStripSeparator1;
}
}

View File

@ -38,12 +38,12 @@ namespace BizHawk.Client.EmuHawk
this.bmpViewBG = new BizHawk.Client.EmuHawk.BmpView();
this.label1 = new BizHawk.WinForms.Controls.LocLabelEx();
this.menuStrip1 = new MenuStripEx();
this.FileSubMenu = new System.Windows.Forms.ToolStripMenuItem();
this.saveTilesScreenshotToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.savePalettesScrenshotToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.saveBGScreenshotToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
this.CloseMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.FileSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.saveTilesScreenshotToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.savePalettesScrenshotToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.saveBGScreenshotToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.toolStripSeparator1 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx();
this.CloseMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.groupBox1.SuspendLayout();
this.groupBox2.SuspendLayout();
this.groupBox3.SuspendLayout();
@ -127,41 +127,26 @@ namespace BizHawk.Client.EmuHawk
this.saveBGScreenshotToolStripMenuItem,
this.toolStripSeparator1,
this.CloseMenuItem});
this.FileSubMenu.Name = "FileSubMenu";
this.FileSubMenu.Size = new System.Drawing.Size(35, 20);
this.FileSubMenu.Text = "&File";
//
// saveTilesScreenshotToolStripMenuItem
//
this.saveTilesScreenshotToolStripMenuItem.Name = "saveTilesScreenshotToolStripMenuItem";
this.saveTilesScreenshotToolStripMenuItem.Size = new System.Drawing.Size(203, 22);
this.saveTilesScreenshotToolStripMenuItem.Text = "Save Tiles Screenshot...";
this.saveTilesScreenshotToolStripMenuItem.Click += new System.EventHandler(this.saveTilesScreenshotToolStripMenuItem_Click);
//
// savePalettesScrenshotToolStripMenuItem
//
this.savePalettesScrenshotToolStripMenuItem.Name = "savePalettesScrenshotToolStripMenuItem";
this.savePalettesScrenshotToolStripMenuItem.Size = new System.Drawing.Size(203, 22);
this.savePalettesScrenshotToolStripMenuItem.Text = "Save Palettes Screnshot...";
this.savePalettesScrenshotToolStripMenuItem.Click += new System.EventHandler(this.SavePalettesScreenshotMenuItem_Click);
//
// saveBGScreenshotToolStripMenuItem
//
this.saveBGScreenshotToolStripMenuItem.Name = "saveBGScreenshotToolStripMenuItem";
this.saveBGScreenshotToolStripMenuItem.Size = new System.Drawing.Size(203, 22);
this.saveBGScreenshotToolStripMenuItem.Text = "Save BG Screenshot...";
this.saveBGScreenshotToolStripMenuItem.Click += new System.EventHandler(this.SaveBgScreenshotMenuItem_Click);
//
// toolStripSeparator1
//
this.toolStripSeparator1.Name = "toolStripSeparator1";
this.toolStripSeparator1.Size = new System.Drawing.Size(200, 6);
//
// CloseMenuItem
//
this.CloseMenuItem.Name = "CloseMenuItem";
this.CloseMenuItem.ShortcutKeyDisplayString = "Alt+F4";
this.CloseMenuItem.Size = new System.Drawing.Size(203, 22);
this.CloseMenuItem.Text = "&Close";
this.CloseMenuItem.Click += new System.EventHandler(this.CloseMenuItem_Click);
//
@ -201,11 +186,11 @@ namespace BizHawk.Client.EmuHawk
private BmpView bmpViewBG;
private BizHawk.WinForms.Controls.LocLabelEx label1;
private MenuStripEx menuStrip1;
private System.Windows.Forms.ToolStripMenuItem FileSubMenu;
private System.Windows.Forms.ToolStripMenuItem CloseMenuItem;
private System.Windows.Forms.ToolStripMenuItem saveTilesScreenshotToolStripMenuItem;
private System.Windows.Forms.ToolStripSeparator toolStripSeparator1;
private System.Windows.Forms.ToolStripMenuItem savePalettesScrenshotToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem saveBGScreenshotToolStripMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx FileSubMenu;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx CloseMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx saveTilesScreenshotToolStripMenuItem;
private BizHawk.WinForms.Controls.ToolStripSeparatorEx toolStripSeparator1;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx savePalettesScrenshotToolStripMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx saveBGScreenshotToolStripMenuItem;
}
}

View File

@ -33,11 +33,11 @@ namespace BizHawk.Client.EmuHawk
this.components = new System.ComponentModel.Container();
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(SNESGraphicsDebugger));
this.menuStrip1 = new MenuStripEx();
this.fileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.saveScreenshotAsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.saveScreenshotToClipboardToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
this.exitToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.fileToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.saveScreenshotAsToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.saveScreenshotToClipboardToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.toolStripSeparator1 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx();
this.exitToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
this.panel1 = new System.Windows.Forms.Panel();
this.groupFreeze = new System.Windows.Forms.GroupBox();
@ -286,35 +286,22 @@ namespace BizHawk.Client.EmuHawk
this.saveScreenshotToClipboardToolStripMenuItem,
this.toolStripSeparator1,
this.exitToolStripMenuItem});
this.fileToolStripMenuItem.Name = "fileToolStripMenuItem";
this.fileToolStripMenuItem.Size = new System.Drawing.Size(35, 20);
this.fileToolStripMenuItem.Text = "&File";
//
// saveScreenshotAsToolStripMenuItem
//
this.saveScreenshotAsToolStripMenuItem.Enabled = false;
this.saveScreenshotAsToolStripMenuItem.Name = "saveScreenshotAsToolStripMenuItem";
this.saveScreenshotAsToolStripMenuItem.Size = new System.Drawing.Size(255, 22);
this.saveScreenshotAsToolStripMenuItem.Text = "Save Screenshot &As...";
//
// saveScreenshotToClipboardToolStripMenuItem
//
this.saveScreenshotToClipboardToolStripMenuItem.Enabled = false;
this.saveScreenshotToClipboardToolStripMenuItem.Name = "saveScreenshotToClipboardToolStripMenuItem";
this.saveScreenshotToClipboardToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.C)));
this.saveScreenshotToClipboardToolStripMenuItem.Size = new System.Drawing.Size(255, 22);
this.saveScreenshotToClipboardToolStripMenuItem.Text = "Save Screenshot to Clipboard";
//
// toolStripSeparator1
//
this.toolStripSeparator1.Name = "toolStripSeparator1";
this.toolStripSeparator1.Size = new System.Drawing.Size(252, 6);
//
// exitToolStripMenuItem
//
this.exitToolStripMenuItem.Name = "exitToolStripMenuItem";
this.exitToolStripMenuItem.ShortcutKeyDisplayString = "Alt+F4";
this.exitToolStripMenuItem.Size = new System.Drawing.Size(255, 22);
this.exitToolStripMenuItem.Text = "E&xit";
this.exitToolStripMenuItem.Click += new System.EventHandler(this.exitToolStripMenuItem_Click);
//
@ -2524,11 +2511,11 @@ namespace BizHawk.Client.EmuHawk
#endregion
private MenuStripEx menuStrip1;
private System.Windows.Forms.ToolStripMenuItem fileToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem saveScreenshotAsToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem saveScreenshotToClipboardToolStripMenuItem;
private System.Windows.Forms.ToolStripSeparator toolStripSeparator1;
private System.Windows.Forms.ToolStripMenuItem exitToolStripMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx fileToolStripMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx saveScreenshotAsToolStripMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx saveScreenshotToClipboardToolStripMenuItem;
private BizHawk.WinForms.Controls.ToolStripSeparatorEx toolStripSeparator1;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx exitToolStripMenuItem;
private System.Windows.Forms.TableLayoutPanel tableLayoutPanel1;
private System.Windows.Forms.Panel panel1;
private System.Windows.Forms.GroupBox groupBox2;

View File

@ -38,15 +38,15 @@
this.LoadBranchButton = new System.Windows.Forms.Button();
this.BranchView = new BizHawk.Client.EmuHawk.InputRoll();
this.BranchesContextMenu = new System.Windows.Forms.ContextMenuStrip(this.components);
this.AddBranchContextMenu = new System.Windows.Forms.ToolStripMenuItem();
this.AddBranchWithTextContextMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.LoadBranchContextMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.UpdateBranchContextMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.EditBranchTextContextMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.JumpToBranchContextMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.UndoBranchToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
this.RemoveBranchContextMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.AddBranchContextMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.AddBranchWithTextContextMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.LoadBranchContextMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.UpdateBranchContextMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.EditBranchTextContextMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.JumpToBranchContextMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.UndoBranchToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.toolStripSeparator2 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx();
this.RemoveBranchContextMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.toolTip1 = new System.Windows.Forms.ToolTip(this.components);
this.BookmarksBranchesGroupBox.SuspendLayout();
this.BranchesContextMenu.SuspendLayout();
@ -190,63 +190,42 @@
//
// AddBranchContextMenu
//
this.AddBranchContextMenu.Name = "AddBranchContextMenu";
this.AddBranchContextMenu.Size = new System.Drawing.Size(146, 22);
this.AddBranchContextMenu.Text = "Add";
this.AddBranchContextMenu.Click += new System.EventHandler(this.AddBranchToolStripMenuItem_Click);
//
// AddBranchWithTextContextMenuItem
//
this.AddBranchWithTextContextMenuItem.Name = "AddBranchWithTextContextMenuItem";
this.AddBranchWithTextContextMenuItem.Size = new System.Drawing.Size(146, 22);
this.AddBranchWithTextContextMenuItem.Text = "Add with Text";
this.AddBranchWithTextContextMenuItem.Click += new System.EventHandler(this.AddBranchWithTexToolStripMenuItem_Click);
//
// LoadBranchContextMenuItem
//
this.LoadBranchContextMenuItem.Name = "LoadBranchContextMenuItem";
this.LoadBranchContextMenuItem.Size = new System.Drawing.Size(146, 22);
this.LoadBranchContextMenuItem.Text = "Load";
this.LoadBranchContextMenuItem.Click += new System.EventHandler(this.LoadBranchToolStripMenuItem_Click);
//
// UpdateBranchContextMenuItem
//
this.UpdateBranchContextMenuItem.Name = "UpdateBranchContextMenuItem";
this.UpdateBranchContextMenuItem.Size = new System.Drawing.Size(146, 22);
this.UpdateBranchContextMenuItem.Text = "&Update";
this.UpdateBranchContextMenuItem.Click += new System.EventHandler(this.UpdateBranchToolStripMenuItem_Click);
//
// EditBranchTextContextMenuItem
//
this.EditBranchTextContextMenuItem.Name = "EditBranchTextContextMenuItem";
this.EditBranchTextContextMenuItem.Size = new System.Drawing.Size(146, 22);
this.EditBranchTextContextMenuItem.Text = "Edit Text";
this.EditBranchTextContextMenuItem.Click += new System.EventHandler(this.EditBranchTextToolStripMenuItem_Click);
//
// JumpToBranchContextMenuItem
//
this.JumpToBranchContextMenuItem.Name = "JumpToBranchContextMenuItem";
this.JumpToBranchContextMenuItem.Size = new System.Drawing.Size(146, 22);
this.JumpToBranchContextMenuItem.Text = "Jump To";
this.JumpToBranchContextMenuItem.Click += new System.EventHandler(this.JumpToBranchToolStripMenuItem_Click);
//
// UndoBranchToolStripMenuItem
//
this.UndoBranchToolStripMenuItem.Enabled = false;
this.UndoBranchToolStripMenuItem.Name = "UndoBranchToolStripMenuItem";
this.UndoBranchToolStripMenuItem.Size = new System.Drawing.Size(146, 22);
this.UndoBranchToolStripMenuItem.Text = "Undo";
this.UndoBranchToolStripMenuItem.Click += new System.EventHandler(this.UndoBranchToolStripMenuItem_Click);
//
// toolStripSeparator2
//
this.toolStripSeparator2.Name = "toolStripSeparator2";
this.toolStripSeparator2.Size = new System.Drawing.Size(143, 6);
//
// RemoveBranchContextMenuItem
//
this.RemoveBranchContextMenuItem.Name = "RemoveBranchContextMenuItem";
this.RemoveBranchContextMenuItem.Size = new System.Drawing.Size(146, 22);
this.RemoveBranchContextMenuItem.Text = "Remove";
this.RemoveBranchContextMenuItem.Click += new System.EventHandler(this.RemoveBranchToolStripMenuItem_Click);
//
@ -267,21 +246,21 @@
private System.Windows.Forms.GroupBox BookmarksBranchesGroupBox;
private InputRoll BranchView;
private System.Windows.Forms.ContextMenuStrip BranchesContextMenu;
private System.Windows.Forms.ToolStripMenuItem AddBranchContextMenu;
private System.Windows.Forms.ToolStripMenuItem RemoveBranchContextMenuItem;
private System.Windows.Forms.ToolStripMenuItem LoadBranchContextMenuItem;
private System.Windows.Forms.ToolStripMenuItem UpdateBranchContextMenuItem;
private System.Windows.Forms.ToolStripMenuItem EditBranchTextContextMenuItem;
private System.Windows.Forms.ToolStripMenuItem AddBranchWithTextContextMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx AddBranchContextMenu;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx RemoveBranchContextMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx LoadBranchContextMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx UpdateBranchContextMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx EditBranchTextContextMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx AddBranchWithTextContextMenuItem;
private System.Windows.Forms.Button UpdateBranchButton;
private System.Windows.Forms.Button AddWithTextBranchButton;
private System.Windows.Forms.Button AddBranchButton;
private System.Windows.Forms.Button LoadBranchButton;
private System.Windows.Forms.ToolTip toolTip1;
private System.Windows.Forms.ToolStripSeparator toolStripSeparator2;
private BizHawk.WinForms.Controls.ToolStripSeparatorEx toolStripSeparator2;
private System.Windows.Forms.Button JumpToBranchButton;
private System.Windows.Forms.ToolStripMenuItem JumpToBranchContextMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx JumpToBranchContextMenuItem;
private System.Windows.Forms.Button UndoBranchButton;
private System.Windows.Forms.ToolStripMenuItem UndoBranchToolStripMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx UndoBranchToolStripMenuItem;
}
}

View File

@ -30,12 +30,12 @@
{
this.components = new System.ComponentModel.Container();
this.MarkerContextMenu = new System.Windows.Forms.ContextMenuStrip(this.components);
this.JumpToMarkerToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.ScrollToMarkerToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.EditMarkerToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.AddMarkerToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
this.RemoveMarkerToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.JumpToMarkerToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.ScrollToMarkerToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.EditMarkerToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.AddMarkerToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.toolStripSeparator1 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx();
this.RemoveMarkerToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.JumpToMarkerButton = new System.Windows.Forms.Button();
this.toolTip1 = new System.Windows.Forms.ToolTip(this.components);
this.EditMarkerButton = new System.Windows.Forms.Button();
@ -64,41 +64,26 @@
//
// JumpToMarkerToolStripMenuItem
//
this.JumpToMarkerToolStripMenuItem.Name = "JumpToMarkerToolStripMenuItem";
this.JumpToMarkerToolStripMenuItem.Size = new System.Drawing.Size(118, 22);
this.JumpToMarkerToolStripMenuItem.Text = "Jump To";
this.JumpToMarkerToolStripMenuItem.Click += new System.EventHandler(this.JumpToMarkerToolStripMenuItem_Click);
//
// ScrollToMarkerToolStripMenuItem
//
this.ScrollToMarkerToolStripMenuItem.Name = "ScrollToMarkerToolStripMenuItem";
this.ScrollToMarkerToolStripMenuItem.Size = new System.Drawing.Size(118, 22);
this.ScrollToMarkerToolStripMenuItem.Text = "Scroll To";
this.ScrollToMarkerToolStripMenuItem.Click += new System.EventHandler(this.ScrollToMarkerToolStripMenuItem_Click);
//
// EditMarkerToolStripMenuItem
//
this.EditMarkerToolStripMenuItem.Name = "EditMarkerToolStripMenuItem";
this.EditMarkerToolStripMenuItem.Size = new System.Drawing.Size(118, 22);
this.EditMarkerToolStripMenuItem.Text = "Edit";
this.EditMarkerToolStripMenuItem.Click += new System.EventHandler(this.EditMarkerToolStripMenuItem_Click);
//
// AddMarkerToolStripMenuItem
//
this.AddMarkerToolStripMenuItem.Name = "AddMarkerToolStripMenuItem";
this.AddMarkerToolStripMenuItem.Size = new System.Drawing.Size(118, 22);
this.AddMarkerToolStripMenuItem.Text = "Add";
this.AddMarkerToolStripMenuItem.Click += new System.EventHandler(this.AddMarkerToolStripMenuItem_Click);
//
// toolStripSeparator1
//
this.toolStripSeparator1.Name = "toolStripSeparator1";
this.toolStripSeparator1.Size = new System.Drawing.Size(115, 6);
//
// RemoveMarkerToolStripMenuItem
//
this.RemoveMarkerToolStripMenuItem.Name = "RemoveMarkerToolStripMenuItem";
this.RemoveMarkerToolStripMenuItem.Size = new System.Drawing.Size(118, 22);
this.RemoveMarkerToolStripMenuItem.Text = "Remove";
this.RemoveMarkerToolStripMenuItem.Click += new System.EventHandler(this.RemoveMarkerToolStripMenuItem_Click);
//
@ -242,12 +227,12 @@
private System.Windows.Forms.Button ScrollToMarkerButton;
private System.Windows.Forms.ToolTip toolTip1;
private System.Windows.Forms.ContextMenuStrip MarkerContextMenu;
private System.Windows.Forms.ToolStripMenuItem ScrollToMarkerToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem EditMarkerToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem AddMarkerToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem RemoveMarkerToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem JumpToMarkerToolStripMenuItem;
private System.Windows.Forms.ToolStripSeparator toolStripSeparator1;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx ScrollToMarkerToolStripMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx EditMarkerToolStripMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx AddMarkerToolStripMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx RemoveMarkerToolStripMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx JumpToMarkerToolStripMenuItem;
private BizHawk.WinForms.Controls.ToolStripSeparatorEx toolStripSeparator1;
private System.Windows.Forms.Button AddMarkerWithTextButton;
private System.Windows.Forms.GroupBox MarkersGroupBox;
}

File diff suppressed because it is too large Load Diff

View File

@ -33,10 +33,10 @@
this.UndoButton = new System.Windows.Forms.Button();
this.RedoButton = new System.Windows.Forms.Button();
this.RightClickMenu = new System.Windows.Forms.ContextMenuStrip(this.components);
this.undoHereToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.redoHereToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.sepToolStripMenuItem = new System.Windows.Forms.ToolStripSeparator();
this.clearHistoryToHereToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.undoHereToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.redoHereToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.sepToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripSeparatorEx();
this.clearHistoryToHereToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.AutoScrollCheck = new System.Windows.Forms.CheckBox();
this.MaxStepsNum = new System.Windows.Forms.NumericUpDown();
this.label1 = new BizHawk.WinForms.Controls.LocLabelEx();
@ -90,27 +90,16 @@
//
// undoHereToolStripMenuItem
//
this.undoHereToolStripMenuItem.Name = "undoHereToolStripMenuItem";
this.undoHereToolStripMenuItem.Size = new System.Drawing.Size(208, 22);
this.undoHereToolStripMenuItem.Text = "Undo To Selection";
this.undoHereToolStripMenuItem.Click += new System.EventHandler(this.UndoHereMenuItem_Click);
//
// redoHereToolStripMenuItem
//
this.redoHereToolStripMenuItem.Name = "redoHereToolStripMenuItem";
this.redoHereToolStripMenuItem.Size = new System.Drawing.Size(208, 22);
this.redoHereToolStripMenuItem.Text = "Redo To Selection";
this.redoHereToolStripMenuItem.Click += new System.EventHandler(this.RedoHereMenuItem_Click);
//
// sepToolStripMenuItem
//
this.sepToolStripMenuItem.Name = "sepToolStripMenuItem";
this.sepToolStripMenuItem.Size = new System.Drawing.Size(205, 6);
//
// clearHistoryToHereToolStripMenuItem
//
this.clearHistoryToHereToolStripMenuItem.Name = "clearHistoryToHereToolStripMenuItem";
this.clearHistoryToHereToolStripMenuItem.Size = new System.Drawing.Size(208, 22);
this.clearHistoryToHereToolStripMenuItem.Text = "Clear History To Selection";
this.clearHistoryToHereToolStripMenuItem.Click += new System.EventHandler(this.ClearHistoryToHereMenuItem_Click);
//
@ -206,10 +195,10 @@
private InputRoll HistoryView;
private System.Windows.Forms.Button RedoButton;
private System.Windows.Forms.ContextMenuStrip RightClickMenu;
private System.Windows.Forms.ToolStripMenuItem undoHereToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem redoHereToolStripMenuItem;
private System.Windows.Forms.ToolStripSeparator sepToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem clearHistoryToHereToolStripMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx undoHereToolStripMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx redoHereToolStripMenuItem;
private BizHawk.WinForms.Controls.ToolStripSeparatorEx sepToolStripMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx clearHistoryToHereToolStripMenuItem;
private System.Windows.Forms.CheckBox AutoScrollCheck;
private System.Windows.Forms.NumericUpDown MaxStepsNum;
private BizHawk.WinForms.Controls.LocLabelEx label1;

View File

@ -32,11 +32,11 @@ namespace BizHawk.Client.EmuHawk
{
this.components = new System.ComponentModel.Container();
this.menuStrip1 = new MenuStripEx();
this.toolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
this.KeyPadSubMenu = new System.Windows.Forms.ToolStripMenuItem();
this.ExitMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.SettingsSubMenu = new System.Windows.Forms.ToolStripMenuItem();
this.ShowHotkeysMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripMenuItem1 = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.KeyPadSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.ExitMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.SettingsSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.ShowHotkeysMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.YButton = new System.Windows.Forms.Button();
this.SecondButton = new System.Windows.Forms.Button();
this.WindowButton = new System.Windows.Forms.Button();
@ -182,24 +182,15 @@ namespace BizHawk.Client.EmuHawk
this.menuStrip1.TabIndex = 0;
this.menuStrip1.Text = "menuStrip1";
//
// toolStripMenuItem1
//
this.toolStripMenuItem1.Name = "toolStripMenuItem1";
this.toolStripMenuItem1.Size = new System.Drawing.Size(12, 20);
//
// KeyPadSubMenu
//
this.KeyPadSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.ExitMenuItem});
this.KeyPadSubMenu.Name = "KeyPadSubMenu";
this.KeyPadSubMenu.Size = new System.Drawing.Size(61, 20);
this.KeyPadSubMenu.Text = "Key Pad";
//
// ExitMenuItem
//
this.ExitMenuItem.Name = "ExitMenuItem";
this.ExitMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Alt | System.Windows.Forms.Keys.F4)));
this.ExitMenuItem.Size = new System.Drawing.Size(134, 22);
this.ExitMenuItem.Text = "E&xit";
this.ExitMenuItem.Click += new System.EventHandler(this.ExitMenuItem_Click);
//
@ -207,8 +198,6 @@ namespace BizHawk.Client.EmuHawk
//
this.SettingsSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.ShowHotkeysMenuItem});
this.SettingsSubMenu.Name = "SettingsSubMenu";
this.SettingsSubMenu.Size = new System.Drawing.Size(61, 20);
this.SettingsSubMenu.Text = "&Settings";
this.SettingsSubMenu.DropDownOpened += new System.EventHandler(this.OptionsSubMenu_DropDownOpened);
//
@ -216,8 +205,6 @@ namespace BizHawk.Client.EmuHawk
//
this.ShowHotkeysMenuItem.Checked = true;
this.ShowHotkeysMenuItem.CheckState = System.Windows.Forms.CheckState.Checked;
this.ShowHotkeysMenuItem.Name = "ShowHotkeysMenuItem";
this.ShowHotkeysMenuItem.Size = new System.Drawing.Size(191, 22);
this.ShowHotkeysMenuItem.Text = "Show Hotkeys";
this.ShowHotkeysMenuItem.Click += new System.EventHandler(this.ShowHotkeysMenuItem_Click);
//
@ -1674,10 +1661,10 @@ namespace BizHawk.Client.EmuHawk
#endregion
private MenuStripEx menuStrip1;
private System.Windows.Forms.ToolStripMenuItem toolStripMenuItem1;
private System.Windows.Forms.ToolStripMenuItem KeyPadSubMenu;
private System.Windows.Forms.ToolStripMenuItem ExitMenuItem;
private System.Windows.Forms.ToolStripMenuItem SettingsSubMenu;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx toolStripMenuItem1;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx KeyPadSubMenu;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx ExitMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx SettingsSubMenu;
private System.Windows.Forms.Button YButton;
private System.Windows.Forms.Button SecondButton;
private System.Windows.Forms.Button WindowButton;
@ -1805,7 +1792,7 @@ namespace BizHawk.Client.EmuHawk
private System.Windows.Forms.Button DownButton;
private System.Windows.Forms.Button UpButton;
private System.Windows.Forms.ToolTip KeyPadToolTips;
private System.Windows.Forms.ToolStripMenuItem ShowHotkeysMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx ShowHotkeysMenuItem;
private BizHawk.WinForms.Controls.LocLabelEx label77;
private BizHawk.WinForms.Controls.LocLabelEx label78;
private BizHawk.WinForms.Controls.LocLabelEx label79;

View File

@ -30,38 +30,35 @@ namespace BizHawk.Client.EmuHawk
/// </summary>
private void InitializeComponent()
{
this.ToolBoxStrip = new ToolStripEx();
this.SuspendLayout();
//
// ToolBoxStrip
//
this.ToolBoxStrip.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.ToolBoxStrip.AutoSize = false;
this.ToolBoxStrip.BackColor = System.Drawing.SystemColors.Control;
this.ToolBoxStrip.Dock = System.Windows.Forms.DockStyle.None;
this.ToolBoxStrip.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden;
this.ToolBoxStrip.LayoutStyle = System.Windows.Forms.ToolStripLayoutStyle.Flow;
this.ToolBoxStrip.Location = new System.Drawing.Point(2, 2);
this.ToolBoxStrip.Name = "ToolBoxStrip";
this.ToolBoxStrip.Padding = new System.Windows.Forms.Padding(0);
this.ToolBoxStrip.Stretch = true;
this.ToolBoxStrip.TabIndex = 0;
this.ToolBoxStrip.TabStop = true;
//
// ToolBox
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(140, 183);
this.Controls.Add(this.ToolBoxStrip);
this.MaximumSize = new System.Drawing.Size(270, 600);
this.MinimumSize = new System.Drawing.Size(135, 38);
this.Name = "ToolBox";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
this.Load += new System.EventHandler(this.ToolBox_Load);
this.ResumeLayout(false);
this.ToolBoxStrip = new BizHawk.WinForms.Controls.ToolStripEx();
this.SuspendLayout();
//
// ToolBoxStrip
//
this.ToolBoxStrip.AutoSize = false;
this.ToolBoxStrip.BackColor = System.Drawing.SystemColors.Control;
this.ToolBoxStrip.Dock = System.Windows.Forms.DockStyle.Fill;
this.ToolBoxStrip.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden;
this.ToolBoxStrip.LayoutStyle = System.Windows.Forms.ToolStripLayoutStyle.Flow;
this.ToolBoxStrip.Location = new System.Drawing.Point(0, 0);
this.ToolBoxStrip.Name = "ToolBoxStrip";
this.ToolBoxStrip.Padding = new System.Windows.Forms.Padding(0);
this.ToolBoxStrip.Stretch = true;
this.ToolBoxStrip.TabIndex = 0;
this.ToolBoxStrip.TabStop = true;
//
// ToolBox
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(140, 183);
this.Controls.Add(this.ToolBoxStrip);
this.MaximumSize = new System.Drawing.Size(270, 600);
this.MinimumSize = new System.Drawing.Size(135, 39);
this.Name = "ToolBox";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
this.Load += new System.EventHandler(this.ToolBox_Load);
this.ResumeLayout(false);
}

View File

@ -34,20 +34,20 @@ namespace BizHawk.Client.EmuHawk
this.TracerBox = new System.Windows.Forms.GroupBox();
this.TraceView = new InputRoll();
this.TraceContextMenu = new System.Windows.Forms.ContextMenuStrip(this.components);
this.CopyContextMenu = new System.Windows.Forms.ToolStripMenuItem();
this.SelectAllContextMenu = new System.Windows.Forms.ToolStripMenuItem();
this.ClearContextMenu = new System.Windows.Forms.ToolStripMenuItem();
this.CopyContextMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.SelectAllContextMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.ClearContextMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.menuStrip1 = new MenuStripEx();
this.FileSubMenu = new System.Windows.Forms.ToolStripMenuItem();
this.SaveLogMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
this.ExitMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.EditSubMenu = new System.Windows.Forms.ToolStripMenuItem();
this.CopyMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.SelectAllMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.ClearMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.OptionsSubMenu = new System.Windows.Forms.ToolStripMenuItem();
this.MaxLinesMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.FileSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.SaveLogMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.toolStripSeparator1 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx();
this.ExitMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.EditSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.CopyMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.SelectAllMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.ClearMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.OptionsSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.MaxLinesMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.groupBox2 = new System.Windows.Forms.GroupBox();
this.OpenLogFile = new System.Windows.Forms.Button();
this.BrowseBox = new System.Windows.Forms.Button();
@ -55,7 +55,7 @@ namespace BizHawk.Client.EmuHawk
this.ToFileRadio = new System.Windows.Forms.RadioButton();
this.ToWindowRadio = new System.Windows.Forms.RadioButton();
this.LoggingEnabled = new System.Windows.Forms.CheckBox();
this.SegmentSizeMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.SegmentSizeMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.TracerBox.SuspendLayout();
this.TraceContextMenu.SuspendLayout();
this.menuStrip1.SuspendLayout();
@ -104,24 +104,18 @@ namespace BizHawk.Client.EmuHawk
//
// CopyContextMenu
//
this.CopyContextMenu.Name = "CopyContextMenu";
this.CopyContextMenu.ShortcutKeyDisplayString = "Ctrl+C";
this.CopyContextMenu.Size = new System.Drawing.Size(164, 22);
this.CopyContextMenu.Text = "&Copy";
this.CopyContextMenu.Click += new System.EventHandler(this.CopyMenuItem_Click);
//
// SelectAllContextMenu
//
this.SelectAllContextMenu.Name = "SelectAllContextMenu";
this.SelectAllContextMenu.ShortcutKeyDisplayString = "Ctrl+A";
this.SelectAllContextMenu.Size = new System.Drawing.Size(164, 22);
this.SelectAllContextMenu.Text = "Select &All";
this.SelectAllContextMenu.Click += new System.EventHandler(this.SelectAllMenuItem_Click);
//
// ClearContextMenu
//
this.ClearContextMenu.Name = "ClearContextMenu";
this.ClearContextMenu.Size = new System.Drawing.Size(164, 22);
this.ClearContextMenu.Text = "Clear";
this.ClearContextMenu.Click += new System.EventHandler(this.ClearMenuItem_Click);
//
@ -141,27 +135,16 @@ namespace BizHawk.Client.EmuHawk
this.SaveLogMenuItem,
this.toolStripSeparator1,
this.ExitMenuItem});
this.FileSubMenu.Name = "FileSubMenu";
this.FileSubMenu.Size = new System.Drawing.Size(35, 20);
this.FileSubMenu.Text = "&File";
//
// SaveLogMenuItem
//
this.SaveLogMenuItem.Name = "SaveLogMenuItem";
this.SaveLogMenuItem.Size = new System.Drawing.Size(143, 22);
this.SaveLogMenuItem.Text = "&Save Log";
this.SaveLogMenuItem.Click += new System.EventHandler(this.SaveLogMenuItem_Click);
//
// toolStripSeparator1
//
this.toolStripSeparator1.Name = "toolStripSeparator1";
this.toolStripSeparator1.Size = new System.Drawing.Size(140, 6);
//
// ExitMenuItem
//
this.ExitMenuItem.Name = "ExitMenuItem";
this.ExitMenuItem.ShortcutKeyDisplayString = "Alt+F4";
this.ExitMenuItem.Size = new System.Drawing.Size(143, 22);
this.ExitMenuItem.Text = "E&xit";
this.ExitMenuItem.Click += new System.EventHandler(this.ExitMenuItem_Click);
//
@ -171,32 +154,24 @@ namespace BizHawk.Client.EmuHawk
this.CopyMenuItem,
this.SelectAllMenuItem,
this.ClearMenuItem});
this.EditSubMenu.Name = "EditSubMenu";
this.EditSubMenu.Size = new System.Drawing.Size(37, 20);
this.EditSubMenu.Text = "Edit";
//
// CopyMenuItem
//
this.CopyMenuItem.Name = "CopyMenuItem";
this.CopyMenuItem.ShortcutKeyDisplayString = "";
this.CopyMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.C)));
this.CopyMenuItem.Size = new System.Drawing.Size(167, 22);
this.CopyMenuItem.Text = "&Copy";
this.CopyMenuItem.Click += new System.EventHandler(this.CopyMenuItem_Click);
//
// SelectAllMenuItem
//
this.SelectAllMenuItem.Name = "SelectAllMenuItem";
this.SelectAllMenuItem.ShortcutKeyDisplayString = "";
this.SelectAllMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.A)));
this.SelectAllMenuItem.Size = new System.Drawing.Size(167, 22);
this.SelectAllMenuItem.Text = "Select &All";
this.SelectAllMenuItem.Click += new System.EventHandler(this.SelectAllMenuItem_Click);
//
// ClearMenuItem
//
this.ClearMenuItem.Name = "ClearMenuItem";
this.ClearMenuItem.Size = new System.Drawing.Size(167, 22);
this.ClearMenuItem.Text = "Clear";
this.ClearMenuItem.Click += new System.EventHandler(this.ClearMenuItem_Click);
//
@ -205,14 +180,10 @@ namespace BizHawk.Client.EmuHawk
this.OptionsSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.MaxLinesMenuItem,
this.SegmentSizeMenuItem});
this.OptionsSubMenu.Name = "OptionsSubMenu";
this.OptionsSubMenu.Size = new System.Drawing.Size(58, 20);
this.OptionsSubMenu.Text = "&Settings";
//
// MaxLinesMenuItem
//
this.MaxLinesMenuItem.Name = "MaxLinesMenuItem";
this.MaxLinesMenuItem.Size = new System.Drawing.Size(180, 22);
this.MaxLinesMenuItem.Text = "&Set Max Lines...";
this.MaxLinesMenuItem.Click += new System.EventHandler(this.MaxLinesMenuItem_Click);
//
@ -305,8 +276,6 @@ namespace BizHawk.Client.EmuHawk
//
// SegmentSizeMenuItem
//
this.SegmentSizeMenuItem.Name = "SegmentSizeMenuItem";
this.SegmentSizeMenuItem.Size = new System.Drawing.Size(180, 22);
this.SegmentSizeMenuItem.Text = "Set Segment Size...";
this.SegmentSizeMenuItem.Click += new System.EventHandler(this.SegmentSizeMenuItem_Click);
//
@ -340,28 +309,28 @@ namespace BizHawk.Client.EmuHawk
private System.Windows.Forms.GroupBox TracerBox;
private MenuStripEx menuStrip1;
private System.Windows.Forms.ToolStripMenuItem FileSubMenu;
private System.Windows.Forms.ToolStripMenuItem SaveLogMenuItem;
private System.Windows.Forms.ToolStripSeparator toolStripSeparator1;
private System.Windows.Forms.ToolStripMenuItem ExitMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx FileSubMenu;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx SaveLogMenuItem;
private BizHawk.WinForms.Controls.ToolStripSeparatorEx toolStripSeparator1;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx ExitMenuItem;
private System.Windows.Forms.GroupBox groupBox2;
private System.Windows.Forms.CheckBox LoggingEnabled;
private System.Windows.Forms.ToolStripMenuItem OptionsSubMenu;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx OptionsSubMenu;
private InputRoll TraceView;
private System.Windows.Forms.ToolStripMenuItem MaxLinesMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx MaxLinesMenuItem;
private System.Windows.Forms.RadioButton ToFileRadio;
private System.Windows.Forms.RadioButton ToWindowRadio;
private System.Windows.Forms.TextBox FileBox;
private System.Windows.Forms.Button BrowseBox;
private System.Windows.Forms.ToolStripMenuItem EditSubMenu;
private System.Windows.Forms.ToolStripMenuItem CopyMenuItem;
private System.Windows.Forms.ToolStripMenuItem SelectAllMenuItem;
private System.Windows.Forms.ToolStripMenuItem ClearMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx EditSubMenu;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx CopyMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx SelectAllMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx ClearMenuItem;
private System.Windows.Forms.ContextMenuStrip TraceContextMenu;
private System.Windows.Forms.ToolStripMenuItem CopyContextMenu;
private System.Windows.Forms.ToolStripMenuItem SelectAllContextMenu;
private System.Windows.Forms.ToolStripMenuItem ClearContextMenu;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx CopyContextMenu;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx SelectAllContextMenu;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx ClearContextMenu;
private System.Windows.Forms.Button OpenLogFile;
private System.Windows.Forms.ToolStripMenuItem SegmentSizeMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx SegmentSizeMenuItem;
}
}

View File

@ -33,17 +33,17 @@ namespace BizHawk.Client.EmuHawk
this.components = new System.ComponentModel.Container();
this.ControllerBox = new System.Windows.Forms.GroupBox();
this.PadBoxContextMenu = new System.Windows.Forms.ContextMenuStrip(this.components);
this.clearAllToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.StickyContextMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.clearAllToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.StickyContextMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.ControllerPanel = new System.Windows.Forms.Panel();
this.PadMenu = new MenuStripEx();
this.PadsSubMenu = new System.Windows.Forms.ToolStripMenuItem();
this.ClearAllMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.StickyMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripSeparator4 = new System.Windows.Forms.ToolStripSeparator();
this.ExitMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.SettingsSubMenu = new System.Windows.Forms.ToolStripMenuItem();
this.ClearClearsAnalogInputMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.PadsSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.ClearAllMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.StickyMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.toolStripSeparator4 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx();
this.ExitMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.SettingsSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.ClearClearsAnalogInputMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.ControllerBox.SuspendLayout();
this.PadBoxContextMenu.SuspendLayout();
this.PadMenu.SuspendLayout();
@ -74,16 +74,12 @@ namespace BizHawk.Client.EmuHawk
//
// clearAllToolStripMenuItem
//
this.clearAllToolStripMenuItem.Name = "clearAllToolStripMenuItem";
this.clearAllToolStripMenuItem.ShortcutKeyDisplayString = "Del";
this.clearAllToolStripMenuItem.Size = new System.Drawing.Size(142, 22);
this.clearAllToolStripMenuItem.Text = "Clear All";
this.clearAllToolStripMenuItem.Click += new System.EventHandler(this.ClearAllMenuItem_Click);
//
// StickyContextMenuItem
//
this.StickyContextMenuItem.Name = "StickyContextMenuItem";
this.StickyContextMenuItem.Size = new System.Drawing.Size(142, 22);
this.StickyContextMenuItem.Text = "Sticky";
this.StickyContextMenuItem.Click += new System.EventHandler(this.StickyMenuItem_Click);
//
@ -112,36 +108,23 @@ namespace BizHawk.Client.EmuHawk
this.StickyMenuItem,
this.toolStripSeparator4,
this.ExitMenuItem});
this.PadsSubMenu.Name = "PadsSubMenu";
this.PadsSubMenu.Size = new System.Drawing.Size(44, 20);
this.PadsSubMenu.Text = "&Pads";
this.PadsSubMenu.DropDownOpened += new System.EventHandler(this.PadsSubMenu_DropDownOpened);
//
// ClearAllMenuItem
//
this.ClearAllMenuItem.Name = "ClearAllMenuItem";
this.ClearAllMenuItem.ShortcutKeys = System.Windows.Forms.Keys.Delete;
this.ClearAllMenuItem.Size = new System.Drawing.Size(142, 22);
this.ClearAllMenuItem.Text = "&Clear All";
this.ClearAllMenuItem.Click += new System.EventHandler(this.ClearAllMenuItem_Click);
//
// StickyMenuItem
//
this.StickyMenuItem.Name = "StickyMenuItem";
this.StickyMenuItem.Size = new System.Drawing.Size(142, 22);
this.StickyMenuItem.Text = "Sticky";
this.StickyMenuItem.Click += new System.EventHandler(this.StickyMenuItem_Click);
//
// toolStripSeparator4
//
this.toolStripSeparator4.Name = "toolStripSeparator4";
this.toolStripSeparator4.Size = new System.Drawing.Size(139, 6);
//
// ExitMenuItem
//
this.ExitMenuItem.Name = "ExitMenuItem";
this.ExitMenuItem.ShortcutKeyDisplayString = "Alt+F4";
this.ExitMenuItem.Size = new System.Drawing.Size(142, 22);
this.ExitMenuItem.Text = "E&xit";
this.ExitMenuItem.Click += new System.EventHandler(this.ExitMenuItem_Click);
//
@ -149,15 +132,11 @@ namespace BizHawk.Client.EmuHawk
//
this.SettingsSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.ClearClearsAnalogInputMenuItem});
this.SettingsSubMenu.Name = "SettingsSubMenu";
this.SettingsSubMenu.Size = new System.Drawing.Size(61, 20);
this.SettingsSubMenu.Text = "&Settings";
this.SettingsSubMenu.DropDownOpened += new System.EventHandler(this.OptionsSubMenu_DropDownOpened);
//
// ClearClearsAnalogInputMenuItem
//
this.ClearClearsAnalogInputMenuItem.Name = "ClearClearsAnalogInputMenuItem";
this.ClearClearsAnalogInputMenuItem.Size = new System.Drawing.Size(230, 22);
this.ClearClearsAnalogInputMenuItem.Text = "&Clear also clears Analog Input";
this.ClearClearsAnalogInputMenuItem.Click += new System.EventHandler(this.ClearClearsAnalogInputMenuItem_Click);
//
@ -183,17 +162,17 @@ namespace BizHawk.Client.EmuHawk
#endregion
private MenuStripEx PadMenu;
private System.Windows.Forms.ToolStripMenuItem SettingsSubMenu;
private System.Windows.Forms.ToolStripMenuItem PadsSubMenu;
private System.Windows.Forms.ToolStripMenuItem ClearAllMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx SettingsSubMenu;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx PadsSubMenu;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx ClearAllMenuItem;
private System.Windows.Forms.GroupBox ControllerBox;
private System.Windows.Forms.ToolStripMenuItem StickyMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx StickyMenuItem;
private System.Windows.Forms.ContextMenuStrip PadBoxContextMenu;
private System.Windows.Forms.ToolStripMenuItem clearAllToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem StickyContextMenuItem;
private System.Windows.Forms.ToolStripMenuItem ClearClearsAnalogInputMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx clearAllToolStripMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx StickyContextMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx ClearClearsAnalogInputMenuItem;
private System.Windows.Forms.Panel ControllerPanel;
private System.Windows.Forms.ToolStripSeparator toolStripSeparator4;
private System.Windows.Forms.ToolStripMenuItem ExitMenuItem;
private BizHawk.WinForms.Controls.ToolStripSeparatorEx toolStripSeparator4;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx ExitMenuItem;
}
}

View File

@ -34,78 +34,78 @@ namespace BizHawk.Client.EmuHawk
this.TotalSearchLabel = new BizHawk.WinForms.Controls.LocLabelEx();
this.WatchListView = new InputRoll();
this.ListViewContextMenu = new System.Windows.Forms.ContextMenuStrip(this.components);
this.DoSearchContextMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.NewSearchContextMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.ContextMenuSeparator1 = new System.Windows.Forms.ToolStripSeparator();
this.RemoveContextMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.AddToRamWatchContextMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.PokeContextMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.FreezeContextMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.UnfreezeAllContextMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.ContextMenuSeparator2 = new System.Windows.Forms.ToolStripSeparator();
this.ViewInHexEditorContextMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.ContextMenuSeparator3 = new System.Windows.Forms.ToolStripSeparator();
this.ClearPreviewContextMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.DoSearchContextMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.NewSearchContextMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.ContextMenuSeparator1 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx();
this.RemoveContextMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.AddToRamWatchContextMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.PokeContextMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.FreezeContextMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.UnfreezeAllContextMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.ContextMenuSeparator2 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx();
this.ViewInHexEditorContextMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.ContextMenuSeparator3 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx();
this.ClearPreviewContextMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.RamSearchMenu = new MenuStripEx();
this.fileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.OpenMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.SaveMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.SaveAsMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.AppendFileMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.TruncateFromFileMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.RecentSubMenu = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
this.toolStripSeparator4 = new System.Windows.Forms.ToolStripSeparator();
this.exitToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.settingsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.modeToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.DetailedMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.FastMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.MemoryDomainsSubMenu = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripSeparator6 = new System.Windows.Forms.ToolStripSeparator();
this.sizeToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.ByteMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.WordMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.DWordMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.CheckMisalignedMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripSeparator8 = new System.Windows.Forms.ToolStripSeparator();
this.BigEndianMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.DisplayTypeSubMenu = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
this.DefinePreviousValueSubMenu = new System.Windows.Forms.ToolStripMenuItem();
this.Previous_LastSearchMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.PreviousFrameMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.Previous_OriginalMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.Previous_LastChangeMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.searchToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.newSearchToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripSeparator7 = new System.Windows.Forms.ToolStripSeparator();
this.UndoMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.RedoMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.CopyValueToPrevMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.ClearChangeCountsMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.RemoveMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripSeparator5 = new System.Windows.Forms.ToolStripSeparator();
this.GoToAddressMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.AddToRamWatchMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.PokeAddressMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.FreezeAddressMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripSeparator13 = new System.Windows.Forms.ToolStripSeparator();
this.ClearUndoMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.optionsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.PreviewModeMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.AutoSearchMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.AutoSearchAccountForLagMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripSeparator9 = new System.Windows.Forms.ToolStripSeparator();
this.ExcludeRamWatchMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.UseUndoHistoryMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripSeparator11 = new System.Windows.Forms.ToolStripSeparator();
this.AutoloadDialogMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.SaveWinPositionMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.AlwaysOnTopMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.FloatingWindowMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripSeparator3 = new System.Windows.Forms.ToolStripSeparator();
this.RestoreDefaultsMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.fileToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.OpenMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.SaveMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.SaveAsMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.AppendFileMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.TruncateFromFileMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.RecentSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.toolStripSeparator2 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx();
this.toolStripSeparator4 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx();
this.exitToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.settingsToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.modeToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.DetailedMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.FastMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.MemoryDomainsSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.toolStripSeparator6 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx();
this.sizeToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.ByteMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.WordMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.DWordMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.CheckMisalignedMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.toolStripSeparator8 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx();
this.BigEndianMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.DisplayTypeSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.toolStripSeparator1 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx();
this.DefinePreviousValueSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.Previous_LastSearchMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.PreviousFrameMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.Previous_OriginalMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.Previous_LastChangeMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.searchToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.newSearchToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.toolStripSeparator7 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx();
this.UndoMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.RedoMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.CopyValueToPrevMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.ClearChangeCountsMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.RemoveMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.toolStripSeparator5 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx();
this.GoToAddressMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.AddToRamWatchMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.PokeAddressMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.FreezeAddressMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.toolStripSeparator13 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx();
this.ClearUndoMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.optionsToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.PreviewModeMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.AutoSearchMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.AutoSearchAccountForLagMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.toolStripSeparator9 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx();
this.ExcludeRamWatchMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.UseUndoHistoryMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.toolStripSeparator11 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx();
this.AutoloadDialogMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.SaveWinPositionMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.AlwaysOnTopMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.FloatingWindowMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.toolStripSeparator3 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx();
this.RestoreDefaultsMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.MemDomainLabel = new BizHawk.WinForms.Controls.LocLabelEx();
this.MessageLabel = new BizHawk.WinForms.Controls.LocLabelEx();
this.toolTip1 = new System.Windows.Forms.ToolTip(this.components);
@ -122,20 +122,20 @@ namespace BizHawk.Client.EmuHawk
this.PreviousValueRadio = new System.Windows.Forms.RadioButton();
this.toolStrip1 = new ToolStripEx();
this.DoSearchToolButton = new System.Windows.Forms.ToolStripButton();
this.toolStripSeparator10 = new System.Windows.Forms.ToolStripSeparator();
this.toolStripSeparator10 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx();
this.NewSearchToolButton = new System.Windows.Forms.ToolStripButton();
this.toolStripSeparator15 = new System.Windows.Forms.ToolStripSeparator();
this.toolStripSeparator15 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx();
this.CopyValueToPrevToolBarItem = new System.Windows.Forms.ToolStripButton();
this.ClearChangeCountsToolBarItem = new System.Windows.Forms.ToolStripButton();
this.toolStripSeparator16 = new System.Windows.Forms.ToolStripSeparator();
this.toolStripSeparator16 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx();
this.RemoveToolBarItem = new System.Windows.Forms.ToolStripButton();
this.AddToRamWatchToolBarItem = new System.Windows.Forms.ToolStripButton();
this.PokeAddressToolBarItem = new System.Windows.Forms.ToolStripButton();
this.FreezeAddressToolBarItem = new System.Windows.Forms.ToolStripButton();
this.toolStripSeparator12 = new System.Windows.Forms.ToolStripSeparator();
this.toolStripSeparator12 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx();
this.UndoToolBarButton = new System.Windows.Forms.ToolStripButton();
this.RedoToolBarItem = new System.Windows.Forms.ToolStripButton();
this.RebootToolBarSeparator = new System.Windows.Forms.ToolStripSeparator();
this.RebootToolBarSeparator = new BizHawk.WinForms.Controls.ToolStripSeparatorEx();
this.RebootToolbarButton = new System.Windows.Forms.ToolStripButton();
this.ErrorIconButton = new System.Windows.Forms.ToolStripButton();
this.ComparisonBox = new System.Windows.Forms.GroupBox();
@ -152,7 +152,7 @@ namespace BizHawk.Client.EmuHawk
this.label1 = new BizHawk.WinForms.Controls.LocLabelEx();
this.label2 = new BizHawk.WinForms.Controls.LocLabelEx();
this.DisplayTypeDropdown = new System.Windows.Forms.ComboBox();
this.SearchMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.SearchMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.ListViewContextMenu.SuspendLayout();
this.RamSearchMenu.SuspendLayout();
this.CompareToBox.SuspendLayout();
@ -162,8 +162,6 @@ namespace BizHawk.Client.EmuHawk
//
// SearchMenuItem
//
this.SearchMenuItem.Name = "SearchMenuItem";
this.SearchMenuItem.Size = new System.Drawing.Size(221, 22);
this.SearchMenuItem.Text = "&Search";
this.SearchMenuItem.Click += new System.EventHandler(this.SearchMenuItem_Click);
//
@ -220,83 +218,50 @@ namespace BizHawk.Client.EmuHawk
//
// DoSearchContextMenuItem
//
this.DoSearchContextMenuItem.Name = "DoSearchContextMenuItem";
this.DoSearchContextMenuItem.Size = new System.Drawing.Size(217, 22);
this.DoSearchContextMenuItem.Text = "&Search";
this.DoSearchContextMenuItem.Click += new System.EventHandler(this.SearchMenuItem_Click);
//
// NewSearchContextMenuItem
//
this.NewSearchContextMenuItem.Name = "NewSearchContextMenuItem";
this.NewSearchContextMenuItem.Size = new System.Drawing.Size(217, 22);
this.NewSearchContextMenuItem.Text = "&Start New Search";
this.NewSearchContextMenuItem.Click += new System.EventHandler(this.NewSearchMenuMenuItem_Click);
//
// ContextMenuSeparator1
//
this.ContextMenuSeparator1.Name = "ContextMenuSeparator1";
this.ContextMenuSeparator1.Size = new System.Drawing.Size(214, 6);
//
// RemoveContextMenuItem
//
this.RemoveContextMenuItem.Name = "RemoveContextMenuItem";
this.RemoveContextMenuItem.ShortcutKeyDisplayString = "Del";
this.RemoveContextMenuItem.Size = new System.Drawing.Size(217, 22);
this.RemoveContextMenuItem.Text = "Remove Selected";
this.RemoveContextMenuItem.Click += new System.EventHandler(this.RemoveMenuItem_Click);
//
// AddToRamWatchContextMenuItem
//
this.AddToRamWatchContextMenuItem.Name = "AddToRamWatchContextMenuItem";
this.AddToRamWatchContextMenuItem.ShortcutKeyDisplayString = "Ctrl+W";
this.AddToRamWatchContextMenuItem.Size = new System.Drawing.Size(217, 22);
this.AddToRamWatchContextMenuItem.Text = "Add to RAM Watch";
this.AddToRamWatchContextMenuItem.Click += new System.EventHandler(this.AddToRamWatchMenuItem_Click);
//
// PokeContextMenuItem
//
this.PokeContextMenuItem.Name = "PokeContextMenuItem";
this.PokeContextMenuItem.ShortcutKeyDisplayString = "Ctrl+P";
this.PokeContextMenuItem.Size = new System.Drawing.Size(217, 22);
this.PokeContextMenuItem.Text = "Poke Address";
this.PokeContextMenuItem.Click += new System.EventHandler(this.PokeAddressMenuItem_Click);
//
// FreezeContextMenuItem
//
this.FreezeContextMenuItem.Name = "FreezeContextMenuItem";
this.FreezeContextMenuItem.ShortcutKeyDisplayString = "Ctrl+F";
this.FreezeContextMenuItem.Size = new System.Drawing.Size(217, 22);
this.FreezeContextMenuItem.Text = "Freeze Address";
this.FreezeContextMenuItem.Click += new System.EventHandler(this.FreezeAddressMenuItem_Click);
//
// UnfreezeAllContextMenuItem
//
this.UnfreezeAllContextMenuItem.Name = "UnfreezeAllContextMenuItem";
this.UnfreezeAllContextMenuItem.Size = new System.Drawing.Size(217, 22);
this.UnfreezeAllContextMenuItem.Text = "Unfreeze &All";
this.UnfreezeAllContextMenuItem.Click += new System.EventHandler(this.UnfreezeAllContextMenuItem_Click);
//
// ContextMenuSeparator2
//
this.ContextMenuSeparator2.Name = "ContextMenuSeparator2";
this.ContextMenuSeparator2.Size = new System.Drawing.Size(214, 6);
//
// ViewInHexEditorContextMenuItem
//
this.ViewInHexEditorContextMenuItem.Name = "ViewInHexEditorContextMenuItem";
this.ViewInHexEditorContextMenuItem.Size = new System.Drawing.Size(217, 22);
this.ViewInHexEditorContextMenuItem.Text = "View in Hex Editor";
this.ViewInHexEditorContextMenuItem.Click += new System.EventHandler(this.ViewInHexEditorContextMenuItem_Click);
//
// ContextMenuSeparator3
//
this.ContextMenuSeparator3.Name = "ContextMenuSeparator3";
this.ContextMenuSeparator3.Size = new System.Drawing.Size(214, 6);
//
// ClearPreviewContextMenuItem
//
this.ClearPreviewContextMenuItem.Name = "ClearPreviewContextMenuItem";
this.ClearPreviewContextMenuItem.Size = new System.Drawing.Size(217, 22);
this.ClearPreviewContextMenuItem.Text = "&Clear Preview";
this.ClearPreviewContextMenuItem.Click += new System.EventHandler(this.ClearPreviewContextMenuItem_Click);
//
@ -322,47 +287,35 @@ namespace BizHawk.Client.EmuHawk
this.RecentSubMenu,
this.toolStripSeparator4,
this.exitToolStripMenuItem});
this.fileToolStripMenuItem.Name = "fileToolStripMenuItem";
this.fileToolStripMenuItem.Size = new System.Drawing.Size(37, 20);
this.fileToolStripMenuItem.Text = "&File";
this.fileToolStripMenuItem.DropDownOpened += new System.EventHandler(this.FileSubMenu_DropDownOpened);
//
// OpenMenuItem
//
this.OpenMenuItem.Name = "OpenMenuItem";
this.OpenMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.O)));
this.OpenMenuItem.Size = new System.Drawing.Size(195, 22);
this.OpenMenuItem.Text = "&Open...";
this.OpenMenuItem.Click += new System.EventHandler(this.OpenMenuItem_Click);
//
// SaveMenuItem
//
this.SaveMenuItem.Name = "SaveMenuItem";
this.SaveMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.S)));
this.SaveMenuItem.Size = new System.Drawing.Size(195, 22);
this.SaveMenuItem.Text = "&Save";
this.SaveMenuItem.Click += new System.EventHandler(this.SaveMenuItem_Click);
//
// SaveAsMenuItem
//
this.SaveAsMenuItem.Name = "SaveAsMenuItem";
this.SaveAsMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)(((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.Shift)
| System.Windows.Forms.Keys.S)));
this.SaveAsMenuItem.Size = new System.Drawing.Size(195, 22);
this.SaveAsMenuItem.Text = "Save As...";
this.SaveAsMenuItem.Click += new System.EventHandler(this.SaveAsMenuItem_Click);
//
// AppendFileMenuItem
//
this.AppendFileMenuItem.Name = "AppendFileMenuItem";
this.AppendFileMenuItem.Size = new System.Drawing.Size(195, 22);
this.AppendFileMenuItem.Text = "&Append File...";
this.AppendFileMenuItem.Click += new System.EventHandler(this.OpenMenuItem_Click);
//
// TruncateFromFileMenuItem
//
this.TruncateFromFileMenuItem.Name = "TruncateFromFileMenuItem";
this.TruncateFromFileMenuItem.Size = new System.Drawing.Size(195, 22);
this.TruncateFromFileMenuItem.Text = "&Truncate from File...";
this.TruncateFromFileMenuItem.Click += new System.EventHandler(this.OpenMenuItem_Click);
//
@ -370,26 +323,12 @@ namespace BizHawk.Client.EmuHawk
//
this.RecentSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.toolStripSeparator2});
this.RecentSubMenu.Name = "RecentSubMenu";
this.RecentSubMenu.Size = new System.Drawing.Size(195, 22);
this.RecentSubMenu.Text = "Recent";
this.RecentSubMenu.DropDownOpened += new System.EventHandler(this.RecentSubMenu_DropDownOpened);
//
// toolStripSeparator2
//
this.toolStripSeparator2.Name = "toolStripSeparator2";
this.toolStripSeparator2.Size = new System.Drawing.Size(57, 6);
//
// toolStripSeparator4
//
this.toolStripSeparator4.Name = "toolStripSeparator4";
this.toolStripSeparator4.Size = new System.Drawing.Size(192, 6);
//
// exitToolStripMenuItem
//
this.exitToolStripMenuItem.Name = "exitToolStripMenuItem";
this.exitToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Alt | System.Windows.Forms.Keys.F4)));
this.exitToolStripMenuItem.Size = new System.Drawing.Size(195, 22);
this.exitToolStripMenuItem.Text = "&Close";
this.exitToolStripMenuItem.Click += new System.EventHandler(this.CloseMenuItem_Click);
//
@ -404,8 +343,6 @@ namespace BizHawk.Client.EmuHawk
this.BigEndianMenuItem,
this.DisplayTypeSubMenu,
this.DefinePreviousValueSubMenu});
this.settingsToolStripMenuItem.Name = "settingsToolStripMenuItem";
this.settingsToolStripMenuItem.Size = new System.Drawing.Size(61, 20);
this.settingsToolStripMenuItem.Text = "&Settings";
this.settingsToolStripMenuItem.DropDownOpened += new System.EventHandler(this.SettingsSubMenu_DropDownOpened);
//
@ -414,22 +351,16 @@ namespace BizHawk.Client.EmuHawk
this.modeToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.DetailedMenuItem,
this.FastMenuItem});
this.modeToolStripMenuItem.Name = "modeToolStripMenuItem";
this.modeToolStripMenuItem.Size = new System.Drawing.Size(187, 22);
this.modeToolStripMenuItem.Text = "&Mode";
this.modeToolStripMenuItem.DropDownOpened += new System.EventHandler(this.ModeSubMenu_DropDownOpened);
//
// DetailedMenuItem
//
this.DetailedMenuItem.Name = "DetailedMenuItem";
this.DetailedMenuItem.Size = new System.Drawing.Size(117, 22);
this.DetailedMenuItem.Text = "&Detailed";
this.DetailedMenuItem.Click += new System.EventHandler(this.DetailedMenuItem_Click);
//
// FastMenuItem
//
this.FastMenuItem.Name = "FastMenuItem";
this.FastMenuItem.Size = new System.Drawing.Size(117, 22);
this.FastMenuItem.Text = "&Fast";
this.FastMenuItem.Click += new System.EventHandler(this.FastMenuItem_Click);
//
@ -437,64 +368,40 @@ namespace BizHawk.Client.EmuHawk
//
this.MemoryDomainsSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.toolStripSeparator6});
this.MemoryDomainsSubMenu.Name = "MemoryDomainsSubMenu";
this.MemoryDomainsSubMenu.Size = new System.Drawing.Size(187, 22);
this.MemoryDomainsSubMenu.Text = "&Memory Domains";
this.MemoryDomainsSubMenu.DropDownOpened += new System.EventHandler(this.MemoryDomainsSubMenu_DropDownOpened);
//
// toolStripSeparator6
//
this.toolStripSeparator6.Name = "toolStripSeparator6";
this.toolStripSeparator6.Size = new System.Drawing.Size(57, 6);
//
// sizeToolStripMenuItem
//
this.sizeToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.ByteMenuItem,
this.WordMenuItem,
this.DWordMenuItem});
this.sizeToolStripMenuItem.Name = "sizeToolStripMenuItem";
this.sizeToolStripMenuItem.Size = new System.Drawing.Size(187, 22);
this.sizeToolStripMenuItem.Text = "&Size";
this.sizeToolStripMenuItem.DropDownOpened += new System.EventHandler(this.SizeSubMenu_DropDownOpened);
//
// ByteMenuItem
//
this.ByteMenuItem.Name = "ByteMenuItem";
this.ByteMenuItem.Size = new System.Drawing.Size(106, 22);
this.ByteMenuItem.Text = "&1 Byte";
this.ByteMenuItem.Click += new System.EventHandler(this.ByteMenuItem_Click);
//
// WordMenuItem
//
this.WordMenuItem.Name = "WordMenuItem";
this.WordMenuItem.Size = new System.Drawing.Size(106, 22);
this.WordMenuItem.Text = "&2 Byte";
this.WordMenuItem.Click += new System.EventHandler(this.WordMenuItem_Click);
//
// DWordMenuItem
//
this.DWordMenuItem.Name = "DWordMenuItem";
this.DWordMenuItem.Size = new System.Drawing.Size(106, 22);
this.DWordMenuItem.Text = "&4 Byte";
this.DWordMenuItem.Click += new System.EventHandler(this.DWordMenuItem_Click_Click);
//
// CheckMisalignedMenuItem
//
this.CheckMisalignedMenuItem.Name = "CheckMisalignedMenuItem";
this.CheckMisalignedMenuItem.Size = new System.Drawing.Size(187, 22);
this.CheckMisalignedMenuItem.Text = "Check Mis-aligned";
this.CheckMisalignedMenuItem.Click += new System.EventHandler(this.CheckMisalignedMenuItem_Click);
//
// toolStripSeparator8
//
this.toolStripSeparator8.Name = "toolStripSeparator8";
this.toolStripSeparator8.Size = new System.Drawing.Size(184, 6);
//
// BigEndianMenuItem
//
this.BigEndianMenuItem.Name = "BigEndianMenuItem";
this.BigEndianMenuItem.Size = new System.Drawing.Size(187, 22);
this.BigEndianMenuItem.Text = "&Big Endian";
this.BigEndianMenuItem.Click += new System.EventHandler(this.BigEndianMenuItem_Click);
//
@ -502,16 +409,9 @@ namespace BizHawk.Client.EmuHawk
//
this.DisplayTypeSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.toolStripSeparator1});
this.DisplayTypeSubMenu.Name = "DisplayTypeSubMenu";
this.DisplayTypeSubMenu.Size = new System.Drawing.Size(187, 22);
this.DisplayTypeSubMenu.Text = "&Display Type";
this.DisplayTypeSubMenu.DropDownOpened += new System.EventHandler(this.DisplayTypeSubMenu_DropDownOpened);
//
// toolStripSeparator1
//
this.toolStripSeparator1.Name = "toolStripSeparator1";
this.toolStripSeparator1.Size = new System.Drawing.Size(57, 6);
//
// DefinePreviousValueSubMenu
//
this.DefinePreviousValueSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
@ -519,36 +419,26 @@ namespace BizHawk.Client.EmuHawk
this.PreviousFrameMenuItem,
this.Previous_OriginalMenuItem,
this.Previous_LastChangeMenuItem});
this.DefinePreviousValueSubMenu.Name = "DefinePreviousValueSubMenu";
this.DefinePreviousValueSubMenu.Size = new System.Drawing.Size(187, 22);
this.DefinePreviousValueSubMenu.Text = "Define Previous Value";
this.DefinePreviousValueSubMenu.DropDownOpened += new System.EventHandler(this.DefinePreviousValueSubMenu_DropDownOpened);
//
// Previous_LastSearchMenuItem
//
this.Previous_LastSearchMenuItem.Name = "Previous_LastSearchMenuItem";
this.Previous_LastSearchMenuItem.Size = new System.Drawing.Size(155, 22);
this.Previous_LastSearchMenuItem.Text = "Last &Search";
this.Previous_LastSearchMenuItem.Click += new System.EventHandler(this.Previous_LastSearchMenuItem_Click);
//
// PreviousFrameMenuItem
//
this.PreviousFrameMenuItem.Name = "PreviousFrameMenuItem";
this.PreviousFrameMenuItem.Size = new System.Drawing.Size(155, 22);
this.PreviousFrameMenuItem.Text = "&Previous Frame";
this.PreviousFrameMenuItem.Click += new System.EventHandler(this.Previous_LastFrameMenuItem_Click);
//
// Previous_OriginalMenuItem
//
this.Previous_OriginalMenuItem.Name = "Previous_OriginalMenuItem";
this.Previous_OriginalMenuItem.Size = new System.Drawing.Size(155, 22);
this.Previous_OriginalMenuItem.Text = "&Original";
this.Previous_OriginalMenuItem.Click += new System.EventHandler(this.Previous_OriginalMenuItem_Click);
//
// Previous_LastChangeMenuItem
//
this.Previous_LastChangeMenuItem.Name = "Previous_LastChangeMenuItem";
this.Previous_LastChangeMenuItem.Size = new System.Drawing.Size(155, 22);
this.Previous_LastChangeMenuItem.Text = "Last &Change";
this.Previous_LastChangeMenuItem.Click += new System.EventHandler(this.Previous_LastChangeMenuItem_Click);
//
@ -570,108 +460,69 @@ namespace BizHawk.Client.EmuHawk
this.FreezeAddressMenuItem,
this.toolStripSeparator13,
this.ClearUndoMenuItem});
this.searchToolStripMenuItem.Name = "searchToolStripMenuItem";
this.searchToolStripMenuItem.Size = new System.Drawing.Size(54, 20);
this.searchToolStripMenuItem.Text = "&Search";
this.searchToolStripMenuItem.DropDownOpened += new System.EventHandler(this.SearchSubMenu_DropDownOpened);
//
// newSearchToolStripMenuItem
//
this.newSearchToolStripMenuItem.Name = "newSearchToolStripMenuItem";
this.newSearchToolStripMenuItem.Size = new System.Drawing.Size(221, 22);
this.newSearchToolStripMenuItem.Text = "&New Search";
this.newSearchToolStripMenuItem.Click += new System.EventHandler(this.NewSearchMenuMenuItem_Click);
//
// toolStripSeparator7
//
this.toolStripSeparator7.Name = "toolStripSeparator7";
this.toolStripSeparator7.Size = new System.Drawing.Size(218, 6);
//
// UndoMenuItem
//
this.UndoMenuItem.Name = "UndoMenuItem";
this.UndoMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.Z)));
this.UndoMenuItem.Size = new System.Drawing.Size(221, 22);
this.UndoMenuItem.Text = "&Undo";
this.UndoMenuItem.Click += new System.EventHandler(this.UndoMenuItem_Click);
//
// RedoMenuItem
//
this.RedoMenuItem.Name = "RedoMenuItem";
this.RedoMenuItem.ShortcutKeyDisplayString = "";
this.RedoMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.Y)));
this.RedoMenuItem.Size = new System.Drawing.Size(221, 22);
this.RedoMenuItem.Text = "&Redo";
this.RedoMenuItem.Click += new System.EventHandler(this.RedoMenuItem_Click);
//
// CopyValueToPrevMenuItem
//
this.CopyValueToPrevMenuItem.Name = "CopyValueToPrevMenuItem";
this.CopyValueToPrevMenuItem.Size = new System.Drawing.Size(221, 22);
this.CopyValueToPrevMenuItem.Text = "Copy Value to Prev";
this.CopyValueToPrevMenuItem.Click += new System.EventHandler(this.CopyValueToPrevMenuItem_Click);
//
// ClearChangeCountsMenuItem
//
this.ClearChangeCountsMenuItem.Name = "ClearChangeCountsMenuItem";
this.ClearChangeCountsMenuItem.Size = new System.Drawing.Size(221, 22);
this.ClearChangeCountsMenuItem.Text = "&Clear Change Counts";
this.ClearChangeCountsMenuItem.Click += new System.EventHandler(this.ClearChangeCountsMenuItem_Click);
//
// RemoveMenuItem
//
this.RemoveMenuItem.Name = "RemoveMenuItem";
this.RemoveMenuItem.ShortcutKeyDisplayString = "Delete";
this.RemoveMenuItem.Size = new System.Drawing.Size(221, 22);
this.RemoveMenuItem.Text = "&Remove selected";
this.RemoveMenuItem.Click += new System.EventHandler(this.RemoveMenuItem_Click);
//
// toolStripSeparator5
//
this.toolStripSeparator5.Name = "toolStripSeparator5";
this.toolStripSeparator5.Size = new System.Drawing.Size(218, 6);
//
// GoToAddressMenuItem
//
this.GoToAddressMenuItem.Name = "GoToAddressMenuItem";
this.GoToAddressMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.G)));
this.GoToAddressMenuItem.Size = new System.Drawing.Size(221, 22);
this.GoToAddressMenuItem.Text = "&Go to Address...";
this.GoToAddressMenuItem.Click += new System.EventHandler(this.GoToAddressMenuItem_Click);
//
// AddToRamWatchMenuItem
//
this.AddToRamWatchMenuItem.Name = "AddToRamWatchMenuItem";
this.AddToRamWatchMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.W)));
this.AddToRamWatchMenuItem.Size = new System.Drawing.Size(221, 22);
this.AddToRamWatchMenuItem.Text = "&Add to RAM Watch";
this.AddToRamWatchMenuItem.Click += new System.EventHandler(this.AddToRamWatchMenuItem_Click);
//
// PokeAddressMenuItem
//
this.PokeAddressMenuItem.Name = "PokeAddressMenuItem";
this.PokeAddressMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.P)));
this.PokeAddressMenuItem.Size = new System.Drawing.Size(221, 22);
this.PokeAddressMenuItem.Text = "&Poke Address";
this.PokeAddressMenuItem.Click += new System.EventHandler(this.PokeAddressMenuItem_Click);
//
// FreezeAddressMenuItem
//
this.FreezeAddressMenuItem.Name = "FreezeAddressMenuItem";
this.FreezeAddressMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.F)));
this.FreezeAddressMenuItem.Size = new System.Drawing.Size(221, 22);
this.FreezeAddressMenuItem.Text = "Freeze Address";
this.FreezeAddressMenuItem.Click += new System.EventHandler(this.FreezeAddressMenuItem_Click);
//
// toolStripSeparator13
//
this.toolStripSeparator13.Name = "toolStripSeparator13";
this.toolStripSeparator13.Size = new System.Drawing.Size(218, 6);
//
// ClearUndoMenuItem
//
this.ClearUndoMenuItem.Name = "ClearUndoMenuItem";
this.ClearUndoMenuItem.Size = new System.Drawing.Size(221, 22);
this.ClearUndoMenuItem.Text = "Clear Undo History";
this.ClearUndoMenuItem.Click += new System.EventHandler(this.ClearUndoMenuItem_Click);
//
@ -691,93 +542,56 @@ namespace BizHawk.Client.EmuHawk
this.FloatingWindowMenuItem,
this.toolStripSeparator3,
this.RestoreDefaultsMenuItem});
this.optionsToolStripMenuItem.Name = "optionsToolStripMenuItem";
this.optionsToolStripMenuItem.Size = new System.Drawing.Size(61, 20);
this.optionsToolStripMenuItem.Text = "&Options";
this.optionsToolStripMenuItem.DropDownOpened += new System.EventHandler(this.OptionsSubMenu_DropDownOpened);
//
// PreviewModeMenuItem
//
this.PreviewModeMenuItem.Name = "PreviewModeMenuItem";
this.PreviewModeMenuItem.Size = new System.Drawing.Size(242, 22);
this.PreviewModeMenuItem.Text = "&Preview Mode";
this.PreviewModeMenuItem.Click += new System.EventHandler(this.PreviewModeMenuItem_Click);
//
// AutoSearchMenuItem
//
this.AutoSearchMenuItem.Name = "AutoSearchMenuItem";
this.AutoSearchMenuItem.Size = new System.Drawing.Size(242, 22);
this.AutoSearchMenuItem.Text = "&Auto-Search";
this.AutoSearchMenuItem.Click += new System.EventHandler(this.AutoSearchMenuItem_Click);
//
// AutoSearchAccountForLagMenuItem
//
this.AutoSearchAccountForLagMenuItem.Name = "AutoSearchAccountForLagMenuItem";
this.AutoSearchAccountForLagMenuItem.Size = new System.Drawing.Size(242, 22);
this.AutoSearchAccountForLagMenuItem.Text = "&Auto-Search Account for Lag";
this.AutoSearchAccountForLagMenuItem.Click += new System.EventHandler(this.AutoSearchAccountForLagMenuItem_Click);
//
// toolStripSeparator9
//
this.toolStripSeparator9.Name = "toolStripSeparator9";
this.toolStripSeparator9.Size = new System.Drawing.Size(239, 6);
//
// ExcludeRamWatchMenuItem
//
this.ExcludeRamWatchMenuItem.Name = "ExcludeRamWatchMenuItem";
this.ExcludeRamWatchMenuItem.Size = new System.Drawing.Size(242, 22);
this.ExcludeRamWatchMenuItem.Text = "Always E&xclude RAM Search List";
this.ExcludeRamWatchMenuItem.Click += new System.EventHandler(this.ExcludeRamWatchMenuItem_Click);
//
// UseUndoHistoryMenuItem
//
this.UseUndoHistoryMenuItem.Name = "UseUndoHistoryMenuItem";
this.UseUndoHistoryMenuItem.Size = new System.Drawing.Size(242, 22);
this.UseUndoHistoryMenuItem.Text = "&Use Undo History";
this.UseUndoHistoryMenuItem.Click += new System.EventHandler(this.UseUndoHistoryMenuItem_Click);
//
// toolStripSeparator11
//
this.toolStripSeparator11.Name = "toolStripSeparator11";
this.toolStripSeparator11.Size = new System.Drawing.Size(239, 6);
//
// AutoloadDialogMenuItem
//
this.AutoloadDialogMenuItem.Name = "AutoloadDialogMenuItem";
this.AutoloadDialogMenuItem.Size = new System.Drawing.Size(242, 22);
this.AutoloadDialogMenuItem.Text = "Auto&load";
this.AutoloadDialogMenuItem.Click += new System.EventHandler(this.AutoloadDialogMenuItem_Click);
//
// SaveWinPositionMenuItem
//
this.SaveWinPositionMenuItem.Name = "SaveWinPositionMenuItem";
this.SaveWinPositionMenuItem.Size = new System.Drawing.Size(242, 22);
this.SaveWinPositionMenuItem.Text = "&Save Window Position";
this.SaveWinPositionMenuItem.Click += new System.EventHandler(this.SaveWinPositionMenuItem_Click);
//
// AlwaysOnTopMenuItem
//
this.AlwaysOnTopMenuItem.Name = "AlwaysOnTopMenuItem";
this.AlwaysOnTopMenuItem.Size = new System.Drawing.Size(242, 22);
this.AlwaysOnTopMenuItem.Text = "Always On &Top";
this.AlwaysOnTopMenuItem.Click += new System.EventHandler(this.AlwaysOnTopMenuItem_Click);
//
// FloatingWindowMenuItem
//
this.FloatingWindowMenuItem.Name = "FloatingWindowMenuItem";
this.FloatingWindowMenuItem.Size = new System.Drawing.Size(242, 22);
this.FloatingWindowMenuItem.Text = "&Floating Window";
this.FloatingWindowMenuItem.Click += new System.EventHandler(this.FloatingWindowMenuItem_Click);
//
// toolStripSeparator3
//
this.toolStripSeparator3.Name = "toolStripSeparator3";
this.toolStripSeparator3.Size = new System.Drawing.Size(239, 6);
//
// RestoreDefaultsMenuItem
//
this.RestoreDefaultsMenuItem.Name = "RestoreDefaultsMenuItem";
this.RestoreDefaultsMenuItem.Size = new System.Drawing.Size(242, 22);
this.RestoreDefaultsMenuItem.Text = "&Restore Default Settings";
this.RestoreDefaultsMenuItem.Click += new System.EventHandler(this.RestoreDefaultsMenuItem_Click);
//
@ -978,11 +792,6 @@ namespace BizHawk.Client.EmuHawk
this.DoSearchToolButton.Text = "Search ";
this.DoSearchToolButton.Click += new System.EventHandler(this.SearchMenuItem_Click);
//
// toolStripSeparator10
//
this.toolStripSeparator10.Name = "toolStripSeparator10";
this.toolStripSeparator10.Size = new System.Drawing.Size(6, 25);
//
// NewSearchToolButton
//
this.NewSearchToolButton.ImageTransparentColor = System.Drawing.Color.Magenta;
@ -991,11 +800,6 @@ namespace BizHawk.Client.EmuHawk
this.NewSearchToolButton.Text = "New";
this.NewSearchToolButton.Click += new System.EventHandler(this.NewSearchMenuMenuItem_Click);
//
// toolStripSeparator15
//
this.toolStripSeparator15.Name = "toolStripSeparator15";
this.toolStripSeparator15.Size = new System.Drawing.Size(6, 25);
//
// CopyValueToPrevToolBarItem
//
this.CopyValueToPrevToolBarItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
@ -1016,11 +820,6 @@ namespace BizHawk.Client.EmuHawk
this.ClearChangeCountsToolBarItem.ToolTipText = "Clear Change Counts";
this.ClearChangeCountsToolBarItem.Click += new System.EventHandler(this.ClearChangeCountsMenuItem_Click);
//
// toolStripSeparator16
//
this.toolStripSeparator16.Name = "toolStripSeparator16";
this.toolStripSeparator16.Size = new System.Drawing.Size(6, 25);
//
// RemoveToolBarItem
//
this.RemoveToolBarItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
@ -1062,11 +861,6 @@ namespace BizHawk.Client.EmuHawk
this.FreezeAddressToolBarItem.Text = "Freeze";
this.FreezeAddressToolBarItem.Click += new System.EventHandler(this.FreezeAddressMenuItem_Click);
//
// toolStripSeparator12
//
this.toolStripSeparator12.Name = "toolStripSeparator12";
this.toolStripSeparator12.Size = new System.Drawing.Size(6, 25);
//
// UndoToolBarButton
//
this.UndoToolBarButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
@ -1087,11 +881,6 @@ namespace BizHawk.Client.EmuHawk
this.RedoToolBarItem.Text = "Redo";
this.RedoToolBarItem.Click += new System.EventHandler(this.RedoMenuItem_Click);
//
// RebootToolBarSeparator
//
this.RebootToolBarSeparator.Name = "RebootToolBarSeparator";
this.RebootToolBarSeparator.Size = new System.Drawing.Size(6, 25);
//
// RebootToolbarButton
//
this.RebootToolbarButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
@ -1325,77 +1114,77 @@ namespace BizHawk.Client.EmuHawk
#endregion
private BizHawk.WinForms.Controls.LocLabelEx TotalSearchLabel;
private System.Windows.Forms.ToolStripMenuItem SearchMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx SearchMenuItem;
private InputRoll WatchListView;
private System.Windows.Forms.ToolStripMenuItem fileToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem OpenMenuItem;
private System.Windows.Forms.ToolStripMenuItem SaveAsMenuItem;
private System.Windows.Forms.ToolStripMenuItem SaveMenuItem;
private System.Windows.Forms.ToolStripMenuItem exitToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem optionsToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem RestoreDefaultsMenuItem;
private System.Windows.Forms.ToolStripMenuItem SaveWinPositionMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx fileToolStripMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx OpenMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx SaveAsMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx SaveMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx exitToolStripMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx optionsToolStripMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx RestoreDefaultsMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx SaveWinPositionMenuItem;
private BizHawk.WinForms.Controls.LocLabelEx MemDomainLabel;
private BizHawk.WinForms.Controls.LocLabelEx MessageLabel;
private System.Windows.Forms.ToolStripMenuItem RecentSubMenu;
private System.Windows.Forms.ToolStripSeparator toolStripSeparator2;
private System.Windows.Forms.ToolStripMenuItem AppendFileMenuItem;
private System.Windows.Forms.ToolStripSeparator toolStripSeparator4;
private System.Windows.Forms.ToolStripMenuItem searchToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem ClearChangeCountsMenuItem;
private System.Windows.Forms.ToolStripMenuItem UndoMenuItem;
private System.Windows.Forms.ToolStripMenuItem RemoveMenuItem;
private System.Windows.Forms.ToolStripSeparator toolStripSeparator5;
private System.Windows.Forms.ToolStripMenuItem AddToRamWatchMenuItem;
private System.Windows.Forms.ToolStripMenuItem PokeAddressMenuItem;
private System.Windows.Forms.ToolStripMenuItem TruncateFromFileMenuItem;
private System.Windows.Forms.ToolStripMenuItem ExcludeRamWatchMenuItem;
private System.Windows.Forms.ToolStripMenuItem CopyValueToPrevMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx RecentSubMenu;
private BizHawk.WinForms.Controls.ToolStripSeparatorEx toolStripSeparator2;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx AppendFileMenuItem;
private BizHawk.WinForms.Controls.ToolStripSeparatorEx toolStripSeparator4;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx searchToolStripMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx ClearChangeCountsMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx UndoMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx RemoveMenuItem;
private BizHawk.WinForms.Controls.ToolStripSeparatorEx toolStripSeparator5;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx AddToRamWatchMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx PokeAddressMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx TruncateFromFileMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx ExcludeRamWatchMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx CopyValueToPrevMenuItem;
private System.Windows.Forms.ContextMenuStrip ListViewContextMenu;
private System.Windows.Forms.ToolStripMenuItem NewSearchContextMenuItem;
private System.Windows.Forms.ToolStripSeparator ContextMenuSeparator1;
private System.Windows.Forms.ToolStripMenuItem DoSearchContextMenuItem;
private System.Windows.Forms.ToolStripMenuItem FreezeAddressMenuItem;
private System.Windows.Forms.ToolStripMenuItem RemoveContextMenuItem;
private System.Windows.Forms.ToolStripMenuItem AddToRamWatchContextMenuItem;
private System.Windows.Forms.ToolStripMenuItem PokeContextMenuItem;
private System.Windows.Forms.ToolStripMenuItem FreezeContextMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx NewSearchContextMenuItem;
private BizHawk.WinForms.Controls.ToolStripSeparatorEx ContextMenuSeparator1;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx DoSearchContextMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx FreezeAddressMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx RemoveContextMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx AddToRamWatchContextMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx PokeContextMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx FreezeContextMenuItem;
private MenuStripEx RamSearchMenu;
private System.Windows.Forms.ToolTip toolTip1;
private System.Windows.Forms.ToolStripMenuItem RedoMenuItem;
private System.Windows.Forms.ToolStripMenuItem ViewInHexEditorContextMenuItem;
private System.Windows.Forms.ToolStripMenuItem AutoloadDialogMenuItem;
private System.Windows.Forms.ToolStripSeparator toolStripSeparator11;
private System.Windows.Forms.ToolStripMenuItem UnfreezeAllContextMenuItem;
private System.Windows.Forms.ToolStripSeparator ContextMenuSeparator3;
private System.Windows.Forms.ToolStripMenuItem AlwaysOnTopMenuItem;
private System.Windows.Forms.ToolStripSeparator toolStripSeparator13;
private System.Windows.Forms.ToolStripMenuItem ClearUndoMenuItem;
private System.Windows.Forms.ToolStripMenuItem UseUndoHistoryMenuItem;
private System.Windows.Forms.ToolStripSeparator ContextMenuSeparator2;
private System.Windows.Forms.ToolStripMenuItem ClearPreviewContextMenuItem;
private System.Windows.Forms.ToolStripSeparator toolStripSeparator3;
private System.Windows.Forms.ToolStripMenuItem newSearchToolStripMenuItem;
private System.Windows.Forms.ToolStripSeparator toolStripSeparator7;
private System.Windows.Forms.ToolStripMenuItem settingsToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem modeToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem DetailedMenuItem;
private System.Windows.Forms.ToolStripMenuItem FastMenuItem;
private System.Windows.Forms.ToolStripMenuItem MemoryDomainsSubMenu;
private System.Windows.Forms.ToolStripSeparator toolStripSeparator6;
private System.Windows.Forms.ToolStripMenuItem sizeToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem ByteMenuItem;
private System.Windows.Forms.ToolStripMenuItem WordMenuItem;
private System.Windows.Forms.ToolStripMenuItem DWordMenuItem;
private System.Windows.Forms.ToolStripMenuItem DisplayTypeSubMenu;
private System.Windows.Forms.ToolStripSeparator toolStripSeparator1;
private System.Windows.Forms.ToolStripMenuItem BigEndianMenuItem;
private System.Windows.Forms.ToolStripMenuItem CheckMisalignedMenuItem;
private System.Windows.Forms.ToolStripSeparator toolStripSeparator8;
private System.Windows.Forms.ToolStripMenuItem DefinePreviousValueSubMenu;
private System.Windows.Forms.ToolStripMenuItem PreviousFrameMenuItem;
private System.Windows.Forms.ToolStripMenuItem Previous_LastSearchMenuItem;
private System.Windows.Forms.ToolStripMenuItem Previous_OriginalMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx RedoMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx ViewInHexEditorContextMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx AutoloadDialogMenuItem;
private BizHawk.WinForms.Controls.ToolStripSeparatorEx toolStripSeparator11;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx UnfreezeAllContextMenuItem;
private BizHawk.WinForms.Controls.ToolStripSeparatorEx ContextMenuSeparator3;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx AlwaysOnTopMenuItem;
private BizHawk.WinForms.Controls.ToolStripSeparatorEx toolStripSeparator13;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx ClearUndoMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx UseUndoHistoryMenuItem;
private BizHawk.WinForms.Controls.ToolStripSeparatorEx ContextMenuSeparator2;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx ClearPreviewContextMenuItem;
private BizHawk.WinForms.Controls.ToolStripSeparatorEx toolStripSeparator3;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx newSearchToolStripMenuItem;
private BizHawk.WinForms.Controls.ToolStripSeparatorEx toolStripSeparator7;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx settingsToolStripMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx modeToolStripMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx DetailedMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx FastMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx MemoryDomainsSubMenu;
private BizHawk.WinForms.Controls.ToolStripSeparatorEx toolStripSeparator6;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx sizeToolStripMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx ByteMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx WordMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx DWordMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx DisplayTypeSubMenu;
private BizHawk.WinForms.Controls.ToolStripSeparatorEx toolStripSeparator1;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx BigEndianMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx CheckMisalignedMenuItem;
private BizHawk.WinForms.Controls.ToolStripSeparatorEx toolStripSeparator8;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx DefinePreviousValueSubMenu;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx PreviousFrameMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx Previous_LastSearchMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx Previous_OriginalMenuItem;
private System.Windows.Forms.GroupBox CompareToBox;
private System.Windows.Forms.RadioButton DifferenceRadio;
private UnsignedIntegerBox NumberOfChangesBox;
@ -1407,9 +1196,9 @@ namespace BizHawk.Client.EmuHawk
private System.Windows.Forms.RadioButton PreviousValueRadio;
private ToolStripEx toolStrip1;
private System.Windows.Forms.ToolStripButton DoSearchToolButton;
private System.Windows.Forms.ToolStripSeparator toolStripSeparator10;
private BizHawk.WinForms.Controls.ToolStripSeparatorEx toolStripSeparator10;
private System.Windows.Forms.ToolStripButton NewSearchToolButton;
private System.Windows.Forms.ToolStripSeparator toolStripSeparator15;
private BizHawk.WinForms.Controls.ToolStripSeparatorEx toolStripSeparator15;
private System.Windows.Forms.GroupBox ComparisonBox;
private WatchValueBox DifferentByBox;
private System.Windows.Forms.RadioButton DifferentByRadio;
@ -1421,30 +1210,30 @@ namespace BizHawk.Client.EmuHawk
private System.Windows.Forms.RadioButton LessThanRadio;
private System.Windows.Forms.ToolStripButton CopyValueToPrevToolBarItem;
private System.Windows.Forms.ToolStripButton ClearChangeCountsToolBarItem;
private System.Windows.Forms.ToolStripMenuItem PreviewModeMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx PreviewModeMenuItem;
private System.Windows.Forms.ToolStripButton RemoveToolBarItem;
private System.Windows.Forms.ToolStripSeparator toolStripSeparator16;
private BizHawk.WinForms.Controls.ToolStripSeparatorEx toolStripSeparator16;
private System.Windows.Forms.ToolStripButton AddToRamWatchToolBarItem;
private System.Windows.Forms.ToolStripButton PokeAddressToolBarItem;
private System.Windows.Forms.ToolStripButton FreezeAddressToolBarItem;
private WatchValueBox DifferenceBox;
private System.Windows.Forms.ToolStripMenuItem AutoSearchMenuItem;
private System.Windows.Forms.ToolStripSeparator toolStripSeparator9;
private System.Windows.Forms.ToolStripSeparator toolStripSeparator12;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx AutoSearchMenuItem;
private BizHawk.WinForms.Controls.ToolStripSeparatorEx toolStripSeparator9;
private BizHawk.WinForms.Controls.ToolStripSeparatorEx toolStripSeparator12;
private System.Windows.Forms.ToolStripButton UndoToolBarButton;
private System.Windows.Forms.ToolStripButton RedoToolBarItem;
private System.Windows.Forms.CheckBox AutoSearchCheckBox;
private System.Windows.Forms.Button SearchButton;
private System.Windows.Forms.ToolStripSeparator RebootToolBarSeparator;
private BizHawk.WinForms.Controls.ToolStripSeparatorEx RebootToolBarSeparator;
private System.Windows.Forms.ToolStripButton RebootToolbarButton;
private System.Windows.Forms.ComboBox SizeDropdown;
private BizHawk.WinForms.Controls.LocLabelEx label1;
private BizHawk.WinForms.Controls.LocLabelEx label2;
private System.Windows.Forms.ComboBox DisplayTypeDropdown;
private System.Windows.Forms.ToolStripMenuItem GoToAddressMenuItem;
private System.Windows.Forms.ToolStripMenuItem FloatingWindowMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx GoToAddressMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx FloatingWindowMenuItem;
private System.Windows.Forms.ToolStripButton ErrorIconButton;
private System.Windows.Forms.ToolStripMenuItem Previous_LastChangeMenuItem;
private System.Windows.Forms.ToolStripMenuItem AutoSearchAccountForLagMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx Previous_LastChangeMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx AutoSearchAccountForLagMenuItem;
}
}

View File

@ -33,23 +33,23 @@ namespace BizHawk.Client.EmuHawk
this.components = new System.ComponentModel.Container();
this.WatchCountLabel = new BizHawk.WinForms.Controls.LocLabelEx();
this.ListViewContextMenu = new System.Windows.Forms.ContextMenuStrip(this.components);
this.newToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.EditContextMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.RemoveContextMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.DuplicateContextMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.PokeContextMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.FreezeContextMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.UnfreezeAllContextMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.ViewInHexEditorContextMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.Separator4 = new System.Windows.Forms.ToolStripSeparator();
this.ReadBreakpointContextMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.WriteBreakpointContextMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.Separator6 = new System.Windows.Forms.ToolStripSeparator();
this.InsertSeperatorContextMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.MoveUpContextMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.MoveDownContextMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.MoveTopContextMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.MoveBottomContextMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.newToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.EditContextMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.RemoveContextMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.DuplicateContextMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.PokeContextMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.FreezeContextMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.UnfreezeAllContextMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.ViewInHexEditorContextMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.Separator4 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx();
this.ReadBreakpointContextMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.WriteBreakpointContextMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.Separator6 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx();
this.InsertSeperatorContextMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.MoveUpContextMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.MoveDownContextMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.MoveTopContextMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.MoveBottomContextMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.statusStrip1 = new StatusStripEx();
this.ErrorIconButton = new System.Windows.Forms.ToolStripButton();
this.MessageLabel = new System.Windows.Forms.ToolStripStatusLabel();
@ -57,7 +57,7 @@ namespace BizHawk.Client.EmuHawk
this.newToolStripButton = new System.Windows.Forms.ToolStripButton();
this.openToolStripButton = new System.Windows.Forms.ToolStripButton();
this.saveToolStripButton = new System.Windows.Forms.ToolStripButton();
this.toolStripSeparator = new System.Windows.Forms.ToolStripSeparator();
this.toolStripSeparator = new BizHawk.WinForms.Controls.ToolStripSeparatorEx();
this.newWatchToolStripButton = new System.Windows.Forms.ToolStripButton();
this.editWatchToolStripButton = new System.Windows.Forms.ToolStripButton();
this.cutToolStripButton = new System.Windows.Forms.ToolStripButton();
@ -66,50 +66,50 @@ namespace BizHawk.Client.EmuHawk
this.PokeAddressToolBarItem = new System.Windows.Forms.ToolStripButton();
this.FreezeAddressToolBarItem = new System.Windows.Forms.ToolStripButton();
this.seperatorToolStripButton = new System.Windows.Forms.ToolStripButton();
this.toolStripSeparator6 = new System.Windows.Forms.ToolStripSeparator();
this.toolStripSeparator6 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx();
this.moveUpToolStripButton = new System.Windows.Forms.ToolStripButton();
this.moveDownToolStripButton = new System.Windows.Forms.ToolStripButton();
this.toolStripSeparator5 = new System.Windows.Forms.ToolStripSeparator();
this.toolStripSeparator5 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx();
this.RamWatchMenu = new MenuStripEx();
this.FileSubMenu = new System.Windows.Forms.ToolStripMenuItem();
this.NewListMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.OpenMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.SaveMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.SaveAsMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.AppendMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.RecentSubMenu = new System.Windows.Forms.ToolStripMenuItem();
this.noneToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
this.ExitMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.WatchesSubMenu = new System.Windows.Forms.ToolStripMenuItem();
this.MemoryDomainsSubMenu = new System.Windows.Forms.ToolStripMenuItem();
this.Separator2 = new System.Windows.Forms.ToolStripSeparator();
this.toolStripSeparator8 = new System.Windows.Forms.ToolStripSeparator();
this.NewWatchMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.EditWatchMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.RemoveWatchMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.DuplicateWatchMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.PokeAddressMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.FreezeAddressMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.InsertSeparatorMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.ClearChangeCountsMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripSeparator3 = new System.Windows.Forms.ToolStripSeparator();
this.MoveUpMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.MoveDownMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.MoveTopMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.MoveBottomMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.SelectAllMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.OptionsSubMenu = new System.Windows.Forms.ToolStripMenuItem();
this.DefinePreviousValueSubMenu = new System.Windows.Forms.ToolStripMenuItem();
this.PreviousFrameMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.LastChangeMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.OriginalMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.WatchesOnScreenMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.SaveWindowPositionMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.AlwaysOnTopMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.FloatingWindowMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.toolStripSeparator7 = new System.Windows.Forms.ToolStripSeparator();
this.RestoreWindowSizeMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.FileSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.NewListMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.OpenMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.SaveMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.SaveAsMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.AppendMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.RecentSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.noneToolStripMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.toolStripSeparator1 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx();
this.ExitMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.WatchesSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.MemoryDomainsSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.Separator2 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx();
this.toolStripSeparator8 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx();
this.NewWatchMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.EditWatchMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.RemoveWatchMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.DuplicateWatchMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.PokeAddressMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.FreezeAddressMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.InsertSeparatorMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.ClearChangeCountsMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.toolStripSeparator3 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx();
this.MoveUpMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.MoveDownMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.MoveTopMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.MoveBottomMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.SelectAllMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.OptionsSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.DefinePreviousValueSubMenu = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.PreviousFrameMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.LastChangeMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.OriginalMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.WatchesOnScreenMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.SaveWindowPositionMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.AlwaysOnTopMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.FloatingWindowMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.toolStripSeparator7 = new BizHawk.WinForms.Controls.ToolStripSeparatorEx();
this.RestoreWindowSizeMenuItem = new BizHawk.WinForms.Controls.ToolStripMenuItemEx();
this.WatchListView = new InputRoll();
this.ListViewContextMenu.SuspendLayout();
this.statusStrip1.SuspendLayout();
@ -149,128 +149,88 @@ namespace BizHawk.Client.EmuHawk
//
// newToolStripMenuItem
//
this.newToolStripMenuItem.Name = "newToolStripMenuItem";
this.newToolStripMenuItem.Size = new System.Drawing.Size(244, 22);
this.newToolStripMenuItem.Text = "&New Watch";
this.newToolStripMenuItem.Click += new System.EventHandler(this.NewWatchMenuItem_Click);
//
// EditContextMenuItem
//
this.EditContextMenuItem.Name = "EditContextMenuItem";
this.EditContextMenuItem.ShortcutKeyDisplayString = "Ctrl+E";
this.EditContextMenuItem.Size = new System.Drawing.Size(244, 22);
this.EditContextMenuItem.Text = "&Edit";
this.EditContextMenuItem.Click += new System.EventHandler(this.EditWatchMenuItem_Click);
//
// RemoveContextMenuItem
//
this.RemoveContextMenuItem.Name = "RemoveContextMenuItem";
this.RemoveContextMenuItem.ShortcutKeyDisplayString = "Ctrl+R";
this.RemoveContextMenuItem.Size = new System.Drawing.Size(244, 22);
this.RemoveContextMenuItem.Text = "&Remove";
this.RemoveContextMenuItem.Click += new System.EventHandler(this.RemoveWatchMenuItem_Click);
//
// DuplicateContextMenuItem
//
this.DuplicateContextMenuItem.Name = "DuplicateContextMenuItem";
this.DuplicateContextMenuItem.ShortcutKeyDisplayString = "Ctrl+D";
this.DuplicateContextMenuItem.Size = new System.Drawing.Size(244, 22);
this.DuplicateContextMenuItem.Text = "&Duplicate";
this.DuplicateContextMenuItem.Click += new System.EventHandler(this.DuplicateWatchMenuItem_Click);
//
// PokeContextMenuItem
//
this.PokeContextMenuItem.Name = "PokeContextMenuItem";
this.PokeContextMenuItem.ShortcutKeyDisplayString = "Ctrl+P";
this.PokeContextMenuItem.Size = new System.Drawing.Size(244, 22);
this.PokeContextMenuItem.Text = "&Poke";
this.PokeContextMenuItem.Click += new System.EventHandler(this.PokeAddressMenuItem_Click);
//
// FreezeContextMenuItem
//
this.FreezeContextMenuItem.Name = "FreezeContextMenuItem";
this.FreezeContextMenuItem.ShortcutKeyDisplayString = "Ctrl+F";
this.FreezeContextMenuItem.Size = new System.Drawing.Size(244, 22);
this.FreezeContextMenuItem.Text = "&Freeze";
this.FreezeContextMenuItem.Click += new System.EventHandler(this.FreezeAddressMenuItem_Click);
//
// UnfreezeAllContextMenuItem
//
this.UnfreezeAllContextMenuItem.Name = "UnfreezeAllContextMenuItem";
this.UnfreezeAllContextMenuItem.Size = new System.Drawing.Size(244, 22);
this.UnfreezeAllContextMenuItem.Text = "Unfreeze &All";
this.UnfreezeAllContextMenuItem.Click += new System.EventHandler(this.UnfreezeAllContextMenuItem_Click);
//
// ViewInHexEditorContextMenuItem
//
this.ViewInHexEditorContextMenuItem.Name = "ViewInHexEditorContextMenuItem";
this.ViewInHexEditorContextMenuItem.Size = new System.Drawing.Size(244, 22);
this.ViewInHexEditorContextMenuItem.Text = "View in Hex Editor";
this.ViewInHexEditorContextMenuItem.Click += new System.EventHandler(this.ViewInHexEditorContextMenuItem_Click);
//
// Separator4
//
this.Separator4.Name = "Separator4";
this.Separator4.Size = new System.Drawing.Size(241, 6);
//
// ReadBreakpointContextMenuItem
//
this.ReadBreakpointContextMenuItem.Name = "ReadBreakpointContextMenuItem";
this.ReadBreakpointContextMenuItem.Size = new System.Drawing.Size(244, 22);
this.ReadBreakpointContextMenuItem.Text = "Set Read Breakpoint";
this.ReadBreakpointContextMenuItem.Click += new System.EventHandler(this.ReadBreakpointContextMenuItem_Click);
//
// WriteBreakpointContextMenuItem
//
this.WriteBreakpointContextMenuItem.Name = "WriteBreakpointContextMenuItem";
this.WriteBreakpointContextMenuItem.Size = new System.Drawing.Size(244, 22);
this.WriteBreakpointContextMenuItem.Text = "Set Write Breakpoint";
this.WriteBreakpointContextMenuItem.Click += new System.EventHandler(this.WriteBreakpointContextMenuItem_Click);
//
// Separator6
//
this.Separator6.Name = "Separator6";
this.Separator6.Size = new System.Drawing.Size(241, 6);
//
// InsertSeperatorContextMenuItem
//
this.InsertSeperatorContextMenuItem.Name = "InsertSeperatorContextMenuItem";
this.InsertSeperatorContextMenuItem.ShortcutKeyDisplayString = "Ctrl+I";
this.InsertSeperatorContextMenuItem.Size = new System.Drawing.Size(244, 22);
this.InsertSeperatorContextMenuItem.Text = "&Insert Separator";
this.InsertSeperatorContextMenuItem.Click += new System.EventHandler(this.InsertSeparatorMenuItem_Click);
//
// MoveUpContextMenuItem
//
this.MoveUpContextMenuItem.Name = "MoveUpContextMenuItem";
this.MoveUpContextMenuItem.ShortcutKeyDisplayString = "Ctrl+Up";
this.MoveUpContextMenuItem.Size = new System.Drawing.Size(244, 22);
this.MoveUpContextMenuItem.Text = "Move &Up";
this.MoveUpContextMenuItem.Click += new System.EventHandler(this.MoveUpMenuItem_Click);
//
// MoveDownContextMenuItem
//
this.MoveDownContextMenuItem.Name = "MoveDownContextMenuItem";
this.MoveDownContextMenuItem.ShortcutKeyDisplayString = "Ctrl+Down";
this.MoveDownContextMenuItem.Size = new System.Drawing.Size(244, 22);
this.MoveDownContextMenuItem.Text = "Move &Down";
this.MoveDownContextMenuItem.Click += new System.EventHandler(this.MoveDownMenuItem_Click);
//
// MoveTopContextMenuItem
//
this.MoveTopContextMenuItem.Name = "MoveTopContextMenuItem";
this.MoveTopContextMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)(((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.Shift)
| System.Windows.Forms.Keys.Up)));
this.MoveTopContextMenuItem.Size = new System.Drawing.Size(244, 22);
this.MoveTopContextMenuItem.Text = "Move &Top";
this.MoveTopContextMenuItem.Click += new System.EventHandler(this.MoveTopMenuItem_Click);
//
// MoveBottomContextMenuItem
//
this.MoveBottomContextMenuItem.Name = "MoveBottomContextMenuItem";
this.MoveBottomContextMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)(((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.Shift)
| System.Windows.Forms.Keys.Down)));
this.MoveBottomContextMenuItem.Size = new System.Drawing.Size(244, 22);
this.MoveBottomContextMenuItem.Text = "Move &Bottom";
this.MoveBottomContextMenuItem.Click += new System.EventHandler(this.MoveBottomMenuItem_Click);
//
@ -350,11 +310,6 @@ namespace BizHawk.Client.EmuHawk
this.saveToolStripButton.Text = "&Save";
this.saveToolStripButton.Click += new System.EventHandler(this.SaveMenuItem_Click);
//
// toolStripSeparator
//
this.toolStripSeparator.Name = "toolStripSeparator";
this.toolStripSeparator.Size = new System.Drawing.Size(6, 25);
//
// newWatchToolStripButton
//
this.newWatchToolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
@ -432,11 +387,6 @@ namespace BizHawk.Client.EmuHawk
this.seperatorToolStripButton.ToolTipText = "Insert Separator";
this.seperatorToolStripButton.Click += new System.EventHandler(this.InsertSeparatorMenuItem_Click);
//
// toolStripSeparator6
//
this.toolStripSeparator6.Name = "toolStripSeparator6";
this.toolStripSeparator6.Size = new System.Drawing.Size(6, 25);
//
// moveUpToolStripButton
//
this.moveUpToolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
@ -454,11 +404,6 @@ namespace BizHawk.Client.EmuHawk
this.moveDownToolStripButton.Size = new System.Drawing.Size(23, 22);
this.moveDownToolStripButton.Text = "Move Down";
this.moveDownToolStripButton.Click += new System.EventHandler(this.MoveDownMenuItem_Click);
//
// toolStripSeparator5
//
this.toolStripSeparator5.Name = "toolStripSeparator5";
this.toolStripSeparator5.Size = new System.Drawing.Size(6, 25);
//
// RamWatchMenu
//
@ -481,48 +426,36 @@ namespace BizHawk.Client.EmuHawk
this.RecentSubMenu,
this.toolStripSeparator1,
this.ExitMenuItem});
this.FileSubMenu.Name = "FileSubMenu";
this.FileSubMenu.Size = new System.Drawing.Size(42, 20);
this.FileSubMenu.Text = "&Files";
this.FileSubMenu.DropDownOpened += new System.EventHandler(this.FileSubMenu_DropDownOpened);
//
// NewListMenuItem
//
this.NewListMenuItem.Name = "NewListMenuItem";
this.NewListMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.N)));
this.NewListMenuItem.Size = new System.Drawing.Size(195, 22);
this.NewListMenuItem.Text = "&New List";
this.NewListMenuItem.Click += new System.EventHandler(this.NewListMenuItem_Click);
//
// OpenMenuItem
//
this.OpenMenuItem.Name = "OpenMenuItem";
this.OpenMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.O)));
this.OpenMenuItem.Size = new System.Drawing.Size(195, 22);
this.OpenMenuItem.Text = "&Open...";
this.OpenMenuItem.Click += new System.EventHandler(this.OpenMenuItem_Click);
//
// SaveMenuItem
//
this.SaveMenuItem.Name = "SaveMenuItem";
this.SaveMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.S)));
this.SaveMenuItem.Size = new System.Drawing.Size(195, 22);
this.SaveMenuItem.Text = "&Save";
this.SaveMenuItem.Click += new System.EventHandler(this.SaveMenuItem_Click);
//
// SaveAsMenuItem
//
this.SaveAsMenuItem.Name = "SaveAsMenuItem";
this.SaveAsMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)(((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.Shift)
| System.Windows.Forms.Keys.S)));
this.SaveAsMenuItem.Size = new System.Drawing.Size(195, 22);
this.SaveAsMenuItem.Text = "Save &As...";
this.SaveAsMenuItem.Click += new System.EventHandler(this.SaveAsMenuItem_Click);
//
// AppendMenuItem
//
this.AppendMenuItem.Name = "AppendMenuItem";
this.AppendMenuItem.Size = new System.Drawing.Size(195, 22);
this.AppendMenuItem.Text = "A&ppend File...";
this.AppendMenuItem.Click += new System.EventHandler(this.OpenMenuItem_Click);
//
@ -530,27 +463,16 @@ namespace BizHawk.Client.EmuHawk
//
this.RecentSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.noneToolStripMenuItem});
this.RecentSubMenu.Name = "RecentSubMenu";
this.RecentSubMenu.Size = new System.Drawing.Size(195, 22);
this.RecentSubMenu.Text = "Recent";
this.RecentSubMenu.DropDownOpened += new System.EventHandler(this.RecentSubMenu_DropDownOpened);
//
// noneToolStripMenuItem
//
this.noneToolStripMenuItem.Name = "noneToolStripMenuItem";
this.noneToolStripMenuItem.Size = new System.Drawing.Size(103, 22);
this.noneToolStripMenuItem.Text = "None";
//
// toolStripSeparator1
//
this.toolStripSeparator1.Name = "toolStripSeparator1";
this.toolStripSeparator1.Size = new System.Drawing.Size(192, 6);
//
// ExitMenuItem
//
this.ExitMenuItem.Name = "ExitMenuItem";
this.ExitMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Alt | System.Windows.Forms.Keys.F4)));
this.ExitMenuItem.Size = new System.Drawing.Size(195, 22);
this.ExitMenuItem.Text = "&Close";
this.ExitMenuItem.Click += new System.EventHandler(this.ExitMenuItem_Click);
//
@ -573,8 +495,6 @@ namespace BizHawk.Client.EmuHawk
this.MoveTopMenuItem,
this.MoveBottomMenuItem,
this.SelectAllMenuItem});
this.WatchesSubMenu.Name = "WatchesSubMenu";
this.WatchesSubMenu.Size = new System.Drawing.Size(64, 20);
this.WatchesSubMenu.Text = "&Watches";
this.WatchesSubMenu.DropDownOpened += new System.EventHandler(this.WatchesSubMenu_DropDownOpened);
//
@ -582,129 +502,86 @@ namespace BizHawk.Client.EmuHawk
//
this.MemoryDomainsSubMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.Separator2});
this.MemoryDomainsSubMenu.Name = "MemoryDomainsSubMenu";
this.MemoryDomainsSubMenu.Size = new System.Drawing.Size(244, 22);
this.MemoryDomainsSubMenu.Text = "Default Domain";
this.MemoryDomainsSubMenu.DropDownOpened += new System.EventHandler(this.MemoryDomainsSubMenu_DropDownOpened);
//
// Separator2
//
this.Separator2.Name = "Separator2";
this.Separator2.Size = new System.Drawing.Size(57, 6);
//
// toolStripSeparator8
//
this.toolStripSeparator8.Name = "toolStripSeparator8";
this.toolStripSeparator8.Size = new System.Drawing.Size(241, 6);
//
// NewWatchMenuItem
//
this.NewWatchMenuItem.Name = "NewWatchMenuItem";
this.NewWatchMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.W)));
this.NewWatchMenuItem.Size = new System.Drawing.Size(244, 22);
this.NewWatchMenuItem.Text = "&New Watch";
this.NewWatchMenuItem.Click += new System.EventHandler(this.NewWatchMenuItem_Click);
//
// EditWatchMenuItem
//
this.EditWatchMenuItem.Name = "EditWatchMenuItem";
this.EditWatchMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.E)));
this.EditWatchMenuItem.Size = new System.Drawing.Size(244, 22);
this.EditWatchMenuItem.Text = "&Edit Watch";
this.EditWatchMenuItem.Click += new System.EventHandler(this.EditWatchMenuItem_Click);
//
// RemoveWatchMenuItem
//
this.RemoveWatchMenuItem.Name = "RemoveWatchMenuItem";
this.RemoveWatchMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.R)));
this.RemoveWatchMenuItem.Size = new System.Drawing.Size(244, 22);
this.RemoveWatchMenuItem.Text = "&Remove Watch";
this.RemoveWatchMenuItem.Click += new System.EventHandler(this.RemoveWatchMenuItem_Click);
//
// DuplicateWatchMenuItem
//
this.DuplicateWatchMenuItem.Name = "DuplicateWatchMenuItem";
this.DuplicateWatchMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.D)));
this.DuplicateWatchMenuItem.Size = new System.Drawing.Size(244, 22);
this.DuplicateWatchMenuItem.Text = "&Duplicate Watch";
this.DuplicateWatchMenuItem.Click += new System.EventHandler(this.DuplicateWatchMenuItem_Click);
//
// PokeAddressMenuItem
//
this.PokeAddressMenuItem.Name = "PokeAddressMenuItem";
this.PokeAddressMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.P)));
this.PokeAddressMenuItem.Size = new System.Drawing.Size(244, 22);
this.PokeAddressMenuItem.Text = "Poke Address";
this.PokeAddressMenuItem.Click += new System.EventHandler(this.PokeAddressMenuItem_Click);
//
// FreezeAddressMenuItem
//
this.FreezeAddressMenuItem.Name = "FreezeAddressMenuItem";
this.FreezeAddressMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.F)));
this.FreezeAddressMenuItem.Size = new System.Drawing.Size(244, 22);
this.FreezeAddressMenuItem.Text = "Freeze Address";
this.FreezeAddressMenuItem.Click += new System.EventHandler(this.FreezeAddressMenuItem_Click);
//
// InsertSeparatorMenuItem
//
this.InsertSeparatorMenuItem.Name = "InsertSeparatorMenuItem";
this.InsertSeparatorMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.I)));
this.InsertSeparatorMenuItem.Size = new System.Drawing.Size(244, 22);
this.InsertSeparatorMenuItem.Text = "Insert Separator";
this.InsertSeparatorMenuItem.Click += new System.EventHandler(this.InsertSeparatorMenuItem_Click);
//
// ClearChangeCountsMenuItem
//
this.ClearChangeCountsMenuItem.Name = "ClearChangeCountsMenuItem";
this.ClearChangeCountsMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Alt | System.Windows.Forms.Keys.C)));
this.ClearChangeCountsMenuItem.Size = new System.Drawing.Size(244, 22);
this.ClearChangeCountsMenuItem.Text = "&Clear Change Counts";
this.ClearChangeCountsMenuItem.Click += new System.EventHandler(this.ClearChangeCountsMenuItem_Click);
//
// toolStripSeparator3
//
this.toolStripSeparator3.Name = "toolStripSeparator3";
this.toolStripSeparator3.Size = new System.Drawing.Size(241, 6);
//
// MoveUpMenuItem
//
this.MoveUpMenuItem.Name = "MoveUpMenuItem";
this.MoveUpMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.Up)));
this.MoveUpMenuItem.Size = new System.Drawing.Size(244, 22);
this.MoveUpMenuItem.Text = "Move &Up";
this.MoveUpMenuItem.Click += new System.EventHandler(this.MoveUpMenuItem_Click);
//
// MoveDownMenuItem
//
this.MoveDownMenuItem.Name = "MoveDownMenuItem";
this.MoveDownMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.Down)));
this.MoveDownMenuItem.Size = new System.Drawing.Size(244, 22);
this.MoveDownMenuItem.Text = "Move &Down";
this.MoveDownMenuItem.Click += new System.EventHandler(this.MoveDownMenuItem_Click);
//
// MoveTopMenuItem
//
this.MoveTopMenuItem.Name = "MoveTopMenuItem";
this.MoveTopMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)(((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.Shift)
| System.Windows.Forms.Keys.Up)));
this.MoveTopMenuItem.Size = new System.Drawing.Size(244, 22);
this.MoveTopMenuItem.Text = "Move &Top";
this.MoveTopMenuItem.Click += new System.EventHandler(this.MoveTopMenuItem_Click);
//
// MoveBottomMenuItem
//
this.MoveBottomMenuItem.Name = "MoveBottomMenuItem";
this.MoveBottomMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)(((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.Shift)
| System.Windows.Forms.Keys.Down)));
this.MoveBottomMenuItem.Size = new System.Drawing.Size(244, 22);
this.MoveBottomMenuItem.Text = "Move &Bottom";
this.MoveBottomMenuItem.Click += new System.EventHandler(this.MoveBottomMenuItem_Click);
//
// SelectAllMenuItem
//
this.SelectAllMenuItem.Name = "SelectAllMenuItem";
this.SelectAllMenuItem.ShortcutKeyDisplayString = "Ctrl+A";
this.SelectAllMenuItem.Size = new System.Drawing.Size(244, 22);
this.SelectAllMenuItem.Text = "Select &All";
this.SelectAllMenuItem.Click += new System.EventHandler(this.SelectAllMenuItem_Click);
//
@ -718,8 +595,6 @@ namespace BizHawk.Client.EmuHawk
this.FloatingWindowMenuItem,
this.toolStripSeparator7,
this.RestoreWindowSizeMenuItem});
this.OptionsSubMenu.Name = "OptionsSubMenu";
this.OptionsSubMenu.Size = new System.Drawing.Size(61, 20);
this.OptionsSubMenu.Text = "&Options";
this.OptionsSubMenu.DropDownOpened += new System.EventHandler(this.OptionsSubMenu_DropDownOpened);
//
@ -729,69 +604,46 @@ namespace BizHawk.Client.EmuHawk
this.PreviousFrameMenuItem,
this.LastChangeMenuItem,
this.OriginalMenuItem});
this.DefinePreviousValueSubMenu.Name = "DefinePreviousValueSubMenu";
this.DefinePreviousValueSubMenu.Size = new System.Drawing.Size(217, 22);
this.DefinePreviousValueSubMenu.Text = "Define Previous Value";
this.DefinePreviousValueSubMenu.DropDownOpened += new System.EventHandler(this.DefinePreviousValueSubMenu_DropDownOpened);
//
// PreviousFrameMenuItem
//
this.PreviousFrameMenuItem.Name = "PreviousFrameMenuItem";
this.PreviousFrameMenuItem.Size = new System.Drawing.Size(155, 22);
this.PreviousFrameMenuItem.Text = "Previous Frame";
this.PreviousFrameMenuItem.Click += new System.EventHandler(this.PreviousFrameMenuItem_Click);
//
// LastChangeMenuItem
//
this.LastChangeMenuItem.Name = "LastChangeMenuItem";
this.LastChangeMenuItem.Size = new System.Drawing.Size(155, 22);
this.LastChangeMenuItem.Text = "Last Change";
this.LastChangeMenuItem.Click += new System.EventHandler(this.LastChangeMenuItem_Click);
//
// OriginalMenuItem
//
this.OriginalMenuItem.Name = "OriginalMenuItem";
this.OriginalMenuItem.Size = new System.Drawing.Size(155, 22);
this.OriginalMenuItem.Text = "&Original";
this.OriginalMenuItem.Click += new System.EventHandler(this.OriginalMenuItem_Click);
//
// WatchesOnScreenMenuItem
//
this.WatchesOnScreenMenuItem.Name = "WatchesOnScreenMenuItem";
this.WatchesOnScreenMenuItem.Size = new System.Drawing.Size(217, 22);
this.WatchesOnScreenMenuItem.Text = "Display Watches On Screen";
this.WatchesOnScreenMenuItem.Click += new System.EventHandler(this.WatchesOnScreenMenuItem_Click);
//
// SaveWindowPositionMenuItem
//
this.SaveWindowPositionMenuItem.Name = "SaveWindowPositionMenuItem";
this.SaveWindowPositionMenuItem.Size = new System.Drawing.Size(217, 22);
this.SaveWindowPositionMenuItem.Text = "Save Window Position";
this.SaveWindowPositionMenuItem.Click += new System.EventHandler(this.SaveWindowPositionMenuItem_Click);
//
// AlwaysOnTopMenuItem
//
this.AlwaysOnTopMenuItem.Name = "AlwaysOnTopMenuItem";
this.AlwaysOnTopMenuItem.Size = new System.Drawing.Size(217, 22);
this.AlwaysOnTopMenuItem.Text = "&Always On Top";
this.AlwaysOnTopMenuItem.Click += new System.EventHandler(this.AlwaysOnTopMenuItem_Click);
//
// FloatingWindowMenuItem
//
this.FloatingWindowMenuItem.Name = "FloatingWindowMenuItem";
this.FloatingWindowMenuItem.Size = new System.Drawing.Size(217, 22);
this.FloatingWindowMenuItem.Text = "&Floating Window";
this.FloatingWindowMenuItem.Click += new System.EventHandler(this.FloatingWindowMenuItem_Click);
//
// toolStripSeparator7
//
this.toolStripSeparator7.Name = "toolStripSeparator7";
this.toolStripSeparator7.Size = new System.Drawing.Size(214, 6);
//
// RestoreWindowSizeMenuItem
//
this.RestoreWindowSizeMenuItem.Name = "RestoreWindowSizeMenuItem";
this.RestoreWindowSizeMenuItem.Size = new System.Drawing.Size(217, 22);
this.RestoreWindowSizeMenuItem.Text = "Restore Default Settings";
this.RestoreWindowSizeMenuItem.Click += new System.EventHandler(this.RestoreDefaultsMenuItem_Click);
//
@ -854,44 +706,44 @@ namespace BizHawk.Client.EmuHawk
private InputRoll WatchListView;
private MenuStripEx RamWatchMenu;
private System.Windows.Forms.ToolStripMenuItem FileSubMenu;
private System.Windows.Forms.ToolStripMenuItem NewListMenuItem;
private System.Windows.Forms.ToolStripMenuItem OpenMenuItem;
private System.Windows.Forms.ToolStripMenuItem SaveMenuItem;
private System.Windows.Forms.ToolStripMenuItem SaveAsMenuItem;
private System.Windows.Forms.ToolStripMenuItem AppendMenuItem;
private System.Windows.Forms.ToolStripMenuItem RecentSubMenu;
private System.Windows.Forms.ToolStripMenuItem noneToolStripMenuItem;
private System.Windows.Forms.ToolStripSeparator toolStripSeparator1;
private System.Windows.Forms.ToolStripMenuItem ExitMenuItem;
private System.Windows.Forms.ToolStripMenuItem WatchesSubMenu;
private System.Windows.Forms.ToolStripMenuItem MemoryDomainsSubMenu;
private System.Windows.Forms.ToolStripSeparator toolStripSeparator8;
private System.Windows.Forms.ToolStripMenuItem NewWatchMenuItem;
private System.Windows.Forms.ToolStripMenuItem EditWatchMenuItem;
private System.Windows.Forms.ToolStripMenuItem RemoveWatchMenuItem;
private System.Windows.Forms.ToolStripMenuItem DuplicateWatchMenuItem;
private System.Windows.Forms.ToolStripMenuItem PokeAddressMenuItem;
private System.Windows.Forms.ToolStripMenuItem FreezeAddressMenuItem;
private System.Windows.Forms.ToolStripMenuItem InsertSeparatorMenuItem;
private System.Windows.Forms.ToolStripMenuItem ClearChangeCountsMenuItem;
private System.Windows.Forms.ToolStripSeparator toolStripSeparator3;
private System.Windows.Forms.ToolStripMenuItem MoveUpMenuItem;
private System.Windows.Forms.ToolStripMenuItem MoveDownMenuItem;
private System.Windows.Forms.ToolStripMenuItem SelectAllMenuItem;
private System.Windows.Forms.ToolStripMenuItem OptionsSubMenu;
private System.Windows.Forms.ToolStripMenuItem DefinePreviousValueSubMenu;
private System.Windows.Forms.ToolStripMenuItem PreviousFrameMenuItem;
private System.Windows.Forms.ToolStripMenuItem LastChangeMenuItem;
private System.Windows.Forms.ToolStripMenuItem WatchesOnScreenMenuItem;
private System.Windows.Forms.ToolStripMenuItem SaveWindowPositionMenuItem;
private System.Windows.Forms.ToolStripSeparator toolStripSeparator7;
private System.Windows.Forms.ToolStripMenuItem RestoreWindowSizeMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx FileSubMenu;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx NewListMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx OpenMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx SaveMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx SaveAsMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx AppendMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx RecentSubMenu;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx noneToolStripMenuItem;
private BizHawk.WinForms.Controls.ToolStripSeparatorEx toolStripSeparator1;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx ExitMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx WatchesSubMenu;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx MemoryDomainsSubMenu;
private BizHawk.WinForms.Controls.ToolStripSeparatorEx toolStripSeparator8;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx NewWatchMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx EditWatchMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx RemoveWatchMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx DuplicateWatchMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx PokeAddressMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx FreezeAddressMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx InsertSeparatorMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx ClearChangeCountsMenuItem;
private BizHawk.WinForms.Controls.ToolStripSeparatorEx toolStripSeparator3;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx MoveUpMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx MoveDownMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx SelectAllMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx OptionsSubMenu;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx DefinePreviousValueSubMenu;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx PreviousFrameMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx LastChangeMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx WatchesOnScreenMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx SaveWindowPositionMenuItem;
private BizHawk.WinForms.Controls.ToolStripSeparatorEx toolStripSeparator7;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx RestoreWindowSizeMenuItem;
private ToolStripEx toolStrip1;
private System.Windows.Forms.ToolStripButton newToolStripButton;
private System.Windows.Forms.ToolStripButton openToolStripButton;
private System.Windows.Forms.ToolStripButton saveToolStripButton;
private System.Windows.Forms.ToolStripSeparator toolStripSeparator;
private BizHawk.WinForms.Controls.ToolStripSeparatorEx toolStripSeparator;
private System.Windows.Forms.ToolStripButton newWatchToolStripButton;
private System.Windows.Forms.ToolStripButton editWatchToolStripButton;
private System.Windows.Forms.ToolStripButton cutToolStripButton;
@ -900,37 +752,37 @@ namespace BizHawk.Client.EmuHawk
private System.Windows.Forms.ToolStripButton PokeAddressToolBarItem;
private System.Windows.Forms.ToolStripButton FreezeAddressToolBarItem;
private System.Windows.Forms.ToolStripButton seperatorToolStripButton;
private System.Windows.Forms.ToolStripSeparator toolStripSeparator5;
private BizHawk.WinForms.Controls.ToolStripSeparatorEx toolStripSeparator5;
private System.Windows.Forms.ToolStripButton moveUpToolStripButton;
private System.Windows.Forms.ToolStripButton moveDownToolStripButton;
private BizHawk.WinForms.Controls.LocLabelEx WatchCountLabel;
private System.Windows.Forms.ToolStripSeparator Separator2;
private System.Windows.Forms.ToolStripMenuItem OriginalMenuItem;
private BizHawk.WinForms.Controls.ToolStripSeparatorEx Separator2;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx OriginalMenuItem;
private System.Windows.Forms.ContextMenuStrip ListViewContextMenu;
private System.Windows.Forms.ToolStripMenuItem EditContextMenuItem;
private System.Windows.Forms.ToolStripMenuItem RemoveContextMenuItem;
private System.Windows.Forms.ToolStripMenuItem DuplicateContextMenuItem;
private System.Windows.Forms.ToolStripMenuItem PokeContextMenuItem;
private System.Windows.Forms.ToolStripMenuItem FreezeContextMenuItem;
private System.Windows.Forms.ToolStripMenuItem UnfreezeAllContextMenuItem;
private System.Windows.Forms.ToolStripMenuItem ViewInHexEditorContextMenuItem;
private System.Windows.Forms.ToolStripSeparator Separator6;
private System.Windows.Forms.ToolStripMenuItem InsertSeperatorContextMenuItem;
private System.Windows.Forms.ToolStripMenuItem MoveUpContextMenuItem;
private System.Windows.Forms.ToolStripMenuItem MoveDownContextMenuItem;
private System.Windows.Forms.ToolStripMenuItem AlwaysOnTopMenuItem;
private System.Windows.Forms.ToolStripMenuItem FloatingWindowMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx EditContextMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx RemoveContextMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx DuplicateContextMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx PokeContextMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx FreezeContextMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx UnfreezeAllContextMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx ViewInHexEditorContextMenuItem;
private BizHawk.WinForms.Controls.ToolStripSeparatorEx Separator6;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx InsertSeperatorContextMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx MoveUpContextMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx MoveDownContextMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx AlwaysOnTopMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx FloatingWindowMenuItem;
private StatusStripEx statusStrip1;
private System.Windows.Forms.ToolStripStatusLabel MessageLabel;
private System.Windows.Forms.ToolStripButton ErrorIconButton;
private System.Windows.Forms.ToolStripSeparator toolStripSeparator6;
private System.Windows.Forms.ToolStripSeparator Separator4;
private System.Windows.Forms.ToolStripMenuItem ReadBreakpointContextMenuItem;
private System.Windows.Forms.ToolStripMenuItem WriteBreakpointContextMenuItem;
private System.Windows.Forms.ToolStripMenuItem newToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem MoveTopMenuItem;
private System.Windows.Forms.ToolStripMenuItem MoveBottomMenuItem;
private System.Windows.Forms.ToolStripMenuItem MoveTopContextMenuItem;
private System.Windows.Forms.ToolStripMenuItem MoveBottomContextMenuItem;
private BizHawk.WinForms.Controls.ToolStripSeparatorEx toolStripSeparator6;
private BizHawk.WinForms.Controls.ToolStripSeparatorEx Separator4;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx ReadBreakpointContextMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx WriteBreakpointContextMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx newToolStripMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx MoveTopMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx MoveBottomMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx MoveTopContextMenuItem;
private BizHawk.WinForms.Controls.ToolStripMenuItemEx MoveBottomContextMenuItem;
}
}

View File

@ -0,0 +1,25 @@
using System;
using System.ComponentModel;
using System.Drawing;
using System.Windows.Forms;
namespace BizHawk.WinForms.Controls
{
public class ToolStripMenuItemEx : ToolStripMenuItem
{
[DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
public new Size Size => base.Size;
[DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
public new string Name => Guid.NewGuid().ToString();
}
public class ToolStripSeparatorEx : ToolStripSeparator
{
[DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
public new Size Size => base.Size;
[DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
public new string Name => Guid.NewGuid().ToString();
}
}

View File

@ -0,0 +1,16 @@
using System;
using System.ComponentModel;
using System.Drawing;
using System.Windows.Forms;
namespace BizHawk.WinForms.Controls
{
public class StatusLabelEx : ToolStripStatusLabel
{
[DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
public new Size Size => base.Size;
[DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
public new string Name => Guid.NewGuid().ToString();
}
}