From 8c9e5becb20d2d8c8aa1f7108775cc520b08fae1 Mon Sep 17 00:00:00 2001 From: "Robert C. Helling" Date: Sat, 30 Mar 2019 20:59:28 +0100 Subject: Export profile data This introduces a csv file that contains the data from the structs defined in profile.c, in particular all deco information computed for the dive profle (including NDL, TTS, ceilings, surface GFs etc). Signed-off-by: Robert C. Helling --- desktop-widgets/divelogexportdialog.cpp | 7 +++++++ desktop-widgets/divelogexportdialog.ui | 12 +++++++++++- 2 files changed, 18 insertions(+), 1 deletion(-) (limited to 'desktop-widgets') diff --git a/desktop-widgets/divelogexportdialog.cpp b/desktop-widgets/divelogexportdialog.cpp index 3e712fc5d..216a296eb 100644 --- a/desktop-widgets/divelogexportdialog.cpp +++ b/desktop-widgets/divelogexportdialog.cpp @@ -15,6 +15,7 @@ #include "core/settings/qPrefDisplay.h" #include "desktop-widgets/mainwindow.h" #include "profile-widget/profilewidget2.h" +#include "core/save-profiledata.h" #include "core/dive.h" // Allows access to helper functions in TeX export. // Retrieves the current unit settings defined in the Subsurface preferences. @@ -98,6 +99,8 @@ void DiveLogExportDialog::showExplanation() ui->description->setText(tr("Write dive as LaTeX macros to file.")); } else if (ui->exportProfile->isChecked()) { ui->description->setText(tr("Write the profile image as PNG file.")); + } else if (ui->exportProfileData->isChecked()) { + ui->description->setText(tr("Write profile data to a CSV file.")); } } @@ -175,6 +178,10 @@ void DiveLogExportDialog::on_buttonBox_accepted() filename = QFileDialog::getSaveFileName(this, tr("Save profile image"), lastDir); if (!filename.isNull() && !filename.isEmpty()) exportProfile(qPrintable(filename), ui->exportSelected->isChecked()); + } else if (ui->exportProfileData->isChecked()) { + filename = QFileDialog::getSaveFileName(this, tr("Save profile data"), lastDir); + if (!filename.isNull() && !filename.isEmpty()) + save_profiledata(qPrintable(filename), ui->exportSelected->isChecked()); } break; case 1: diff --git a/desktop-widgets/divelogexportdialog.ui b/desktop-widgets/divelogexportdialog.ui index 9080c647f..07b06378b 100644 --- a/desktop-widgets/divelogexportdialog.ui +++ b/desktop-widgets/divelogexportdialog.ui @@ -7,7 +7,7 @@ 0 0 507 - 398 + 423 @@ -231,6 +231,16 @@ + + + + Profile Data CSV + + + exportGroup + + + -- cgit v1.2.3-70-g09d2