diff options
author | Gehad elrobey <gehadelrobey@gmail.com> | 2014-08-07 16:11:23 +0300 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2014-08-11 08:21:03 -0700 |
commit | 3ebb62f153c11a123e86d68f0b62998e91162779 (patch) | |
tree | 336b8ba6847fcbfb17a98e9a8126795c5d0e1901 /qt-ui/divelogexportdialog.h | |
parent | 70cfe4f9eb31a69cec07de1b1b54f388525909d0 (diff) | |
download | subsurface-3ebb62f153c11a123e86d68f0b62998e91162779.tar.gz |
HTML: Add total row to yearly statistics table.
Add new row to the yearly statistics table containing the total. Total
values are calculated to some columns only, it doesn't make any sense to
add the total value to other columns (Temperature cols for example).
Signed-off-by: Gehad elrobey <gehadelrobey@gmail.com>
Signed-off-by: Miika Turkia <miika.turkia@gmail.com>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-ui/divelogexportdialog.h')
-rw-r--r-- | qt-ui/divelogexportdialog.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/qt-ui/divelogexportdialog.h b/qt-ui/divelogexportdialog.h index e398a5a05..8472f8075 100644 --- a/qt-ui/divelogexportdialog.h +++ b/qt-ui/divelogexportdialog.h @@ -2,12 +2,18 @@ #define DIVELOGEXPORTDIALOG_H #include <QDialog> +#include <QTextStream> +#include "helpers.h" +#include "statistics.h" + class QAbstractButton; namespace Ui { class DiveLogExportDialog; } +void exportHTMLstatisticsTotal(QTextStream &out, stats_t *total_stats); + class DiveLogExportDialog : public QDialog { Q_OBJECT |