Convert Ramwatch to use InputRoll instead of VirtualListView, rough in, still lots of todos
This commit is contained in:
parent
854315d96d
commit
d3353f6acf
|
@ -112,15 +112,7 @@
|
||||||
this.FloatingWindowMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
this.FloatingWindowMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
||||||
this.toolStripSeparator7 = new System.Windows.Forms.ToolStripSeparator();
|
this.toolStripSeparator7 = new System.Windows.Forms.ToolStripSeparator();
|
||||||
this.RestoreWindowSizeMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
this.RestoreWindowSizeMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
||||||
this.WatchListView = new BizHawk.Client.EmuHawk.VirtualListView();
|
this.WatchListView = new InputRoll();
|
||||||
this.AddressColumn = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
|
|
||||||
this.ValueColumn = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
|
|
||||||
this.PrevColumn = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
|
|
||||||
this.ChangesColumn = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
|
|
||||||
this.DiffColumn = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
|
|
||||||
this.TypeColumn = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
|
|
||||||
this.DomainColumn = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
|
|
||||||
this.NotesColumn = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
|
|
||||||
this.ListViewContextMenu.SuspendLayout();
|
this.ListViewContextMenu.SuspendLayout();
|
||||||
this.statusStrip1.SuspendLayout();
|
this.statusStrip1.SuspendLayout();
|
||||||
this.toolStrip1.SuspendLayout();
|
this.toolStrip1.SuspendLayout();
|
||||||
|
@ -891,90 +883,25 @@
|
||||||
this.WatchListView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
this.WatchListView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
||||||
| System.Windows.Forms.AnchorStyles.Left)
|
| System.Windows.Forms.AnchorStyles.Left)
|
||||||
| System.Windows.Forms.AnchorStyles.Right)));
|
| System.Windows.Forms.AnchorStyles.Right)));
|
||||||
this.WatchListView.AutoArrange = false;
|
|
||||||
this.WatchListView.BlazingFast = false;
|
|
||||||
this.WatchListView.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
|
|
||||||
this.AddressColumn,
|
|
||||||
this.ValueColumn,
|
|
||||||
this.PrevColumn,
|
|
||||||
this.ChangesColumn,
|
|
||||||
this.DiffColumn,
|
|
||||||
this.TypeColumn,
|
|
||||||
this.DomainColumn,
|
|
||||||
this.NotesColumn});
|
|
||||||
this.WatchListView.ContextMenuStrip = this.ListViewContextMenu;
|
this.WatchListView.ContextMenuStrip = this.ListViewContextMenu;
|
||||||
this.WatchListView.FullRowSelect = true;
|
this.WatchListView.FullRowSelect = true;
|
||||||
this.WatchListView.GridLines = true;
|
this.WatchListView.GridLines = true;
|
||||||
this.WatchListView.HideSelection = false;
|
|
||||||
this.WatchListView.ItemCount = 0;
|
|
||||||
this.WatchListView.Location = new System.Drawing.Point(16, 76);
|
this.WatchListView.Location = new System.Drawing.Point(16, 76);
|
||||||
this.WatchListView.Name = "WatchListView";
|
this.WatchListView.Name = "WatchListView";
|
||||||
this.WatchListView.SelectAllInProgress = false;
|
|
||||||
this.WatchListView.selectedItem = -1;
|
|
||||||
this.WatchListView.Size = new System.Drawing.Size(332, 281);
|
this.WatchListView.Size = new System.Drawing.Size(332, 281);
|
||||||
this.WatchListView.TabIndex = 2;
|
this.WatchListView.TabIndex = 2;
|
||||||
this.WatchListView.UseCompatibleStateImageBehavior = false;
|
|
||||||
this.WatchListView.UseCustomBackground = true;
|
this.WatchListView.UseCustomBackground = true;
|
||||||
this.WatchListView.View = System.Windows.Forms.View.Details;
|
// InputRoll TODO
|
||||||
this.WatchListView.ColumnClick += new System.Windows.Forms.ColumnClickEventHandler(this.WatchListView_ColumnClick);
|
//this.WatchListView.ColumnClick += new System.Windows.Forms.ColumnClickEventHandler(this.WatchListView_ColumnClick);
|
||||||
this.WatchListView.SelectedIndexChanged += new System.EventHandler(this.WatchListView_SelectedIndexChanged);
|
this.WatchListView.SelectedIndexChanged += new System.EventHandler(this.WatchListView_SelectedIndexChanged);
|
||||||
this.WatchListView.VirtualItemsSelectionRangeChanged += new System.Windows.Forms.ListViewVirtualItemsSelectionRangeChangedEventHandler(this.WatchListView_VirtualItemsSelectionRangeChanged);
|
|
||||||
|
// InputRoll TODO
|
||||||
|
//this.WatchListView.VirtualItemsSelectionRangeChanged += new System.Windows.Forms.ListViewVirtualItemsSelectionRangeChangedEventHandler(this.WatchListView_VirtualItemsSelectionRangeChanged);
|
||||||
this.WatchListView.DragDrop += new System.Windows.Forms.DragEventHandler(this.NewRamWatch_DragDrop);
|
this.WatchListView.DragDrop += new System.Windows.Forms.DragEventHandler(this.NewRamWatch_DragDrop);
|
||||||
this.WatchListView.DragEnter += new System.Windows.Forms.DragEventHandler(this.DragEnterWrapper);
|
this.WatchListView.DragEnter += new System.Windows.Forms.DragEventHandler(this.DragEnterWrapper);
|
||||||
this.WatchListView.KeyDown += new System.Windows.Forms.KeyEventHandler(this.WatchListView_KeyDown);
|
this.WatchListView.KeyDown += new System.Windows.Forms.KeyEventHandler(this.WatchListView_KeyDown);
|
||||||
this.WatchListView.MouseDoubleClick += new System.Windows.Forms.MouseEventHandler(this.WatchListView_MouseDoubleClick);
|
this.WatchListView.MouseDoubleClick += new System.Windows.Forms.MouseEventHandler(this.WatchListView_MouseDoubleClick);
|
||||||
//
|
//
|
||||||
// AddressColumn
|
|
||||||
//
|
|
||||||
this.AddressColumn.Name = "AddressColumn";
|
|
||||||
this.AddressColumn.Text = "Address";
|
|
||||||
//
|
|
||||||
// ValueColumn
|
|
||||||
//
|
|
||||||
this.ValueColumn.Name = "ValueColumn";
|
|
||||||
this.ValueColumn.Text = "Value";
|
|
||||||
this.ValueColumn.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
|
|
||||||
this.ValueColumn.Width = 59;
|
|
||||||
//
|
|
||||||
// PrevColumn
|
|
||||||
//
|
|
||||||
this.PrevColumn.Name = "PrevColumn";
|
|
||||||
this.PrevColumn.Text = "Prev";
|
|
||||||
this.PrevColumn.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
|
|
||||||
this.PrevColumn.Width = 59;
|
|
||||||
//
|
|
||||||
// ChangesColumn
|
|
||||||
//
|
|
||||||
this.ChangesColumn.Name = "ChangesColumn";
|
|
||||||
this.ChangesColumn.Text = "Changes";
|
|
||||||
this.ChangesColumn.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
|
|
||||||
this.ChangesColumn.Width = 54;
|
|
||||||
//
|
|
||||||
// DiffColumn
|
|
||||||
//
|
|
||||||
this.DiffColumn.Name = "DiffColumn";
|
|
||||||
this.DiffColumn.Text = "Diff";
|
|
||||||
this.DiffColumn.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
|
|
||||||
this.DiffColumn.Width = 59;
|
|
||||||
//
|
|
||||||
// TypeColumn
|
|
||||||
//
|
|
||||||
this.TypeColumn.Name = "TypeColumn";
|
|
||||||
this.TypeColumn.Text = "Type";
|
|
||||||
this.TypeColumn.Width = 55;
|
|
||||||
//
|
|
||||||
// DomainColumn
|
|
||||||
//
|
|
||||||
this.DomainColumn.Name = "DomainColumn";
|
|
||||||
this.DomainColumn.Text = "Domain";
|
|
||||||
this.DomainColumn.Width = 55;
|
|
||||||
//
|
|
||||||
// NotesColumn
|
|
||||||
//
|
|
||||||
this.NotesColumn.Name = "NotesColumn";
|
|
||||||
this.NotesColumn.Text = "Notes";
|
|
||||||
this.NotesColumn.Width = 128;
|
|
||||||
//
|
|
||||||
// RamWatch
|
// RamWatch
|
||||||
//
|
//
|
||||||
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
||||||
|
@ -1009,15 +936,7 @@
|
||||||
|
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
private VirtualListView WatchListView;
|
private InputRoll WatchListView;
|
||||||
private System.Windows.Forms.ColumnHeader AddressColumn;
|
|
||||||
private System.Windows.Forms.ColumnHeader ValueColumn;
|
|
||||||
private System.Windows.Forms.ColumnHeader PrevColumn;
|
|
||||||
private System.Windows.Forms.ColumnHeader ChangesColumn;
|
|
||||||
private System.Windows.Forms.ColumnHeader DiffColumn;
|
|
||||||
private System.Windows.Forms.ColumnHeader TypeColumn;
|
|
||||||
private System.Windows.Forms.ColumnHeader DomainColumn;
|
|
||||||
private System.Windows.Forms.ColumnHeader NotesColumn;
|
|
||||||
private MenuStripEx RamWatchMenu;
|
private MenuStripEx RamWatchMenu;
|
||||||
private System.Windows.Forms.ToolStripMenuItem FileSubMenu;
|
private System.Windows.Forms.ToolStripMenuItem FileSubMenu;
|
||||||
private System.Windows.Forms.ToolStripMenuItem NewListMenuItem;
|
private System.Windows.Forms.ToolStripMenuItem NewListMenuItem;
|
||||||
|
|
|
@ -42,7 +42,7 @@ namespace BizHawk.Client.EmuHawk
|
||||||
|
|
||||||
WatchListView.QueryItemText += WatchListView_QueryItemText;
|
WatchListView.QueryItemText += WatchListView_QueryItemText;
|
||||||
WatchListView.QueryItemBkColor += WatchListView_QueryItemBkColor;
|
WatchListView.QueryItemBkColor += WatchListView_QueryItemBkColor;
|
||||||
WatchListView.VirtualMode = true;
|
|
||||||
Closing += (o, e) =>
|
Closing += (o, e) =>
|
||||||
{
|
{
|
||||||
if (AskSaveChanges())
|
if (AskSaveChanges())
|
||||||
|
@ -57,6 +57,31 @@ namespace BizHawk.Client.EmuHawk
|
||||||
|
|
||||||
_sortedColumn = "";
|
_sortedColumn = "";
|
||||||
_sortReverse = false;
|
_sortReverse = false;
|
||||||
|
|
||||||
|
AddColumn(WatchList.ADDRESS, "Address", 100, InputRoll.RollColumn.InputType.Text);
|
||||||
|
AddColumn(WatchList.VALUE, "Value", 100, InputRoll.RollColumn.InputType.Text);
|
||||||
|
AddColumn(WatchList.PREV, "Prev", 59, InputRoll.RollColumn.InputType.Text);
|
||||||
|
AddColumn(WatchList.CHANGES, "Changes", 54, InputRoll.RollColumn.InputType.Text);
|
||||||
|
AddColumn(WatchList.DIFF, "Diff", 59, InputRoll.RollColumn.InputType.Text);
|
||||||
|
AddColumn(WatchList.TYPE, "Type", 55, InputRoll.RollColumn.InputType.Text);
|
||||||
|
AddColumn(WatchList.DOMAIN, "Domain", 55, InputRoll.RollColumn.InputType.Text);
|
||||||
|
AddColumn(WatchList.NOTES, "Notes", 128, InputRoll.RollColumn.InputType.Text);
|
||||||
|
}
|
||||||
|
|
||||||
|
public void AddColumn(string columnName, string columnText, int columnWidth, InputRoll.RollColumn.InputType columnType = InputRoll.RollColumn.InputType.Boolean)
|
||||||
|
{
|
||||||
|
if (WatchListView.AllColumns[columnName] == null)
|
||||||
|
{
|
||||||
|
var column = new InputRoll.RollColumn
|
||||||
|
{
|
||||||
|
Name = columnName,
|
||||||
|
Text = columnText,
|
||||||
|
Width = columnWidth,
|
||||||
|
Type = columnType
|
||||||
|
};
|
||||||
|
|
||||||
|
WatchListView.AllColumns.Add(column);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
[ConfigPersist]
|
[ConfigPersist]
|
||||||
|
@ -82,7 +107,7 @@ namespace BizHawk.Client.EmuHawk
|
||||||
public ColumnList Columns { get; set; }
|
public ColumnList Columns { get; set; }
|
||||||
}
|
}
|
||||||
|
|
||||||
private IEnumerable<int> SelectedIndices => WatchListView.SelectedIndices.Cast<int>();
|
private IEnumerable<int> SelectedIndices => WatchListView.SelectedRows;
|
||||||
|
|
||||||
private IEnumerable<Watch> SelectedItems
|
private IEnumerable<Watch> SelectedItems
|
||||||
{
|
{
|
||||||
|
@ -117,7 +142,7 @@ namespace BizHawk.Client.EmuHawk
|
||||||
public void AddWatch(Watch watch)
|
public void AddWatch(Watch watch)
|
||||||
{
|
{
|
||||||
_watches.Add(watch);
|
_watches.Add(watch);
|
||||||
WatchListView.ItemCount = _watches.Count;
|
WatchListView.RowCount = _watches.Count;
|
||||||
UpdateValues();
|
UpdateValues();
|
||||||
UpdateWatchCount();
|
UpdateWatchCount();
|
||||||
Changes();
|
Changes();
|
||||||
|
@ -174,7 +199,7 @@ namespace BizHawk.Client.EmuHawk
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
Global.Config.RecentWatches.Add(path);
|
Global.Config.RecentWatches.Add(path);
|
||||||
WatchListView.ItemCount = _watches.Count;
|
WatchListView.RowCount = _watches.Count;
|
||||||
UpdateWatchCount();
|
UpdateWatchCount();
|
||||||
UpdateStatusBar();
|
UpdateStatusBar();
|
||||||
_watches.Changes = false;
|
_watches.Changes = false;
|
||||||
|
@ -195,7 +220,7 @@ namespace BizHawk.Client.EmuHawk
|
||||||
if (result)
|
if (result)
|
||||||
{
|
{
|
||||||
_watches.Load(file.FullName, append);
|
_watches.Load(file.FullName, append);
|
||||||
WatchListView.ItemCount = _watches.Count;
|
WatchListView.RowCount = _watches.Count;
|
||||||
UpdateWatchCount();
|
UpdateWatchCount();
|
||||||
Global.Config.RecentWatches.Add(_watches.CurrentFileName);
|
Global.Config.RecentWatches.Add(_watches.CurrentFileName);
|
||||||
UpdateStatusBar();
|
UpdateStatusBar();
|
||||||
|
@ -271,10 +296,8 @@ namespace BizHawk.Client.EmuHawk
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
WatchListView.BlazingFast = true;
|
|
||||||
WatchListView.UseCustomBackground = NeedsBackground;
|
WatchListView.UseCustomBackground = NeedsBackground;
|
||||||
WatchListView.Invalidate();
|
WatchListView.Invalidate();
|
||||||
WatchListView.BlazingFast = false;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -387,7 +410,7 @@ namespace BizHawk.Client.EmuHawk
|
||||||
|
|
||||||
private void FullyUpdateWatchList()
|
private void FullyUpdateWatchList()
|
||||||
{
|
{
|
||||||
WatchListView.ItemCount = _watches.Count;
|
WatchListView.RowCount = _watches.Count;
|
||||||
UpdateWatchCount();
|
UpdateWatchCount();
|
||||||
UpdateStatusBar();
|
UpdateStatusBar();
|
||||||
UpdateValues();
|
UpdateValues();
|
||||||
|
@ -422,7 +445,7 @@ namespace BizHawk.Client.EmuHawk
|
||||||
if (duplicate)
|
if (duplicate)
|
||||||
{
|
{
|
||||||
_watches.AddRange(we.Watches);
|
_watches.AddRange(we.Watches);
|
||||||
WatchListView.ItemCount = _watches.Count;
|
WatchListView.RowCount = _watches.Count;
|
||||||
UpdateWatchCount();
|
UpdateWatchCount();
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
@ -514,7 +537,8 @@ namespace BizHawk.Client.EmuHawk
|
||||||
Size = Settings.WindowSize;
|
Size = Settings.WindowSize;
|
||||||
}
|
}
|
||||||
|
|
||||||
LoadColumnInfo(WatchListView, Settings.Columns);
|
// InputRoll TODO
|
||||||
|
//LoadColumnInfo(WatchListView, Settings.Columns);
|
||||||
}
|
}
|
||||||
|
|
||||||
private void NewWatchList(bool suppressAsk)
|
private void NewWatchList(bool suppressAsk)
|
||||||
|
@ -528,7 +552,7 @@ namespace BizHawk.Client.EmuHawk
|
||||||
if (result || suppressAsk)
|
if (result || suppressAsk)
|
||||||
{
|
{
|
||||||
_watches.Clear();
|
_watches.Clear();
|
||||||
WatchListView.ItemCount = _watches.Count;
|
WatchListView.RowCount = _watches.Count;
|
||||||
UpdateWatchCount();
|
UpdateWatchCount();
|
||||||
UpdateStatusBar();
|
UpdateStatusBar();
|
||||||
_sortReverse = false;
|
_sortReverse = false;
|
||||||
|
@ -543,17 +567,18 @@ namespace BizHawk.Client.EmuHawk
|
||||||
|
|
||||||
private void OrderColumn(int index)
|
private void OrderColumn(int index)
|
||||||
{
|
{
|
||||||
var column = WatchListView.Columns[index];
|
// InputRoll TODO
|
||||||
if (column.Name != _sortedColumn)
|
////var column = WatchListView.Columns[index];
|
||||||
{
|
////if (column.Name != _sortedColumn)
|
||||||
_sortReverse = false;
|
////{
|
||||||
}
|
//// _sortReverse = false;
|
||||||
|
////}
|
||||||
|
|
||||||
_watches.OrderWatches(column.Name, _sortReverse);
|
////_watches.OrderWatches(column.Name, _sortReverse);
|
||||||
|
|
||||||
_sortedColumn = column.Name;
|
////_sortedColumn = column.Name;
|
||||||
_sortReverse ^= true;
|
////_sortReverse ^= true;
|
||||||
WatchListView.Refresh();
|
////WatchListView.Refresh();
|
||||||
}
|
}
|
||||||
|
|
||||||
private void SaveAs()
|
private void SaveAs()
|
||||||
|
@ -568,7 +593,10 @@ namespace BizHawk.Client.EmuHawk
|
||||||
|
|
||||||
private void SaveConfigSettings()
|
private void SaveConfigSettings()
|
||||||
{
|
{
|
||||||
SaveColumnInfo(WatchListView, Settings.Columns);
|
// Inputroll TODO
|
||||||
|
////WatchListView.UserSettingsSerialized()
|
||||||
|
|
||||||
|
////SaveColumnInfo(WatchListView, Settings.Columns);
|
||||||
|
|
||||||
if (WindowState == FormWindowState.Normal)
|
if (WindowState == FormWindowState.Normal)
|
||||||
{
|
{
|
||||||
|
@ -610,42 +638,38 @@ namespace BizHawk.Client.EmuHawk
|
||||||
WatchCountLabel.Text = _watches.WatchCount + (_watches.WatchCount == 1 ? " watch" : " watches");
|
WatchCountLabel.Text = _watches.WatchCount + (_watches.WatchCount == 1 ? " watch" : " watches");
|
||||||
}
|
}
|
||||||
|
|
||||||
private void WatchListView_QueryItemBkColor(int index, int column, ref Color color)
|
private void WatchListView_QueryItemBkColor(int index, InputRoll.RollColumn column, ref Color color)
|
||||||
{
|
{
|
||||||
if (index >= _watches.Count)
|
if (index >= _watches.Count)
|
||||||
{
|
{
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (column == 0)
|
|
||||||
{
|
|
||||||
if (_watches[index].IsSeparator)
|
|
||||||
{
|
|
||||||
color = BackColor;
|
|
||||||
}
|
|
||||||
else if (_watches[index].Address >= _watches[index].Domain.Size)
|
|
||||||
{
|
|
||||||
color = Color.PeachPuff;
|
|
||||||
}
|
|
||||||
else if (Global.CheatList.IsActive(_watches[index].Domain, _watches[index].Address))
|
|
||||||
{
|
|
||||||
color = Color.LightCyan;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
private void WatchListView_QueryItemText(int index, int column, out string text)
|
|
||||||
{
|
|
||||||
text = "";
|
|
||||||
|
|
||||||
if (index >= _watches.Count)
|
|
||||||
{
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (_watches[index].IsSeparator)
|
if (_watches[index].IsSeparator)
|
||||||
{
|
{
|
||||||
if (WatchListView.Columns[column].Name == WatchList.ADDRESS)
|
color = BackColor;
|
||||||
|
}
|
||||||
|
else if (_watches[index].Address >= _watches[index].Domain.Size)
|
||||||
|
{
|
||||||
|
color = Color.PeachPuff;
|
||||||
|
}
|
||||||
|
else if (Global.CheatList.IsActive(_watches[index].Domain, _watches[index].Address))
|
||||||
|
{
|
||||||
|
color = Color.LightCyan;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private void WatchListView_QueryItemText(int index, InputRoll.RollColumn column, out string text, ref int offsetX, ref int offsetY)
|
||||||
|
{
|
||||||
|
text = "";
|
||||||
|
if (index >= _watches.Count)
|
||||||
|
{
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (_watches[index].IsSeparator)
|
||||||
|
{
|
||||||
|
if (column.Name == WatchList.ADDRESS)
|
||||||
{
|
{
|
||||||
text = _watches[index].Notes;
|
text = _watches[index].Notes;
|
||||||
}
|
}
|
||||||
|
@ -653,9 +677,7 @@ namespace BizHawk.Client.EmuHawk
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
var columnName = WatchListView.Columns[column].Name;
|
switch (column.Name)
|
||||||
|
|
||||||
switch (columnName)
|
|
||||||
{
|
{
|
||||||
case WatchList.ADDRESS:
|
case WatchList.ADDRESS:
|
||||||
text = _watches[index].AddressString;
|
text = _watches[index].AddressString;
|
||||||
|
@ -796,7 +818,7 @@ namespace BizHawk.Client.EmuHawk
|
||||||
_watches.Add(we.Watches[0]);
|
_watches.Add(we.Watches[0]);
|
||||||
Changes();
|
Changes();
|
||||||
UpdateWatchCount();
|
UpdateWatchCount();
|
||||||
WatchListView.ItemCount = _watches.Count;
|
WatchListView.RowCount = _watches.Count;
|
||||||
UpdateValues();
|
UpdateValues();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -816,7 +838,7 @@ namespace BizHawk.Client.EmuHawk
|
||||||
_watches.Remove(item);
|
_watches.Remove(item);
|
||||||
}
|
}
|
||||||
|
|
||||||
WatchListView.ItemCount = _watches.Count;
|
WatchListView.RowCount = _watches.Count;
|
||||||
UpdateValues();
|
UpdateValues();
|
||||||
UpdateWatchCount();
|
UpdateWatchCount();
|
||||||
}
|
}
|
||||||
|
@ -870,7 +892,7 @@ namespace BizHawk.Client.EmuHawk
|
||||||
_watches.Add(SeparatorWatch.Instance);
|
_watches.Add(SeparatorWatch.Instance);
|
||||||
}
|
}
|
||||||
|
|
||||||
WatchListView.ItemCount = _watches.Count;
|
WatchListView.RowCount = _watches.Count;
|
||||||
Changes();
|
Changes();
|
||||||
UpdateWatchCount();
|
UpdateWatchCount();
|
||||||
}
|
}
|
||||||
|
@ -900,13 +922,13 @@ namespace BizHawk.Client.EmuHawk
|
||||||
|
|
||||||
var indices = indexes.Select(t => t - 1);
|
var indices = indexes.Select(t => t - 1);
|
||||||
|
|
||||||
WatchListView.SelectedIndices.Clear();
|
WatchListView.DeselectAll();
|
||||||
foreach (var t in indices)
|
foreach (var t in indices)
|
||||||
{
|
{
|
||||||
WatchListView.SelectItem(t, true);
|
WatchListView.SelectRow(t, true);
|
||||||
}
|
}
|
||||||
|
|
||||||
WatchListView.ItemCount = _watches.Count;
|
WatchListView.RowCount = _watches.Count;
|
||||||
}
|
}
|
||||||
|
|
||||||
private void MoveDownMenuItem_Click(object sender, EventArgs e)
|
private void MoveDownMenuItem_Click(object sender, EventArgs e)
|
||||||
|
@ -926,14 +948,14 @@ namespace BizHawk.Client.EmuHawk
|
||||||
|
|
||||||
var newIndices = indices.Select(t => t + 1);
|
var newIndices = indices.Select(t => t + 1);
|
||||||
|
|
||||||
WatchListView.SelectedIndices.Clear();
|
WatchListView.DeselectAll();
|
||||||
foreach (var t in newIndices)
|
foreach (var t in newIndices)
|
||||||
{
|
{
|
||||||
WatchListView.SelectItem(t, true);
|
WatchListView.SelectRow(t, true);
|
||||||
}
|
}
|
||||||
|
|
||||||
Changes();
|
Changes();
|
||||||
WatchListView.ItemCount = _watches.Count;
|
WatchListView.RowCount = _watches.Count;
|
||||||
}
|
}
|
||||||
|
|
||||||
private void MoveTopMenuItem_Click(object sender, EventArgs e)
|
private void MoveTopMenuItem_Click(object sender, EventArgs e)
|
||||||
|
@ -954,13 +976,13 @@ namespace BizHawk.Client.EmuHawk
|
||||||
|
|
||||||
Changes();
|
Changes();
|
||||||
|
|
||||||
WatchListView.SelectedIndices.Clear();
|
WatchListView.DeselectAll();
|
||||||
foreach (var t in indexes)
|
foreach (var t in indexes)
|
||||||
{
|
{
|
||||||
WatchListView.SelectItem(t, true);
|
WatchListView.SelectRow(t, true);
|
||||||
}
|
}
|
||||||
|
|
||||||
WatchListView.ItemCount = _watches.Count;
|
WatchListView.RowCount = _watches.Count;
|
||||||
}
|
}
|
||||||
|
|
||||||
private void MoveBottomMenuItem_Click(object sender, EventArgs e)
|
private void MoveBottomMenuItem_Click(object sender, EventArgs e)
|
||||||
|
@ -984,14 +1006,14 @@ namespace BizHawk.Client.EmuHawk
|
||||||
newInd.Add(x);
|
newInd.Add(x);
|
||||||
}
|
}
|
||||||
|
|
||||||
WatchListView.SelectedIndices.Clear();
|
WatchListView.DeselectAll();
|
||||||
foreach (var t in newInd)
|
foreach (var t in newInd)
|
||||||
{
|
{
|
||||||
WatchListView.SelectItem(t, true);
|
WatchListView.SelectRow(t, true);
|
||||||
}
|
}
|
||||||
|
|
||||||
Changes();
|
Changes();
|
||||||
WatchListView.ItemCount = _watches.Count;
|
WatchListView.RowCount = _watches.Count;
|
||||||
}
|
}
|
||||||
|
|
||||||
private void SelectAllMenuItem_Click(object sender, EventArgs e)
|
private void SelectAllMenuItem_Click(object sender, EventArgs e)
|
||||||
|
@ -1083,7 +1105,8 @@ namespace BizHawk.Client.EmuHawk
|
||||||
Global.Config.DisplayRamWatch = false;
|
Global.Config.DisplayRamWatch = false;
|
||||||
|
|
||||||
RefreshFloatingWindowControl(Settings.FloatingWindow);
|
RefreshFloatingWindowControl(Settings.FloatingWindow);
|
||||||
LoadColumnInfo(WatchListView, Settings.Columns);
|
// InputRoll TODO
|
||||||
|
//LoadColumnInfo(WatchListView, Settings.Columns);
|
||||||
}
|
}
|
||||||
|
|
||||||
#endregion
|
#endregion
|
||||||
|
@ -1106,8 +1129,9 @@ namespace BizHawk.Client.EmuHawk
|
||||||
|
|
||||||
private void ColumnToggleCallback()
|
private void ColumnToggleCallback()
|
||||||
{
|
{
|
||||||
SaveColumnInfo(WatchListView, Settings.Columns);
|
//Input Roll TODO
|
||||||
LoadColumnInfo(WatchListView, Settings.Columns);
|
//SaveColumnInfo(WatchListView, Settings.Columns);
|
||||||
|
//LoadColumnInfo(WatchListView, Settings.Columns);
|
||||||
}
|
}
|
||||||
|
|
||||||
private void NewRamWatch_Activated(object sender, EventArgs e)
|
private void NewRamWatch_Activated(object sender, EventArgs e)
|
||||||
|
@ -1122,7 +1146,7 @@ namespace BizHawk.Client.EmuHawk
|
||||||
{
|
{
|
||||||
_watches.Load(filePaths[0], append: false);
|
_watches.Load(filePaths[0], append: false);
|
||||||
Global.Config.RecentWatches.Add(_watches.CurrentFileName);
|
Global.Config.RecentWatches.Add(_watches.CurrentFileName);
|
||||||
WatchListView.ItemCount = _watches.Count;
|
WatchListView.RowCount = _watches.Count;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1133,7 +1157,7 @@ namespace BizHawk.Client.EmuHawk
|
||||||
|
|
||||||
private void ListViewContextMenu_Opening(object sender, CancelEventArgs e)
|
private void ListViewContextMenu_Opening(object sender, CancelEventArgs e)
|
||||||
{
|
{
|
||||||
var indexes = WatchListView.SelectedIndices;
|
var indexes = WatchListView.SelectedRows.ToList();
|
||||||
|
|
||||||
EditContextMenuItem.Visible =
|
EditContextMenuItem.Visible =
|
||||||
RemoveContextMenuItem.Visible =
|
RemoveContextMenuItem.Visible =
|
||||||
|
@ -1259,11 +1283,6 @@ namespace BizHawk.Client.EmuHawk
|
||||||
|
|
||||||
private void WatchListView_SelectedIndexChanged(object sender, EventArgs e)
|
private void WatchListView_SelectedIndexChanged(object sender, EventArgs e)
|
||||||
{
|
{
|
||||||
if (WatchListView.SelectAllInProgress)
|
|
||||||
{
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
PokeAddressToolBarItem.Enabled =
|
PokeAddressToolBarItem.Enabled =
|
||||||
FreezeAddressToolBarItem.Enabled =
|
FreezeAddressToolBarItem.Enabled =
|
||||||
SelectedIndices.Any() &&
|
SelectedIndices.Any() &&
|
||||||
|
@ -1291,7 +1310,7 @@ namespace BizHawk.Client.EmuHawk
|
||||||
_watches.Remove(item);
|
_watches.Remove(item);
|
||||||
}
|
}
|
||||||
|
|
||||||
WatchListView.ItemCount = _watches.Count;
|
WatchListView.RowCount = _watches.Count;
|
||||||
UpdateValues();
|
UpdateValues();
|
||||||
UpdateWatchCount();
|
UpdateWatchCount();
|
||||||
UpdateStatusBar();
|
UpdateStatusBar();
|
||||||
|
|
Loading…
Reference in New Issue