diff --git a/SleepyHeadQT.pro b/SleepyHeadQT.pro
index 5cea3768..c7225cc8 100644
--- a/SleepyHeadQT.pro
+++ b/SleepyHeadQT.pro
@@ -65,7 +65,8 @@ SOURCES += main.cpp\
Graphs/gSummaryChart.cpp \
SleepLib/schema.cpp \
profileselect.cpp \
- newprofile.cpp
+ newprofile.cpp \
+ exportcsv.cpp
unix:SOURCES += qextserialport/posix_qextserialport.cpp
unix:!macx:SOURCES += qextserialport/qextserialenumerator_unix.cpp
@@ -118,7 +119,8 @@ HEADERS += \
Graphs/gSummaryChart.h \
SleepLib/schema.h \
profileselect.h \
- newprofile.h
+ newprofile.h \
+ exportcsv.h
FORMS += \
@@ -129,7 +131,8 @@ FORMS += \
preferencesdialog.ui \
report.ui \
profileselect.ui \
- newprofile.ui
+ newprofile.ui \
+ exportcsv.ui
RESOURCES += \
Resources.qrc
@@ -141,7 +144,12 @@ OTHER_FILES += \
docs/schema.xml \
docs/graphs.xml \
docs/channels.xml \
- docs/release_notes.html
+ docs/release_notes.html \
+ docs/startup_tips.txt
+
+
+
+
diff --git a/docs/index.html b/docs/index.html
index 2893004b..e01d8b4a 100644
--- a/docs/index.html
+++ b/docs/index.html
@@ -27,8 +27,6 @@ SleepyHead's Project We
Friendly forums to talk and learn about Sleep Apnea:
CPAPTalk Forum,
Apnea Board
-Unfriendly place to be mis/underinformed about Sleep Apnea:
-http://www.apneasupport.org (Shame on you, ASAA!)
I really want a new logo!
@@ -41,10 +39,10 @@ http://www.apneasupport.org (Shame on you, ASAA!)
License: This software is released freely under the GNU Public License.
DISCLAIMER:
-This is DEFINITELY NOT medical software. This application is merely a data viewer, and no guarantee is made regarding accuracy or correctness of any calculations or data displayed.
+This is NOT medical software. This application is merely a data viewer, and no guarantee is made regarding accuracy or correctness of any calculations or data displayed.
The author will NOT be held liable by anyone who harms themselves or others by use or misuse of this software.
Your doctor should always be your first and best source of guidance regarding the important matter of managing your health.
-*** Use at your own risk ***
+*** Use at your own risk ***
|
diff --git a/docs/startup_tips.txt b/docs/startup_tips.txt
new file mode 100644
index 00000000..4729f263
--- /dev/null
+++ b/docs/startup_tips.txt
@@ -0,0 +1,2 @@
+You can reorder graphs by clicking and dragging on the title bar.
+SleepyHead project started out in March 2011, initially written in Python script.
diff --git a/exportcsv.cpp b/exportcsv.cpp
new file mode 100644
index 00000000..a956862a
--- /dev/null
+++ b/exportcsv.cpp
@@ -0,0 +1,102 @@
+#include
+#include
+#include
+#include "SleepLib/profiles.h"
+#include "exportcsv.h"
+#include "ui_exportcsv.h"
+
+ExportCSV::ExportCSV(QWidget *parent) :
+ QDialog(parent),
+ ui(new Ui::ExportCSV)
+{
+ ui->setupUi(this);
+ ui->rb1_Summary->setChecked(true);
+ ui->quickRangeCombo->setCurrentIndex(0);
+
+ // Set Date controls locale to 4 digit years
+ QLocale locale=QLocale::system();
+ QString shortformat=locale.dateFormat(QLocale::ShortFormat);
+ if (!shortformat.toLower().contains("yyyy")) {
+ shortformat.replace("yy","yyyy");
+ }
+ ui->startDate->setDisplayFormat(shortformat);
+ ui->endDate->setDisplayFormat(shortformat);
+
+ on_quickRangeCombo_activated("Most Recent Day");
+ ui->rb1_details->clearFocus();
+ ui->quickRangeCombo->setFocus();
+ ui->exportButton->setEnabled(false);
+}
+
+ExportCSV::~ExportCSV()
+{
+ delete ui;
+}
+
+void ExportCSV::on_filenameBrowseButton_clicked()
+{
+ QString timestamp="SleepyHead_";
+
+ if (ui->rb1_details->isChecked()) timestamp+="Details_";
+ if (ui->rb1_Sessions->isChecked()) timestamp+="Sessions_";
+ if (ui->rb1_Summary->isChecked()) timestamp+="Summary_";
+
+ timestamp+=ui->startDate->date().toString(Qt::ISODate);
+ if (ui->startDate->date()!=ui->endDate->date()) timestamp+="_"+ui->endDate->date().toString(Qt::ISODate);
+ timestamp+=".csv";
+ QString name=QFileDialog::getSaveFileName(this,"Select file to export to",PREF.Get("{home}/")+timestamp,"CSV Files (*.csv)");
+ if (name.isEmpty()) {
+ ui->exportButton->setEnabled(false);
+ return;
+ }
+ if (!name.toLower().endsWith(".csv")) {
+ name+=".csv";
+ }
+
+ ui->filenameEdit->setText(name);
+ ui->exportButton->setEnabled(true);
+}
+
+void ExportCSV::on_quickRangeCombo_activated(const QString &arg1)
+{
+ if (arg1=="Custom") {
+ ui->startDate->setEnabled(true);
+ ui->endDate->setEnabled(true);
+ ui->startLabel->setEnabled(true);
+ ui->endLabel->setEnabled(true);
+ } else {
+ ui->startDate->setEnabled(false);
+ ui->endDate->setEnabled(false);
+ ui->startLabel->setEnabled(false);
+ ui->endLabel->setEnabled(false);
+ if (arg1=="Everything") {
+ ui->startDate->setDate(PROFILE.FirstDay());
+ ui->endDate->setDate(PROFILE.LastDay());
+ } else if (arg1=="Most Recent Day") {
+ ui->startDate->setDate(PROFILE.LastDay());
+ ui->endDate->setDate(PROFILE.LastDay());
+ } else if (arg1=="Last Week") {
+ ui->startDate->setDate(QDate::currentDate().addDays(-7));
+ ui->endDate->setDate(QDate::currentDate());
+ } else if (arg1=="Last Fortnight") {
+ ui->startDate->setDate(QDate::currentDate().addDays(-14));
+ ui->endDate->setDate(QDate::currentDate());
+ } else if (arg1=="Last Month") {
+ ui->startDate->setDate(QDate::currentDate().addMonths(-1));
+ ui->endDate->setDate(QDate::currentDate());
+ } else if (arg1=="Last 6 Months") {
+ ui->startDate->setDate(QDate::currentDate().addMonths(-6));
+ ui->endDate->setDate(QDate::currentDate());
+ } else if (arg1=="Last Year") {
+ ui->startDate->setDate(QDate::currentDate().addYears(-1));
+ ui->endDate->setDate(QDate::currentDate());
+ }
+ }
+}
+
+void ExportCSV::on_exportButton_clicked()
+{
+ QMessageBox::information(this,"Stub Feature","Not implemented yet:\n"+ui->filenameEdit->text(),QMessageBox::Ok);
+
+ ExportCSV::accept();
+}
diff --git a/exportcsv.h b/exportcsv.h
new file mode 100644
index 00000000..a9371584
--- /dev/null
+++ b/exportcsv.h
@@ -0,0 +1,29 @@
+#ifndef EXPORTCSV_H
+#define EXPORTCSV_H
+
+#include
+
+namespace Ui {
+ class ExportCSV;
+}
+
+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();
+
+private:
+ Ui::ExportCSV *ui;
+};
+
+#endif // EXPORTCSV_H
diff --git a/exportcsv.ui b/exportcsv.ui
new file mode 100644
index 00000000..8237462c
--- /dev/null
+++ b/exportcsv.ui
@@ -0,0 +1,284 @@
+
+
+ ExportCSV
+
+
+
+ 0
+ 0
+ 521
+ 254
+
+
+
+ Export as CSV
+
+
+ -
+
+
+ Dates:
+
+
+
+ -
+
+
+
+ 0
+ 0
+
+
+
+ Resolution:
+
+
+
+ -
+
+
-
+
+
+ Details
+
+
+
+ -
+
+
+ Sessions
+
+
+
+ -
+
+
+ Summary
+
+
+ true
+
+
+
+ -
+
+
+ Qt::Horizontal
+
+
+
+ 40
+ 20
+
+
+
+
+
+
+ -
+
+
+ Filename:
+
+
+
+ -
+
+
+ Qt::Vertical
+
+
+
+ 20
+ 40
+
+
+
+
+ -
+
+
-
+
+
+ Qt::Horizontal
+
+
+
+ 40
+ 20
+
+
+
+
+ -
+
+
+ Cancel
+
+
+
+ -
+
+
+ Export
+
+
+
+
+
+ -
+
+
-
+
+
+
+ 0
+ 0
+
+
+
+ Start:
+
+
+
+ -
+
+
+ QDateTimeEdit::DaySection
+
+
+ true
+
+
+
+ -
+
+
+
+ 0
+ 0
+
+
+
+ End:
+
+
+
+ -
+
+
+ QDateTimeEdit::DaySection
+
+
+ true
+
+
+
+ -
+
+
+ Qt::Horizontal
+
+
+
+ 40
+ 20
+
+
+
+
+
+
+ -
+
+
+
+ 0
+ 0
+
+
+
+ Quick Range:
+
+
+
+ -
+
+
-
+
+ Most Recent Day
+
+
+ -
+
+ Last Week
+
+
+ -
+
+ Last Fortnight
+
+
+ -
+
+ Last Month
+
+
+ -
+
+ Last 6 Months
+
+
+ -
+
+ Last Year
+
+
+ -
+
+ Everything
+
+
+ -
+
+ Custom
+
+
+
+
+ -
+
+
-
+
+
+ -
+
+
+ ...
+
+
+
+
+
+
+
+
+
+
+ cancelButton
+ clicked()
+ ExportCSV
+ reject()
+
+
+ 377
+ 230
+
+
+ 260
+ 126
+
+
+
+
+
diff --git a/mainwindow.cpp b/mainwindow.cpp
index 2a9d0e7f..d9920b1f 100644
--- a/mainwindow.cpp
+++ b/mainwindow.cpp
@@ -20,6 +20,7 @@
#include "mainwindow.h"
#include "ui_mainwindow.h"
#include "newprofile.h"
+#include "exportcsv.h"
#include "SleepLib/schema.h"
#include "Graphs/glcommon.h"
@@ -510,3 +511,10 @@ void MainWindow::on_action_CycleTabs_triggered()
i=0;
ui->tabWidget->setCurrentIndex(i);
}
+
+void MainWindow::on_actionExp_ort_triggered()
+{
+ ExportCSV ex(this);
+ if (ex.exec()==ExportCSV::Accepted) {
+ }
+}
diff --git a/mainwindow.h b/mainwindow.h
index a970a754..bf490e5e 100644
--- a/mainwindow.h
+++ b/mainwindow.h
@@ -104,6 +104,8 @@ private slots:
void on_action_CycleTabs_triggered();
+ void on_actionExp_ort_triggered();
+
private:
Ui::MainWindow *ui;
Daily * daily;
diff --git a/mainwindow.ui b/mainwindow.ui
index 6bb458dd..d642fe7d 100644
--- a/mainwindow.ui
+++ b/mainwindow.ui
@@ -578,6 +578,7 @@
+
@@ -741,6 +742,11 @@
&Link Graph Groups
+
+
+ Exp&ort
+
+