Cheat Dialog - clicking a cheat will update the add cheat text boxes

This commit is contained in:
andres.delikat 2011-03-17 15:10:04 +00:00
parent 92b6e6ed1d
commit 446b049639
2 changed files with 25 additions and 2 deletions

View File

@ -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
//

View File

@ -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)
{
}
}
}