From 446b04963903b154d634f3a2e1cb3ccd6b2c58a3 Mon Sep 17 00:00:00 2001 From: "andres.delikat" Date: Thu, 17 Mar 2011 15:10:04 +0000 Subject: [PATCH] Cheat Dialog - clicking a cheat will update the add cheat text boxes --- BizHawk.MultiClient/tools/Cheats.Designer.cs | 2 ++ BizHawk.MultiClient/tools/Cheats.cs | 25 ++++++++++++++++++-- 2 files changed, 25 insertions(+), 2 deletions(-) diff --git a/BizHawk.MultiClient/tools/Cheats.Designer.cs b/BizHawk.MultiClient/tools/Cheats.Designer.cs index b5077bbe5b..e962d8ccfe 100644 --- a/BizHawk.MultiClient/tools/Cheats.Designer.cs +++ b/BizHawk.MultiClient/tools/Cheats.Designer.cs @@ -111,6 +111,7 @@ this.CheatListView.TabIndex = 0; this.CheatListView.UseCompatibleStateImageBehavior = false; this.CheatListView.View = System.Windows.Forms.View.Details; + this.CheatListView.Click += new System.EventHandler(this.CheatListView_Click); this.CheatListView.DoubleClick += new System.EventHandler(this.CheatListView_DoubleClick); // // CheatName @@ -516,6 +517,7 @@ this.AddressBox.Name = "AddressBox"; this.AddressBox.Size = new System.Drawing.Size(65, 20); this.AddressBox.TabIndex = 4; + this.AddressBox.TextChanged += new System.EventHandler(this.AddressBox_TextChanged); // // NameBox // diff --git a/BizHawk.MultiClient/tools/Cheats.cs b/BizHawk.MultiClient/tools/Cheats.cs index 0fca1cdb25..3fdaa1ade7 100644 --- a/BizHawk.MultiClient/tools/Cheats.cs +++ b/BizHawk.MultiClient/tools/Cheats.cs @@ -19,7 +19,6 @@ namespace BizHawk.MultiClient //File format - saving & loading //Shortcuts for Cheat menu items //Edit button enabled conditionally on highlighted listview item - //ListView click event should update add cheat box int defaultWidth; //For saving the default size of the dialog, so the user can restore if desired int defaultHeight; @@ -70,7 +69,7 @@ namespace BizHawk.MultiClient } if (column == 1) //Address { - text = String.Format("{0:X" + GetNumDigits((Global.Emulator.MainMemory.Size - 1)).ToString() + "}", cheatList[index].address); + text = FormatAddress(cheatList[index].address); } if (column == 2) //Value { @@ -595,5 +594,27 @@ namespace BizHawk.MultiClient CheatListView.Refresh(); } } + + private void CheatListView_Click(object sender, EventArgs e) + { + ListView.SelectedIndexCollection indexes = CheatListView.SelectedIndices; + if (indexes.Count > 0) + { + NameBox.Text = cheatList[indexes[0]].name; + AddressBox.Text = FormatAddress(cheatList[indexes[0]].address); + ValueBox.Text = String.Format("{0:X2}", cheatList[indexes[0]].value); + CheatListView.Refresh(); + } + } + + private string FormatAddress(int address) + { + return String.Format("{0:X" + GetNumDigits((Global.Emulator.MainMemory.Size - 1)).ToString() + "}", address); + } + + private void AddressBox_TextChanged(object sender, EventArgs e) + { + + } } }