| 227 | } |
| 228 | |
| 229 | void GRTimePlotAddon::drawPlot() |
| 230 | { |
| 231 | // qInfo(CAT_GRTIMEPLOT)<<"Draw plot"; |
| 232 | if(!time_sink) |
| 233 | return; |
| 234 | setRawSamplesPtr(); |
| 235 | drawTags(); |
| 236 | plot()->replot(); |
| 237 | m_xyPlotWidget->replot(); |
| 238 | m_fftPlotWidget->replot(); |
| 239 | if(time_sink->finishedAcquisition()) |
| 240 | Q_EMIT requestStop(); |
| 241 | } |
| 242 | |
| 243 | QList<GRTimeChannelAddon *> GRTimePlotAddon::getGrChannels() const { return grChannels; } |
| 244 |
nothing calls this directly
no test coverage detected