}
myIntermittentSegmentList.clear();
}
-
- // 2)- Erase all curves points markers
-
- int nbMark = myMarkerList.size();
- if (nbMark > 0)
- {
- for (int imar=0; imar < nbMark; imar++)
- {
- QwtPlotMarker *marker = myMarkerList[imar];
-
- marker->detach(); // erase in QwtPlot window
- delete marker;
- }
- myMarkerList.clear();
- }
-
+
// The graphic view's picker
Plot2d_QwtPlotPicker *picker = myPlot->getPicker();
// List of intermittent segments to connect curves
QList<QwtPlotCurve*> myIntermittentSegmentList;
- // List of markers associated with curves points
- QList<QwtPlotMarker*> myMarkerList;
-
// List of curves Plot2d_Curve
QList<Plot2d_Curve*> myPlot2dCurveList;
};