From 2d1ab6900dc780dc55c5e2b54ff080be2c3e5f5b Mon Sep 17 00:00:00 2001 From: "andres.delikat" Date: Fri, 18 Feb 2011 02:55:41 +0000 Subject: [PATCH] Add Ram Poke to the main menu --- BizHawk.MultiClient/MainForm.Designer.cs | 20 +++++++++++++++----- BizHawk.MultiClient/MainForm.cs | 6 ++++++ BizHawk.MultiClient/tools/RamWatch.cs | 1 + 3 files changed, 22 insertions(+), 5 deletions(-) diff --git a/BizHawk.MultiClient/MainForm.Designer.cs b/BizHawk.MultiClient/MainForm.Designer.cs index 85e746d093..4f52f89bf2 100644 --- a/BizHawk.MultiClient/MainForm.Designer.cs +++ b/BizHawk.MultiClient/MainForm.Designer.cs @@ -130,6 +130,7 @@ this.helpToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.helpToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem(); this.aboutToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.rAMPokeToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.menuStrip1.SuspendLayout(); this.SuspendLayout(); // @@ -884,6 +885,7 @@ this.toolsToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.rAMWatchToolStripMenuItem, this.rAMSearchToolStripMenuItem, + this.rAMPokeToolStripMenuItem, this.debuggerToolStripMenuItem, this.hexEditorToolStripMenuItem, this.luaConsoleToolStripMenuItem}); @@ -894,14 +896,14 @@ // rAMWatchToolStripMenuItem // this.rAMWatchToolStripMenuItem.Name = "rAMWatchToolStripMenuItem"; - this.rAMWatchToolStripMenuItem.Size = new System.Drawing.Size(143, 22); + this.rAMWatchToolStripMenuItem.Size = new System.Drawing.Size(152, 22); this.rAMWatchToolStripMenuItem.Text = "RAM &Watch"; this.rAMWatchToolStripMenuItem.Click += new System.EventHandler(this.RAMWatchToolStripMenuItem_Click); // // rAMSearchToolStripMenuItem // this.rAMSearchToolStripMenuItem.Name = "rAMSearchToolStripMenuItem"; - this.rAMSearchToolStripMenuItem.Size = new System.Drawing.Size(143, 22); + this.rAMSearchToolStripMenuItem.Size = new System.Drawing.Size(152, 22); this.rAMSearchToolStripMenuItem.Text = "RAM &Search"; this.rAMSearchToolStripMenuItem.Click += new System.EventHandler(this.rAMSearchToolStripMenuItem_Click); // @@ -909,21 +911,21 @@ // this.debuggerToolStripMenuItem.Enabled = false; this.debuggerToolStripMenuItem.Name = "debuggerToolStripMenuItem"; - this.debuggerToolStripMenuItem.Size = new System.Drawing.Size(143, 22); + this.debuggerToolStripMenuItem.Size = new System.Drawing.Size(152, 22); this.debuggerToolStripMenuItem.Text = "&Debugger"; // // hexEditorToolStripMenuItem // this.hexEditorToolStripMenuItem.Enabled = false; this.hexEditorToolStripMenuItem.Name = "hexEditorToolStripMenuItem"; - this.hexEditorToolStripMenuItem.Size = new System.Drawing.Size(143, 22); + this.hexEditorToolStripMenuItem.Size = new System.Drawing.Size(152, 22); this.hexEditorToolStripMenuItem.Text = "&Hex Editor"; // // luaConsoleToolStripMenuItem // this.luaConsoleToolStripMenuItem.Enabled = false; this.luaConsoleToolStripMenuItem.Name = "luaConsoleToolStripMenuItem"; - this.luaConsoleToolStripMenuItem.Size = new System.Drawing.Size(143, 22); + this.luaConsoleToolStripMenuItem.Size = new System.Drawing.Size(152, 22); this.luaConsoleToolStripMenuItem.Text = "Lua Console"; // // helpToolStripMenuItem @@ -951,6 +953,13 @@ this.aboutToolStripMenuItem.Text = "&About"; this.aboutToolStripMenuItem.Click += new System.EventHandler(this.aboutToolStripMenuItem_Click); // + // rAMPokeToolStripMenuItem + // + this.rAMPokeToolStripMenuItem.Name = "rAMPokeToolStripMenuItem"; + this.rAMPokeToolStripMenuItem.Size = new System.Drawing.Size(152, 22); + this.rAMPokeToolStripMenuItem.Text = "RAM &Poke"; + this.rAMPokeToolStripMenuItem.Click += new System.EventHandler(this.rAMPokeToolStripMenuItem_Click); + // // MainForm // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); @@ -1074,6 +1083,7 @@ private System.Windows.Forms.ToolStripMenuItem gUIToolStripMenuItem; private System.Windows.Forms.ToolStripMenuItem pauseWhenMenuActivatedToolStripMenuItem; private System.Windows.Forms.ToolStripMenuItem soundToolStripMenuItem; + private System.Windows.Forms.ToolStripMenuItem rAMPokeToolStripMenuItem; } } diff --git a/BizHawk.MultiClient/MainForm.cs b/BizHawk.MultiClient/MainForm.cs index 3e489c0921..3f37a29dcf 100644 --- a/BizHawk.MultiClient/MainForm.cs +++ b/BizHawk.MultiClient/MainForm.cs @@ -1217,5 +1217,11 @@ namespace BizHawk.MultiClient { } + + private void rAMPokeToolStripMenuItem_Click(object sender, EventArgs e) + { + RamPoke r = new RamPoke(); + r.Show(); + } } } \ No newline at end of file diff --git a/BizHawk.MultiClient/tools/RamWatch.cs b/BizHawk.MultiClient/tools/RamWatch.cs index 1208f0ae4d..ccda7e7dff 100644 --- a/BizHawk.MultiClient/tools/RamWatch.cs +++ b/BizHawk.MultiClient/tools/RamWatch.cs @@ -24,6 +24,7 @@ namespace BizHawk.MultiClient //Make it clear that on edit/new/duplicate watch, address is hex //Validate address box as legit hex number //When using ListView index, validate the user has selected one! + //DWORD display int defaultWidth; //For saving the default size of the dialog, so the user can restore if desired int defaultHeight;