2014-08-17 12:56:05 +00:00
|
|
|
/* ExportCSV Module Header
|
2014-04-09 21:01:57 +00:00
|
|
|
*
|
2021-11-02 20:34:12 +00:00
|
|
|
* Copyright (c) 2019-2022 The OSCAR Team
|
2018-03-28 07:10:52 +00:00
|
|
|
* Copyright (C) 2011-2018 Mark Watkins <mark@jedimark.net>
|
2014-04-09 21:01:57 +00:00
|
|
|
*
|
|
|
|
* This file is subject to the terms and conditions of the GNU General Public
|
2018-06-04 20:48:38 +00:00
|
|
|
* License. See the file COPYING in the main directory of the source code
|
|
|
|
* for more details. */
|
2011-11-26 04:00:31 +00:00
|
|
|
|
2011-11-14 14:10:46 +00:00
|
|
|
#ifndef EXPORTCSV_H
|
|
|
|
#define EXPORTCSV_H
|
|
|
|
|
2011-11-15 01:09:09 +00:00
|
|
|
#include <QDateEdit>
|
2011-11-14 14:10:46 +00:00
|
|
|
#include <QDialog>
|
2012-01-22 14:39:20 +00:00
|
|
|
#include "SleepLib/machine_common.h"
|
2011-11-14 14:10:46 +00:00
|
|
|
|
|
|
|
namespace Ui {
|
2014-04-17 05:52:25 +00:00
|
|
|
class ExportCSV;
|
2011-11-14 14:10:46 +00:00
|
|
|
}
|
|
|
|
|
2011-12-19 05:35:05 +00:00
|
|
|
|
2012-01-22 14:39:20 +00:00
|
|
|
struct DumpField {
|
2014-04-17 05:52:25 +00:00
|
|
|
DumpField() { code = NoChannel; mtype = MT_UNKNOWN; type = ST_CNT; }
|
|
|
|
DumpField(ChannelID c, MachineType mt, SummaryType t) { code = c; mtype = mt; type = t; }
|
|
|
|
DumpField(const DumpField ©) {code = copy.code; mtype = copy.mtype; type = copy.type; }
|
2012-01-22 14:39:20 +00:00
|
|
|
ChannelID code;
|
|
|
|
MachineType mtype;
|
|
|
|
SummaryType type;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2011-12-19 05:35:05 +00:00
|
|
|
/*! \class ExportCSV
|
|
|
|
\brief Dialog for exporting SleepLib data in CSV Format
|
|
|
|
This module still needs a lot of work
|
|
|
|
*/
|
2011-11-14 14:10:46 +00:00
|
|
|
class ExportCSV : public QDialog
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
2014-04-17 05:52:25 +00:00
|
|
|
public:
|
2011-11-14 14:10:46 +00:00
|
|
|
explicit ExportCSV(QWidget *parent = 0);
|
|
|
|
~ExportCSV();
|
|
|
|
|
2014-04-17 05:52:25 +00:00
|
|
|
private slots:
|
2011-11-14 14:10:46 +00:00
|
|
|
void on_filenameBrowseButton_clicked();
|
|
|
|
|
|
|
|
void on_quickRangeCombo_activated(const QString &arg1);
|
|
|
|
|
|
|
|
void on_exportButton_clicked();
|
|
|
|
|
2011-11-15 01:09:09 +00:00
|
|
|
void startDate_currentPageChanged(int year, int month);
|
|
|
|
void endDate_currentPageChanged(int year, int month);
|
|
|
|
|
|
|
|
|
2014-04-17 05:52:25 +00:00
|
|
|
private:
|
|
|
|
void UpdateCalendarDay(QDateEdit *dateedit, QDate date);
|
2011-11-15 01:09:09 +00:00
|
|
|
|
2011-11-14 14:10:46 +00:00
|
|
|
Ui::ExportCSV *ui;
|
2012-01-22 14:39:20 +00:00
|
|
|
QList<DumpField> fields;
|
2011-11-14 14:10:46 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // EXPORTCSV_H
|