mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 18:50:44 +00:00
Added Export Dialog Stubs
This commit is contained in:
parent
8919c2ce5d
commit
9973bcab3a
@ -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
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
@ -27,8 +27,6 @@ SleepyHead's <a href='http://www.sourceforge.net/projects/sleepyhead'>Project We
|
||||
<p>Friendly forums to talk and learn about Sleep Apnea:<br/>
|
||||
<a href='http://www.cpaptalk.com'>CPAPTalk Forum</a>,
|
||||
<a href="http://s7.zetaboards.com/Apnea_Board/index/">Apnea Board</a></p>
|
||||
<p>Unfriendly place to be mis/underinformed about Sleep Apnea:<br/>
|
||||
http://www.apneasupport.org (Shame on you, ASAA!)</p>
|
||||
</td>
|
||||
<td><image src='qrc:/docs/sheep.png' width=220 height=220><br/>
|
||||
<div align=center>I really want a new logo!</div>
|
||||
@ -41,10 +39,10 @@ http://www.apneasupport.org (Shame on you, ASAA!)</p>
|
||||
<p><b>License:</b> This software is released freely under the <a href="http://www.gnu.org/licenses/gpl.html">GNU Public License</a>.</p>
|
||||
<hr/>
|
||||
<p><b>DISCLAIMER:</b></p>
|
||||
<b><p>This is <font color="red"><u>DEFINITELY NOT</u></font> medical software. This application is merely a data viewer, and no guarantee is made regarding accuracy or correctness of any calculations or data displayed.</p>
|
||||
<b><p>This is <font color="red"><u>NOT</u></font> medical software. This application is merely a data viewer, and no guarantee is made regarding accuracy or correctness of any calculations or data displayed.</p>
|
||||
<p>The author will NOT be held liable by anyone who harms themselves or others by use or misuse of this software.</p>
|
||||
<p>Your doctor should always be your first and best source of guidance regarding the important matter of managing your health.</p>
|
||||
<p><h2>*** <u>Use at your own risk</u> ***</h2></p></b>
|
||||
<p>*** <u>Use at your own risk</u> ***</p></b>
|
||||
<hr/>
|
||||
</td></tr>
|
||||
</table>
|
||||
|
2
docs/startup_tips.txt
Normal file
2
docs/startup_tips.txt
Normal file
@ -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.
|
102
exportcsv.cpp
Normal file
102
exportcsv.cpp
Normal file
@ -0,0 +1,102 @@
|
||||
#include <QFileDialog>
|
||||
#include <QLocale>
|
||||
#include <QMessageBox>
|
||||
#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();
|
||||
}
|
29
exportcsv.h
Normal file
29
exportcsv.h
Normal file
@ -0,0 +1,29 @@
|
||||
#ifndef EXPORTCSV_H
|
||||
#define EXPORTCSV_H
|
||||
|
||||
#include <QDialog>
|
||||
|
||||
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
|
284
exportcsv.ui
Normal file
284
exportcsv.ui
Normal file
@ -0,0 +1,284 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<ui version="4.0">
|
||||
<class>ExportCSV</class>
|
||||
<widget class="QDialog" name="ExportCSV">
|
||||
<property name="geometry">
|
||||
<rect>
|
||||
<x>0</x>
|
||||
<y>0</y>
|
||||
<width>521</width>
|
||||
<height>254</height>
|
||||
</rect>
|
||||
</property>
|
||||
<property name="windowTitle">
|
||||
<string>Export as CSV</string>
|
||||
</property>
|
||||
<layout class="QFormLayout" name="formLayout">
|
||||
<item row="3" column="0">
|
||||
<widget class="QLabel" name="label_6">
|
||||
<property name="text">
|
||||
<string>Dates:</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="6" column="0">
|
||||
<widget class="QLabel" name="label_4">
|
||||
<property name="sizePolicy">
|
||||
<sizepolicy hsizetype="Fixed" vsizetype="Preferred">
|
||||
<horstretch>0</horstretch>
|
||||
<verstretch>0</verstretch>
|
||||
</sizepolicy>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>Resolution:</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="6" column="1">
|
||||
<layout class="QHBoxLayout" name="horizontalLayout_4">
|
||||
<item>
|
||||
<widget class="QRadioButton" name="rb1_details">
|
||||
<property name="text">
|
||||
<string>Details</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QRadioButton" name="rb1_Sessions">
|
||||
<property name="text">
|
||||
<string>Sessions</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QRadioButton" name="rb1_Summary">
|
||||
<property name="text">
|
||||
<string>Summary</string>
|
||||
</property>
|
||||
<property name="checked">
|
||||
<bool>true</bool>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<spacer name="horizontalSpacer_3">
|
||||
<property name="orientation">
|
||||
<enum>Qt::Horizontal</enum>
|
||||
</property>
|
||||
<property name="sizeHint" stdset="0">
|
||||
<size>
|
||||
<width>40</width>
|
||||
<height>20</height>
|
||||
</size>
|
||||
</property>
|
||||
</spacer>
|
||||
</item>
|
||||
</layout>
|
||||
</item>
|
||||
<item row="8" column="0">
|
||||
<widget class="QLabel" name="label_5">
|
||||
<property name="text">
|
||||
<string>Filename:</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="10" column="1">
|
||||
<spacer name="verticalSpacer">
|
||||
<property name="orientation">
|
||||
<enum>Qt::Vertical</enum>
|
||||
</property>
|
||||
<property name="sizeHint" stdset="0">
|
||||
<size>
|
||||
<width>20</width>
|
||||
<height>40</height>
|
||||
</size>
|
||||
</property>
|
||||
</spacer>
|
||||
</item>
|
||||
<item row="11" column="0" colspan="2">
|
||||
<layout class="QHBoxLayout" name="horizontalLayout">
|
||||
<item>
|
||||
<spacer name="horizontalSpacer">
|
||||
<property name="orientation">
|
||||
<enum>Qt::Horizontal</enum>
|
||||
</property>
|
||||
<property name="sizeHint" stdset="0">
|
||||
<size>
|
||||
<width>40</width>
|
||||
<height>20</height>
|
||||
</size>
|
||||
</property>
|
||||
</spacer>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QPushButton" name="cancelButton">
|
||||
<property name="text">
|
||||
<string>Cancel</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QPushButton" name="exportButton">
|
||||
<property name="text">
|
||||
<string>Export</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
</layout>
|
||||
</item>
|
||||
<item row="3" column="1">
|
||||
<layout class="QHBoxLayout" name="horizontalLayout_2">
|
||||
<item>
|
||||
<widget class="QLabel" name="startLabel">
|
||||
<property name="sizePolicy">
|
||||
<sizepolicy hsizetype="Fixed" vsizetype="Preferred">
|
||||
<horstretch>0</horstretch>
|
||||
<verstretch>0</verstretch>
|
||||
</sizepolicy>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>Start:</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QDateEdit" name="startDate">
|
||||
<property name="currentSection">
|
||||
<enum>QDateTimeEdit::DaySection</enum>
|
||||
</property>
|
||||
<property name="calendarPopup">
|
||||
<bool>true</bool>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QLabel" name="endLabel">
|
||||
<property name="sizePolicy">
|
||||
<sizepolicy hsizetype="Fixed" vsizetype="Preferred">
|
||||
<horstretch>0</horstretch>
|
||||
<verstretch>0</verstretch>
|
||||
</sizepolicy>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>End:</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QDateEdit" name="endDate">
|
||||
<property name="currentSection">
|
||||
<enum>QDateTimeEdit::DaySection</enum>
|
||||
</property>
|
||||
<property name="calendarPopup">
|
||||
<bool>true</bool>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<spacer name="horizontalSpacer_2">
|
||||
<property name="orientation">
|
||||
<enum>Qt::Horizontal</enum>
|
||||
</property>
|
||||
<property name="sizeHint" stdset="0">
|
||||
<size>
|
||||
<width>40</width>
|
||||
<height>20</height>
|
||||
</size>
|
||||
</property>
|
||||
</spacer>
|
||||
</item>
|
||||
</layout>
|
||||
</item>
|
||||
<item row="0" column="0">
|
||||
<widget class="QLabel" name="label_3">
|
||||
<property name="sizePolicy">
|
||||
<sizepolicy hsizetype="Fixed" vsizetype="Preferred">
|
||||
<horstretch>0</horstretch>
|
||||
<verstretch>0</verstretch>
|
||||
</sizepolicy>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>Quick Range:</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="0" column="1">
|
||||
<widget class="QComboBox" name="quickRangeCombo">
|
||||
<item>
|
||||
<property name="text">
|
||||
<string>Most Recent Day</string>
|
||||
</property>
|
||||
</item>
|
||||
<item>
|
||||
<property name="text">
|
||||
<string>Last Week</string>
|
||||
</property>
|
||||
</item>
|
||||
<item>
|
||||
<property name="text">
|
||||
<string>Last Fortnight</string>
|
||||
</property>
|
||||
</item>
|
||||
<item>
|
||||
<property name="text">
|
||||
<string>Last Month</string>
|
||||
</property>
|
||||
</item>
|
||||
<item>
|
||||
<property name="text">
|
||||
<string>Last 6 Months</string>
|
||||
</property>
|
||||
</item>
|
||||
<item>
|
||||
<property name="text">
|
||||
<string>Last Year</string>
|
||||
</property>
|
||||
</item>
|
||||
<item>
|
||||
<property name="text">
|
||||
<string>Everything</string>
|
||||
</property>
|
||||
</item>
|
||||
<item>
|
||||
<property name="text">
|
||||
<string>Custom</string>
|
||||
</property>
|
||||
</item>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="8" column="1">
|
||||
<layout class="QHBoxLayout" name="horizontalLayout_5">
|
||||
<item>
|
||||
<widget class="QLineEdit" name="filenameEdit"/>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QToolButton" name="filenameBrowseButton">
|
||||
<property name="text">
|
||||
<string>...</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
</layout>
|
||||
</item>
|
||||
</layout>
|
||||
</widget>
|
||||
<resources/>
|
||||
<connections>
|
||||
<connection>
|
||||
<sender>cancelButton</sender>
|
||||
<signal>clicked()</signal>
|
||||
<receiver>ExportCSV</receiver>
|
||||
<slot>reject()</slot>
|
||||
<hints>
|
||||
<hint type="sourcelabel">
|
||||
<x>377</x>
|
||||
<y>230</y>
|
||||
</hint>
|
||||
<hint type="destinationlabel">
|
||||
<x>260</x>
|
||||
<y>126</y>
|
||||
</hint>
|
||||
</hints>
|
||||
</connection>
|
||||
</connections>
|
||||
</ui>
|
@ -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) {
|
||||
}
|
||||
}
|
||||
|
@ -104,6 +104,8 @@ private slots:
|
||||
|
||||
void on_action_CycleTabs_triggered();
|
||||
|
||||
void on_actionExp_ort_triggered();
|
||||
|
||||
private:
|
||||
Ui::MainWindow *ui;
|
||||
Daily * daily;
|
||||
|
@ -578,6 +578,7 @@
|
||||
<addaction name="action_Edit_Profile"/>
|
||||
<addaction name="separator"/>
|
||||
<addaction name="actionPrint_Report"/>
|
||||
<addaction name="actionExp_ort"/>
|
||||
<addaction name="separator"/>
|
||||
<addaction name="actionE_xit"/>
|
||||
</widget>
|
||||
@ -741,6 +742,11 @@
|
||||
<string>&Link Graph Groups</string>
|
||||
</property>
|
||||
</action>
|
||||
<action name="actionExp_ort">
|
||||
<property name="text">
|
||||
<string>Exp&ort</string>
|
||||
</property>
|
||||
</action>
|
||||
</widget>
|
||||
<customwidgets>
|
||||
<customwidget>
|
||||
|
Loading…
Reference in New Issue
Block a user