From: Soeren Apel Date: Wed, 4 Nov 2015 17:38:13 +0000 (+0100) Subject: MainWindow: Merge save_selection_to_file() back into export_file() X-Git-Tag: pulseview-0.3.0~51 X-Git-Url: https://sigrok.org/gitweb/?p=pulseview.git;a=commitdiff_plain;h=a55e791833e84bf030ff6122c64b45a46f028e43 MainWindow: Merge save_selection_to_file() back into export_file() --- diff --git a/pv/mainwindow.cpp b/pv/mainwindow.cpp index aca5acf3..8006b65d 100644 --- a/pv/mainwindow.cpp +++ b/pv/mainwindow.cpp @@ -228,14 +228,36 @@ void MainWindow::export_file(shared_ptr format, { using pv::dialogs::StoreProgress; - (void)selection_only; - // Stop any currently running capture session session_.stop_capture(); QSettings settings; const QString dir = settings.value(SettingSaveDirectory).toString(); + std::pair sample_range; + + // Selection only? Verify that the cursors are active and fetch their values + if (selection_only) { + if (!view_->cursors()->enabled()) { + show_session_error(tr("Missing Cursors"), tr("You need to set the " \ + "cursors before you can save the data enclosed by them " \ + "to a session file (e.g. using ALT-V - Show Cursors).")); + return; + } + + const double samplerate = session_.get_samplerate(); + + const pv::util::Timestamp& start_time = view_->cursors()->first()->time(); + const pv::util::Timestamp& end_time = view_->cursors()->second()->time(); + + const uint64_t start_sample = start_time.convert_to() * samplerate; + const uint64_t end_sample = end_time.convert_to() * samplerate; + + sample_range = std::make_pair(start_sample, end_sample); + } else { + sample_range = std::make_pair(0, 0); + } + // Construct the filter const vector exts = format->extensions(); QString filter = tr("%1 files ").arg( @@ -270,8 +292,6 @@ void MainWindow::export_file(shared_ptr format, options = dlg.options(); } - const std::pair sample_range = std::make_pair(0, 0); - StoreProgress *dlg = new StoreProgress(file_name, format, options, sample_range, session_, this); dlg->run(); @@ -669,75 +689,6 @@ void MainWindow::load_file(QString file_name, session_error(errorMessage, infoMessage); }); } -void MainWindow::save_selection_to_file() -{ - // Stop any currently running capture session - session_.stop_capture(); - - // Verify that the cursors are active and fetch their values - if (!view_->cursors()->enabled()) { - show_session_error(tr("Missing Cursors"), tr("You need to set the " \ - "cursors before you can save the data enclosed by them " \ - "to a session file (e.g. using ALT-V - Show Cursors).")); - return; - } - - const double samplerate = session_.get_samplerate(); - - const pv::util::Timestamp& start_time = view_->cursors()->first()->time(); - const pv::util::Timestamp& end_time = view_->cursors()->second()->time(); - - const uint64_t start_sample = start_time.convert_to() * samplerate; - const uint64_t end_sample = end_time.convert_to() * samplerate; - - const std::pair sample_range = - std::make_pair(start_sample, end_sample); - - // Ask for output file name - QSettings settings; - const QString dir = settings.value(SettingSaveDirectory).toString(); - - shared_ptr format = - device_manager_.context()->output_formats()["srzip"]; - - const vector exts = format->extensions(); - QString filter = tr("%1 files ").arg( - QString::fromStdString(format->description())); - - if (exts.empty()) - filter += "(*.*)"; - else - filter += QString("(*.%1);;%2 (*.*)").arg( - QString::fromStdString(join(exts, ", *."))).arg( - tr("All Files")); - - const QString file_name = QFileDialog::getSaveFileName( - this, tr("Save File"), dir, filter); - - if (file_name.isEmpty()) - return; - - const QString abs_path = QFileInfo(file_name).absolutePath(); - settings.setValue(SettingSaveDirectory, abs_path); - - // Show the options dialog - map options; - if (!format->options().empty()) { - dialogs::InputOutputOptions dlg( - tr("Export %1").arg(QString::fromStdString( - format->description())), - format->options(), this); - if (!dlg.exec()) - return; - options = dlg.options(); - } - - // Save - pv::dialogs::StoreProgress *dlg = new pv::dialogs::StoreProgress(file_name, - format, options, sample_range, session_, this); - dlg->run(); -} - void MainWindow::closeEvent(QCloseEvent *event) { save_ui_settings(); @@ -790,7 +741,7 @@ void MainWindow::on_actionSaveAs_triggered() void MainWindow::on_actionSaveSelectionAs_triggered() { - save_selection_to_file(); + export_file(device_manager_.context()->output_formats()["srzip"], true); } void MainWindow::on_actionConnect_triggered()