| 616 | } |
| 617 | |
| 618 | void MainWindow::on_export() |
| 619 | { |
| 620 | using pv::dialogs::StoreProgress; |
| 621 | |
| 622 | if (_session->is_working()){ |
| 623 | dsv_info("Export data: stop the current device."); |
| 624 | _session->stop_capture(); |
| 625 | } |
| 626 | |
| 627 | StoreProgress *dlg = new StoreProgress(_session, this); |
| 628 | dlg->SetView(_view); |
| 629 | dlg->export_run(); |
| 630 | } |
| 631 | |
| 632 | bool MainWindow::on_load_session(QString name) |
| 633 | { |
nothing calls this directly
no test coverage detected