From 7d6947e93b40fb4660bc78e3cc8a700a62269e00 Mon Sep 17 00:00:00 2001 From: Mark Watkins Date: Sat, 3 Dec 2011 15:27:57 +1000 Subject: [PATCH] Added File->Change User (Log-out) menu option --- mainwindow.cpp | 42 ++++++++++++++++++++++++++++++++++++++---- mainwindow.h | 2 ++ mainwindow.ui | 7 +++++++ 3 files changed, 47 insertions(+), 4 deletions(-) diff --git a/mainwindow.cpp b/mainwindow.cpp index 0c9fd9c9..6c0045e8 100644 --- a/mainwindow.cpp +++ b/mainwindow.cpp @@ -20,6 +20,7 @@ #include #include #include +#include #include #include "mainwindow.h" @@ -735,7 +736,7 @@ void MainWindow::PrintReport(gGraphView *gv,QString name, QDate date) int m=(tt/60)%60; int s=tt % 60; - cpapinfo+="Mask Time: "+QString().sprintf("%2i hours %2i minutes",h,m)+"\n"; + cpapinfo+="Mask Time: "+QString().sprintf("%2i hours %2i minutes, %2i seconds",h,m,s)+"\n"; cpapinfo+="Bedtime: "+QDateTime::fromTime_t(f).time().toString("HH:mm:ss")+"\n"; cpapinfo+="Wake-up: "+QDateTime::fromTime_t(l).time().toString("HH:mm:ss")+"\n\n"; float ahi=(cpap->count(CPAP_Obstructive)+cpap->count(CPAP_Hypopnea)+cpap->count(CPAP_ClearAirway)+cpap->count(CPAP_Apnea))/cpap->hours(); @@ -830,7 +831,6 @@ void MainWindow::PrintReport(gGraphView *gv,QString name, QDate date) void MainWindow::on_action_Rebuild_Oximetry_Index_triggered() { - Day *day; QVector valid; valid.push_back(OXI_Pulse); valid.push_back(OXI_SPO2); @@ -862,10 +862,9 @@ void MainWindow::on_action_Rebuild_Oximetry_Index_triggered() e.value().clear(); invalid.push_back(e.key()); } else { - int i=0; QVector newlist; for (int i=0;icount() > discard_threshold) { + if (e.value()[i]->count() > (unsigned)discard_threshold) { newlist.push_back(e.value()[i]); } else { delete e.value()[i]; @@ -908,3 +907,38 @@ void MainWindow::on_action_Rebuild_Oximetry_Index_triggered() getDaily()->ReloadGraphs(); getOverview()->ReloadGraphs(); } + +void MainWindow::on_actionChange_User_triggered() +{ + PROFILE.Save(); + PREF.Save(); + QString apppath; +#ifdef Q_OS_MAC + // In Mac OS the full path of aplication binary is: + // /myApp.app/Contents/MacOS/myApp + + // prune the extra bits to just get the app bundle path + apppath=QApplication::instance()->applicationDirPath().section("/",0,-3); + + QStringList args; + args << "-n" << apppath; // -n option is important, as it opens a new process + + if (QProcess::startDetached("/usr/bin/open",args)) { + QApplication::instance()->exit(); + } else QMessageBox::warning(this,"Gah!","If you can read this, the restart command didn't work. Your going to have to do it yourself manually.",QMessageBox::Ok); + +#else + apppath=QApplication::instance()->applicationFilePath(); + + // If this doesn't work on windoze, try uncommenting this method + // Technically should be the same thing.. + + //if (QDesktopServices::openUrl(apppath)) { + // QApplication::instance()->exit(); + //} else + if (QProcess::startDetached(apppath)) { + QApplication::instance()->exit(); + } else QMessageBox::warning(this,"Gah!","If you can read this, the restart command didn't work. Your going to have to do it yourself manually.",QMessageBox::Ok); +#endif + +} diff --git a/mainwindow.h b/mainwindow.h index 9bceebfe..fe847e2e 100644 --- a/mainwindow.h +++ b/mainwindow.h @@ -114,6 +114,8 @@ private slots: void on_action_Rebuild_Oximetry_Index_triggered(); + void on_actionChange_User_triggered(); + private: Ui::MainWindow *ui; diff --git a/mainwindow.ui b/mainwindow.ui index 8391aa6e..174ab1ff 100644 --- a/mainwindow.ui +++ b/mainwindow.ui @@ -580,6 +580,8 @@ + + @@ -772,6 +774,11 @@ &Rebuild Oximetry Indices + + + Change &User + +