From dc18535b88efaa4762dbd1f73cbf0de07ea71732 Mon Sep 17 00:00:00 2001 From: feos Date: Sun, 17 Apr 2016 21:02:21 +0300 Subject: [PATCH] tastudio: use VisibleRows instead of SeekingCutoffInterval. allow SelectedIndexChanged again, just not use it in tasview. can we comment out in designers like that? --- BizHawk.Client.EmuHawk/CustomControls/InputRoll.cs | 2 +- BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.Designer.cs | 4 +++- BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.ListView.cs | 2 +- BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.cs | 2 +- 4 files changed, 6 insertions(+), 4 deletions(-) diff --git a/BizHawk.Client.EmuHawk/CustomControls/InputRoll.cs b/BizHawk.Client.EmuHawk/CustomControls/InputRoll.cs index f0fe8a9163..12f8744bb0 100644 --- a/BizHawk.Client.EmuHawk/CustomControls/InputRoll.cs +++ b/BizHawk.Client.EmuHawk/CustomControls/InputRoll.cs @@ -1646,7 +1646,7 @@ namespace BizHawk.Client.EmuHawk if (SelectedIndexChanged != null) { - //SelectedIndexChanged(this, new EventArgs()); + SelectedIndexChanged(this, new EventArgs()); } } } diff --git a/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.Designer.cs b/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.Designer.cs index 89782dff39..2fb1f928f9 100644 --- a/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.Designer.cs +++ b/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.Designer.cs @@ -647,6 +647,7 @@ namespace BizHawk.Client.EmuHawk this.SetSeekingCutoffIntervalMenuItem.Name = "SetSeekingCutoffIntervalMenuItem"; this.SetSeekingCutoffIntervalMenuItem.Size = new System.Drawing.Size(253, 22); this.SetSeekingCutoffIntervalMenuItem.Text = "Set Seeking Cutoff Interval"; + this.SetSeekingCutoffIntervalMenuItem.Visible = false; this.SetSeekingCutoffIntervalMenuItem.Click += new System.EventHandler(this.SetSeekingCutoffIntervalMenuItem_Click); // // toolStripSeparator9 @@ -1149,11 +1150,12 @@ namespace BizHawk.Client.EmuHawk this.TasView.Name = "TasView"; this.TasView.RowCount = 0; this.TasView.ScrollSpeed = 1; + this.TasView.SeekingCutoffInterval = 0; this.TasView.Size = new System.Drawing.Size(289, 528); this.TasView.TabIndex = 1; this.TasView.ColumnClick += new BizHawk.Client.EmuHawk.InputRoll.ColumnClickEventHandler(this.TasView_ColumnClick); this.TasView.ColumnRightClick += new BizHawk.Client.EmuHawk.InputRoll.ColumnClickEventHandler(this.TasView_ColumnRightClick); - this.TasView.SelectedIndexChanged += new System.EventHandler(this.TasView_SelectedIndexChanged); + //this.TasView.SelectedIndexChanged += new System.EventHandler(this.TasView_SelectedIndexChanged); this.TasView.RightMouseScrolled += new BizHawk.Client.EmuHawk.InputRoll.RightMouseScrollEventHandler(this.TasView_MouseWheel); this.TasView.ColumnReordered += new BizHawk.Client.EmuHawk.InputRoll.ColumnReorderedEventHandler(this.TasView_ColumnReordered); this.TasView.CellDropped += new BizHawk.Client.EmuHawk.InputRoll.CellDroppedEvent(this.TasView_CellDropped); diff --git a/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.ListView.cs b/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.ListView.cs index a854e22687..7c5236b0eb 100644 --- a/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.ListView.cs +++ b/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.ListView.cs @@ -77,7 +77,7 @@ namespace BizHawk.Client.EmuHawk else GlobalWin.MainForm.UnpauseEmulator(); - if (!_seekBackgroundWorker.IsBusy && diff.Value > TasView.SeekingCutoffInterval) + if (!_seekBackgroundWorker.IsBusy && diff.Value > TasView.VisibleRows) _seekBackgroundWorker.RunWorkerAsync(); } diff --git a/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.cs b/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.cs index 210dfba182..7d0bbae1d5 100644 --- a/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.cs +++ b/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.cs @@ -65,7 +65,7 @@ namespace BizHawk.Client.EmuHawk FollowCursorAlwaysScroll = false; FollowCursorScrollMethod = "near"; BranchCellHoverInterval = 1; - SeekingCutoffInterval = 2; + SeekingCutoffInterval = 2; // unused, relying on VisibleRows is smarter // default to taseditor fashion denoteStatesWithIcons = false; denoteStatesWithBGColor = true;