[chronojump] JumpRj tests barchart selection will select on treeview and show on realtime graph
- From: Xavier de Blas <xaviblas src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [chronojump] JumpRj tests barchart selection will select on treeview and show on realtime graph
- Date: Fri, 22 Apr 2022 17:37:32 +0000 (UTC)
commit 830164a77731f97e5cfec07a03e331161ccbb5ed
Author: Xavier de Blas <xaviblas gmail com>
Date: Fri Apr 22 19:37:02 2022 +0200
JumpRj tests barchart selection will select on treeview and show on realtime graph
src/gui/cairo/bars.cs | 3 +++
src/gui/eventExecute.cs | 25 +++++++++++++++++++++----
src/gui/usefulObjects.cs | 6 ++++++
3 files changed, 30 insertions(+), 4 deletions(-)
---
diff --git a/src/gui/cairo/bars.cs b/src/gui/cairo/bars.cs
index dfd6fbf4a..2f7e6f31d 100644
--- a/src/gui/cairo/bars.cs
+++ b/src/gui/cairo/bars.cs
@@ -1063,6 +1063,9 @@ public abstract class CairoBars : CairoGeneric
if(bar == -1)
return -1;
+ //LogB.Information(string.Format("mouseLimits.Count: {0}, id_l.Count: {1}, bar: {2}",
+ // mouseLimits.Count(), id_l.Count, bar));
+
if(id_l == null || bar >= id_l.Count)
return -1;
diff --git a/src/gui/eventExecute.cs b/src/gui/eventExecute.cs
index af2224451..5b2c4dd6d 100644
--- a/src/gui/eventExecute.cs
+++ b/src/gui/eventExecute.cs
@@ -579,7 +579,7 @@ public partial class ChronoJumpWindow
private void on_event_execute_drawingarea_cairo_button_press_event (object o, ButtonPressEventArgs
args)
{
LogB.Information("on_event_execute_drawingarea_cairo_button_press_event");
- if (current_mode != Constants.Modes.RUNSINTERVALLIC)
+ if (current_mode != Constants.Modes.JUMPSREACTIVE && current_mode !=
Constants.Modes.RUNSINTERVALLIC)
return;
if(cairoPaintBarsPre == null)
@@ -589,7 +589,17 @@ public partial class ChronoJumpWindow
//LogB.Information("Bar: " + bar.ToString());
int id = cairoPaintBarsPre.FindBarIdInPixel(args.Event.X);
LogB.Information("id: " + id.ToString());
- if(id >= 0 && myTreeViewRunsInterval != null)
+
+ if(id < 0)
+ return;
+
+ if (current_mode == Constants.Modes.JUMPSREACTIVE && myTreeViewJumpsRj != null)
+ {
+ myTreeViewJumpsRj.ZoomToTestsIfNeeded ();
+ myTreeViewJumpsRj.SelectEvent (id, true); //scroll
+ on_treeview_jumps_rj_cursor_changed (new object (), new EventArgs ()); //in order to
update top graph
+ }
+ else if (current_mode == Constants.Modes.RUNSINTERVALLIC && myTreeViewRunsInterval != null)
{
myTreeViewRunsInterval.ZoomToTestsIfNeeded ();
myTreeViewRunsInterval.SelectEvent (id, true); //scroll
@@ -2740,7 +2750,7 @@ public class CairoPaintBarsPreJumpReactive : CairoPaintBarsPre
protected override void paintSpecific()
{
- cb = new CairoBarsNHSeries (darea, CairoBars.Type.NORMAL, true, false, true, true);
+ cb = new CairoBarsNHSeries (darea, CairoBars.Type.NORMAL, true, true, true, true);
cb.YVariable = Catalog.GetString("Time");
cb.YUnits = "s";
@@ -2786,6 +2796,7 @@ public class CairoPaintBarsPreJumpReactive : CairoPaintBarsPre
List<PointF> pointB_l = new List<PointF>();
List<string> names_l = new List<string>();
+ List<int> id_l = new List<int>(); //the uniqueIDs for knowing them on bar selection
int countToDraw = eventGraphJumpsRjStored.jumpsAtSQL.Count;
foreach(JumpRj jump in eventGraphJumpsRjStored.jumpsAtSQL)
@@ -2821,8 +2832,14 @@ public class CairoPaintBarsPreJumpReactive : CairoPaintBarsPre
jump.Description,
thereIsASimulated, (jump.Simulated == -1),
longestWord.Length, maxRowsForText));
+
+ //add uniqueID two times, one for the each serie
+ id_l.Add(jump.UniqueID);
+ id_l.Add(jump.UniqueID);
}
+ cb.Id_l = id_l;
+
cb.PassGuidesData (new CairoBarsGuideManage(
! ShowPersonNames, true, //usePersonGuides, useGroupGuides
eventGraphJumpsRjStored.sessionMAXAtSQL,
@@ -2870,7 +2887,7 @@ public class CairoPaintBarsPreRunSimple : CairoPaintBarsPre
protected override void paintSpecific()
{
- CairoBars1Series cb = new CairoBars1Series (darea, CairoBars.Type.NORMAL, false, true, true);
+ cb = new CairoBars1Series (darea, CairoBars.Type.NORMAL, false, true, true);
cb.YVariable = Catalog.GetString("Speed");
cb.YUnits = "m/s";
diff --git a/src/gui/usefulObjects.cs b/src/gui/usefulObjects.cs
index 0af332145..9515b0c18 100644
--- a/src/gui/usefulObjects.cs
+++ b/src/gui/usefulObjects.cs
@@ -739,4 +739,10 @@ public class RepetitionMouseLimits
{
return ((PointStartEnd) list[rep]).End;
}
+
+ //to debug
+ public int Count ()
+ {
+ return list.Count;
+ }
}
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]