2011-06-28 15:25:20 +00:00
/*
2011-06-26 08:30:44 +00:00
MainWindow Implementation
Copyright ( c ) 2011 Mark Watkins < jedimark @ users . sourceforge . net >
License : GPL
2011-06-28 15:25:20 +00:00
*/
2011-06-26 08:30:44 +00:00
# include <QGLFormat>
# include <QFileDialog>
# include <QMessageBox>
# include <QResource>
# include <QProgressBar>
2011-06-27 10:46:33 +00:00
# include <QWebHistory>
2011-09-06 07:33:34 +00:00
# include <QNetworkRequest>
# include <QNetworkReply>
2011-06-27 06:26:29 +00:00
# include <QTimer>
2011-10-05 03:05:35 +00:00
# include <QSettings>
2011-11-08 15:47:54 +00:00
# include <QPixmap>
# include <QDesktopWidget>
2011-11-25 06:56:39 +00:00
# include <QListView>
2011-12-01 15:40:32 +00:00
# include <QPrinter>
2011-12-02 14:36:40 +00:00
# include <QPrintDialog>
2011-12-01 15:40:32 +00:00
# include <QPainter>
2011-12-03 05:27:57 +00:00
# include <QProcess>
2011-12-12 14:06:08 +00:00
# include <QFontMetrics>
2011-12-01 17:23:19 +00:00
# include <cmath>
2011-11-08 15:47:54 +00:00
2011-06-26 08:30:44 +00:00
# include "mainwindow.h"
# include "ui_mainwindow.h"
2011-10-02 03:38:51 +00:00
# include "newprofile.h"
2011-11-14 14:10:46 +00:00
# include "exportcsv.h"
2011-09-17 12:39:00 +00:00
# include "SleepLib/schema.h"
2011-06-26 08:30:44 +00:00
# include "Graphs/glcommon.h"
2011-12-16 18:15:57 +00:00
# include "UpdaterWindow.h"
2011-06-26 08:30:44 +00:00
QProgressBar * qprogress ;
QLabel * qstatus ;
2011-07-19 05:05:02 +00:00
QLabel * qstatus2 ;
2011-07-19 02:52:03 +00:00
QStatusBar * qstatusbar ;
2011-06-26 08:30:44 +00:00
2011-10-05 07:41:56 +00:00
extern Profile * profile ;
2011-07-17 15:57:45 +00:00
void MainWindow : : Log ( QString s )
{
2011-09-05 02:30:10 +00:00
2011-09-19 11:13:28 +00:00
if ( ! strlock . tryLock ( ) )
return ;
// strlock.lock();
2011-09-18 14:43:15 +00:00
QString tmp = QString ( " %1: %2 " ) . arg ( logtime . elapsed ( ) , 5 , 10 , QChar ( ' 0 ' ) ) . arg ( s ) ;
2011-09-05 02:30:10 +00:00
2011-09-18 14:43:15 +00:00
logbuffer . append ( tmp ) ; //QStringList appears not to be threadsafe
2011-09-05 02:30:10 +00:00
strlock . unlock ( ) ;
strlock . lock ( ) ;
2011-09-18 14:43:15 +00:00
// only do this in the main thread?
for ( int i = 0 ; i < logbuffer . size ( ) ; i + + )
ui - > logText - > appendPlainText ( logbuffer [ i ] ) ;
logbuffer . clear ( ) ;
2011-09-05 02:30:10 +00:00
strlock . unlock ( ) ;
2011-09-18 14:43:15 +00:00
//loglock.unlock();
2011-09-05 02:30:10 +00:00
2011-07-17 15:57:45 +00:00
}
2011-06-26 08:30:44 +00:00
MainWindow : : MainWindow ( QWidget * parent ) :
QMainWindow ( parent ) ,
ui ( new Ui : : MainWindow )
{
2011-10-05 07:41:56 +00:00
Q_ASSERT ( p_profile ! = NULL ) ;
2011-09-18 14:43:15 +00:00
logtime . start ( ) ;
2011-06-26 08:30:44 +00:00
ui - > setupUi ( this ) ;
2011-11-08 15:03:39 +00:00
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 ( ) ) ) ;
2011-07-17 15:57:45 +00:00
ui - > tabWidget - > setCurrentIndex ( 0 ) ;
2011-11-08 15:47:54 +00:00
2011-10-05 03:05:35 +00:00
overview = NULL ;
daily = NULL ;
oximetry = NULL ;
2011-10-21 05:50:31 +00:00
prefdialog = NULL ;
2011-07-22 13:46:17 +00:00
2011-07-19 02:52:03 +00:00
qstatusbar = ui - > statusbar ;
2011-06-26 08:30:44 +00:00
qprogress = new QProgressBar ( this ) ;
qprogress - > setMaximum ( 100 ) ;
2011-07-19 05:05:02 +00:00
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 ) ;
2011-06-27 06:26:29 +00:00
qstatus = new QLabel ( " " , this ) ;
qprogress - > hide ( ) ;
2011-07-19 05:05:02 +00:00
ui - > statusbar - > setMinimumWidth ( 200 ) ;
ui - > statusbar - > addPermanentWidget ( qstatus , 0 ) ;
2011-07-30 02:08:19 +00:00
ui - > statusbar - > addPermanentWidget ( qprogress , 1 ) ;
2011-07-30 01:51:52 +00:00
ui - > statusbar - > addPermanentWidget ( qstatus2 , 0 ) ;
2011-07-22 13:46:17 +00:00
2011-10-05 12:45:40 +00:00
if ( ! PROFILE . Exists ( " ShowDebug " ) ) PROFILE [ " ShowDebug " ] = false ;
2011-10-05 07:41:56 +00:00
ui - > actionDebug - > setChecked ( PROFILE [ " ShowDebug " ] . toBool ( ) ) ;
2011-07-17 15:57:45 +00:00
2011-10-05 07:41:56 +00:00
if ( ! PROFILE [ " ShowDebug " ] . toBool ( ) ) {
2011-07-17 16:07:37 +00:00
ui - > logText - > hide ( ) ;
}
2011-10-08 13:56:33 +00:00
// TODO: Move all this to profile creation.
2011-09-11 11:03:37 +00:00
// This speeds up the second part of importing craploads.. later it will speed up the first part too.
2011-10-05 07:41:56 +00:00
if ( ! PROFILE . Exists ( " EnableMultithreading " ) ) PROFILE [ " EnableMultithreading " ] = QThread : : idealThreadCount ( ) > 1 ;
2011-10-08 13:56:33 +00:00
2011-10-05 07:41:56 +00:00
if ( ! PROFILE . Exists ( " MemoryHog " ) ) PROFILE [ " MemoryHog " ] = false ;
2011-11-21 10:20:11 +00:00
if ( ! PROFILE . Exists ( " EnableGraphSnapshots " ) ) PROFILE [ " EnableGraphSnapshots " ] = true ;
if ( ! PROFILE . Exists ( " SquareWavePlots " ) ) PROFILE [ " SquareWavePlots " ] = false ;
2011-10-12 03:17:40 +00:00
if ( ! PROFILE . Exists ( " EnableOximetry " ) ) PROFILE [ " EnableOximetry " ] = false ;
2011-10-08 13:56:33 +00:00
if ( ! PROFILE . Exists ( " LinkGroups " ) ) PROFILE [ " LinkGroups " ] = false ;
2011-10-05 07:41:56 +00:00
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 ) ;
2011-11-18 08:33:31 +00:00
if ( ! PROFILE . Exists ( " EventWindowSize " ) ) PROFILE [ " EventWindowSize " ] = 4 ;
2011-11-28 04:05:09 +00:00
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 ;
2011-11-30 12:58:41 +00:00
if ( ! PROFILE . Exists ( " GraphHeight " ) ) PROFILE [ " GraphHeight " ] = 180 ;
2011-12-02 01:04:26 +00:00
if ( ! PROFILE . Exists ( " OxiDiscardThreshold " ) ) PROFILE [ " OxiDiscardThreshold " ] = 10 ;
2011-07-28 07:32:02 +00:00
2011-10-05 07:41:56 +00:00
//ui->actionUse_AntiAliasing->setChecked(PROFILE["UseAntiAliasing"].toBool());
2011-10-07 05:28:35 +00:00
ui - > action_Link_Graph_Groups - > setChecked ( PROFILE [ " LinkGroups " ] . toBool ( ) ) ;
2011-07-18 03:36:26 +00:00
2011-09-23 03:54:48 +00:00
first_load = true ;
2011-10-05 07:41:56 +00:00
// Using the dirty registry here. :(
2011-10-05 03:05:35 +00:00
QSettings settings ( " Jedimark " , " SleepyHead " ) ;
this - > restoreGeometry ( settings . value ( " MainWindow/geometry " ) . toByteArray ( ) ) ;
2011-09-10 14:17:45 +00:00
2011-07-24 07:58:20 +00:00
ui - > tabWidget - > setCurrentWidget ( ui - > welcome ) ;
2011-06-26 08:30:44 +00:00
2011-09-06 07:33:34 +00:00
netmanager = new QNetworkAccessManager ( this ) ;
connect ( netmanager , SIGNAL ( finished ( QNetworkReply * ) ) , this , SLOT ( replyFinished ( QNetworkReply * ) ) ) ;
2011-09-11 06:16:45 +00:00
connect ( ui - > webView , SIGNAL ( statusBarMessage ( QString ) ) , this , SLOT ( updatestatusBarMessage ( QString ) ) ) ;
2011-09-17 12:39:00 +00:00
2011-10-21 07:06:06 +00:00
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 ;
}
2011-07-24 07:58:20 +00:00
}
extern MainWindow * mainwin ;
2011-06-26 08:30:44 +00:00
MainWindow : : ~ MainWindow ( )
{
2011-10-21 07:06:06 +00:00
if ( systray ) delete systray ;
if ( systraymenu ) delete systraymenu ;
2011-10-05 11:51:33 +00:00
//if (!isMaximized()) {
2011-10-05 03:05:35 +00:00
QSettings settings ( " Jedimark " , " SleepyHead " ) ;
settings . setValue ( " MainWindow/geometry " , saveGeometry ( ) ) ;
2011-10-05 11:51:33 +00:00
//}
2011-06-26 08:30:44 +00:00
if ( daily ) {
daily - > close ( ) ;
delete daily ;
}
2011-09-07 08:35:55 +00:00
if ( overview ) {
2011-06-26 08:30:44 +00:00
overview - > close ( ) ;
delete overview ;
2011-09-07 08:35:55 +00:00
}
2011-07-13 05:27:27 +00:00
if ( oximetry ) {
oximetry - > close ( ) ;
delete oximetry ;
2011-07-29 14:58:44 +00:00
}
2011-06-28 01:51:21 +00:00
DoneGraphs ( ) ;
2011-06-26 08:30:44 +00:00
Profiles : : Done ( ) ;
2011-07-24 07:58:20 +00:00
mainwin = NULL ;
delete ui ;
2011-06-26 08:30:44 +00:00
}
2011-12-16 16:31:58 +00:00
void MainWindow : : Notify ( QString s , int ms , QString title )
2011-10-21 07:06:06 +00:00
{
if ( systray ) {
2011-12-16 16:31:58 +00:00
systray - > showMessage ( title , s , QSystemTrayIcon : : Information , ms ) ;
2011-10-21 07:06:06 +00:00
} else {
2011-12-03 08:52:24 +00:00
ui - > statusbar - > showMessage ( s , ms ) ;
2011-10-21 07:06:06 +00:00
}
}
2011-06-26 08:30:44 +00:00
2011-06-27 06:26:29 +00:00
void MainWindow : : Startup ( )
{
2011-12-16 16:31:58 +00:00
qDebug ( ) < < PREF [ " AppName " ] . toString ( ) . toAscii ( ) + " v " + VersionString ( ) . toAscii ( ) < < " built with Qt " < < QT_VERSION_STR < < " on " < < __DATE__ < < __TIME__ ;
2011-06-27 15:00:00 +00:00
qstatus - > setText ( tr ( " Loading Data " ) ) ;
2011-06-27 06:26:29 +00:00
qprogress - > show ( ) ;
2011-07-24 07:58:20 +00:00
//qstatusbar->showMessage(tr("Loading Data"),0);
2011-06-27 06:26:29 +00:00
2011-10-05 07:41:56 +00:00
// profile is a global variable set in main after login
PROFILE . LoadMachineData ( ) ;
2011-06-27 06:26:29 +00:00
2011-12-08 14:47:10 +00:00
SnapshotGraph = new gGraphView ( this ) ; //daily->graphView());
2011-12-14 06:39:03 +00:00
//SnapshotGraph->setMaximumSize(1024,512);
//SnapshotGraph->setMinimumSize(1024,512);
2011-12-08 14:47:10 +00:00
SnapshotGraph - > hide ( ) ;
2011-10-05 07:41:56 +00:00
daily = new Daily ( ui - > tabWidget , NULL , this ) ;
2011-09-02 05:13:07 +00:00
ui - > tabWidget - > insertTab ( 1 , daily , tr ( " Daily " ) ) ;
2011-11-27 14:35:25 +00:00
overview = new Overview ( ui - > tabWidget , daily - > graphView ( ) ) ;
2011-10-05 03:11:18 +00:00
ui - > tabWidget - > insertTab ( 2 , overview , tr ( " Overview " ) ) ;
2011-10-12 03:17:40 +00:00
if ( PROFILE [ " EnableOximetry " ] . toBool ( ) ) {
2011-11-27 14:35:25 +00:00
oximetry = new Oximetry ( ui - > tabWidget , daily - > graphView ( ) ) ;
2011-10-12 03:17:40 +00:00
ui - > tabWidget - > insertTab ( 3 , oximetry , tr ( " Oximetry " ) ) ;
}
2011-12-01 15:40:32 +00:00
2011-07-24 07:58:20 +00:00
if ( daily ) daily - > ReloadGraphs ( ) ;
2011-09-10 15:43:40 +00:00
if ( overview ) overview - > ReloadGraphs ( ) ;
2011-06-27 06:26:29 +00:00
qprogress - > hide ( ) ;
2011-07-30 01:51:52 +00:00
qstatus - > setText ( " " ) ;
2011-06-27 06:26:29 +00:00
}
2011-06-26 08:30:44 +00:00
void MainWindow : : on_action_Import_Data_triggered ( )
{
2011-11-20 23:39:55 +00:00
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 ) ;
}
2011-11-21 02:15:10 +00:00
}
2011-11-20 23:39:55 +00:00
file . close ( ) ;
}
2011-12-08 11:41:44 +00:00
//bool addnew=false;
2011-11-20 23:39:55 +00:00
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 ;
2011-08-07 12:14:30 +00:00
}
2011-11-20 23:39:55 +00:00
if ( res = = 2 ) return ;
}
2011-12-03 05:10:23 +00:00
QStringList importFrom = importLocations ;
2011-11-20 23:39:55 +00:00
if ( asknew ) {
2011-11-25 06:56:39 +00:00
QFileDialog w ;
2011-12-13 12:49:48 +00:00
w . setFileMode ( QFileDialog : : Directory ) ;
w . setOption ( QFileDialog : : ShowDirsOnly , true ) ;
# if defined(Q_WS_MAC) && (QT_VERSION_CHECK(4,8,0) > QT_VERSION)
// Fix for tetragon, 10.6 barfs up Qt's custom dialog
2011-11-28 22:49:43 +00:00
w . setOption ( QFileDialog : : DontUseNativeDialog , true ) ;
2011-12-13 12:49:48 +00:00
# else
w . setOption ( QFileDialog : : DontUseNativeDialog , false ) ;
2011-11-25 06:56:39 +00:00
QListView * l = w . findChild < QListView * > ( " listView " ) ;
if ( l ) {
l - > setSelectionMode ( QAbstractItemView : : MultiSelection ) ;
}
QTreeView * t = w . findChild < QTreeView * > ( ) ;
if ( t ) {
t - > setSelectionMode ( QAbstractItemView : : MultiSelection ) ;
}
2011-12-13 12:49:48 +00:00
# endif
2011-11-25 06:56:39 +00:00
if ( w . exec ( ) ! = QDialog : : Accepted ) {
2011-11-20 23:39:55 +00:00
return ;
}
2011-11-25 06:56:39 +00:00
for ( int i = 0 ; i < w . selectedFiles ( ) . size ( ) ; i + + ) {
QString newdir = w . selectedFiles ( ) . at ( i ) ;
2011-12-03 05:10:23 +00:00
if ( ! importFrom . contains ( newdir ) ) {
importFrom . append ( newdir ) ;
2011-12-08 11:41:44 +00:00
//addnew=true;
2011-11-25 06:56:39 +00:00
}
2011-06-30 04:55:20 +00:00
}
2011-11-20 23:39:55 +00:00
}
2011-06-26 08:30:44 +00:00
2011-11-20 23:39:55 +00:00
int successful = false ;
2011-12-03 05:10:23 +00:00
QStringList goodlocations ;
for ( int i = 0 ; i < importFrom . size ( ) ; i + + ) {
QString dir = importFrom [ i ] ;
2011-11-20 23:39:55 +00:00
if ( ! dir . isEmpty ( ) ) {
qprogress - > setValue ( 0 ) ;
qprogress - > show ( ) ;
qstatus - > setText ( tr ( " Importing Data " ) ) ;
int c = PROFILE . Import ( dir ) ;
qDebug ( ) < < " Finished Importing data " < < c ;
if ( c ) {
2011-12-03 05:10:23 +00:00
if ( ! importLocations . contains ( dir ) )
goodlocations . push_back ( dir ) ;
2011-11-20 23:39:55 +00:00
successful = true ;
}
qstatus - > setText ( " " ) ;
qprogress - > hide ( ) ;
}
}
if ( successful ) {
PROFILE . Save ( ) ;
if ( daily ) daily - > ReloadGraphs ( ) ;
if ( overview ) overview - > ReloadGraphs ( ) ;
2011-12-03 05:10:23 +00:00
if ( ( goodlocations . size ( ) > 0 ) & & ( 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 ) ) {
for ( int i = 0 ; i < goodlocations . size ( ) ; i + + ) {
importLocations . push_back ( goodlocations [ i ] ) ;
}
2011-11-20 23:39:55 +00:00
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 ( ) ;
}
2011-12-03 05:10:23 +00:00
} else {
mainwin - > Notify ( " Import Problem \n \n Couldn't find any new Machine Data at the locations given " ) ;
2011-06-26 08:30:44 +00:00
}
}
2011-07-30 04:54:22 +00:00
QMenu * MainWindow : : CreateMenu ( QString title )
{
QMenu * menu = new QMenu ( title , ui - > menubar ) ;
ui - > menubar - > insertMenu ( ui - > menu_Help - > menuAction ( ) , menu ) ;
return menu ;
}
2011-06-26 08:30:44 +00:00
void MainWindow : : on_actionView_Welcome_triggered ( )
{
2011-06-27 15:00:00 +00:00
ui - > tabWidget - > setCurrentWidget ( ui - > welcome ) ;
2011-06-26 08:30:44 +00:00
}
void MainWindow : : on_action_Fullscreen_triggered ( )
{
if ( ui - > action_Fullscreen - > isChecked ( ) )
this - > showFullScreen ( ) ;
else
this - > showNormal ( ) ;
}
void MainWindow : : on_homeButton_clicked ( )
{
2011-06-26 11:49:40 +00:00
QString file = " qrc:/docs/index.html " ;
2011-06-26 08:30:44 +00:00
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 ) ;
2011-09-02 02:00:04 +00:00
daily - > RedrawGraphs ( ) ;
2011-09-13 04:36:49 +00:00
qstatus2 - > setText ( " Daily " ) ;
2011-06-26 08:30:44 +00:00
}
2011-10-28 03:45:31 +00:00
void MainWindow : : JumpDaily ( )
{
on_dailyButton_clicked ( ) ;
}
2011-06-26 08:30:44 +00:00
void MainWindow : : on_overviewButton_clicked ( )
{
2011-09-07 09:15:33 +00:00
ui - > tabWidget - > setCurrentWidget ( overview ) ;
2011-09-13 04:36:49 +00:00
qstatus2 - > setText ( " Overview " ) ;
2011-06-26 08:30:44 +00:00
}
void MainWindow : : on_webView_loadFinished ( bool arg1 )
{
2011-07-01 10:10:44 +00:00
arg1 = arg1 ;
2011-06-26 08:30:44 +00:00
qprogress - > hide ( ) ;
2011-06-27 06:26:29 +00:00
if ( first_load ) {
QTimer : : singleShot ( 0 , this , SLOT ( Startup ( ) ) ) ;
first_load = false ;
} else {
2011-07-30 01:51:52 +00:00
qstatus - > setText ( " " ) ;
2011-06-27 06:26:29 +00:00
}
2011-06-27 10:46:33 +00:00
ui - > backButton - > setEnabled ( ui - > webView - > history ( ) - > canGoBack ( ) ) ;
ui - > forwardButton - > setEnabled ( ui - > webView - > history ( ) - > canGoForward ( ) ) ;
2011-06-26 08:30:44 +00:00
}
void MainWindow : : on_webView_loadStarted ( )
{
2011-06-27 06:26:29 +00:00
if ( ! first_load ) {
2011-06-27 15:00:00 +00:00
qstatus - > setText ( tr ( " Loading " ) ) ;
2011-06-27 06:26:29 +00:00
qprogress - > reset ( ) ;
qprogress - > show ( ) ;
}
2011-06-26 08:30:44 +00:00
}
void MainWindow : : on_webView_loadProgress ( int progress )
{
qprogress - > setValue ( progress ) ;
}
2011-06-26 16:35:54 +00:00
void MainWindow : : on_action_About_triggered ( )
{
2011-11-08 15:03:39 +00:00
2011-11-15 02:14:44 +00:00
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> "
2011-07-15 10:01:28 +00:00
" Copyright ©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. "
2011-11-15 02:14:44 +00:00
" </div></body></html> " ) . arg ( major_version ) . arg ( minor_version ) . arg ( revision_number ) . arg ( __DATE__ ) . arg ( __TIME__ ) . arg ( gitrev ) ;
2011-06-27 15:00:00 +00:00
QMessageBox msgbox ( QMessageBox : : Information , tr ( " About SleepyHead " ) , " " , QMessageBox : : Ok , this ) ;
2011-06-26 16:35:54 +00:00
msgbox . setTextFormat ( Qt : : RichText ) ;
msgbox . setText ( msg ) ;
msgbox . exec ( ) ;
}
2011-06-27 15:00:00 +00:00
2011-07-17 15:57:45 +00:00
void MainWindow : : on_actionDebug_toggled ( bool checked )
{
2011-10-05 07:41:56 +00:00
PROFILE [ " ShowDebug " ] = checked ;
2011-07-17 15:57:45 +00:00
if ( checked ) {
2011-07-17 16:05:16 +00:00
ui - > logText - > show ( ) ;
2011-07-17 15:57:45 +00:00
} else {
2011-07-17 16:05:16 +00:00
ui - > logText - > hide ( ) ;
2011-07-17 15:57:45 +00:00
}
}
2011-07-18 03:36:26 +00:00
2011-07-28 14:20:59 +00:00
void MainWindow : : on_action_Reset_Graph_Layout_triggered ( )
{
2011-09-12 17:47:37 +00:00
if ( daily & & ( ui - > tabWidget - > currentWidget ( ) = = daily ) ) daily - > ResetGraphLayout ( ) ;
if ( overview & & ( ui - > tabWidget - > currentWidget ( ) = = overview ) ) overview - > ResetGraphLayout ( ) ;
2011-07-28 14:20:59 +00:00
}
2011-08-02 22:37:15 +00:00
void MainWindow : : on_action_Preferences_triggered ( )
{
2011-10-05 07:41:56 +00:00
PreferencesDialog pd ( this , p_profile ) ;
2011-10-21 05:50:31 +00:00
prefdialog = & pd ;
2011-08-02 22:37:15 +00:00
if ( pd . exec ( ) = = PreferencesDialog : : Accepted ) {
qDebug ( ) < < " Preferences Accepted " ;
2011-09-08 09:50:05 +00:00
pd . Save ( ) ;
2011-09-23 03:54:48 +00:00
if ( daily ) {
2011-10-30 05:01:51 +00:00
//daily->ReloadGraphs();
2011-09-23 03:54:48 +00:00
daily - > RedrawGraphs ( ) ;
}
if ( overview ) {
overview - > ReloadGraphs ( ) ;
overview - > RedrawGraphs ( ) ;
}
2011-08-02 22:37:15 +00:00
}
2011-10-21 05:50:31 +00:00
prefdialog = NULL ;
2011-08-02 22:37:15 +00:00
}
2011-12-06 14:39:14 +00:00
void MainWindow : : selectOximetryTab ( )
{
on_oximetryButton_clicked ( ) ;
}
2011-08-05 00:12:23 +00:00
2011-08-05 08:20:28 +00:00
void MainWindow : : on_oximetryButton_clicked ( )
{
2011-10-05 06:45:33 +00:00
bool first = false ;
if ( ! oximetry ) {
2011-10-12 03:17:40 +00:00
if ( ! PROFILE . Exists ( " EnableOximetry " ) | | ! PROFILE [ " EnableOximetry " ] . toBool ( ) ) {
2011-12-01 01:47:09 +00:00
if ( QMessageBox : : question ( this , " Question " , " Do you have a CMS50[x] Oximeter? \n One is required to use this section. " , QMessageBox : : Yes , QMessageBox : : No ) = = QMessageBox : : No ) return ;
2011-10-12 03:17:40 +00:00
PROFILE [ " EnableOximetry " ] = true ;
2011-10-05 06:49:12 +00:00
}
2011-11-27 14:35:25 +00:00
oximetry = new Oximetry ( ui - > tabWidget , daily - > graphView ( ) ) ;
2011-10-05 06:45:33 +00:00
ui - > tabWidget - > insertTab ( 3 , oximetry , tr ( " Oximetry " ) ) ;
first = true ;
2011-08-05 08:20:28 +00:00
}
2011-10-05 06:45:33 +00:00
ui - > tabWidget - > setCurrentWidget ( oximetry ) ;
if ( ! first ) oximetry - > RedrawGraphs ( ) ;
qstatus2 - > setText ( " Oximetry " ) ;
2011-08-05 08:20:28 +00:00
}
2011-09-04 13:09:21 +00:00
2011-10-21 05:50:31 +00:00
void MainWindow : : CheckForUpdates ( )
{
2011-12-16 16:31:58 +00:00
//QTimer::singleShot(100,this,SLOT(on_actionCheck_for_Updates_triggered()));
on_actionCheck_for_Updates_triggered ( ) ;
2011-10-21 05:50:31 +00:00
}
2011-09-06 07:33:34 +00:00
void MainWindow : : on_actionCheck_for_Updates_triggered ( )
{
2011-12-16 18:15:57 +00:00
UpdaterWindow * w = new UpdaterWindow ( this ) ;
2011-12-16 16:31:58 +00:00
w - > checkForUpdates ( ) ;
// 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;
// }
// }
// mainwin->Notify("Checking for Updates");
// netmanager->get(QNetworkRequest(QUrl("http://sleepyhead.sourceforge.net/current_version.txt")));
2011-09-06 07:33:34 +00:00
}
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 ) {
2011-12-11 09:45:28 +00:00
mainwin - > Notify ( " Update check failed.. Version file on the server is broken. " ) ;
2011-09-06 07:33:34 +00:00
} else {
// check in size
QByteArray data = reply - > readAll ( ) ;
QString a = data ;
a = a . trimmed ( ) ;
2011-10-21 05:50:31 +00:00
PREF [ " Updates_LastChecked " ] = QDateTime : : currentDateTime ( ) ;
if ( prefdialog ) prefdialog - > RefreshLastChecked ( ) ;
2011-10-05 07:41:56 +00:00
if ( a > PREF [ " VersionString " ] . toString ( ) ) {
2011-09-06 07:33:34 +00:00
if ( QMessageBox : : question ( this , " New Version " , " A newer version of SleepyHead is available, v " + a + " . \n Would you like to update? " , QMessageBox : : Yes , QMessageBox : : No ) = = QMessageBox : : Yes ) {
2011-12-03 05:44:52 +00:00
QString fileurl = " http://sourceforge.net/projects/sleepyhead/files/ " ;
QString msg = " <html><p>Sorry, I haven't implemented the auto-update yet</p> " ;
msg + = " <a href=' " + fileurl + " '>Click Here</a> for a link to the latest version " ;
msg + = " </html> " ;
QMessageBox : : information ( this , " Laziness Warning " , msg , QMessageBox : : Ok ) ;
2011-09-06 07:33:34 +00:00
}
} else {
2011-10-21 07:06:06 +00:00
mainwin - > Notify ( " Checked for Updates: SleepyHead is already up to date! " ) ;
2011-09-06 07:33:34 +00:00
}
}
} else {
2011-12-11 09:45:28 +00:00
mainwin - > Notify ( " Couldn't check for updates. The network is down. \n \n ( " + reply - > errorString ( ) + " ) " ) ;
2011-09-06 07:33:34 +00:00
}
reply - > deleteLater ( ) ;
}
2011-09-07 08:08:27 +00:00
void MainWindow : : on_action_Screenshot_triggered ( )
{
QTimer : : singleShot ( 250 , this , SLOT ( DelayedScreenshot ( ) ) ) ;
}
void MainWindow : : DelayedScreenshot ( )
{
2011-12-10 12:14:48 +00:00
//#ifdef Q_WS_MAC
// CGImageRef windowImage = CGWindowListCreateImage(imageBounds, singleWindowListOptions, windowID, imageOptions);
// originalPixmap = new QPixmap(QPixmap::fromMacCGImageRef(windowImage));
// CGImageRef img = CGDisplayCreateImageForRect(displayID, *rect);
// CFMutableDataRef imgData = CFDataCreateMutable(0, 0);
// CGImageDestinationRef imgDst = CGImageDestinationCreateWithData(imgData, kUTTypeJPEG2000, 1, 0);
// CGImageDestinationAddImage(imgDst, img, 0);
// CGImageDestinationFinalize(imgDst);
// CFRelease(imgDst);
// QPixmap pixmap=QPixmap::fromMacCGImageRef(img);
//#else
2011-09-07 08:08:27 +00:00
QPixmap pixmap = QPixmap : : grabWindow ( this - > winId ( ) ) ;
2011-12-10 12:14:48 +00:00
//#endif
2011-10-05 07:41:56 +00:00
QString a = PREF . Get ( " {home} " ) + " /Screenshots " ;
2011-09-07 08:08:27 +00:00
QDir dir ( a ) ;
if ( ! dir . exists ( ) ) {
dir . mkdir ( a ) ;
}
a + = " /screenshot- " + QDateTime : : currentDateTime ( ) . toString ( Qt : : ISODate ) + " .png " ;
pixmap . save ( a ) ;
}
2011-09-07 09:15:33 +00:00
void MainWindow : : on_actionView_O_ximetry_triggered ( )
{
on_oximetryButton_clicked ( ) ;
}
2011-09-11 06:16:45 +00:00
void MainWindow : : updatestatusBarMessage ( const QString & text )
{
ui - > statusbar - > showMessage ( text , 1000 ) ;
}
void MainWindow : : on_actionPrint_Report_triggered ( )
{
if ( ui - > tabWidget - > currentWidget ( ) = = overview ) {
2011-12-01 15:40:32 +00:00
PrintReport ( overview - > graphView ( ) , " Overview " ) ;
} else if ( ui - > tabWidget - > currentWidget ( ) = = daily ) {
2011-12-01 17:23:19 +00:00
PrintReport ( daily - > graphView ( ) , " Daily " , daily - > getDate ( ) ) ;
2011-12-01 15:40:32 +00:00
} else if ( ui - > tabWidget - > currentWidget ( ) = = oximetry ) {
if ( oximetry )
PrintReport ( oximetry - > graphView ( ) , " Oximetry " ) ;
2011-09-11 06:16:45 +00:00
} else {
2011-12-01 15:40:32 +00:00
//QPrinter printer();
//ui->webView->print(printer)
2011-09-11 07:03:04 +00:00
QMessageBox : : information ( this , " Not supported Yet " , " Sorry, printing from this page is not supported yet " , QMessageBox : : Ok ) ;
2011-09-11 06:16:45 +00:00
}
}
2011-10-01 12:59:05 +00:00
void MainWindow : : on_action_Edit_Profile_triggered ( )
{
2011-10-02 03:38:51 +00:00
NewProfile newprof ( this ) ;
2011-10-05 07:41:56 +00:00
newprof . edit ( PREF [ " Profile " ] . toString ( ) ) ;
2011-10-02 03:38:51 +00:00
newprof . exec ( ) ;
2011-10-01 12:59:05 +00:00
}
2011-10-07 05:28:35 +00:00
void MainWindow : : on_action_Link_Graph_Groups_toggled ( bool arg1 )
{
PROFILE [ " LinkGroups " ] = arg1 ;
2011-10-08 14:13:39 +00:00
if ( daily ) daily - > RedrawGraphs ( ) ;
2011-10-07 05:28:35 +00:00
}
2011-10-28 11:31:31 +00:00
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 ) ;
}
2011-11-14 14:10:46 +00:00
void MainWindow : : on_actionExp_ort_triggered ( )
{
ExportCSV ex ( this ) ;
if ( ex . exec ( ) = = ExportCSV : : Accepted ) {
}
}
2011-11-21 10:20:11 +00:00
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 ) ;
}
2011-11-27 14:35:25 +00:00
2011-12-01 03:05:23 +00:00
EventList * packEventList ( EventList * ev )
{
EventList * nev = new EventList ( EVL_Event ) ;
EventDataType val , lastval = 0 ;
qint64 time , lasttime = 0 , lasttime2 = 0 ;
lastval = ev - > data ( 0 ) ;
lasttime = ev - > time ( 0 ) ;
nev - > AddEvent ( lasttime , lastval ) ;
2011-12-01 06:06:13 +00:00
for ( unsigned i = 1 ; i < ev - > count ( ) ; i + + ) {
2011-12-01 03:05:23 +00:00
val = ev - > data ( i ) ;
time = ev - > time ( i ) ;
if ( val ! = lastval ) {
nev - > AddEvent ( time , val ) ;
lasttime2 = time ;
}
lastval = val ;
lasttime = time ;
}
if ( val = = lastval ) {
nev - > AddEvent ( lasttime , val ) ;
}
return nev ;
}
2011-12-01 01:47:09 +00:00
2011-12-01 17:23:19 +00:00
void MainWindow : : PrintReport ( gGraphView * gv , QString name , QDate date )
2011-12-01 15:40:32 +00:00
{
if ( ! gv ) return ;
2011-12-11 13:57:07 +00:00
Session * journal = NULL ;
2011-12-01 17:23:19 +00:00
//QDate d=QDate::currentDate();
2011-12-01 15:40:32 +00:00
2011-12-01 17:23:19 +00:00
int visgraphs = gv - > visibleGraphs ( ) ;
if ( visgraphs = = 0 ) {
2011-12-01 15:57:06 +00:00
Notify ( " There are no graphs visible to print " ) ;
return ;
}
2011-12-01 17:23:19 +00:00
QString username = PROFILE . Get ( " _{Username}_ " ) ;
2011-12-12 03:39:00 +00:00
bool print_bookmarks = false ;
2011-12-11 13:57:07 +00:00
if ( name = = " Daily " ) {
2011-12-12 03:39:00 +00:00
QVariantList book_start ;
2011-12-11 13:57:07 +00:00
journal = getDaily ( ) - > GetJournalSession ( getDaily ( ) - > getDate ( ) ) ;
2011-12-12 03:39:00 +00:00
if ( journal & & journal - > settings . contains ( " BookmarkStart " ) ) {
book_start = journal - > settings [ " BookmarkStart " ] . toList ( ) ;
if ( book_start . size ( ) > 0 ) {
2011-12-11 13:57:07 +00:00
if ( QMessageBox : : question ( this , " Bookmarks " , " Would you like to show bookmarked areas in this report? " , QMessageBox : : Yes , QMessageBox : : No ) = = QMessageBox : : Yes ) {
print_bookmarks = true ;
}
}
}
}
2011-12-01 15:57:06 +00:00
2011-12-12 04:30:06 +00:00
QPrinter * printer ;
2011-12-06 23:49:26 +00:00
2011-12-07 10:19:28 +00:00
bool highres ;
2011-12-12 02:51:22 +00:00
bool aa_setting = PROFILE . ExistsAndTrue ( " UseAntiAliasing " ) ;
2011-12-13 09:16:16 +00:00
# ifdef Q_WS_MAC
2011-12-12 03:39:00 +00:00
PROFILE [ " HighResPrinting " ] = true ; // forced on
2011-12-12 02:51:22 +00:00
bool force_antialiasing = true ;
2011-12-13 09:16:16 +00:00
# else
2011-12-12 03:39:00 +00:00
bool force_antialiasing = PROFILE . ExistsAndTrue ( " UseAntiAliasing " ) ;
2011-12-13 09:16:16 +00:00
# endif
2011-12-12 03:39:00 +00:00
2011-12-06 23:49:26 +00:00
if ( PROFILE . ExistsAndTrue ( " HighResPrinting " ) ) {
2011-12-12 04:30:06 +00:00
printer = new QPrinter ( QPrinter : : HighResolution ) ;
2011-12-07 10:19:28 +00:00
highres = true ;
2011-12-06 23:49:26 +00:00
} else {
2011-12-12 04:30:06 +00:00
printer = new QPrinter ( QPrinter : : ScreenResolution ) ;
2011-12-07 10:19:28 +00:00
highres = false ;
2011-12-06 23:49:26 +00:00
}
2011-12-02 14:36:40 +00:00
# ifdef Q_WS_X11
2011-12-12 04:30:06 +00:00
printer - > setPrinterName ( " Print to File (PDF) " ) ;
printer - > setOutputFormat ( QPrinter : : PdfFormat ) ;
2011-12-03 04:32:01 +00:00
QString filename = PREF . Get ( " {home}/ " + name + username + date . toString ( Qt : : ISODate ) + " .pdf " ) ; //QFileDialog::getSaveFileName(this,"Select filename to save PDF report to",,"PDF Files (*.pdf)");
2011-12-12 04:30:06 +00:00
printer - > setOutputFileName ( filename ) ;
# endif
printer - > setPrintRange ( QPrinter : : AllPages ) ;
printer - > setOrientation ( QPrinter : : Portrait ) ;
printer - > setFullPage ( false ) ; // This has nothing to do with scaling
printer - > setNumCopies ( 1 ) ;
printer - > setPageMargins ( 10 , 10 , 10 , 10 , QPrinter : : Millimeter ) ;
QPrintDialog dialog ( printer ) ;
# ifdef Q_WS_MAC
// QTBUG-17913
2011-12-12 04:34:20 +00:00
QApplication : : processEvents ( ) ;
2011-12-02 14:36:40 +00:00
# endif
2011-12-06 23:49:26 +00:00
if ( dialog . exec ( ) ! = QDialog : : Accepted ) {
2011-12-12 04:30:06 +00:00
delete printer ;
2011-12-01 15:57:06 +00:00
return ;
2011-12-02 14:36:40 +00:00
}
2011-12-13 10:53:44 +00:00
Notify ( " Printing " + name + " Report. \n This make take some time to complete.. \n Please don't touch anything until it's done. " , 20000 ) ;
2011-12-01 15:40:32 +00:00
QPainter painter ;
2011-12-12 04:30:06 +00:00
painter . begin ( printer ) ;
2011-12-01 17:23:19 +00:00
2011-12-12 14:06:08 +00:00
QSizeF pres = printer - > paperSize ( QPrinter : : Point ) ;
QSizeF pxres = printer - > paperSize ( QPrinter : : DevicePixel ) ;
2011-12-12 16:32:10 +00:00
float hscale = pxres . width ( ) / pres . width ( ) ;
2011-12-12 14:06:08 +00:00
float vscale = pxres . height ( ) / pres . height ( ) ;
2011-12-12 05:17:51 +00:00
2011-12-12 14:06:08 +00:00
QFontMetrics fm ( * bigfont ) ;
float title_height = fm . ascent ( ) * vscale ;
QFontMetrics fm2 ( * defaultfont ) ;
float normal_height = fm2 . ascent ( ) * vscale ;
//QRect screen=QApplication::desktop()->screenGeometry();
2011-12-12 04:30:06 +00:00
QRect res = printer - > pageRect ( ) ;
2011-12-12 14:06:08 +00:00
2011-12-01 15:40:32 +00:00
qDebug ( ) < < " Printer Resolution is " < < res . width ( ) < < " x " < < res . height ( ) ;
2011-12-13 03:29:26 +00:00
qDebug ( ) < < " X DPI (log vs phys): " < < printer - > logicalDpiX ( ) < < printer - > physicalDpiX ( ) ;
qDebug ( ) < < " Y DPI (log vs phys): " < < printer - > logicalDpiY ( ) < < printer - > physicalDpiY ( ) ;
qDebug ( ) < < vscale < < hscale ;
2011-12-12 15:02:24 +00:00
qDebug ( ) < < " res: " < < printer - > resolution ( ) < < " dpi " < < float ( res . width ( ) ) / float ( res . height ( ) ) ;
2011-12-13 03:29:26 +00:00
qDebug ( ) < < normal_height < < " normal_height, font ascent " < < fm2 . ascent ( ) ;
2011-12-12 14:06:08 +00:00
float printer_width = res . width ( ) ;
float printer_height = res . height ( ) - normal_height ;
2011-12-11 13:57:07 +00:00
const int graphs_per_page = 6 ;
2011-12-12 14:06:08 +00:00
float full_graph_height = ( printer_height - ( normal_height * graphs_per_page ) ) / float ( graphs_per_page ) ;
2011-12-07 10:19:28 +00:00
2011-12-12 14:06:08 +00:00
GLint gw ;
2011-12-13 10:20:22 +00:00
# ifdef Q_WS_WIN32
gw = 2048 ; // Rough guess.. No GL_MAX_RENDERBUFFER_SIZE in mingw.. :(
# else
2011-12-12 14:06:08 +00:00
glGetIntegerv ( GL_MAX_RENDERBUFFER_SIZE , & gw ) ;
2011-12-13 10:20:22 +00:00
# endif
2011-12-07 10:19:28 +00:00
2011-12-12 14:06:08 +00:00
bool no_scaling ;
2011-12-12 15:02:24 +00:00
if ( printer_width < = gw ) {
2011-12-12 14:06:08 +00:00
gw = printer_width ;
no_scaling = true ;
} else no_scaling = false ;
2011-12-07 10:19:28 +00:00
2011-12-12 14:06:08 +00:00
float graph_xscale = gw / printer_width ;
//float scalex=1.0/graph_xscale;
float gh = full_graph_height * graph_xscale ;
2011-12-07 10:19:28 +00:00
2011-12-01 17:46:25 +00:00
QString title = name + " Report " ;
painter . setFont ( * bigfont ) ;
2011-12-12 14:06:08 +00:00
int top = 0 ;
2011-12-14 06:58:10 +00:00
QRectF bounds = painter . boundingRect ( QRectF ( 0 , top , printer_width , 0 ) , title , QTextOption ( Qt : : AlignHCenter | Qt : : AlignTop ) ) ;
2011-12-12 09:16:26 +00:00
painter . drawText ( bounds , title , QTextOption ( Qt : : AlignHCenter | Qt : : AlignTop ) ) ;
2011-12-14 06:58:10 +00:00
top + = bounds . height ( ) + normal_height / 2.0 ;
2011-12-01 17:46:25 +00:00
painter . setFont ( * defaultfont ) ;
2011-12-13 03:35:04 +00:00
float printer_dpi = qMax ( printer - > physicalDpiX ( ) , printer - > logicalDpiX ( ) ) ;
float screen_dpi = QApplication : : desktop ( ) - > physicalDpiX ( ) ;
qDebug ( ) < < " Printer DPI vs Screen DPI " < < printer_dpi < < screen_dpi ;
float font_scale = float ( printer_dpi ) / float ( screen_dpi ) ;
2011-12-12 14:06:08 +00:00
2011-12-06 14:39:14 +00:00
int maxy = 0 ;
2011-12-01 17:23:19 +00:00
if ( ! PROFILE [ " FirstName " ] . toString ( ) . isEmpty ( ) ) {
QString userinfo = " Name: \t " + PROFILE [ " LastName " ] . toString ( ) + " , " + PROFILE [ " FirstName " ] . toString ( ) + " \n " ;
userinfo + = " DOB: \t " + PROFILE [ " DOB " ] . toString ( ) + " \n " ;
userinfo + = " Phone: \t " + PROFILE [ " Phone " ] . toString ( ) + " \n " ;
userinfo + = " Email: \t " + PROFILE [ " EmailAddress " ] . toString ( ) + " \n " ;
if ( ! PROFILE [ " Address " ] . toString ( ) . isEmpty ( ) ) userinfo + = " \n Address: \n " + PROFILE [ " Address " ] . toString ( ) + " \n " ;
2011-12-12 14:06:08 +00:00
QRectF bounds = painter . boundingRect ( QRectF ( 0 , top , res . width ( ) , 0 ) , userinfo , QTextOption ( Qt : : AlignLeft | Qt : : AlignTop ) ) ;
painter . drawText ( bounds , userinfo , QTextOption ( Qt : : AlignLeft | Qt : : AlignTop ) ) ;
2011-12-06 14:39:14 +00:00
if ( bounds . height ( ) > maxy ) maxy = bounds . height ( ) ;
2011-12-01 17:23:19 +00:00
}
2011-12-13 11:08:02 +00:00
int graph_slots = 0 ;
2011-12-01 17:23:19 +00:00
if ( name = = " Daily " ) {
Day * cpap = PROFILE . GetDay ( date , MT_CPAP ) ;
2011-12-13 07:50:22 +00:00
QString cpapinfo = date . toString ( Qt : : SystemLocaleLongDate ) + " \n \n " ;
2011-12-01 17:23:19 +00:00
if ( cpap ) {
2011-12-01 17:46:25 +00:00
time_t f = cpap - > first ( ) / 1000L ;
time_t l = cpap - > last ( ) / 1000L ;
2011-12-01 17:23:19 +00:00
int tt = qint64 ( cpap - > total_time ( ) ) / 1000L ;
int h = tt / 3600 ;
int m = ( tt / 60 ) % 60 ;
int s = tt % 60 ;
2011-12-12 09:16:26 +00:00
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 " ) + " " ;
2011-12-01 17:23:19 +00:00
cpapinfo + = " Wake-up: " + QDateTime : : fromTime_t ( l ) . time ( ) . toString ( " HH:mm:ss " ) + " \n \n " ;
2011-12-12 09:16:26 +00:00
QString submodel ;
cpapinfo + = " Machine: " ;
if ( cpap - > machine - > properties . find ( " SubModel " ) ! = cpap - > machine - > properties . end ( ) )
submodel = " \n " + cpap - > machine - > properties [ " SubModel " ] ;
cpapinfo + = cpap - > machine - > properties [ " Brand " ] + " " + cpap - > machine - > properties [ " Model " ] + submodel ;
2011-12-17 14:50:59 +00:00
CPAPMode mode = ( CPAPMode ) ( int ) cpap - > settings_max ( CPAP_Mode ) ;
2011-12-12 09:16:26 +00:00
cpapinfo + = " \n Mode: " ;
2011-12-12 14:06:08 +00:00
EventDataType min = cpap - > settings_min ( CPAP_PressureMin ) ;
EventDataType max = cpap - > settings_max ( CPAP_PressureMax ) ;
if ( mode = = MODE_CPAP ) cpapinfo + = " CPAP " + QString : : number ( min ) + " cmH2O " ;
else if ( mode = = MODE_APAP ) cpapinfo + = " APAP " + QString : : number ( min ) + " - " + QString : : number ( max ) + " cmH2O " ;
else if ( mode = = MODE_BIPAP ) cpapinfo + = " Bi-Level " + QString : : number ( min ) + " - " + QString : : number ( max ) + " cmH2O " ;
2011-12-12 09:16:26 +00:00
else if ( mode = = MODE_ASV ) cpapinfo + = " ASV " ;
2011-12-01 17:23:19 +00:00
float ahi = ( cpap - > count ( CPAP_Obstructive ) + cpap - > count ( CPAP_Hypopnea ) + cpap - > count ( CPAP_ClearAirway ) + cpap - > count ( CPAP_Apnea ) ) / cpap - > hours ( ) ;
float csr = ( 100.0 / cpap - > hours ( ) ) * ( cpap - > sum ( CPAP_CSR ) / 3600.0 ) ;
float uai = cpap - > count ( CPAP_Apnea ) / cpap - > hours ( ) ;
float oai = cpap - > count ( CPAP_Obstructive ) / cpap - > hours ( ) ;
float hi = ( cpap - > count ( CPAP_ExP ) + cpap - > count ( CPAP_Hypopnea ) ) / cpap - > hours ( ) ;
float cai = cpap - > count ( CPAP_ClearAirway ) / cpap - > hours ( ) ;
float rei = cpap - > count ( CPAP_RERA ) / cpap - > hours ( ) ;
float vsi = cpap - > count ( CPAP_VSnore ) / cpap - > hours ( ) ;
float fli = cpap - > count ( CPAP_FlowLimit ) / cpap - > hours ( ) ;
float nri = cpap - > count ( CPAP_NRI ) / cpap - > hours ( ) ;
float lki = cpap - > count ( CPAP_LeakFlag ) / cpap - > hours ( ) ;
float exp = cpap - > count ( CPAP_ExP ) / cpap - > hours ( ) ;
2011-12-14 06:39:03 +00:00
int piesize = 1.5 * 72.0 * vscale ;
float fscale = font_scale ;
if ( ! highres )
fscale = 1 ;
2011-12-13 07:00:56 +00:00
QString stats ;
painter . setFont ( * mediumfont ) ;
stats = " AHI \t " + QString : : number ( ahi , ' f ' , 2 ) + " \n " ;
QRectF bounds = painter . boundingRect ( QRectF ( 0 , 0 , res . width ( ) , 0 ) , stats , QTextOption ( Qt : : AlignRight ) ) ;
painter . drawText ( bounds , stats , QTextOption ( Qt : : AlignRight ) ) ;
2011-12-12 16:32:10 +00:00
getDaily ( ) - > eventBreakdownPie ( ) - > showTitle ( false ) ;
2011-12-14 06:39:03 +00:00
getDaily ( ) - > eventBreakdownPie ( ) - > setMargins ( 0 , 0 , 0 , 0 ) ;
QPixmap ebp = getDaily ( ) - > eventBreakdownPie ( ) - > renderPixmap ( piesize , piesize , fscale ) ;
2011-12-13 07:00:56 +00:00
painter . drawPixmap ( res . width ( ) - piesize , bounds . height ( ) , piesize , piesize , ebp ) ;
2011-12-12 16:32:10 +00:00
getDaily ( ) - > eventBreakdownPie ( ) - > showTitle ( true ) ;
2011-12-14 06:39:03 +00:00
2011-12-13 10:53:44 +00:00
cpapinfo + = " \n \n " ;
2011-12-12 16:32:10 +00:00
painter . setFont ( * defaultfont ) ;
2011-12-13 07:50:22 +00:00
bounds = painter . boundingRect ( QRectF ( ( res . width ( ) / 2 ) - ( res . width ( ) / 6 ) , top , res . width ( ) / 2 , 0 ) , cpapinfo , QTextOption ( Qt : : AlignLeft ) ) ;
painter . drawText ( bounds , cpapinfo , QTextOption ( Qt : : AlignLeft ) ) ;
2011-12-13 10:53:44 +00:00
int ttop = bounds . height ( ) ;
2011-12-12 16:32:10 +00:00
stats = " AI= " + QString : : number ( oai , ' f ' , 2 ) + " " ;
stats + = " HI= " + QString : : number ( hi , ' f ' , 2 ) + " " ;
stats + = " CAI= " + QString : : number ( cai , ' f ' , 2 ) + " " ;
2011-12-01 17:23:19 +00:00
if ( cpap - > machine - > GetClass ( ) = = " PRS1 " ) {
2011-12-12 16:32:10 +00:00
stats + = " REI= " + QString : : number ( rei , ' f ' , 2 ) + " " ;
stats + = " VSI= " + QString : : number ( vsi , ' f ' , 2 ) + " " ;
stats + = " FLI= " + QString : : number ( fli , ' f ' , 2 ) + " " ;
stats + = " PB/CSR= " + QString : : number ( csr , ' f ' , 2 ) + " % " ;
2011-12-01 17:23:19 +00:00
} else if ( cpap - > machine - > GetClass ( ) = = " ResMed " ) {
2011-12-12 16:32:10 +00:00
stats + = " UAI= " + QString : : number ( uai , ' f ' , 2 ) + " " ;
2011-12-01 17:23:19 +00:00
} else if ( cpap - > machine - > GetClass ( ) = = " Intellipap " ) {
2011-12-12 16:32:10 +00:00
stats + = " NRI= " + QString : : number ( nri , ' f ' , 2 ) + " " ;
stats + = " LKI= " + QString : : number ( lki , ' f ' , 2 ) + " " ;
stats + = " EPI= " + QString : : number ( exp , ' f ' , 2 ) + " " ;
2011-12-01 17:23:19 +00:00
}
2011-12-13 10:53:44 +00:00
bounds = painter . boundingRect ( QRectF ( 0 , top + ttop , res . width ( ) , 0 ) , stats , QTextOption ( Qt : : AlignCenter ) ) ;
2011-12-13 07:00:56 +00:00
painter . drawText ( bounds , stats , QTextOption ( Qt : : AlignCenter ) ) ;
2011-12-13 10:53:44 +00:00
ttop + = bounds . height ( ) ;
if ( ttop > maxy ) maxy = ttop ;
2011-12-13 07:50:22 +00:00
} else {
bounds = painter . boundingRect ( QRectF ( 0 , top + maxy , res . width ( ) , 0 ) , cpapinfo , QTextOption ( Qt : : AlignCenter ) ) ;
painter . drawText ( bounds , cpapinfo , QTextOption ( Qt : : AlignCenter ) ) ;
if ( maxy + bounds . height ( ) > maxy ) maxy = maxy + bounds . height ( ) ;
2011-12-01 17:23:19 +00:00
}
2011-12-13 07:50:22 +00:00
2011-12-13 11:08:02 +00:00
graph_slots = 2 ;
2011-12-01 17:46:25 +00:00
} else if ( name = = " Overview " ) {
QDateTime first = QDateTime : : fromTime_t ( ( * gv ) [ 0 ] - > min_x / 1000L ) ;
QDateTime last = QDateTime : : fromTime_t ( ( * gv ) [ 0 ] - > max_x / 1000L ) ;
QString ovinfo = " Reporting from " + first . date ( ) . toString ( Qt : : SystemLocaleShortDate ) + " to " + last . date ( ) . toString ( Qt : : SystemLocaleShortDate ) ;
2011-12-07 10:19:28 +00:00
QRectF bounds = painter . boundingRect ( QRectF ( 0 , top , res . width ( ) , 0 ) , ovinfo , QTextOption ( Qt : : AlignCenter ) ) ;
2011-12-12 05:17:51 +00:00
painter . drawText ( bounds , ovinfo , QTextOption ( Qt : : AlignCenter ) ) ;
2011-12-06 14:39:14 +00:00
2011-12-12 14:06:08 +00:00
if ( bounds . height ( ) > maxy ) maxy = bounds . height ( ) ;
2011-12-13 11:08:02 +00:00
graph_slots = 1 ;
2011-12-12 14:06:08 +00:00
} else if ( name = = " Oximetry " ) {
QString ovinfo = " Reporting data goes here " ;
QRectF bounds = painter . boundingRect ( QRectF ( 0 , top , res . width ( ) , 0 ) , ovinfo , QTextOption ( Qt : : AlignCenter ) ) ;
painter . drawText ( bounds , ovinfo , QTextOption ( Qt : : AlignCenter ) ) ;
2011-12-06 14:39:14 +00:00
if ( bounds . height ( ) > maxy ) maxy = bounds . height ( ) ;
2011-12-13 11:08:02 +00:00
graph_slots = 1 ;
2011-12-01 17:23:19 +00:00
}
2011-12-06 14:39:14 +00:00
top + = maxy ;
2011-12-01 17:23:19 +00:00
bool first = true ;
2011-12-11 13:57:07 +00:00
QStringList labels ;
QVector < gGraph * > graphs ;
QVector < qint64 > start , end ;
qint64 st , et ;
gv - > GetXBounds ( st , et ) ;
for ( int i = 0 ; i < gv - > size ( ) ; i + + ) {
bool normal = true ;
gGraph * g = ( * gv ) [ i ] ;
if ( g - > isEmpty ( ) ) continue ;
if ( ! g - > visible ( ) ) continue ;
if ( print_bookmarks & & ( g - > title ( ) = = " Flow Rate " ) ) {
2011-12-11 14:32:02 +00:00
normal = false ;
start . push_back ( st ) ;
end . push_back ( et ) ;
graphs . push_back ( g ) ;
labels . push_back ( " Current Selection " ) ;
2011-12-11 13:57:07 +00:00
if ( journal ) {
if ( journal - > settings . contains ( " BookmarkStart " ) ) {
QVariantList st1 = journal - > settings [ " BookmarkStart " ] . toList ( ) ;
QVariantList et1 = journal - > settings [ " BookmarkEnd " ] . toList ( ) ;
QStringList notes = journal - > settings [ " BookmarkNotes " ] . toStringList ( ) ;
for ( int i = 0 ; i < notes . size ( ) ; i + + ) {
labels . push_back ( notes . at ( i ) ) ;
start . push_back ( st1 . at ( i ) . toLongLong ( ) ) ;
end . push_back ( et1 . at ( i ) . toLongLong ( ) ) ;
graphs . push_back ( g ) ;
}
}
}
}
if ( normal ) {
start . push_back ( st ) ;
end . push_back ( et ) ;
graphs . push_back ( g ) ;
labels . push_back ( " " ) ;
}
}
2011-12-13 11:08:02 +00:00
int pages = ceil ( float ( graphs . size ( ) + graph_slots ) / float ( graphs_per_page ) ) ;
2011-12-11 13:57:07 +00:00
if ( qprogress ) {
qprogress - > setValue ( 0 ) ;
qprogress - > setMaximum ( graphs . size ( ) ) ;
qprogress - > show ( ) ;
}
2011-12-12 14:06:08 +00:00
int page = 1 ;
int gcnt = 0 ;
for ( int i = 0 ; i < graphs . size ( ) ; i + + ) {
2011-12-13 07:00:56 +00:00
if ( ( top + full_graph_height + normal_height ) > printer_height ) {
top = 0 ;
gcnt = 0 ;
first = true ;
2011-12-13 10:20:22 +00:00
if ( page > pages )
break ;
2011-12-13 07:00:56 +00:00
if ( ! printer - > newPage ( ) ) {
qWarning ( " failed in flushing page to disk, disk full? " ) ;
break ;
}
}
2011-12-01 17:23:19 +00:00
if ( first ) {
2011-12-01 17:46:25 +00:00
QString footer = " SleepyHead v " + PREF [ " VersionString " ] . toString ( ) + " - http://sleepyhead.sourceforge.net " ;
2011-12-01 17:23:19 +00:00
2011-12-12 14:06:08 +00:00
QRectF bounds = painter . boundingRect ( QRectF ( 0 , res . height ( ) , res . width ( ) , normal_height ) , footer , QTextOption ( Qt : : AlignHCenter ) ) ;
2011-12-01 17:23:19 +00:00
painter . drawText ( bounds , footer , QTextOption ( Qt : : AlignHCenter ) ) ;
2011-12-06 23:49:26 +00:00
QString pagestr = " Page " + QString : : number ( page ) + " of " + QString : : number ( pages ) ;
2011-12-12 14:06:08 +00:00
QRectF pagebnds = painter . boundingRect ( QRectF ( 0 , res . height ( ) , res . width ( ) , normal_height ) , pagestr , QTextOption ( Qt : : AlignRight ) ) ;
2011-12-06 23:49:26 +00:00
painter . drawText ( pagebnds , pagestr , QTextOption ( Qt : : AlignRight ) ) ;
2011-12-01 17:23:19 +00:00
first = false ;
2011-12-13 07:00:56 +00:00
page + + ;
2011-12-01 17:23:19 +00:00
}
2011-12-13 07:00:56 +00:00
2011-12-11 13:57:07 +00:00
gGraph * g = graphs [ i ] ;
g - > SetXBounds ( start [ i ] , end [ i ] ) ;
2011-12-01 15:40:32 +00:00
g - > deselect ( ) ;
2011-12-07 10:19:28 +00:00
2011-12-11 13:57:07 +00:00
QString label = labels [ i ] ;
2011-12-12 07:10:45 +00:00
if ( ! label . isEmpty ( ) ) {
2011-12-13 07:00:56 +00:00
//label+=":";
top + = normal_height / 3 ;
2011-12-12 14:06:08 +00:00
QRectF pagebnds = QRectF ( 0 , top , res . width ( ) , normal_height ) ;
2011-12-12 07:10:45 +00:00
painter . drawText ( pagebnds , label , QTextOption ( Qt : : AlignHCenter | Qt : : AlignTop ) ) ;
2011-12-12 14:06:08 +00:00
top + = normal_height ;
} else top + = normal_height / 2 ;
2011-12-12 07:10:45 +00:00
2011-12-12 02:51:22 +00:00
PROFILE [ " UseAntiAliasing " ] = force_antialiasing ;
2011-12-12 07:10:45 +00:00
int tmb = g - > m_marginbottom ;
g - > m_marginbottom = 0 ;
2011-12-14 06:39:03 +00:00
float fscale = 1 ;
if ( ! no_scaling ) fscale = font_scale * graph_xscale ;
2011-12-12 14:06:08 +00:00
2011-12-12 16:32:10 +00:00
//g->showTitle(false);
2011-12-14 06:39:03 +00:00
QPixmap pm = g - > renderPixmap ( gw , gh , fscale ) ;
2011-12-12 16:32:10 +00:00
//g->showTitle(true);
2011-12-12 14:06:08 +00:00
2011-12-12 07:10:45 +00:00
g - > m_marginbottom = tmb ;
2011-12-12 02:51:22 +00:00
PROFILE [ " UseAntiAliasing " ] = aa_setting ;
2011-12-07 10:19:28 +00:00
2011-12-14 11:23:49 +00:00
painter . drawPixmap ( 0 , top , printer_width , full_graph_height , pm ) ;
top + = full_graph_height ;
2011-12-14 06:39:03 +00:00
2011-12-12 07:10:45 +00:00
gcnt + + ;
2011-12-01 15:40:32 +00:00
if ( qprogress ) {
qprogress - > setValue ( i ) ;
QApplication : : processEvents ( ) ;
}
2011-12-12 14:06:08 +00:00
}
2011-12-01 15:40:32 +00:00
qprogress - > hide ( ) ;
painter . end ( ) ;
2011-12-12 04:30:06 +00:00
delete printer ;
2011-12-13 10:53:44 +00:00
Notify ( " SleepyHead has finished sending the job to the printer. " ) ;
2011-12-01 15:40:32 +00:00
}
2011-12-01 01:47:09 +00:00
void MainWindow : : on_action_Rebuild_Oximetry_Index_triggered ( )
{
QVector < QString > valid ;
valid . push_back ( OXI_Pulse ) ;
valid . push_back ( OXI_SPO2 ) ;
valid . push_back ( OXI_Plethy ) ;
2011-12-01 03:05:23 +00:00
//valid.push_back(OXI_PulseChange); // Delete these and recalculate..
//valid.push_back(OXI_SPO2Drop);
2011-12-01 01:47:09 +00:00
QVector < QString > invalid ;
2011-12-08 04:10:35 +00:00
QList < Machine * > machines = PROFILE . GetMachines ( MT_OXIMETER ) ;
2011-12-01 03:05:23 +00:00
2011-12-02 01:04:26 +00:00
bool ok ;
int discard_threshold = PROFILE [ " OxiDiscardThreshold " ] . toInt ( & ok ) ;
if ( ! ok ) discard_threshold = 10 ;
2011-12-01 03:05:23 +00:00
Machine * m ;
for ( int z = 0 ; z < machines . size ( ) ; z + + ) {
2011-12-08 04:10:35 +00:00
m = machines . at ( z ) ;
2011-12-01 03:05:23 +00:00
//m->sessionlist.erase(m->sessionlist.find(0));
for ( QHash < SessionID , Session * > : : iterator s = m - > sessionlist . begin ( ) ; s ! = m - > sessionlist . end ( ) ; s + + ) {
Session * sess = s . value ( ) ;
if ( ! sess ) continue ;
sess - > OpenEvents ( ) ;
invalid . clear ( ) ;
for ( QHash < ChannelID , QVector < EventList * > > : : iterator e = sess - > eventlist . begin ( ) ; e ! = sess - > eventlist . end ( ) ; e + + ) {
if ( ! valid . contains ( e . key ( ) ) ) {
for ( int i = 0 ; i < e . value ( ) . size ( ) ; i + + ) {
delete e . value ( ) [ i ] ;
2011-12-01 01:47:09 +00:00
}
2011-12-01 03:05:23 +00:00
e . value ( ) . clear ( ) ;
invalid . push_back ( e . key ( ) ) ;
} else {
QVector < EventList * > newlist ;
for ( int i = 0 ; i < e . value ( ) . size ( ) ; i + + ) {
2011-12-03 05:27:57 +00:00
if ( e . value ( ) [ i ] - > count ( ) > ( unsigned ) discard_threshold ) {
2011-12-01 03:05:23 +00:00
newlist . push_back ( e . value ( ) [ i ] ) ;
} else {
delete e . value ( ) [ i ] ;
}
}
for ( int i = 0 ; i < newlist . size ( ) ; i + + ) {
EventList * nev = packEventList ( newlist [ i ] ) ;
if ( nev - > count ( ) ! = e . value ( ) [ i ] - > count ( ) ) {
delete newlist [ i ] ;
newlist [ i ] = nev ;
} else {
delete nev ;
}
}
e . value ( ) = newlist ;
2011-12-01 01:47:09 +00:00
}
}
2011-12-01 03:05:23 +00:00
for ( int i = 0 ; i < invalid . size ( ) ; i + + ) {
sess - > eventlist . erase ( sess - > eventlist . find ( invalid [ i ] ) ) ;
}
sess - > m_cnt . clear ( ) ;
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 ) ;
2011-12-01 01:47:09 +00:00
}
2011-12-01 03:05:23 +00:00
2011-12-01 01:47:09 +00:00
}
2011-12-01 03:05:23 +00:00
for ( int i = 0 ; i < machines . size ( ) ; i + + ) {
Machine * m = machines [ i ] ;
2011-12-01 01:47:09 +00:00
m - > Save ( ) ;
}
getDaily ( ) - > ReloadGraphs ( ) ;
getOverview ( ) - > ReloadGraphs ( ) ;
}
2011-12-03 05:27:57 +00:00
2011-12-13 08:05:33 +00:00
void MainWindow : : RestartApplication ( bool force_login )
2011-12-03 05:27:57 +00:00
{
QString apppath ;
# ifdef Q_OS_MAC
// In Mac OS the full path of aplication binary is:
// <base-path>/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 ;
2011-12-18 04:30:08 +00:00
args < < " -n " ; // -n option is important, as it opens a new process
2011-12-18 05:15:30 +00:00
args < < apppath ;
2011-12-18 06:22:02 +00:00
args < < " --args " ; // SleepyHead binary options after this
args < < " -p " ; // -p starts with 1 second delay, to give this process time to save..
2011-12-18 05:17:48 +00:00
if ( force_login ) args < < " -l " ;
2011-12-03 05:27:57 +00:00
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
2011-12-11 12:13:38 +00:00
QStringList args ;
args < < " -p " ;
2011-12-13 08:05:33 +00:00
if ( force_login ) args < < " -l " ;
2011-12-11 12:13:38 +00:00
if ( QProcess : : startDetached ( apppath , args ) ) {
2011-12-03 05:27:57 +00:00
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
2011-12-13 08:05:33 +00:00
}
2011-12-03 05:27:57 +00:00
2011-12-13 08:05:33 +00:00
void MainWindow : : on_actionChange_User_triggered ( )
{
PROFILE . Save ( ) ;
PREF . Save ( ) ;
RestartApplication ( true ) ;
2011-12-03 05:27:57 +00:00
}
2011-12-08 04:10:35 +00:00
void MainWindow : : on_actionPurge_Current_Day_triggered ( )
{
QDate date = getDaily ( ) - > getDate ( ) ;
Day * day = PROFILE . GetDay ( date , MT_CPAP ) ;
Machine * m ;
if ( day ) {
m = day - > machine ;
QString path = PROFILE . Get ( " DataFolder " ) + QDir : : separator ( ) + m - > hexid ( ) + QDir : : separator ( ) ;
2011-12-08 13:41:43 +00:00
QVector < Session * > : : iterator s ;
2011-12-08 04:10:35 +00:00
for ( s = day - > begin ( ) ; s ! = day - > end ( ) ; s + + ) {
SessionID id = ( * s ) - > session ( ) ;
QString filename0 = path + QString ( ) . sprintf ( " %08lx.000 " , id ) ;
QString filename1 = path + QString ( ) . sprintf ( " %08lx.001 " , id ) ;
qDebug ( ) < < " Removing " < < filename0 ;
qDebug ( ) < < " Removing " < < filename1 ;
QFile : : remove ( filename0 ) ;
QFile : : remove ( filename1 ) ;
m - > sessionlist . erase ( m - > sessionlist . find ( id ) ) ; // remove from machines session list
}
QList < Day * > & dl = PROFILE . daylist [ date ] ;
QList < Day * > : : iterator it ; //=dl.begin();
for ( it = dl . begin ( ) ; it ! = dl . end ( ) ; it + + ) {
if ( ( * it ) = = day ) break ;
}
if ( it ! = dl . end ( ) ) {
PROFILE . daylist [ date ] . erase ( it ) ;
delete day ;
}
}
getDaily ( ) - > ReloadGraphs ( ) ;
}
2011-12-13 08:05:33 +00:00
void MainWindow : : on_actionAll_Data_for_current_CPAP_machine_triggered ( )
{
QDate date = getDaily ( ) - > getDate ( ) ;
Day * day = PROFILE . GetDay ( date , MT_CPAP ) ;
Machine * m ;
if ( day ) {
m = day - > machine ;
if ( ! m ) {
qDebug ( ) < < " Gah!! no machine to purge " ;
return ;
}
if ( QMessageBox : : question ( this , " Are you sure? " , " Are you sure you want to purge all CPAP data for the following machine: \n " + m - > properties [ " Brand " ] + " " + m - > properties [ " Model " ] + " " + m - > properties [ " ModelNumber " ] + " ( " + m - > properties [ " Serial " ] + " ) " , QMessageBox : : Yes , QMessageBox : : No ) = = QMessageBox : : Yes ) {
m - > Purge ( 3478216 ) ;
RestartApplication ( ) ;
}
}
}