OSCAR-code/mainwindow.cpp
2011-12-01 11:47:09 +10:00

662 lines
21 KiB
C++

/*
MainWindow Implementation
Copyright (c)2011 Mark Watkins <jedimark@users.sourceforge.net>
License: GPL
*/
#include <QGLFormat>
#include <QFileDialog>
#include <QMessageBox>
#include <QResource>
#include <QProgressBar>
#include <QWebHistory>
#include <QNetworkRequest>
#include <QNetworkReply>
#include <QTimer>
#include <QSettings>
#include <QPixmap>
#include <QDesktopWidget>
#include <QListView>
#include "mainwindow.h"
#include "ui_mainwindow.h"
#include "newprofile.h"
#include "exportcsv.h"
#include "SleepLib/schema.h"
#include "Graphs/glcommon.h"
QProgressBar *qprogress;
QLabel *qstatus;
QLabel *qstatus2;
QStatusBar *qstatusbar;
extern Profile * profile;
void MainWindow::Log(QString s)
{
if (!strlock.tryLock())
return;
// strlock.lock();
QString tmp=QString("%1: %2").arg(logtime.elapsed(),5,10,QChar('0')).arg(s);
logbuffer.append(tmp); //QStringList appears not to be threadsafe
strlock.unlock();
strlock.lock();
// only do this in the main thread?
for (int i=0;i<logbuffer.size();i++)
ui->logText->appendPlainText(logbuffer[i]);
logbuffer.clear();
strlock.unlock();
//loglock.unlock();
}
MainWindow::MainWindow(QWidget *parent) :
QMainWindow(parent),
ui(new Ui::MainWindow)
{
Q_ASSERT(p_profile!=NULL);
logtime.start();
ui->setupUi(this);
QString version=PREF["VersionString"].toString();
if (QString(GIT_BRANCH)!="master") version+=QString(" ")+QString(GIT_BRANCH);
this->setWindowTitle(tr("SleepyHead")+QString(" v%1 (Profile: %2)").arg(version).arg(PREF["Profile"].toString()));
ui->tabWidget->setCurrentIndex(0);
overview=NULL;
daily=NULL;
oximetry=NULL;
prefdialog=NULL;
qstatusbar=ui->statusbar;
qprogress=new QProgressBar(this);
qprogress->setMaximum(100);
qstatus2=new QLabel("Welcome",this);
qstatus2->setFrameStyle(QFrame::Raised);
qstatus2->setFrameShadow(QFrame::Sunken);
qstatus2->setFrameShape(QFrame::Box);
//qstatus2->setMinimumWidth(100);
qstatus2->setMaximumWidth(100);
qstatus2->setAlignment(Qt::AlignRight |Qt::AlignVCenter);
qstatus=new QLabel("",this);
qprogress->hide();
ui->statusbar->setMinimumWidth(200);
ui->statusbar->addPermanentWidget(qstatus,0);
ui->statusbar->addPermanentWidget(qprogress,1);
ui->statusbar->addPermanentWidget(qstatus2,0);
if (!PROFILE.Exists("ShowDebug")) PROFILE["ShowDebug"]=false;
ui->actionDebug->setChecked(PROFILE["ShowDebug"].toBool());
if (!PROFILE["ShowDebug"].toBool()) {
ui->logText->hide();
}
// TODO: Move all this to profile creation.
// This speeds up the second part of importing craploads.. later it will speed up the first part too.
if (!PROFILE.Exists("EnableMultithreading")) PROFILE["EnableMultithreading"]=QThread::idealThreadCount()>1;
if (!PROFILE.Exists("MemoryHog")) PROFILE["MemoryHog"]=false;
if (!PROFILE.Exists("EnableGraphSnapshots")) PROFILE["EnableGraphSnapshots"]=true;
if (!PROFILE.Exists("SquareWavePlots")) PROFILE["SquareWavePlots"]=false;
if (!PROFILE.Exists("EnableOximetry")) PROFILE["EnableOximetry"]=false;
if (!PROFILE.Exists("LinkGroups")) PROFILE["LinkGroups"]=false;
if (!PROFILE.Exists("AlwaysShowOverlayBars")) PROFILE["AlwaysShowOverlayBars"]=0;
if (!PROFILE.Exists("UseAntiAliasing")) PROFILE["UseAntiAliasing"]=false;
if (!PROFILE.Exists("IntentionalLeak")) PROFILE["IntentionalLeak"]=(double)0.0;
if (!PROFILE.Exists("IgnoreShorterSessions")) PROFILE["IgnoreShorterSessions"]=0;
if (!PROFILE.Exists("CombineCloserSessions")) PROFILE["CombineCloserSessions"]=0;
if (!PROFILE.Exists("DaySplitTime")) PROFILE["DaySplitTime"]=QTime(12,0,0,0);
if (!PROFILE.Exists("EventWindowSize")) PROFILE["EventWindowSize"]=4;
if (!PROFILE.Exists("SPO2DropPercentage")) PROFILE["PulseChangeDuration"]=4;
if (!PROFILE.Exists("SPO2DropDuration")) PROFILE["PulseChangeDuration"]=5;
if (!PROFILE.Exists("PulseChangeBPM")) PROFILE["PulseChangeDuration"]=5;
if (!PROFILE.Exists("PulseChangeDuration")) PROFILE["PulseChangeDuration"]=8;
if (!PROFILE.Exists("GraphHeight")) PROFILE["GraphHeight"]=180;
//ui->actionUse_AntiAliasing->setChecked(PROFILE["UseAntiAliasing"].toBool());
ui->action_Link_Graph_Groups->setChecked(PROFILE["LinkGroups"].toBool());
first_load=true;
// Using the dirty registry here. :(
QSettings settings("Jedimark", "SleepyHead");
this->restoreGeometry(settings.value("MainWindow/geometry").toByteArray());
ui->tabWidget->setCurrentWidget(ui->welcome);
netmanager = new QNetworkAccessManager(this);
connect(netmanager, SIGNAL(finished(QNetworkReply*)), this, SLOT(replyFinished(QNetworkReply*)));
connect(ui->webView, SIGNAL(statusBarMessage(QString)), this, SLOT(updatestatusBarMessage(QString)));
if (QSystemTrayIcon::isSystemTrayAvailable() && QSystemTrayIcon::supportsMessages()) {
systray=new QSystemTrayIcon(QIcon(":/docs/sheep.png"),this);
systray->show();
systraymenu=new QMenu(this);
systray->setContextMenu(systraymenu);
QAction *a=systraymenu->addAction("SleepyHead v"+PREF["VersionString"].toString());
a->setEnabled(false);
systraymenu->addSeparator();
systraymenu->addAction("About",this,SLOT(on_action_About_triggered()));
systraymenu->addAction("Check for Updates",this,SLOT(on_actionCheck_for_Updates_triggered()));
systraymenu->addSeparator();
systraymenu->addAction("Exit",this,SLOT(close()));
} else {
systray=NULL;
systraymenu=NULL;
}
}
extern MainWindow *mainwin;
MainWindow::~MainWindow()
{
if (systray) delete systray;
if (systraymenu) delete systraymenu;
//if (!isMaximized()) {
QSettings settings("Jedimark", "SleepyHead");
settings.setValue("MainWindow/geometry", saveGeometry());
//}
if (daily) {
daily->close();
delete daily;
}
if (overview) {
overview->close();
delete overview;
}
if (oximetry) {
oximetry->close();
delete oximetry;
}
DoneGraphs();
Profiles::Done();
mainwin=NULL;
delete ui;
}
void MainWindow::Notify(QString s)
{
if (systray) {
systray->showMessage("SleepyHead v"+PREF["VersionString"].toString(),s,QSystemTrayIcon::Information,5000);
} else {
ui->statusbar->showMessage(s,5000);
}
}
void MainWindow::Startup()
{
qDebug() << PREF["AppName"].toString().toAscii()+" v"+PREF["VersionString"].toString().toAscii() << "built with Qt"<< QT_VERSION_STR << "on" << __DATE__ << __TIME__;
qstatus->setText(tr("Loading Data"));
qprogress->show();
//qstatusbar->showMessage(tr("Loading Data"),0);
// profile is a global variable set in main after login
PROFILE.LoadMachineData();
daily=new Daily(ui->tabWidget,NULL,this);
ui->tabWidget->insertTab(1,daily,tr("Daily"));
overview=new Overview(ui->tabWidget,daily->graphView());
ui->tabWidget->insertTab(2,overview,tr("Overview"));
if (PROFILE["EnableOximetry"].toBool()) {
oximetry=new Oximetry(ui->tabWidget,daily->graphView());
ui->tabWidget->insertTab(3,oximetry,tr("Oximetry"));
}
if (daily) daily->ReloadGraphs();
if (overview) overview->ReloadGraphs();
qprogress->hide();
qstatus->setText("");
}
void MainWindow::on_action_Import_Data_triggered()
{
QStringList importLocations;
{
QString filename=PROFILE.Get("{DataFolder}/ImportLocations.txt");
QFile file(filename);
file.open(QFile::ReadOnly);
QTextStream textStream(&file);
while (1) {
QString line = textStream.readLine();
if (line.isNull())
break;
else if (line.isEmpty())
continue;
else {
importLocations.append(line);
}
}
file.close();
}
bool addnew=false;
QString newdir;
bool asknew=false;
if (importLocations.size()==0) {
asknew=true;
} else {
int res=QMessageBox::question(this,"Import from where?","Do you just want to Import from the usual (remembered) locations?\n","The Usual","New Location","Cancel",0,2);
if (res==1) {
asknew=true;
}
if (res==2) return;
}
if (asknew) {
QFileDialog w;
w.setFileMode(QFileDialog::DirectoryOnly);
w.setOption(QFileDialog::DontUseNativeDialog,true);
QListView *l = w.findChild<QListView*>("listView");
if (l) {
l->setSelectionMode(QAbstractItemView::MultiSelection);
}
QTreeView *t = w.findChild<QTreeView*>();
if (t) {
t->setSelectionMode(QAbstractItemView::MultiSelection);
}
if (w.exec()!=QDialog::Accepted) {
return;
}
for (int i=0;i<w.selectedFiles().size();i++) {
QString newdir=w.selectedFiles().at(i);
if (!importLocations.contains(newdir)) {
importLocations.append(newdir);
addnew=true;
}
}
/*newdir=QFileDialog::getExistingDirectory(this,"Select a folder to import","",QFileDialog::ShowDirsOnly);
if (newdir.isEmpty()) {
// inform the user or just abort?
return;
} */
}
int successful=false;
for (int i=0;i<importLocations.size();i++) {
QString dir=importLocations[i];
if (!dir.isEmpty()) {
qprogress->setValue(0);
qprogress->show();
qstatus->setText(tr("Importing Data"));
int c=PROFILE.Import(dir);
if (!c) {
mainwin->Notify("Import Problem\n\nCouldn't Find any Machine Data at this location:\n"+dir);
if (newdir==dir) addnew=false; // Don't bother asking to add it.
}
qDebug() << "Finished Importing data" << c;
if (c) {
successful=true;
}
qstatus->setText("");
qprogress->hide();
}
}
if (successful) {
PROFILE.Save();
if (daily) daily->ReloadGraphs();
if (overview) overview->ReloadGraphs();
if (addnew && (QMessageBox::question(this,"Remember this Location?","Would you like to remember this import location for next time?\n"+newdir,QMessageBox::Yes,QMessageBox::No)==QMessageBox::Yes)) {
QString filename=PROFILE.Get("{DataFolder}/ImportLocations.txt");
QFile file(filename);
file.open(QFile::WriteOnly);
QTextStream ts(&file);
for (int i=0;i<importLocations.size();i++) {
ts << importLocations[i] << endl;
//file.write(importLocations[i].toUtf8());
}
file.close();
}
}
}
QMenu * MainWindow::CreateMenu(QString title)
{
QMenu *menu=new QMenu(title,ui->menubar);
ui->menubar->insertMenu(ui->menu_Help->menuAction(),menu);
return menu;
}
void MainWindow::on_actionView_Welcome_triggered()
{
ui->tabWidget->setCurrentWidget(ui->welcome);
}
void MainWindow::on_action_Fullscreen_triggered()
{
if (ui->action_Fullscreen->isChecked())
this->showFullScreen();
else
this->showNormal();
}
void MainWindow::on_homeButton_clicked()
{
QString file="qrc:/docs/index.html";
QUrl url(file);
ui->webView->setUrl(url);
}
void MainWindow::on_backButton_clicked()
{
ui->webView->back();
}
void MainWindow::on_forwardButton_clicked()
{
ui->webView->forward();
}
void MainWindow::on_webView_urlChanged(const QUrl &arg1)
{
ui->urlBar->setEditText(arg1.toString());
}
void MainWindow::on_urlBar_activated(const QString &arg1)
{
QUrl url(arg1);
ui->webView->setUrl(url);
}
void MainWindow::on_dailyButton_clicked()
{
ui->tabWidget->setCurrentWidget(daily);
daily->RedrawGraphs();
qstatus2->setText("Daily");
}
void MainWindow::JumpDaily()
{
on_dailyButton_clicked();
}
void MainWindow::on_overviewButton_clicked()
{
ui->tabWidget->setCurrentWidget(overview);
qstatus2->setText("Overview");
}
void MainWindow::on_webView_loadFinished(bool arg1)
{
arg1=arg1;
qprogress->hide();
if (first_load) {
QTimer::singleShot(0,this,SLOT(Startup()));
first_load=false;
} else {
qstatus->setText("");
}
ui->backButton->setEnabled(ui->webView->history()->canGoBack());
ui->forwardButton->setEnabled(ui->webView->history()->canGoForward());
}
void MainWindow::on_webView_loadStarted()
{
if (!first_load) {
qstatus->setText(tr("Loading"));
qprogress->reset();
qprogress->show();
}
}
void MainWindow::on_webView_loadProgress(int progress)
{
qprogress->setValue(progress);
}
void MainWindow::on_action_About_triggered()
{
QString gitrev=QString(GIT_REVISION);
if (!gitrev.isEmpty()) gitrev="Revision: "+gitrev;
QString msg=tr("<html><body><div align='center'><h2>SleepyHead v%1.%2.%3</h2>Build Date: %4 %5<br/>%6<hr>"
"Copyright &copy;2011 Mark Watkins (jedimark) <br> \n"
"<a href='http://sleepyhead.sourceforge.net'>http://sleepyhead.sourceforge.net</a> <hr>"
"This software is released under the GNU Public License <br>"
"<i>This software comes with absolutely no warranty, either express of implied. It comes with no guarantee of fitness for any particular purpose. No guarantees are made regarding the accuracy of any data this program displays."
"</div></body></html>").arg(major_version).arg(minor_version).arg(revision_number).arg(__DATE__).arg(__TIME__).arg(gitrev);
QMessageBox msgbox(QMessageBox::Information,tr("About SleepyHead"),"",QMessageBox::Ok,this);
msgbox.setTextFormat(Qt::RichText);
msgbox.setText(msg);
msgbox.exec();
}
void MainWindow::on_actionDebug_toggled(bool checked)
{
PROFILE["ShowDebug"]=checked;
if (checked) {
ui->logText->show();
} else {
ui->logText->hide();
}
}
void MainWindow::on_action_Reset_Graph_Layout_triggered()
{
if (daily && (ui->tabWidget->currentWidget()==daily)) daily->ResetGraphLayout();
if (overview && (ui->tabWidget->currentWidget()==overview)) overview->ResetGraphLayout();
}
void MainWindow::on_action_Preferences_triggered()
{
PreferencesDialog pd(this,p_profile);
prefdialog=&pd;
if (pd.exec()==PreferencesDialog::Accepted) {
qDebug() << "Preferences Accepted";
pd.Save();
if (daily) {
//daily->ReloadGraphs();
daily->RedrawGraphs();
}
if (overview) {
overview->ReloadGraphs();
overview->RedrawGraphs();
}
}
prefdialog=NULL;
}
void MainWindow::on_oximetryButton_clicked()
{
bool first=false;
if (!oximetry) {
if (!PROFILE.Exists("EnableOximetry") || !PROFILE["EnableOximetry"].toBool()) {
if (QMessageBox::question(this,"Question","Do you have a CMS50[x] Oximeter?\nOne is required to use this section.",QMessageBox::Yes,QMessageBox::No)==QMessageBox::No) return;
PROFILE["EnableOximetry"]=true;
}
oximetry=new Oximetry(ui->tabWidget,daily->graphView());
ui->tabWidget->insertTab(3,oximetry,tr("Oximetry"));
first=true;
}
ui->tabWidget->setCurrentWidget(oximetry);
if (!first) oximetry->RedrawGraphs();
qstatus2->setText("Oximetry");
}
void MainWindow::CheckForUpdates()
{
mainwin->Notify("Checking for Updates");
on_actionCheck_for_Updates_triggered();
}
void MainWindow::on_actionCheck_for_Updates_triggered()
{
if (PREF.Exists("Updates_LastChecked")) {
if (PREF["Updates_LastChecked"].toDateTime().secsTo(QDateTime::currentDateTime())<7200) {
// Instead of doing this, just use the cached crud
if (prefdialog) prefdialog->RefreshLastChecked();
mainwin->Notify("No New Updates - You already checked recently...");
return;
}
}
netmanager->get(QNetworkRequest(QUrl("http://sleepyhead.sourceforge.net/current_version.txt")));
}
void MainWindow::replyFinished(QNetworkReply * reply)
{
if (reply->error()==QNetworkReply::NoError) {
// Wrap this crap in XML/JSON so can do other stuff.
if (reply->size()>20) {
qDebug() << "Doesn't look like a version file... :(";
} else {
// check in size
QByteArray data=reply->readAll();
QString a=data;
a=a.trimmed();
PREF["Updates_LastChecked"]=QDateTime::currentDateTime();
if (prefdialog) prefdialog->RefreshLastChecked();
if (a>PREF["VersionString"].toString()) {
if (QMessageBox::question(this,"New Version","A newer version of SleepyHead is available, v"+a+".\nWould you like to update?",QMessageBox::Yes,QMessageBox::No)==QMessageBox::Yes) {
QMessageBox::information(this,"Laziness Warning","I'd love to do it for you automatically, but it's not implemented yet.. :)",QMessageBox::Ok);
}
} else {
mainwin->Notify("Checked for Updates: SleepyHead is already up to date!");
}
}
} else {
qDebug() << "Network Error:" << reply->errorString();
}
reply->deleteLater();
}
void MainWindow::on_action_Screenshot_triggered()
{
QTimer::singleShot(250,this,SLOT(DelayedScreenshot()));
}
void MainWindow::DelayedScreenshot()
{
QPixmap pixmap = QPixmap::grabWindow(this->winId());
QString a=PREF.Get("{home}")+"/Screenshots";
QDir dir(a);
if (!dir.exists()){
dir.mkdir(a);
}
a+="/screenshot-"+QDateTime::currentDateTime().toString(Qt::ISODate)+".png";
pixmap.save(a);
}
void MainWindow::on_actionView_O_ximetry_triggered()
{
on_oximetryButton_clicked();
}
void MainWindow::updatestatusBarMessage (const QString & text)
{
ui->statusbar->showMessage(text,1000);
}
void MainWindow::on_actionPrint_Report_triggered()
{
if (ui->tabWidget->currentWidget()==overview) {
overview->on_printButton_clicked();
//} else if (ui->tabWidget->currentWidget()==daily) {
} else {
QMessageBox::information(this,"Not supported Yet","Sorry, printing from this page is not supported yet",QMessageBox::Ok);
}
}
void MainWindow::on_action_Edit_Profile_triggered()
{
NewProfile newprof(this);
newprof.edit(PREF["Profile"].toString());
newprof.exec();
}
void MainWindow::on_action_Link_Graph_Groups_toggled(bool arg1)
{
PROFILE["LinkGroups"]=arg1;
if (daily) daily->RedrawGraphs();
}
void MainWindow::on_action_CycleTabs_triggered()
{
int i;
qDebug() << "Switching Tabs";
i=ui->tabWidget->currentIndex()+1;
if (i >= ui->tabWidget->count())
i=0;
ui->tabWidget->setCurrentIndex(i);
}
void MainWindow::on_actionExp_ort_triggered()
{
ExportCSV ex(this);
if (ex.exec()==ExportCSV::Accepted) {
}
}
void MainWindow::on_actionOnline_Users_Guide_triggered()
{
ui->webView->load(QUrl("http://sourceforge.net/apps/mediawiki/sleepyhead/index.php?title=SleepyHead_Users_Guide"));
ui->tabWidget->setCurrentIndex(0);
}
void MainWindow::on_action_Frequently_Asked_Questions_triggered()
{
ui->webView->load(QUrl("http://sourceforge.net/apps/mediawiki/sleepyhead/index.php?title=Frequently_Asked_Questions"));
ui->tabWidget->setCurrentIndex(0);
}
void MainWindow::on_action_Rebuild_Oximetry_Index_triggered()
{
Day *day;
QMap<QDate,QVector<Day *> >::iterator z;
QHash<Machine *,QString> machines;
QVector<QString> valid;
valid.push_back(OXI_Pulse);
valid.push_back(OXI_SPO2);
valid.push_back(OXI_Plethy);
valid.push_back(OXI_PulseChange);
valid.push_back(OXI_SPO2Drop);
QVector<QString> invalid;
for (z=p_profile->daylist.begin();z!=p_profile->daylist.end();z++) {
for (int y=0;y<z.value().size();y++) {
day=z.value()[y];
if (day->machine->GetType()!=MT_OXIMETER) continue;
for (int s=0;s<day->getSessions().size();s++) {
Session *sess=day->getSessions()[s];
machines[sess->machine()]=sess->machine()->GetClass();
invalid.clear();
for (QHash<ChannelID,QVector<EventList *> >::iterator e=sess->eventlist.begin();e!=sess->eventlist.end();e++) {
if (!valid.contains(e.key())) {
invalid.push_back(e.key());
}
}
for (int i=0;i<invalid.size();i++) {
sess->eventlist.erase(sess->eventlist.find(invalid[i]));
}
sess->m_sum.clear();
sess->m_min.clear();
sess->m_max.clear();
sess->m_cph.clear();
sess->m_sph.clear();
sess->m_avg.clear();
sess->m_wavg.clear();
sess->m_90p.clear();
sess->m_firstchan.clear();
sess->m_lastchan.clear();
sess->SetChanged(true);
}
}
}
for (QHash<Machine *,QString>::iterator i=machines.begin();i!=machines.end();i++) {
Machine *m=i.key();
m->Save();
}
getDaily()->ReloadGraphs();
getOverview()->ReloadGraphs();
}