mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-04 02:00:43 +00:00
65 lines
1.5 KiB
C++
65 lines
1.5 KiB
C++
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 4 -*-
|
|
* vim: set ts=8 sts=4 et sw=4 tw=99:
|
|
*
|
|
* ExportCSV Module Header
|
|
*
|
|
* Copyright (c) 2011-2014 Mark Watkins <jedimark@users.sourceforge.net>
|
|
*
|
|
* This file is subject to the terms and conditions of the GNU General Public
|
|
* License. See the file COPYING in the main directory of the Linux
|
|
* distribution for more details. */
|
|
|
|
#ifndef EXPORTCSV_H
|
|
#define EXPORTCSV_H
|
|
|
|
#include <QDateEdit>
|
|
#include <QDialog>
|
|
#include "SleepLib/machine_common.h"
|
|
|
|
namespace Ui {
|
|
class ExportCSV;
|
|
}
|
|
|
|
|
|
struct DumpField {
|
|
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 & copy) {code=copy.code; mtype=copy.mtype; type=copy.type; }
|
|
ChannelID code;
|
|
MachineType mtype;
|
|
SummaryType type;
|
|
};
|
|
|
|
|
|
/*! \class ExportCSV
|
|
\brief Dialog for exporting SleepLib data in CSV Format
|
|
This module still needs a lot of work
|
|
*/
|
|
class ExportCSV : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit ExportCSV(QWidget *parent = 0);
|
|
~ExportCSV();
|
|
|
|
private slots:
|
|
void on_filenameBrowseButton_clicked();
|
|
|
|
void on_quickRangeCombo_activated(const QString &arg1);
|
|
|
|
void on_exportButton_clicked();
|
|
|
|
void startDate_currentPageChanged(int year, int month);
|
|
void endDate_currentPageChanged(int year, int month);
|
|
|
|
|
|
private:
|
|
void UpdateCalendarDay(QDateEdit * dateedit,QDate date);
|
|
|
|
Ui::ExportCSV *ui;
|
|
QList<DumpField> fields;
|
|
};
|
|
|
|
#endif // EXPORTCSV_H
|