From 15d2cfbd605599cf4503018d0ff4658d0f3e0f33 Mon Sep 17 00:00:00 2001 From: "andres.delikat" Date: Fri, 21 Jan 2011 04:14:30 +0000 Subject: [PATCH] Ram Watch - implement Edit Watch function --- BizHawk.MultiClient/RamWatch.cs | 13 +++++++++++++ BizHawk.MultiClient/RamWatchNewWatch.cs | 2 +- 2 files changed, 14 insertions(+), 1 deletion(-) diff --git a/BizHawk.MultiClient/RamWatch.cs b/BizHawk.MultiClient/RamWatch.cs index 5621f6c2f5..abceebbf58 100644 --- a/BizHawk.MultiClient/RamWatch.cs +++ b/BizHawk.MultiClient/RamWatch.cs @@ -172,6 +172,19 @@ namespace BizHawk.MultiClient void EditWatch() { + ListView.SelectedIndexCollection indexes = WatchListView.SelectedIndices; + RamWatchNewWatch r = new RamWatchNewWatch(); + int x = indexes[0]; + r.SetToEditWatch( watchList[x] ); + r.ShowDialog(); + + if (r.userSelected == true) + { + //TODO: check if edited watch is an exact duplicate and prevent? + //TODO: changes have been made, flag it + watchList[x] = r.watch; + DisplayWatchList(); + } } void RemoveWatch() diff --git a/BizHawk.MultiClient/RamWatchNewWatch.cs b/BizHawk.MultiClient/RamWatchNewWatch.cs index 43b83f9bb8..367018f2ca 100644 --- a/BizHawk.MultiClient/RamWatchNewWatch.cs +++ b/BizHawk.MultiClient/RamWatchNewWatch.cs @@ -20,7 +20,7 @@ namespace BizHawk.MultiClient InitializeComponent(); } - public void SetEditToEditWatch(Watch w) + public void SetToEditWatch(Watch w) { //Sets this dialog to Edit Watch and receives default values this.Text = "Edit Watch";