| 1411 | } |
| 1412 | |
| 1413 | void DsoSignal::auto_start() |
| 1414 | { |
| 1415 | if (_autoV || _autoH) |
| 1416 | return; |
| 1417 | |
| 1418 | if (session->is_running_status()) { |
| 1419 | session->data_auto_lock(AutoLock); |
| 1420 | _autoV = true; |
| 1421 | _autoH = true; |
| 1422 | _view->auto_trig(get_index()); |
| 1423 | _end_timer.TimeOut(AutoTime, std::bind(&DsoSignal::call_auto_end, this)); //start a timeout |
| 1424 | } |
| 1425 | } |
| 1426 | |
| 1427 | bool DsoSignal::measure(const QPointF &p) |
| 1428 | { |
nothing calls this directly
no test coverage detected