2014-04-09 21:01:57 +00:00
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 4 -*-
* vim : set ts = 8 sts = 4 et sw = 4 tw = 99 :
*
* MainWindow Implementation
*
* Copyright ( c ) 2011 - 2014 Mark Watkins < jedimark @ users . sourceforge . net >
*
* This file is subject to the terms and conditions of the GNU General Public
* License . See the file COPYING in the main directory of the Linux
* distribution for more details . */
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-12-27 13:21:10 +00:00
# include <QWebFrame>
2011-09-06 07:33:34 +00:00
# include <QNetworkRequest>
2011-12-26 03:06:39 +00:00
# include <QDesktopServices>
2011-09-06 07:33:34 +00:00
# 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>
2013-01-20 16:31:51 +00:00
# include <QTextDocument>
2013-09-09 15:56:02 +00:00
# include <QTranslator>
2011-12-01 17:23:19 +00:00
# include <cmath>
2011-11-08 15:47:54 +00:00
2012-01-24 15:51:11 +00:00
// Custom loaders that don't autoscan..
# include <SleepLib/loader_plugins/zeo_loader.h>
2014-04-15 13:59:24 +00:00
# include <SleepLib/loader_plugins/somnopose_loader.h>
2013-09-09 15:56:02 +00:00
# ifndef REMSTAR_M_SUPPORT
2012-01-24 15:51:11 +00:00
# include <SleepLib/loader_plugins/mseries_loader.h>
2013-09-09 15:56:02 +00:00
# endif
2012-01-24 15:51:11 +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"
2012-01-10 06:19:49 +00:00
# include "SleepLib/calcs.h"
2011-12-18 16:39:36 +00:00
# include "version.h"
2011-06-26 08:30:44 +00:00
2013-09-14 23:32:14 +00:00
# include "reports.h"
2014-04-25 05:28:10 +00:00
# include "statistics.h"
2012-01-10 06:19:49 +00:00
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
2014-04-17 05:52:25 +00:00
extern Profile * profile ;
2011-10-05 07:41:56 +00:00
2011-07-17 15:57:45 +00:00
void MainWindow : : Log ( QString s )
{
2011-09-05 02:30:10 +00:00
2014-04-17 05:52:25 +00:00
if ( ! strlock . tryLock ( ) ) {
2011-09-19 11:13:28 +00:00
return ;
2014-04-17 05:52:25 +00:00
}
2011-09-19 11:13:28 +00:00
2014-04-17 05:52:25 +00:00
// strlock.lock();
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 ( ) ;
2014-04-17 05:52:25 +00:00
2011-09-18 14:43:15 +00:00
// only do this in the main thread?
2014-04-17 05:52:25 +00:00
for ( int i = 0 ; i < logbuffer . size ( ) ; i + + ) {
2011-09-18 14:43:15 +00:00
ui - > logText - > appendPlainText ( logbuffer [ i ] ) ;
2014-04-17 05:52:25 +00:00
fprintf ( stderr , " %s \n " , logbuffer [ i ] . toLocal8Bit ( ) . constData ( ) ) ;
2013-01-21 21:47:40 +00:00
}
2014-04-17 05:52:25 +00:00
2011-09-18 14:43:15 +00:00
logbuffer . clear ( ) ;
2011-09-05 02:30:10 +00:00
strlock . unlock ( ) ;
2011-09-18 14:43:15 +00:00
//loglock.unlock();
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 )
{
2014-04-23 13:19:56 +00:00
Q_ASSERT ( p_profile ! = nullptr ) ;
2011-10-05 07:41:56 +00:00
2011-09-18 14:43:15 +00:00
logtime . start ( ) ;
2011-06-26 08:30:44 +00:00
ui - > setupUi ( this ) ;
2011-12-18 10:53:51 +00:00
2014-04-17 05:52:25 +00:00
QString version = FullVersionString ;
if ( QString ( GIT_BRANCH ) ! = " master " ) { version + = QString ( " " ) + QString ( GIT_BRANCH ) ; }
this - > setWindowTitle ( STR_TR_SleepyHead + QString ( " v%1 ( " + tr ( " Profile " ) + " : %2) " ) . arg (
version ) . arg ( PREF [ STR_GEN_Profile ] . toString ( ) ) ) ;
2011-12-23 14:12:04 +00:00
//ui->tabWidget->setCurrentIndex(1);
2011-11-08 15:47:54 +00:00
2013-01-17 18:26:11 +00:00
# ifdef Q_OS_MAC
2014-04-10 02:58:14 +00:00
# if(QT_VERSION<QT_VERSION_CHECK(5,0,0))
// Disable Screenshot on Mac Platform,as it doesn't work in Qt4, and the system provides this functionality anyway.
2014-04-17 05:52:25 +00:00
ui - > action_Screenshot - > setEnabled ( false ) ;
2014-04-10 02:58:14 +00:00
# endif
2012-01-07 07:02:23 +00:00
# endif
2014-04-23 13:19:56 +00:00
overview = nullptr ;
daily = nullptr ;
oximetry = nullptr ;
prefdialog = nullptr ;
2011-07-22 13:46:17 +00:00
2014-04-17 05:52:25 +00:00
m_inRecalculation = false ;
m_restartRequired = false ;
2011-12-18 10:53:51 +00:00
// Initialize Status Bar objects
2014-04-17 05:52:25 +00:00
qstatusbar = ui - > statusbar ;
qprogress = new QProgressBar ( this ) ;
2011-06-26 08:30:44 +00:00
qprogress - > setMaximum ( 100 ) ;
2014-04-17 05:52:25 +00:00
qstatus2 = new QLabel ( tr ( " Welcome " ) , this ) ;
2011-07-19 05:05:02 +00:00
qstatus2 - > setFrameStyle ( QFrame : : Raised ) ;
qstatus2 - > setFrameShadow ( QFrame : : Sunken ) ;
qstatus2 - > setFrameShape ( QFrame : : Box ) ;
//qstatus2->setMinimumWidth(100);
qstatus2 - > setMaximumWidth ( 100 ) ;
2014-04-17 05:52:25 +00:00
qstatus2 - > setAlignment ( Qt : : AlignRight | Qt : : AlignVCenter ) ;
qstatus = new QLabel ( " " , this ) ;
2011-06-27 06:26:29 +00:00
qprogress - > hide ( ) ;
2011-07-19 05:05:02 +00:00
ui - > statusbar - > setMinimumWidth ( 200 ) ;
2014-04-17 05:52:25 +00:00
ui - > statusbar - > addPermanentWidget ( qstatus , 0 ) ;
ui - > statusbar - > addPermanentWidget ( qprogress , 1 ) ;
ui - > statusbar - > addPermanentWidget ( qstatus2 , 0 ) ;
2011-07-22 13:46:17 +00:00
2011-12-21 12:47:47 +00:00
ui - > actionDebug - > setChecked ( PROFILE . general - > showDebug ( ) ) ;
2011-12-18 10:53:51 +00:00
2011-12-21 12:47:47 +00:00
if ( ! PROFILE . general - > showDebug ( ) ) {
2011-07-17 16:07:37 +00:00
ui - > logText - > hide ( ) ;
}
2013-01-17 18:26:11 +00:00
# ifdef Q_OS_MAC
2012-01-02 09:45:08 +00:00
PROFILE . appearance - > setAntiAliasing ( false ) ;
# endif
2011-12-21 12:47:47 +00:00
ui - > action_Link_Graph_Groups - > setChecked ( PROFILE . general - > linkGroups ( ) ) ;
2011-07-18 03:36:26 +00:00
2014-04-17 05:52:25 +00:00
first_load = true ;
2011-10-05 07:41:56 +00:00
// Using the dirty registry here. :(
2013-10-18 04:56:44 +00:00
QSettings settings ( getDeveloperName ( ) , getAppName ( ) ) ;
2011-12-18 10:53:51 +00:00
2014-04-28 03:40:50 +00:00
// Load previous Window geometry (this is currently broken on Mac as of Qt5.2.1)
restoreGeometry ( settings . value ( " MainWindow/geometry " ) . toByteArray ( ) ) ;
2011-09-10 14:17:45 +00:00
2014-04-23 13:19:56 +00:00
daily = new Daily ( ui - > tabWidget , nullptr ) ;
2014-04-17 05:52:25 +00:00
ui - > tabWidget - > insertTab ( 1 , daily , STR_TR_Daily ) ;
2011-12-23 14:12:04 +00:00
2011-12-25 16:19:08 +00:00
// Start with the Summary Tab
2014-04-25 05:28:10 +00:00
ui - > tabWidget - > setCurrentWidget ( ui - > statisticsTab ) ; // setting this to daily shows the cube during loading..
2011-06-26 08:30:44 +00:00
2011-12-18 10:53:51 +00:00
// Nifty Notification popups in System Tray (uses Growl on Mac)
2011-10-21 07:06:06 +00:00
if ( QSystemTrayIcon : : isSystemTrayAvailable ( ) & & QSystemTrayIcon : : supportsMessages ( ) ) {
2014-04-17 05:52:25 +00:00
systray = new QSystemTrayIcon ( QIcon ( " :/icons/bob-v3.0.png " ) , this ) ;
2011-10-21 07:06:06 +00:00
systray - > show ( ) ;
2014-04-17 05:52:25 +00:00
systraymenu = new QMenu ( this ) ;
2011-10-21 07:06:06 +00:00
systray - > setContextMenu ( systraymenu ) ;
2014-04-17 05:52:25 +00:00
QAction * a = systraymenu - > addAction ( STR_TR_SleepyHead + " v " + VersionString ) ;
2011-10-21 07:06:06 +00:00
a - > setEnabled ( false ) ;
systraymenu - > addSeparator ( ) ;
2014-04-17 05:52:25 +00:00
systraymenu - > addAction ( tr ( " &About " ) , this , SLOT ( on_action_About_triggered ( ) ) ) ;
systraymenu - > addAction ( tr ( " Check for &Updates " ) , this ,
SLOT ( on_actionCheck_for_Updates_triggered ( ) ) ) ;
2011-10-21 07:06:06 +00:00
systraymenu - > addSeparator ( ) ;
2014-04-17 05:52:25 +00:00
systraymenu - > addAction ( tr ( " E&xit " ) , this , SLOT ( close ( ) ) ) ;
2011-12-18 10:53:51 +00:00
} else { // if not available, the messages will popup in the taskbar
2014-04-23 13:19:56 +00:00
systray = nullptr ;
systraymenu = nullptr ;
2011-10-21 07:06:06 +00:00
}
2014-04-17 05:52:25 +00:00
2011-12-25 13:27:47 +00:00
ui - > toolBox - > setCurrentIndex ( 0 ) ;
2011-12-23 14:12:04 +00:00
daily - > graphView ( ) - > redraw ( ) ;
2011-12-25 13:27:47 +00:00
2012-01-10 06:19:49 +00:00
if ( PROFILE . cpap - > AHIWindow ( ) < 30.0 ) {
PROFILE . cpap - > setAHIWindow ( 60.0 ) ;
}
2011-12-25 13:27:47 +00:00
ui - > recordsBox - > page ( ) - > setLinkDelegationPolicy ( QWebPage : : DelegateAllLinks ) ;
2014-04-25 05:28:10 +00:00
ui - > statisticsView - > page ( ) - > setLinkDelegationPolicy ( QWebPage : : DelegateAllLinks ) ;
2011-12-26 03:06:39 +00:00
ui - > webView - > page ( ) - > setLinkDelegationPolicy ( QWebPage : : DelegateExternalLinks ) ;
2012-01-06 16:07:54 +00:00
ui - > bookmarkView - > page ( ) - > setLinkDelegationPolicy ( QWebPage : : DelegateAllLinks ) ;
2011-12-25 13:27:47 +00:00
2014-04-17 05:52:25 +00:00
QString loadingtxt =
" <HTML><body style='text-align: center; vertical-align: center'><table width='100%' height='100%'><tr><td align=center><h1> "
+ tr ( " Loading... " ) + " </h1></td></tr></table></body></HTML> " ;
2014-04-25 05:28:10 +00:00
ui - > statisticsView - > setHtml ( loadingtxt ) ;
2011-12-26 19:25:17 +00:00
on_tabWidget_currentChanged ( 0 ) ;
2013-09-09 15:56:02 +00:00
# ifndef REMSTAR_M_SUPPORT
ui - > actionImport_RemStar_MSeries_Data - > setVisible ( false ) ;
# endif
2014-04-15 04:47:23 +00:00
on_homeButton_clicked ( ) ;
2011-07-24 07:58:20 +00:00
}
2011-12-18 10:53:51 +00:00
2014-04-28 03:40:50 +00:00
void MainWindow : : closeEvent ( QCloseEvent * event )
{
2011-06-26 08:30:44 +00:00
if ( daily ) {
daily - > close ( ) ;
delete daily ;
}
2014-04-17 05:52:25 +00:00
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
}
2014-04-17 05:52:25 +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-12-18 10:53:51 +00:00
// Shutdown and Save the current User profile
2011-06-26 08:30:44 +00:00
Profiles : : Done ( ) ;
2013-01-21 21:47:40 +00:00
2014-04-28 03:40:50 +00:00
// Save current window position
QSettings settings ( getDeveloperName ( ) , getAppName ( ) ) ;
settings . setValue ( " MainWindow/geometry " , saveGeometry ( ) ) ;
QMainWindow : : closeEvent ( event ) ;
}
extern MainWindow * mainwin ;
MainWindow : : ~ MainWindow ( )
{
if ( systraymenu ) { delete systraymenu ; }
if ( systray ) { delete systray ; }
// Trash anything allocated by the Graph objects
DestroyGraphGlobals ( ) ;
2014-04-23 13:19:56 +00:00
mainwin = nullptr ;
2011-07-24 07:58:20 +00:00
delete ui ;
2011-06-26 08:30:44 +00:00
}
2011-12-18 12:31:11 +00:00
2014-04-10 15:48:31 +00:00
void MainWindow : : Notify ( QString s , QString title , int ms )
2011-10-21 07:06:06 +00:00
{
if ( systray ) {
2014-04-10 15:48:31 +00:00
// GNOME3's systray hides the last line of the displayed Qt message.
// As a workaround, add an extra line to bump the message back
// into the visible area.
QString msg = s ;
char * desktop = getenv ( " DESKTOP_SESSION " ) ;
2014-04-17 05:52:25 +00:00
if ( desktop & & ! strncmp ( desktop , " gnome " , 5 ) ) {
2014-04-10 15:48:31 +00:00
msg + = " \n " ;
2014-04-17 05:52:25 +00:00
}
2014-04-10 15:48:31 +00:00
systray - > showMessage ( title , msg , QSystemTrayIcon : : Information , ms ) ;
2011-10-21 07:06:06 +00:00
} else {
2014-04-10 15:48:31 +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 ( )
{
2014-04-17 05:52:25 +00:00
qDebug ( ) < < STR_TR_SleepyHeadVersion . toLocal8Bit ( ) . data ( ) < < " 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
2014-04-17 05:52:25 +00:00
SnapshotGraph = new gGraphView ( this , daily - > graphView ( ) ) ;
2013-01-18 08:37:17 +00:00
// the following are platform overides for the UsePixmapCache preference settings
# ifdef Q_OS_MAC
//Mac needs this to be able to offscreen render
SnapshotGraph - > setUsePixmapCache ( true ) ;
# else
2013-01-17 21:48:19 +00:00
//Windows & Linux barfs when offscreen rendering with pixmap cached text
SnapshotGraph - > setUsePixmapCache ( false ) ;
# endif
2013-01-18 08:37:17 +00:00
2013-01-15 05:55:39 +00:00
SnapshotGraph - > setFormat ( daily - > graphView ( ) - > format ( ) ) ;
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 ( ) ;
2014-04-17 05:52:25 +00:00
overview = new Overview ( ui - > tabWidget , daily - > graphView ( ) ) ;
ui - > tabWidget - > insertTab ( 2 , overview , STR_TR_Overview ) ;
2011-12-21 12:47:47 +00:00
if ( PROFILE . oxi - > oximetryEnabled ( ) ) {
2014-04-17 05:52:25 +00:00
oximetry = new Oximetry ( ui - > tabWidget , daily - > graphView ( ) ) ;
ui - > tabWidget - > insertTab ( 3 , oximetry , STR_TR_Oximetry ) ;
2011-10-12 03:17:40 +00:00
}
2011-12-01 15:40:32 +00:00
2014-04-25 05:28:10 +00:00
GenerateStatistics ( ) ;
ui - > tabWidget - > setCurrentWidget ( ui - > statisticsTab ) ;
2014-04-17 05:52:25 +00:00
if ( daily ) { daily - > ReloadGraphs ( ) ; }
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-12-22 13:22:40 +00:00
2011-06-27 06:26:29 +00:00
}
2011-06-26 08:30:44 +00:00
void MainWindow : : on_action_Import_Data_triggered ( )
{
2012-01-10 10:00:08 +00:00
if ( m_inRecalculation ) {
2013-09-09 15:56:02 +00:00
Notify ( tr ( " Access to Import has been blocked while recalculations are in progress. " ) ) ;
2012-01-10 10:00:08 +00:00
return ;
}
2014-04-28 03:27:33 +00:00
QList < QString > AutoScannerPaths =
# ifdef Q_OS_MAC
{ " /Volumes " } ;
# elif Q_OS_WIN
{ " dummy " } ;
// scan all available drive letters after C:
# else
{ " /Media " , " /mnt " } ;
# endif
2014-04-17 05:52:25 +00:00
2014-04-28 03:27:33 +00:00
QHash < QString , QString > datacard ;
QString datacard_path = QString ( ) ;
MachineLoader * datacard_loader = nullptr ;
2011-11-20 23:39:55 +00:00
2014-04-28 03:27:33 +00:00
QList < MachineLoader * > loaders = GetLoaders ( ) ;
2011-11-20 23:39:55 +00:00
2014-04-28 03:27:33 +00:00
Q_FOREACH ( const QString & path , AutoScannerPaths ) {
qDebug ( ) < < " Scanning " < < path ;
# ifdef Q_OS_WIN
QFileInfoList list = QDir : : drives ( ) ;
# else
QDir dir ( path ) ;
dir . setFilter ( QDir : : Dirs | QDir : : NoDotAndDotDot ) ;
QFileInfoList list = dir . entryInfoList ( ) ;
# endif
for ( int i = 0 ; i < list . size ( ) ; + + i ) {
QFileInfo fileInfo = list . at ( i ) ;
QString p = fileInfo . fileName ( ) ;
Q_FOREACH ( MachineLoader * loader , loaders ) {
QString scanpath = path + " / " + p ;
if ( loader - > Detect ( scanpath ) ) {
datacard [ loader - > ClassName ( ) ] = scanpath ;
qDebug ( ) < < " Found " < < loader - > ClassName ( ) < < " datacard at " < < scanpath ;
if ( datacard_path . isEmpty ( ) ) {
datacard_loader = loader ;
datacard_path = scanpath ;
}
}
}
}
}
QStringList importFrom ;
2014-04-17 05:52:25 +00:00
bool asknew = false ;
2014-04-28 03:27:33 +00:00
if ( datacard . size ( ) > 0 ) {
if ( datacard . size ( ) > 1 ) {
qWarning ( ) < < " User has more than detected datacard folder structure in scan path, only using the first one found. " ;
}
2014-04-17 05:52:25 +00:00
2014-04-28 03:27:33 +00:00
int res = QMessageBox : : question ( this , tr ( " Datacard Located " ) ,
2014-04-28 04:05:20 +00:00
QString ( tr ( " A %1 datacard structure was detected at \n %2 \n \n Would you like to import from this location? " ) ) .
arg ( datacard_loader - > ClassName ( ) ) . arg ( datacard_path ) , tr ( " Yes " ) ,
2014-04-28 03:27:33 +00:00
tr ( " Select another folder " ) , tr ( " Cancel " ) , 0 , 2 ) ;
2014-04-17 05:52:25 +00:00
if ( res = = 1 ) {
asknew = true ;
2014-04-28 03:27:33 +00:00
} else {
importFrom . push_back ( datacard_path ) ;
2011-08-07 12:14:30 +00:00
}
2014-04-17 05:52:25 +00:00
if ( res = = 2 ) { return ; }
2014-04-28 04:05:20 +00:00
} else {
asknew = true ;
2012-01-06 16:07:54 +00:00
}
2011-11-20 23:39:55 +00:00
if ( asknew ) {
2014-04-28 03:27:33 +00:00
mainwin - > Notify ( " Please remember to point the importer at the root folder or drive letter of your data-card, and not a subfolder. " , " Import Reminder " , 8000 ) ;
2011-11-25 06:56:39 +00:00
QFileDialog w ;
2014-04-28 03:27:33 +00:00
# if QT_VERSION < QT_VERSION_CHECK(5,0,0)
const QString documentsFolder = QDesktopServices : : storageLocation (
QDesktopServices : : DocumentsLocation ) ;
# else
const QString documentsFolder = QStandardPaths : : writableLocation ( QStandardPaths : : DocumentsLocation ) ;
# endif
w . setDirectory ( documentsFolder ) ;
2011-12-13 12:49:48 +00:00
w . setFileMode ( QFileDialog : : Directory ) ;
w . setOption ( QFileDialog : : ShowDirsOnly , true ) ;
2013-01-17 18:26:11 +00:00
# if defined(Q_OS_MAC) && (QT_VERSION_CHECK(4,8,0) > QT_VERSION)
2011-12-13 12:49:48 +00:00
// Fix for tetragon, 10.6 barfs up Qt's custom dialog
2014-04-17 05:52:25 +00:00
w . setOption ( QFileDialog : : DontUseNativeDialog , true ) ;
2011-12-13 12:49:48 +00:00
# else
2014-04-17 05:52:25 +00:00
w . setOption ( QFileDialog : : DontUseNativeDialog , false ) ;
QListView * l = w . findChild < QListView * > ( " listView " ) ;
2011-11-25 06:56:39 +00:00
if ( l ) {
l - > setSelectionMode ( QAbstractItemView : : MultiSelection ) ;
}
2014-04-17 05:52:25 +00:00
QTreeView * t = w . findChild < QTreeView * > ( ) ;
2011-11-25 06:56:39 +00:00
if ( t ) {
t - > setSelectionMode ( QAbstractItemView : : MultiSelection ) ;
}
2014-04-17 05:52:25 +00:00
2011-12-13 12:49:48 +00:00
# endif
2014-04-17 05:52:25 +00:00
if ( w . exec ( ) ! = QDialog : : Accepted ) {
2011-11-20 23:39:55 +00:00
return ;
}
2014-04-17 05:52:25 +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
}
2014-04-28 03:27:33 +00:00
}
2011-06-26 08:30:44 +00:00
2014-04-17 05:52:25 +00:00
int successful = false ;
2011-12-03 05:10:23 +00:00
QStringList goodlocations ;
2014-04-17 05:52:25 +00:00
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 " ) ) ;
2014-04-17 05:52:25 +00:00
int c = PROFILE . Import ( dir ) ;
2011-11-20 23:39:55 +00:00
qDebug ( ) < < " Finished Importing data " < < c ;
2014-04-17 05:52:25 +00:00
2011-11-20 23:39:55 +00:00
if ( c ) {
2014-04-28 03:27:33 +00:00
goodlocations . push_back ( dir ) ;
2014-04-17 05:52:25 +00:00
successful = true ;
2011-11-20 23:39:55 +00:00
}
2014-04-17 05:52:25 +00:00
2011-11-20 23:39:55 +00:00
qstatus - > setText ( " " ) ;
qprogress - > hide ( ) ;
}
}
2014-04-17 05:52:25 +00:00
2011-11-20 23:39:55 +00:00
if ( successful ) {
PROFILE . Save ( ) ;
2014-04-17 05:52:25 +00:00
2014-04-25 05:28:10 +00:00
GenerateStatistics ( ) ;
2014-04-17 05:52:25 +00:00
2014-04-28 03:27:33 +00:00
if ( overview ) { overview - > ReloadGraphs ( ) ; }
2014-04-17 05:52:25 +00:00
if ( daily ) { daily - > ReloadGraphs ( ) ; }
2014-04-28 03:27:33 +00:00
QString str = tr ( " Data successfully imported from the following locations \n \n " ) ;
for ( int i = 0 ; i < goodlocations . size ( ) ; i + + ) {
str + = goodlocations . at ( i ) + " \n " ;
2011-11-20 23:39:55 +00:00
}
2014-04-28 03:27:33 +00:00
mainwin - > Notify ( str ) ;
2011-12-03 05:10:23 +00:00
} else {
2013-09-14 23:32:14 +00:00
mainwin - > Notify ( tr ( " Import Problem \n \n Couldn't find any new Machine Data at the locations given " ) ) ;
2011-06-26 08:30:44 +00:00
}
}
2014-04-17 05:52:25 +00:00
QMenu * MainWindow : : CreateMenu ( QString title )
2011-07-30 04:54:22 +00:00
{
2014-04-17 05:52:25 +00:00
QMenu * menu = new QMenu ( title , ui - > menubar ) ;
ui - > menubar - > insertMenu ( ui - > menu_Help - > menuAction ( ) , menu ) ;
2011-07-30 04:54:22 +00:00
return menu ;
}
2011-06-26 08:30:44 +00:00
void MainWindow : : on_action_Fullscreen_triggered ( )
{
2014-04-17 05:52:25 +00:00
if ( ui - > action_Fullscreen - > isChecked ( ) ) {
2011-06-26 08:30:44 +00:00
this - > showFullScreen ( ) ;
2014-04-17 05:52:25 +00:00
} else {
2011-06-26 08:30:44 +00:00
this - > showNormal ( ) ;
2014-04-17 05:52:25 +00:00
}
2011-06-26 08:30:44 +00:00
}
2013-09-14 23:32:14 +00:00
void MainWindow : : setRecBoxHTML ( QString html )
2011-12-22 13:22:40 +00:00
{
2013-09-14 23:32:14 +00:00
ui - > recordsBox - > setHtml ( html ) ;
2012-01-06 22:44:14 +00:00
}
2011-12-22 15:24:23 +00:00
2014-04-17 05:52:25 +00:00
class MyStatsPage : public QWebPage
2012-01-03 03:50:54 +00:00
{
2014-04-17 05:52:25 +00:00
public :
2012-01-03 03:50:54 +00:00
MyStatsPage ( QObject * parent ) ;
virtual ~ MyStatsPage ( ) ;
2014-04-17 05:52:25 +00:00
protected :
2012-01-03 03:50:54 +00:00
//virtual void javaScriptConsoleMessage(const QString & message, int lineNumber, const QString & sourceID);
2014-04-17 05:52:25 +00:00
virtual void javaScriptAlert ( QWebFrame * frame , const QString & msg ) ;
2012-01-03 03:50:54 +00:00
} ;
MyStatsPage : : MyStatsPage ( QObject * parent )
2014-04-17 05:52:25 +00:00
: QWebPage ( parent )
2012-01-03 03:50:54 +00:00
{
}
MyStatsPage : : ~ MyStatsPage ( )
{
}
2014-04-17 05:52:25 +00:00
void MyStatsPage : : javaScriptAlert ( QWebFrame * frame , const QString & msg )
2012-01-03 03:50:54 +00:00
{
Q_UNUSED ( frame ) ;
mainwin - > sendStatsUrl ( msg ) ;
}
2014-04-15 04:47:23 +00:00
QString MainWindow : : getWelcomeHTML ( )
2011-12-23 14:12:04 +00:00
{
2014-04-15 04:47:23 +00:00
// This is messy, but allows it to be translated easier
return " <html> \n <head> "
2014-04-17 05:52:25 +00:00
" <style type='text/css'> "
" <!--h1,p,a,td,body { font-family: 'FreeSans', 'Sans Serif' } --/> "
" p,a,td,body { font-size: 14px } "
" a:link,a:visited { color: \" #000020 \" ; text-decoration: none; font-weight: bold;} "
" a:hover { background-color: inherit; color: red; text-decoration:none; font-weight: bold; } "
" </style> \n "
" </head> "
" <body leftmargin=0 topmargin=0 rightmargin=0> "
" <table width= \" 100% \" cellspacing=0 cellpadding=4 border=0 > "
" <tr><td bgcolor= \" #d0d0d0 \" colspan=2 cellpadding=0 valign=center align=center><font color= \" black \" size=+1><b> "
+ tr ( " Welcome to SleepyHead " ) + " </b></font></td></tr> "
" <tr> "
" <td valign= \" top \" leftmargin=0 cellpadding=6> "
" <h3> " + tr ( " About SleepyHead " ) + " </h3> "
" <p> " + tr ( " This software has been created to assist you in reviewing the data produced by CPAP Machines, used in the treatment of various Sleep Disorders. " )
+ " </p> "
" <p> " + tr ( " SleepyHead has been designed by a software developer with personal experience with a sleep disorder, and shaped by the feedback of many other willing testers dealing with similar conditions. " )
+ " </p> "
" <p><i><b> " + tr ( " This is a beta release, some features may not yet behave as expected. " ) +
" </b></i><br/> " + tr ( " Please report any bugs you find to SleepyHead's SourceForge page. " ) + " </p> "
" <h3> " + tr ( " Currenly supported machines: " ) + " </h3> "
" <b> " + tr ( " CPAP " ) + " </b> "
" <li> " + tr ( " Philips Respironics System One (CPAP, Auto, BiPAP & ASV models) " ) + " </li> "
" <li> " + tr ( " ResMed S9 models (CPAP, Auto, VPAP) " ) + " </li> "
" <li> " + tr ( " DeVilbiss Intellipap (Auto) " ) + " </li> "
" <b> " + tr ( " Oximetry " ) + " </b> "
" <li> " + tr ( " Contec CMS50D+, CMS50E and CMS50F (not 50FW) Oximeters " ) + " </li> "
" <li> " + tr ( " ResMed S9 Oximeter Attachment " ) + " </li> "
" <p><h3> " + tr ( " Online Help Resources " ) + " </h3></p> "
" <p><b> " + tr ( " Note: " ) + " </b> " +
tr ( " I don't recommend using this built in web browser to do any major surfing in, it will work, but it's mainly meant as a help browser. " )
+
tr ( " (It doesn't support SSL encryption, so it's not a good idea to type your passwords or personal details anywhere.) " )
+ " </p> " +
tr ( " SleepyHead's Online <a href= \" http://sourceforge.net/apps/mediawiki/sleepyhead/index.php?title=SleepyHead_Users_Guide \" >Users Guide</a><br/> " )
+
tr ( " <a href= \" http://sourceforge.net/apps/mediawiki/sleepyhead/index.php?title=Frequently_Asked_Questions \" >Frequently Asked Questions</a><br/> " )
+
tr ( " <a href= \" http://sourceforge.net/apps/mediawiki/sleepyhead/index.php?title=Glossary \" >Glossary of Sleep Disorder Terms</a><br/> " )
+
tr ( " <a href= \" http://sourceforge.net/apps/mediawiki/sleepyhead/index.php?title=Main_Page \" >SleepyHead Wiki</a><br/> " )
+
tr ( " SleepyHead's <a href='http://www.sourceforge.net/projects/sleepyhead'>Project Website</a> on SourceForge<br/> " )
+
tr ( " Got a neat idea on how to improve SleepyHead? Check out SleepyHeads <a href= \" http://sourceforge.net/apps/ideatorrent/sleepyhead/ \" >Idea Torrent</a> " )
+
" <p><h3> " + tr ( " Further Information " ) + " </h3></p> "
" <p> " +
tr ( " Here are the <a href='qrc:/docs/release_notes.html'>release notes</a> for this version. " ) +
" <br/> " +
tr ( " Plus a few <a href='qrc:/docs/usage.html'>usage notes</a>, and some important information for Mac users. " )
+ " <br/> " +
" <p> " + tr ( " About <a href='http://en.wikipedia.org/wiki/Sleep_apnea'>Sleep Apnea</a> on Wikipedia " )
+ " </p> "
" <p> " + tr ( " Friendly forums to talk and learn about Sleep Apnea: " ) + " <br/> " +
tr ( " <a href='http://www.cpaptalk.com'>CPAPTalk Forum</a>, " ) +
tr ( " <a href='http://s7.zetaboards.com/Apnea_Board/index'>Apnea Board</a> " ) + " </p> "
" </td> "
" <td><image src='qrc:/icons/bob-v3.0.png' width=220 height=220><br/> "
" </td> "
" </tr> "
" <tr> "
" <td colspan=2> "
" <hr/> "
" <p><b> " + tr ( " Copyright: " ) + " </b> " + tr ( " ©2011-2014 " ) +
" <a href= \" http://jedimark64.blogspot.com \" >Mark Watkins</a> (jedimark)</p> "
" <p><b> " + tr ( " License: " ) + " </b> " +
tr ( " This software is released freely under the <a href= \" qrc:/COPYING \" >GNU Public License</a>. " ) +
" </p> "
" <hr/> "
" <p><b> " + tr ( " DISCLAIMER: " ) + " </b></p> "
" <b><p> " +
tr ( " 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> " + tr ( " The author will NOT be held liable by anyone who harms themselves or others by use or misuse of this software. " )
+ " </p> "
" <p> " + tr ( " Your doctor should always be your first and best source of guidance regarding the important matter of managing your health. " )
+ " </p> "
" <p> " + tr ( " *** <u>Use at your own risk</u> *** " ) + " </p></b> "
" <hr/> "
" </td></tr> "
" </table> "
" </body> "
" </html> "
;
}
void MainWindow : : on_homeButton_clicked ( )
{
2014-04-15 04:47:23 +00:00
ui - > webView - > setHtml ( getWelcomeHTML ( ) ) ;
2014-04-15 03:18:54 +00:00
2014-04-15 04:47:23 +00:00
//QString infourl="qrc:/docs/index.html"; // use this as a fallback
//ui->webView->setUrl(QUrl(infourl));
2011-12-23 14:12:04 +00:00
}
2011-12-23 15:01:14 +00:00
2011-12-26 04:41:28 +00:00
void MainWindow : : updateFavourites ( )
{
2014-04-17 05:52:25 +00:00
QDate date = PROFILE . LastDay ( MT_JOURNAL ) ;
if ( ! date . isValid ( ) ) {
2011-12-26 18:26:06 +00:00
return ;
2014-04-17 05:52:25 +00:00
}
2011-12-26 04:41:28 +00:00
2014-04-17 05:52:25 +00:00
QString html = " <html><head><style type='text/css'> "
" p,a,td,body { font-family: ' " + QApplication : : font ( ) . family ( ) + " '; } "
" p,a,td,body { font-size: " + QString : : number ( QApplication : : font ( ) . pointSize ( ) + 2 ) + " px; } "
" a:link,a:visited { color: inherit; text-decoration: none; } " //font-weight: normal;
" a:hover { background-color: inherit; color: white; text-decoration:none; font-weight: bold; } "
" </style></head><body> "
" <table width=100% cellpadding=2 cellspacing=0> " ;
2011-12-28 14:03:09 +00:00
2011-12-26 04:41:28 +00:00
do {
2014-04-17 05:52:25 +00:00
Day * journal = PROFILE . GetDay ( date , MT_JOURNAL ) ;
2011-12-26 04:41:28 +00:00
if ( journal ) {
2014-04-17 05:52:25 +00:00
if ( journal - > size ( ) > 0 ) {
Session * sess = ( * journal ) [ 0 ] ;
2012-01-06 18:15:21 +00:00
QString tmp ;
2014-04-17 05:52:25 +00:00
bool filtered = ! bookmarkFilter . isEmpty ( ) ;
bool found = ! filtered ;
2011-12-26 04:41:28 +00:00
if ( sess - > settings . contains ( Bookmark_Start ) ) {
2012-01-06 16:07:54 +00:00
//QVariantList start=sess->settings[Bookmark_Start].toList();
//QVariantList end=sess->settings[Bookmark_End].toList();
2014-04-17 05:52:25 +00:00
QStringList notes = sess - > settings [ Bookmark_Notes ] . toStringList ( ) ;
2012-01-06 16:07:54 +00:00
2014-04-17 05:52:25 +00:00
if ( notes . size ( ) > 0 ) {
tmp + = QString ( " <tr><td><b><a href='daily=%1'>%2</a></b><br/> " )
. arg ( date . toString ( Qt : : ISODate ) )
. arg ( date . toString ( ) ) ;
2012-01-06 18:15:21 +00:00
2014-04-17 05:52:25 +00:00
tmp + = " <list> " ;
for ( int i = 0 ; i < notes . size ( ) ; i + + ) {
2012-01-06 16:07:54 +00:00
//QDate d=start[i].toDate();
2014-04-17 05:52:25 +00:00
QString note = notes [ i ] ;
if ( filtered & & note . contains ( bookmarkFilter , Qt : : CaseInsensitive ) ) {
found = true ;
}
tmp + = " <li> " + note + " </li> " ;
2011-12-26 18:26:06 +00:00
}
2014-04-17 05:52:25 +00:00
tmp + = " </list></td> " ;
2011-12-26 04:41:28 +00:00
}
}
2014-04-17 05:52:25 +00:00
if ( found ) { html + = tmp ; }
2011-12-26 04:41:28 +00:00
}
}
2014-04-17 05:52:25 +00:00
date = date . addDays ( - 1 ) ;
} while ( date > = PROFILE . FirstDay ( MT_JOURNAL ) ) ;
html + = " </table></body></html> " ;
2012-01-06 16:07:54 +00:00
ui - > bookmarkView - > setHtml ( html ) ;
2011-12-26 04:41:28 +00:00
}
2011-06-26 08:30:44 +00:00
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-12-21 14:24:09 +00:00
qstatus2 - > setText ( STR_TR_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-12-21 14:24:09 +00:00
qstatus2 - > setText ( STR_TR_Overview ) ;
2011-06-26 08:30:44 +00:00
}
void MainWindow : : on_webView_loadFinished ( bool arg1 )
{
2013-01-17 18:26:11 +00:00
Q_UNUSED ( arg1 ) ;
2011-06-26 08:30:44 +00:00
qprogress - > hide ( ) ;
2014-04-17 05:52:25 +00:00
2011-06-27 06:26:29 +00:00
if ( first_load ) {
2014-04-17 05:52:25 +00:00
QTimer : : singleShot ( 0 , this , SLOT ( Startup ( ) ) ) ;
first_load = false ;
2011-06-27 06:26:29 +00:00
} else {
2011-07-30 01:51:52 +00:00
qstatus - > setText ( " " ) ;
2011-06-27 06:26:29 +00:00
}
2014-04-17 05:52:25 +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-12-26 05:51:53 +00:00
2014-04-17 05:52:25 +00:00
connect ( ui - > webView - > page ( ) , SIGNAL ( linkHovered ( QString , QString , QString ) ) , this ,
SLOT ( LinkHovered ( QString , QString , QString ) ) ) ;
2011-06-26 08:30:44 +00:00
}
void MainWindow : : on_webView_loadStarted ( )
{
2014-04-17 05:52:25 +00:00
disconnect ( ui - > webView - > page ( ) , SIGNAL ( linkHovered ( QString , QString , QString ) ) , this ,
SLOT ( LinkHovered ( QString , QString , QString ) ) ) ;
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
2014-04-17 05:52:25 +00:00
void MainWindow : : aboutBoxLinkClicked ( const QUrl & url )
2013-01-20 19:39:01 +00:00
{
QDesktopServices : : openUrl ( url ) ;
}
2011-06-26 16:35:54 +00:00
void MainWindow : : on_action_About_triggered ( )
{
2011-11-08 15:03:39 +00:00
2014-04-17 05:52:25 +00:00
QString gitrev = QString ( GIT_REVISION ) ;
if ( ! gitrev . isEmpty ( ) ) { gitrev = " Revision: " + gitrev + " ( " + QString ( GIT_BRANCH ) + " branch) " ; }
// "<style type=\"text/css\">body { margin:0; padding:0; } html, body, #bg { height:100%; width:100% } #bg { position: absolute; left:0; right:0; bottom:0; top:0; overflow:hidden; z-index:1; } #bg img { width:100%; min-width:100%; min-height:100%; } #content { z-index:0; }</style><body><div id=\"bg\"> <img style=\"display:block;\" src=\"qrc:/icons/Bob Strikes Back.png\"></div><div id=\"content\">"
QString msg = QString ( " <html> "
" <head><style type= \" text/css \" >a:link, a:visited { color: #000044; text-decoration: underline; font-weight: normal;} "
" a:hover { background-color: inherit; color: #4444ff; text-decoration:none; font-weight: normal; } "
" </style></head> "
" <body> "
" <span style= \" color:#000000; font-weight:600; vertical-align:middle; \" > "
" <table width=100%><tr><td> "
" <p><h1> " + STR_TR_SleepyHead + " v%1.%2.%3-%4 (%8)</h1></p><font color=black><p> " +
tr ( " Build Date " ) + " : %5 %6<br/>%7<br/> " + tr ( " Data Folder Location " ) + " : %9<hr/> " +
tr ( " Copyright " ) + " ©2011-2014 Mark Watkins (jedimark) <br/> \n " +
tr ( " This software is released under the GNU Public License v3.0<br/> " ) +
" <hr> "
// Project links
" <p> " + tr ( " SleepyHead Project Page " ) +
" : <a href= \" http://sourceforge.net/projects/sleepyhead \" >http://sourceforge.net/projects/sleepyhead</a><br/> "
+
tr ( " SleepyHead Wiki " ) +
" : <a href= \" http://sleepyhead.sourceforge.net \" >http://sleepyhead.sourceforge.net</a><p/> " +
// Social media links.. (Dear Translators, if one of these isn't available in your country, it's ok to leave it out.)
tr ( " Don't forget to Like/+1 SleepyHead on <a href= \" http://www.facebook.com/SleepyHeadCPAP \" >Facebook</a> or <a href= \" http://plus.google.com/u/0/b/101426655252362287937 \" >Google+ " )
+ " </p> " +
// Image
" </td><td align='center'><img src= \" qrc:/icons/Jedimark.png \" width=260px><br/> <br/><i> "
+ tr ( " SleepyHead, brought to you by Jedimark " ) + " </i></td></tr><tr colspan><td colspan=2> " +
// Credits section
" <hr/><p><b><font size='+1'> " + tr ( " Kudos & Credits " ) + " </font></b></p><b> " +
tr ( " Bugfixes, Patches and Platform Help: " ) + " </b> " +
tr ( " James Marshall, Rich Freeman, John Masters, Patricia Shanahan, Alec Clews, manders99, and Sean Stangl. " )
+ " </p> "
" <p><b> " + tr ( " Translators: " ) + " </b> " + tr ( " Arie Klerk (Dutch), Steffen Reitz (German). " ) +
" </p> "
" <p><b> " + tr ( " 3rd Party Libaries: " ) + " </b> " +
tr ( " SleepyHead is built using the <a href= \" http://qt-project.org \" >Qt Application Framework</a>. " )
+ " " +
tr ( " It uses the cross platform <a href= \" http://code.google.com/p/qextserialport \" >QExtSerialPort</a> library for serial port access in the Oximetry module. " )
+ " " +
tr ( " In the updater code, SleepyHead uses <a href= \" http://sourceforge.net/projects/quazip \" >QuaZip</a> by Sergey A. Tachenov, which is a C++ wrapper over Gilles Vollant's ZIP/UNZIP package. " )
+ " <br/> "
" <p> " + tr ( " Special thanks to Pugsy from <a href='http://cpaptalk.com'>CPAPTalk</a> for her help with documentation and tutorials, as well as everyone who helped out by testing and sharing their CPAP data. " )
+ " </p> "
// Donations
" <hr><p><font color= \" blue \" > " +
tr ( " Thanks for using SleepyHead. If you find it within your means, please consider encouraging future development by making a donation via Paypal. " )
+ " </font> "
" <hr><p><b>Disclaimer</b><br/><i> " +
tr ( " This software comes with absolutely no warranty, either express of implied. " ) + " " +
tr ( " It comes with no guarantee of fitness for any particular purpose. " ) + " " +
tr ( " No guarantees are made regarding the accuracy of any data this program displays. " ) + " </i></p> "
" <p><i> " +
tr ( " This is NOT medical software, it is merely a research tool that provides a visual interpretation of data recorded by supported devices. " )
+
" <b> " + tr ( " This software is NOT suitable for medical diagnostics purposes, neither is it fit for CPAP complaince reporting purposes, or ANY other medical use for that matter. " )
+ " </b></i></p> "
" <p><i> " +
tr ( " The author and anyone associated with him accepts NO responsibilty for damages, issues or non-issues resulting from the use or mis-use of this software. " )
+ " </p><p><b> " +
tr ( " Use this software entirely at your own risk. " ) + " </b></i></p> "
" </font></td></tr></table></span></body> "
) . arg ( major_version ) . arg ( minor_version ) . arg ( revision_number ) . arg ( release_number ) . arg ( __DATE__ ) . arg (
__TIME__ ) . arg ( gitrev ) . arg ( ReleaseStatus ) . arg ( QDir : : toNativeSeparators ( GetAppRoot ( ) ) ) ;
2014-04-15 03:18:54 +00:00
//"</div></body></html>"
2013-01-20 16:31:51 +00:00
2014-04-17 05:52:25 +00:00
QDialog aboutbox ;
aboutbox . setWindowTitle ( QObject : : tr ( " About SleepyHead " ) ) ;
2013-01-20 16:31:51 +00:00
2014-04-17 05:52:25 +00:00
QVBoxLayout layout ( & aboutbox ) ;
2013-01-20 16:31:51 +00:00
2014-04-17 05:52:25 +00:00
QWebView webview ( & aboutbox ) ;
2013-01-20 16:31:51 +00:00
2014-04-17 05:52:25 +00:00
webview . setHtml ( msg ) ;
webview . page ( ) - > setLinkDelegationPolicy ( QWebPage : : DelegateAllLinks ) ;
connect ( & webview , SIGNAL ( linkClicked ( const QUrl & ) ) , SLOT ( aboutBoxLinkClicked ( const QUrl & ) ) ) ;
2013-01-20 16:31:51 +00:00
2014-04-17 05:52:25 +00:00
layout . insertWidget ( 0 , & webview , 1 ) ;
2013-01-20 16:31:51 +00:00
2014-04-17 05:52:25 +00:00
QHBoxLayout layout2 ( & aboutbox ) ;
layout . insertLayout ( 1 , & layout2 , 1 ) ;
QPushButton okbtn ( QObject : : tr ( " &Close " ) , & aboutbox ) ;
aboutbox . connect ( & okbtn , SIGNAL ( clicked ( ) ) , SLOT ( reject ( ) ) ) ;
layout2 . insertWidget ( 1 , & okbtn , 1 ) ;
2013-01-20 16:31:51 +00:00
2014-04-17 05:52:25 +00:00
QPushButton donatebtn ( QObject : : tr ( " &Donate " ) , & aboutbox ) ;
aboutbox . connect ( & donatebtn , SIGNAL ( clicked ( ) ) ,
SLOT ( accept ( ) ) ) ; //hack this button to use the accepted slot, so clicking x closes like it shouldß
layout2 . insertWidget ( 1 , & donatebtn , 1 ) ;
2013-01-20 16:31:51 +00:00
2014-04-17 05:52:25 +00:00
QApplication : : processEvents ( ) ; // MW: Needed on Mac, as the html has to finish loading
2013-01-20 16:31:51 +00:00
2014-04-17 05:52:25 +00:00
if ( aboutbox . exec ( ) = = QDialog : : Accepted ) {
QDesktopServices : : openUrl ( QUrl ( " http://sourceforge.net/p/sleepyhead/donate " ) ) ;
2013-01-20 16:31:51 +00:00
//spawn browser with paypal site.
2014-04-17 05:52:25 +00:00
}
2013-01-20 19:39:01 +00:00
2014-04-17 05:52:25 +00:00
disconnect ( & webview , SIGNAL ( linkClicked ( const QUrl & ) ) , this ,
SLOT ( aboutBoxLinkClicked ( const QUrl & ) ) ) ;
2011-06-26 16:35:54 +00:00
}
2011-06-27 15:00:00 +00:00
2011-07-17 15:57:45 +00:00
void MainWindow : : on_actionDebug_toggled ( bool checked )
{
2011-12-21 14:24:09 +00:00
PROFILE . general - > setShowDebug ( checked ) ;
2014-04-17 05:52:25 +00:00
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 ( )
{
2014-04-17 05:52:25 +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 ( )
{
2013-09-16 04:30:38 +00:00
//MW: TODO: This will crash if attempted to enter while still loading..
2012-01-10 06:19:49 +00:00
if ( m_inRecalculation ) {
2013-09-09 15:56:02 +00:00
mainwin - > Notify ( tr ( " Access to Preferences has been blocked until recalculation completes. " ) ) ;
2012-01-10 06:19:49 +00:00
return ;
}
2014-04-17 05:52:25 +00:00
PreferencesDialog pd ( this , p_profile ) ;
prefdialog = & pd ;
if ( pd . exec ( ) = = PreferencesDialog : : Accepted ) {
2011-08-02 22:37:15 +00:00
qDebug ( ) < < " Preferences Accepted " ;
2014-04-17 05:52:25 +00:00
2012-01-10 06:19:49 +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 ( ) ;
}
2014-04-17 05:52:25 +00:00
2011-09-23 03:54:48 +00:00
if ( overview ) {
overview - > ReloadGraphs ( ) ;
overview - > RedrawGraphs ( ) ;
}
2011-08-02 22:37:15 +00:00
}
2014-04-17 05:52:25 +00:00
2014-04-23 13:19:56 +00:00
prefdialog = nullptr ;
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 ( )
{
2014-04-17 05:52:25 +00:00
bool first = false ;
2011-10-05 06:45:33 +00:00
if ( ! oximetry ) {
2011-12-21 14:24:09 +00:00
if ( ! PROFILE . oxi - > oximetryEnabled ( ) ) {
2014-04-17 05:52:25 +00:00
if ( QMessageBox : : question ( this , tr ( " Question " ) ,
tr ( " Do you have a CMS50[x] Oximeter? \n One is required to use this section. " ) , QMessageBox : : Yes ,
QMessageBox : : No ) = = QMessageBox : : No ) { return ; }
2011-12-21 14:24:09 +00:00
PROFILE . oxi - > setOximetryEnabled ( true ) ;
2011-10-05 06:49:12 +00:00
}
2014-04-17 05:52:25 +00:00
oximetry = new Oximetry ( ui - > tabWidget , daily - > graphView ( ) ) ;
ui - > tabWidget - > insertTab ( 3 , oximetry , STR_TR_Oximetry ) ;
first = true ;
2011-08-05 08:20:28 +00:00
}
2013-09-16 04:30:38 +00:00
// MW: Instead, how about starting a direct import?
oximetry - > serialImport ( ) ;
2011-10-05 06:45:33 +00:00
ui - > tabWidget - > setCurrentWidget ( oximetry ) ;
2014-04-17 05:52:25 +00:00
if ( ! first ) { oximetry - > RedrawGraphs ( ) ; }
2011-12-21 14:24:09 +00:00
qstatus2 - > setText ( STR_TR_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
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 ( )
{
2014-04-17 05:52:25 +00:00
UpdaterWindow * w = new UpdaterWindow ( this ) ;
2011-12-16 16:31:58 +00:00
w - > checkForUpdates ( ) ;
2011-09-06 07:33:34 +00:00
}
2011-09-07 08:08:27 +00:00
void MainWindow : : on_action_Screenshot_triggered ( )
{
2014-04-17 05:52:25 +00:00
QTimer : : singleShot ( 250 , this , SLOT ( DelayedScreenshot ( ) ) ) ;
2011-09-07 08:08:27 +00:00
}
void MainWindow : : DelayedScreenshot ( )
{
2014-04-17 05:52:25 +00:00
int w = width ( ) ;
int h = height ( ) ;
2014-04-09 16:14:41 +00:00
// Scale for high resolution displays (like Retina)
2014-04-09 18:46:33 +00:00
# if(QT_VERSION>=QT_VERSION_CHECK(5,0,0))
2014-04-17 05:52:25 +00:00
qreal pr = devicePixelRatio ( ) ;
w / = pr ;
h / = pr ;
2014-04-09 18:46:33 +00:00
# endif
2014-04-09 16:14:41 +00:00
2014-04-17 05:52:25 +00:00
QPixmap pixmap = QPixmap : : grabWindow ( this - > winId ( ) , x ( ) , y ( ) , w , h ) ;
2014-04-09 16:14:41 +00:00
2014-04-17 05:52:25 +00:00
QString a = PREF . Get ( " {home}/Screenshots " ) ;
2011-09-07 08:08:27 +00:00
QDir dir ( a ) ;
2014-04-17 05:52:25 +00:00
if ( ! dir . exists ( ) ) {
2011-09-07 08:08:27 +00:00
dir . mkdir ( a ) ;
}
2013-09-14 23:32:14 +00:00
2014-04-17 05:52:25 +00:00
a + = " /screenshot- " + QDateTime : : currentDateTime ( ) . toString ( " yyyyMMdd-hhmmss " ) + " .png " ;
2014-04-09 16:14:41 +00:00
2013-09-14 23:32:14 +00:00
qDebug ( ) < < " Saving screenshot to " < < a ;
2014-04-17 05:52:25 +00:00
2014-04-09 16:20:34 +00:00
if ( ! pixmap . save ( a ) ) {
Notify ( tr ( " There was an error saving screenshot to file \" %1 \" " ) . arg ( QDir : : toNativeSeparators ( a ) ) ) ;
} else {
Notify ( tr ( " Screenshot saved to file \" %1 \" " ) . arg ( QDir : : toNativeSeparators ( a ) ) ) ;
2013-09-14 23:32:14 +00:00
}
2011-09-07 08:08:27 +00:00
}
2011-09-07 09:15:33 +00:00
2014-04-15 11:02:51 +00:00
void MainWindow : : on_actionView_Oximetry_triggered ( )
2011-09-07 09:15:33 +00:00
{
on_oximetryButton_clicked ( ) ;
}
2014-04-17 05:52:25 +00:00
void MainWindow : : updatestatusBarMessage ( const QString & text )
2011-09-11 06:16:45 +00:00
{
2014-04-17 05:52:25 +00:00
ui - > statusbar - > showMessage ( text , 1000 ) ;
2011-09-11 06:16:45 +00:00
}
void MainWindow : : on_actionPrint_Report_triggered ( )
{
2013-09-09 15:56:02 +00:00
# ifdef Q_WS_MAC
2014-04-17 05:52:25 +00:00
# if ((QT_VERSION <= QT_VERSION_CHECK(4, 8, 4)))
QMessageBox : : information ( this , tr ( " Printing Disabled " ) ,
tr ( " Please rebuild SleepyHead with Qt 4.8.5 or greater, as printing causes a crash with this version of Qt " ) ,
QMessageBox : : Ok ) ;
2013-09-09 15:56:02 +00:00
return ;
2014-04-17 05:52:25 +00:00
# endif
2013-09-09 15:56:02 +00:00
# endif
2013-09-14 23:32:14 +00:00
Report report ;
2014-04-17 05:52:25 +00:00
if ( ui - > tabWidget - > currentWidget ( ) = = overview ) {
Report : : PrintReport ( overview - > graphView ( ) , STR_TR_Overview ) ;
} else if ( ui - > tabWidget - > currentWidget ( ) = = daily ) {
Report : : PrintReport ( daily - > graphView ( ) , STR_TR_Daily , daily - > getDate ( ) ) ;
} else if ( ui - > tabWidget - > currentWidget ( ) = = oximetry ) {
if ( oximetry ) {
Report : : PrintReport ( oximetry - > graphView ( ) , STR_TR_Oximetry ) ;
}
2011-09-11 06:16:45 +00:00
} else {
2011-12-25 17:12:54 +00:00
QPrinter printer ;
# ifdef Q_WS_X11
printer . setPrinterName ( " Print to File (PDF) " ) ;
printer . setOutputFormat ( QPrinter : : PdfFormat ) ;
2011-12-25 17:20:30 +00:00
QString name ;
QString datestr ;
2014-04-25 05:28:10 +00:00
if ( ui - > tabWidget - > currentWidget ( ) = = ui - > statisticsTab ) {
name = " Statistics " ;
2014-04-17 05:52:25 +00:00
datestr = QDate : : currentDate ( ) . toString ( Qt : : ISODate ) ;
} else if ( ui - > tabWidget - > currentWidget ( ) = = ui - > helpTab ) {
name = " Help " ;
datestr = QDateTime : : currentDateTime ( ) . toString ( Qt : : ISODate ) ;
} else { name = " Unknown " ; }
QString filename = PREF . Get ( " {home}/ " + name + " _ " + PROFILE . user - > userName ( ) + " _ " + datestr +
" .pdf " ) ;
2011-12-25 17:12:54 +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 ) ;
2014-04-17 05:52:25 +00:00
printer . setPageMargins ( 10 , 10 , 10 , 10 , QPrinter : : Millimeter ) ;
QPrintDialog pdlg ( & printer , this ) ;
2011-12-25 17:12:54 +00:00
2014-04-17 05:52:25 +00:00
if ( pdlg . exec ( ) = = QPrintDialog : : Accepted ) {
2011-12-25 17:20:30 +00:00
2014-04-25 05:28:10 +00:00
if ( ui - > tabWidget - > currentWidget ( ) = = ui - > statisticsTab ) {
ui - > statisticsView - > print ( & printer ) ;
2014-04-17 05:52:25 +00:00
} else if ( ui - > tabWidget - > currentWidget ( ) = = ui - > helpTab ) {
2011-12-25 17:20:30 +00:00
ui - > webView - > print ( & printer ) ;
}
2011-12-25 17:12:54 +00:00
}
2014-04-17 05:52:25 +00:00
2011-12-25 17:12:54 +00:00
//QMessageBox::information(this,tr("Not supported Yet"),tr("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-12-21 14:24:09 +00:00
newprof . edit ( PREF [ STR_GEN_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 )
{
2011-12-21 12:47:47 +00:00
PROFILE . general - > setLinkGroups ( arg1 ) ;
2014-04-17 05:52:25 +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 " ;
2014-04-17 05:52:25 +00:00
i = ui - > tabWidget - > currentIndex ( ) + 1 ;
if ( i > = ui - > tabWidget - > count ( ) ) {
i = 0 ;
}
2011-10-28 11:31:31 +00:00
ui - > tabWidget - > setCurrentIndex ( i ) ;
}
2011-11-14 14:10:46 +00:00
void MainWindow : : on_actionExp_ort_triggered ( )
{
ExportCSV ex ( this ) ;
2014-04-17 05:52:25 +00:00
if ( ex . exec ( ) = = ExportCSV : : Accepted ) {
2011-11-14 14:10:46 +00:00
}
}
2011-11-21 10:20:11 +00:00
void MainWindow : : on_actionOnline_Users_Guide_triggered ( )
{
2014-04-17 05:52:25 +00:00
ui - > webView - > load (
QUrl ( " http://sourceforge.net/apps/mediawiki/sleepyhead/index.php?title=SleepyHead_Users_Guide " ) ) ;
2011-12-25 16:19:08 +00:00
ui - > tabWidget - > setCurrentWidget ( ui - > helpTab ) ;
2011-11-21 10:20:11 +00:00
}
void MainWindow : : on_action_Frequently_Asked_Questions_triggered ( )
{
2014-04-17 05:52:25 +00:00
ui - > webView - > load (
QUrl ( " http://sourceforge.net/apps/mediawiki/sleepyhead/index.php?title=Frequently_Asked_Questions " ) ) ;
2011-12-25 16:19:08 +00:00
ui - > tabWidget - > setCurrentWidget ( ui - > helpTab ) ;
2011-11-21 10:20:11 +00:00
}
2011-11-27 14:35:25 +00:00
2014-04-17 05:52:25 +00:00
void packEventList ( EventList * el , EventDataType minval = 0 )
2011-12-23 10:52:31 +00:00
{
2014-04-17 05:52:25 +00:00
if ( el - > count ( ) < 2 ) { return ; }
2011-12-23 10:52:31 +00:00
EventList nel ( EVL_Waveform ) ;
2014-04-17 05:52:25 +00:00
EventDataType t = 0 , lastt = 0 ; //el->data(0);
qint64 ti = 0 ; //=el->time(0);
2011-12-23 10:52:31 +00:00
//nel.AddEvent(ti,lastt);
2014-04-17 05:52:25 +00:00
bool f = false ;
qint64 lasttime = 0 ;
EventDataType min = 999 , max = 0 ;
2013-09-15 04:20:26 +00:00
2014-04-17 05:52:25 +00:00
for ( quint32 i = 0 ; i < el - > count ( ) ; i + + ) {
t = el - > data ( i ) ;
ti = el - > time ( i ) ;
f = false ;
2013-09-15 04:20:26 +00:00
2014-04-17 05:52:25 +00:00
if ( t > minval ) {
if ( t ! = lastt ) {
2011-12-23 10:52:31 +00:00
if ( ! lasttime ) {
nel . setFirst ( ti ) ;
}
2014-04-17 05:52:25 +00:00
nel . AddEvent ( ti , t ) ;
if ( t < min ) { min = t ; }
if ( t > max ) { max = t ; }
lasttime = ti ;
f = true ;
2011-12-23 10:52:31 +00:00
}
} else {
2014-04-17 05:52:25 +00:00
if ( lastt > minval ) {
nel . AddEvent ( ti , lastt ) ;
lasttime = ti ;
f = true ;
2011-12-23 10:52:31 +00:00
}
}
2014-04-17 05:52:25 +00:00
lastt = t ;
2011-12-23 10:52:31 +00:00
}
2014-04-17 05:52:25 +00:00
2011-12-23 10:52:31 +00:00
if ( ! f ) {
2014-04-17 05:52:25 +00:00
if ( t > minval ) {
nel . AddEvent ( ti , t ) ;
lasttime = ti ;
2011-12-23 10:52:31 +00:00
}
}
2014-04-17 05:52:25 +00:00
2011-12-23 10:52:31 +00:00
el - > setFirst ( nel . first ( ) ) ;
el - > setLast ( nel . last ( ) ) ;
el - > setMin ( min ) ;
el - > setMax ( max ) ;
el - > getData ( ) . clear ( ) ;
el - > getTime ( ) . clear ( ) ;
el - > setCount ( nel . count ( ) ) ;
2014-04-17 05:52:25 +00:00
el - > getData ( ) = nel . getData ( ) ;
el - > getTime ( ) = nel . getTime ( ) ;
2011-12-23 10:52:31 +00:00
}
2011-12-01 01:47:09 +00:00
void MainWindow : : on_action_Rebuild_Oximetry_Index_triggered ( )
{
2011-12-21 17:00:19 +00:00
QVector < ChannelID > valid ;
2011-12-01 01:47:09 +00:00
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
2011-12-21 17:00:19 +00:00
QVector < ChannelID > invalid ;
2011-12-01 01:47:09 +00:00
2014-04-17 05:52:25 +00:00
QList < Machine * > machines = PROFILE . GetMachines ( MT_OXIMETER ) ;
2011-12-01 03:05:23 +00:00
2014-04-17 05:52:25 +00:00
qint64 f = 0 , l = 0 ;
2011-12-23 10:52:31 +00:00
2014-04-17 05:52:25 +00:00
int discard_threshold = PROFILE . oxi - > oxiDiscardThreshold ( ) ;
2011-12-01 03:05:23 +00:00
Machine * m ;
2014-04-17 05:52:25 +00:00
for ( int z = 0 ; z < machines . size ( ) ; z + + ) {
m = machines . at ( z ) ;
2011-12-01 03:05:23 +00:00
//m->sessionlist.erase(m->sessionlist.find(0));
2011-12-28 06:27:26 +00:00
// For each Session
2014-04-17 05:52:25 +00:00
for ( QHash < SessionID , Session * > : : iterator s = m - > sessionlist . begin ( ) ; s ! = m - > sessionlist . end ( ) ;
s + + ) {
Session * sess = s . value ( ) ;
if ( ! sess ) { continue ; }
2011-12-01 03:05:23 +00:00
sess - > OpenEvents ( ) ;
2011-12-28 06:27:26 +00:00
// For each EventList contained in session
2011-12-01 03:05:23 +00:00
invalid . clear ( ) ;
2014-04-17 05:52:25 +00:00
f = 0 ;
l = 0 ;
for ( QHash < ChannelID , QVector < EventList * > > : : iterator e = sess - > eventlist . begin ( ) ;
e ! = sess - > eventlist . end ( ) ; e + + ) {
2011-12-28 06:27:26 +00:00
// Discard any non data events.
2011-12-01 03:05:23 +00:00
if ( ! valid . contains ( e . key ( ) ) ) {
2011-12-28 06:27:26 +00:00
// delete and push aside for later to clean up
2014-04-17 05:52:25 +00:00
for ( int i = 0 ; i < e . value ( ) . size ( ) ; i + + ) {
2011-12-01 03:05:23 +00:00
delete e . value ( ) [ i ] ;
2011-12-01 01:47:09 +00:00
}
2014-04-17 05:52:25 +00:00
2011-12-01 03:05:23 +00:00
e . value ( ) . clear ( ) ;
invalid . push_back ( e . key ( ) ) ;
} else {
2011-12-28 06:27:26 +00:00
// Valid event
2013-09-15 04:20:26 +00:00
2014-04-17 05:52:25 +00:00
// // Clean up outliers at start of eventlist chunks
// EventDataType baseline=sess->wavg(OXI_SPO2);
// if (e.key()==OXI_SPO2) {
// const int o2start_threshold=10000; // seconds since start of event
// EventDataType zz;
// int ii;
// // Trash suspect outliers in the first o2start_threshold milliseconds
// for (int j=0;j<e.value().size();j++) {
// EventList *ev=e.value()[j];
// if ((ev->count() <= (unsigned)discard_threshold))
// continue;
// qint64 ti=ev->time(0);
// zz=-1;
// // Peek o2start_threshold ms ahead and grab the value
// for (ii=0;ii<ev->count();ii++) {
// if (((ev->time(ii)-ti) > o2start_threshold)) {
// zz=ev->data(ii);
// break;
// }
// }
// if (zz<0)
// continue;
// // Trash any suspect outliers
// for (int i=0;i<ii;i++) {
// if (ev->data(i) < baseline) { //(zz-10)) {
// ev->getData()[i]=0;
// }
// }
// }
// }
2011-12-01 03:05:23 +00:00
QVector < EventList * > newlist ;
2014-04-17 05:52:25 +00:00
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 ] ;
}
}
2011-12-23 10:52:31 +00:00
2014-04-17 05:52:25 +00:00
for ( int i = 0 ; i < newlist . size ( ) ; i + + ) {
packEventList ( newlist [ i ] , 8 ) ;
EventList * el = newlist [ i ] ;
if ( ! f | | f > el - > first ( ) ) { f = el - > first ( ) ; }
if ( ! l | | l < el - > last ( ) ) { l = el - > last ( ) ; }
2011-12-01 03:05:23 +00:00
}
2014-04-17 05:52:25 +00:00
e . value ( ) = newlist ;
2011-12-01 01:47:09 +00:00
}
}
2014-04-17 05:52:25 +00:00
for ( int i = 0 ; i < invalid . size ( ) ; i + + ) {
2011-12-01 03:05:23 +00:00
sess - > eventlist . erase ( sess - > eventlist . find ( invalid [ i ] ) ) ;
}
2014-04-17 05:52:25 +00:00
if ( f ) { sess - > really_set_first ( f ) ; }
if ( l ) { sess - > really_set_last ( l ) ; }
2011-12-01 03:05:23 +00:00
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 ( ) ;
2012-01-03 08:10:13 +00:00
sess - > m_valuesummary . clear ( ) ;
sess - > m_timesummary . clear ( ) ;
2011-12-01 03:05:23 +00:00
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
}
2014-04-17 05:52:25 +00:00
for ( int i = 0 ; i < machines . size ( ) ; i + + ) {
Machine * m = machines [ i ] ;
2011-12-01 01:47:09 +00:00
m - > Save ( ) ;
}
2014-04-17 05:52:25 +00:00
2013-09-15 04:20:26 +00:00
getDaily ( ) - > LoadDate ( getDaily ( ) - > getDate ( ) ) ;
//getDaily()->ReloadGraphs();
2011-12-01 01:47:09 +00:00
getOverview ( ) - > ReloadGraphs ( ) ;
}
2011-12-03 05:27:57 +00:00
2014-04-17 05:52:25 +00:00
void MainWindow : : RestartApplication ( bool force_login , bool change_datafolder )
2011-12-03 05:27:57 +00:00
{
QString apppath ;
# ifdef Q_OS_MAC
2014-04-17 05:52:25 +00:00
// 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 ) ;
2011-12-03 05:27:57 +00:00
2014-04-17 05:52:25 +00:00
QStringList args ;
args < < " -n " ; // -n option is important, as it opens a new process
args < < apppath ;
2011-12-03 05:27:57 +00:00
2014-04-17 05:52:25 +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 06:22:02 +00:00
2014-04-17 05:52:25 +00:00
if ( force_login ) { args < < " -l " ; }
2011-12-18 05:17:48 +00:00
2014-04-17 05:52:25 +00:00
if ( change_datafolder ) { args < < " -d " ; }
2011-12-03 05:27:57 +00:00
2014-04-17 05:52:25 +00:00
if ( QProcess : : startDetached ( " /usr/bin/open " , args ) ) {
QApplication : : instance ( ) - > exit ( ) ;
2014-04-23 13:19:56 +00:00
} else { QMessageBox : : warning ( nullptr , tr ( " Gah! " ) , tr ( " If you can read this, the restart command didn't work. Your going to have to do it yourself manually. " ) , QMessageBox : : Ok ) ; }
2011-12-03 05:27:57 +00:00
# else
2014-04-17 05:52:25 +00:00
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
QStringList args ;
args < < " -p " ;
if ( force_login ) { args < < " -l " ; }
if ( change_datafolder ) { args < < " -d " ; }
if ( QProcess : : startDetached ( apppath , args ) ) {
: : exit ( 0 ) ;
//QApplication::instance()->exit();
2014-04-23 13:19:56 +00:00
} else { QMessageBox : : warning ( nullptr , tr ( " Gah! " ) , tr ( " If you can read this, the restart command didn't work. Your going to have to do it yourself manually. " ) , QMessageBox : : Ok ) ; }
2014-04-17 05:52:25 +00:00
2011-12-03 05:27:57 +00:00
# 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 ( )
{
2014-04-17 05:52:25 +00:00
QDate date = getDaily ( ) - > getDate ( ) ;
Day * day = PROFILE . GetDay ( date , MT_CPAP ) ;
2011-12-08 04:10:35 +00:00
Machine * m ;
2014-04-17 05:52:25 +00:00
2011-12-08 04:10:35 +00:00
if ( day ) {
2014-04-17 05:52:25 +00:00
m = day - > machine ;
QString path = PROFILE . Get ( " { " + STR_GEN_DataFolder + " }/ " ) + m - > GetClass ( ) + " _ " +
m - > properties [ STR_PROP_Serial ] + " / " ;
2011-12-08 04:10:35 +00:00
2013-10-22 11:42:57 +00:00
QList < Session * > : : iterator s ;
2011-12-08 04:10:35 +00:00
2013-10-22 11:42:57 +00:00
QList < Session * > list ;
2014-04-17 05:52:25 +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 ) ;
2011-12-08 04:10:35 +00:00
qDebug ( ) < < " Removing " < < filename0 ;
qDebug ( ) < < " Removing " < < filename1 ;
QFile : : remove ( filename0 ) ;
QFile : : remove ( filename1 ) ;
2013-10-22 11:42:57 +00:00
list . push_back ( * s ) ;
2011-12-08 04:10:35 +00:00
m - > sessionlist . erase ( m - > sessionlist . find ( id ) ) ; // remove from machines session list
}
2014-04-17 05:52:25 +00:00
2013-10-22 11:42:57 +00:00
m - > day . erase ( m - > day . find ( date ) ) ;
2014-04-17 05:52:25 +00:00
for ( int i = 0 ; i < list . size ( ) ; i + + ) {
Session * sess = list . at ( i ) ;
2013-10-22 11:42:57 +00:00
day - > removeSession ( sess ) ;
delete sess ;
}
2014-04-17 05:52:25 +00:00
QList < Day * > & dl = PROFILE . daylist [ date ] ;
2011-12-08 04:10:35 +00:00
QList < Day * > : : iterator it ; //=dl.begin();
2014-04-17 05:52:25 +00:00
for ( it = dl . begin ( ) ; it ! = dl . end ( ) ; it + + ) {
if ( ( * it ) = = day ) { break ; }
2011-12-08 04:10:35 +00:00
}
2014-04-17 05:52:25 +00:00
if ( it ! = dl . end ( ) ) {
2012-01-08 03:29:22 +00:00
dl . erase ( it ) ;
//PROFILE.daylist[date]. // ??
2011-12-08 04:10:35 +00:00
delete day ;
}
}
2014-04-17 05:52:25 +00:00
2013-10-22 11:42:57 +00:00
getDaily ( ) - > clearLastDay ( ) ;
getDaily ( ) - > LoadDate ( date ) ;
2011-12-08 04:10:35 +00:00
}
2011-12-13 08:05:33 +00:00
void MainWindow : : on_actionAll_Data_for_current_CPAP_machine_triggered ( )
{
2014-04-17 05:52:25 +00:00
QDate date = getDaily ( ) - > getDate ( ) ;
Day * day = PROFILE . GetDay ( date , MT_CPAP ) ;
2011-12-13 08:05:33 +00:00
Machine * m ;
2014-04-17 05:52:25 +00:00
2011-12-13 08:05:33 +00:00
if ( day ) {
2014-04-17 05:52:25 +00:00
m = day - > machine ;
2011-12-13 08:05:33 +00:00
if ( ! m ) {
qDebug ( ) < < " Gah!! no machine to purge " ;
return ;
}
2014-04-17 05:52:25 +00:00
if ( QMessageBox : : question ( this , tr ( " Are you sure? " ) ,
tr ( " Are you sure you want to purge all CPAP data for the following machine: \n " ) +
m - > properties [ STR_PROP_Brand ] + " " + m - > properties [ STR_PROP_Model ] + " " +
m - > properties [ STR_PROP_ModelNumber ] + " ( " + m - > properties [ STR_PROP_Serial ] + " ) " ,
QMessageBox : : Yes , QMessageBox : : No ) = = QMessageBox : : Yes ) {
2011-12-13 08:05:33 +00:00
m - > Purge ( 3478216 ) ;
2012-01-06 16:07:54 +00:00
PROFILE . machlist . erase ( PROFILE . machlist . find ( m - > id ( ) ) ) ;
2012-01-09 03:43:42 +00:00
// delete or not to delete.. this needs to delete later.. :/
//delete m;
2011-12-13 08:05:33 +00:00
RestartApplication ( ) ;
}
}
}
2011-12-23 14:12:04 +00:00
2014-04-17 05:52:25 +00:00
void MainWindow : : keyPressEvent ( QKeyEvent * event )
2011-12-25 05:05:12 +00:00
{
2012-01-05 04:37:22 +00:00
Q_UNUSED ( event )
2012-01-03 03:50:54 +00:00
//qDebug() << "Keypress:" << event->key();
2011-12-25 05:05:12 +00:00
}
2011-12-25 11:27:10 +00:00
void MainWindow : : on_action_Sidebar_Toggle_toggled ( bool visible )
{
ui - > toolBox - > setVisible ( visible ) ;
}
2011-12-25 13:27:47 +00:00
void MainWindow : : on_recordsBox_linkClicked ( const QUrl & linkurl )
{
2014-04-17 05:52:25 +00:00
QString link = linkurl . toString ( ) . section ( " = " , 0 , 0 ) . toLower ( ) ;
QString datestr = linkurl . toString ( ) . section ( " = " , 1 ) . toLower ( ) ;
2011-12-25 13:27:47 +00:00
qDebug ( ) < < linkurl . toString ( ) < < link < < datestr ;
2014-04-17 05:52:25 +00:00
if ( link = = " daily " ) {
QDate date = QDate : : fromString ( datestr , Qt : : ISODate ) ;
2011-12-25 13:27:47 +00:00
daily - > LoadDate ( date ) ;
ui - > tabWidget - > setCurrentWidget ( daily ) ;
2014-04-17 05:52:25 +00:00
} else if ( link = = " overview " ) {
QString date1 = datestr . section ( " , " , 0 , 0 ) ;
QString date2 = datestr . section ( " , " , 1 ) ;
2011-12-25 13:27:47 +00:00
2014-04-17 05:52:25 +00:00
QDate d1 = QDate : : fromString ( date1 , Qt : : ISODate ) ;
QDate d2 = QDate : : fromString ( date2 , Qt : : ISODate ) ;
overview - > setRange ( d1 , d2 ) ;
2011-12-25 13:27:47 +00:00
ui - > tabWidget - > setCurrentWidget ( overview ) ;
}
}
2011-12-25 16:19:08 +00:00
void MainWindow : : on_helpButton_clicked ( )
{
ui - > tabWidget - > setCurrentWidget ( ui - > helpTab ) ;
}
2014-04-15 11:02:51 +00:00
void MainWindow : : on_actionView_Statistics_triggered ( )
2011-12-25 16:19:08 +00:00
{
2014-04-25 05:28:10 +00:00
ui - > tabWidget - > setCurrentWidget ( ui - > statisticsTab ) ;
2011-12-25 16:19:08 +00:00
}
2011-12-26 03:06:39 +00:00
void MainWindow : : on_webView_linkClicked ( const QUrl & url )
{
2014-04-17 05:52:25 +00:00
QString s = url . toString ( ) ;
2011-12-26 03:06:39 +00:00
qDebug ( ) < < " Link Clicked " < < url ;
2014-04-17 05:52:25 +00:00
2011-12-26 03:06:39 +00:00
if ( s . toLower ( ) . startsWith ( " https: " ) ) {
QDesktopServices ( ) . openUrl ( url ) ;
} else {
ui - > webView - > setUrl ( url ) ;
}
}
2011-12-26 04:41:28 +00:00
2011-12-26 05:51:53 +00:00
void MainWindow : : on_webView_statusBarMessage ( const QString & text )
{
ui - > statusbar - > showMessage ( text ) ;
}
2014-04-17 05:52:25 +00:00
void MainWindow : : LinkHovered ( const QString & link , const QString & title , const QString & textContent )
2011-12-26 05:51:53 +00:00
{
Q_UNUSED ( title ) ;
Q_UNUSED ( textContent ) ;
ui - > statusbar - > showMessage ( link ) ;
}
2011-12-26 19:25:17 +00:00
void MainWindow : : on_tabWidget_currentChanged ( int index )
{
Q_UNUSED ( index ) ;
2014-04-17 05:52:25 +00:00
QWidget * widget = ui - > tabWidget - > currentWidget ( ) ;
2014-04-25 05:28:10 +00:00
if ( ( widget = = ui - > statisticsTab ) | | ( widget = = ui - > helpTab ) ) {
2011-12-26 19:25:17 +00:00
qstatus2 - > setVisible ( false ) ;
2014-04-17 05:52:25 +00:00
} else if ( widget = = daily ) {
2011-12-26 19:25:17 +00:00
qstatus2 - > setVisible ( true ) ;
daily - > graphView ( ) - > selectionTime ( ) ;
2014-04-17 05:52:25 +00:00
} else if ( widget = = overview ) {
2011-12-26 19:25:17 +00:00
qstatus2 - > setVisible ( true ) ;
overview - > graphView ( ) - > selectionTime ( ) ;
2014-04-17 05:52:25 +00:00
} else if ( widget = = oximetry ) {
2011-12-26 19:25:17 +00:00
qstatus2 - > setVisible ( true ) ;
oximetry - > graphView ( ) - > selectionTime ( ) ;
}
}
2011-12-27 13:21:10 +00:00
2012-01-06 16:07:54 +00:00
void MainWindow : : on_bookmarkView_linkClicked ( const QUrl & arg1 )
{
2011-12-27 13:21:10 +00:00
on_recordsBox_linkClicked ( arg1 ) ;
}
2012-01-06 18:15:21 +00:00
void MainWindow : : on_filterBookmarks_editingFinished ( )
{
2014-04-17 05:52:25 +00:00
bookmarkFilter = ui - > filterBookmarks - > text ( ) ;
2012-01-06 18:15:21 +00:00
updateFavourites ( ) ;
}
void MainWindow : : on_filterBookmarksButton_clicked ( )
{
if ( ! bookmarkFilter . isEmpty ( ) ) {
ui - > filterBookmarks - > setText ( " " ) ;
2014-04-17 05:52:25 +00:00
bookmarkFilter = " " ;
2012-01-06 18:15:21 +00:00
updateFavourites ( ) ;
}
}
2012-01-10 06:19:49 +00:00
void MainWindow : : reprocessEvents ( bool restart )
{
2014-04-17 05:52:25 +00:00
m_restartRequired = restart ;
QTimer : : singleShot ( 0 , this , SLOT ( doReprocessEvents ( ) ) ) ;
2012-01-10 06:19:49 +00:00
}
2012-01-10 10:16:52 +00:00
void MainWindow : : FreeSessions ( )
{
2014-04-17 05:52:25 +00:00
QDate first = PROFILE . FirstDay ( ) ;
QDate date = PROFILE . LastDay ( ) ;
2012-01-10 10:16:52 +00:00
Day * day ;
2014-04-17 05:52:25 +00:00
QDate current = daily - > getDate ( ) ;
2012-01-10 10:16:52 +00:00
do {
2014-04-17 05:52:25 +00:00
day = PROFILE . GetDay ( date , MT_CPAP ) ;
2012-01-10 10:16:52 +00:00
if ( day ) {
2014-04-17 05:52:25 +00:00
if ( date ! = current ) {
2012-01-10 10:16:52 +00:00
day - > CloseEvents ( ) ;
}
}
2014-04-17 05:52:25 +00:00
date = date . addDays ( - 1 ) ;
} while ( date > = first ) ;
2012-01-10 10:16:52 +00:00
}
2012-01-10 06:19:49 +00:00
void MainWindow : : doReprocessEvents ( )
{
2014-04-17 05:52:25 +00:00
if ( PROFILE . countDays ( MT_CPAP , PROFILE . FirstDay ( ) , PROFILE . LastDay ( ) ) = = 0 ) {
2012-01-11 09:10:40 +00:00
return ;
2014-04-17 05:52:25 +00:00
}
2012-01-11 09:10:40 +00:00
2014-04-17 05:52:25 +00:00
m_inRecalculation = true ;
QDate first = PROFILE . FirstDay ( ) ;
QDate date = PROFILE . LastDay ( ) ;
2012-01-10 06:19:49 +00:00
Session * sess ;
Day * day ;
//FlowParser flowparser;
2014-04-17 05:52:25 +00:00
mainwin - > Notify ( tr ( " Performance will be degraded during these recalculations. " ) ,
tr ( " Recalculating Indices " ) ) ;
2012-01-10 06:19:49 +00:00
// For each day in history
2014-04-17 05:52:25 +00:00
int daycount = first . daysTo ( date ) ;
int idx = 0 ;
2012-01-10 07:37:15 +00:00
2014-04-17 05:52:25 +00:00
QList < Machine * > machines = PROFILE . GetMachines ( MT_CPAP ) ;
2012-01-10 07:37:15 +00:00
2012-01-11 04:58:46 +00:00
// Disabling multithreaded save as it appears it's causing problems
2014-04-17 05:52:25 +00:00
bool cache_sessions = false ; //PROFILE.session->cacheSessions();
2012-01-10 10:26:34 +00:00
if ( cache_sessions ) { // Use multithreaded save to handle reindexing.. (hogs memory like hell)
qstatus - > setText ( tr ( " Loading Event Data " ) ) ;
} else {
2012-01-10 10:16:52 +00:00
qstatus - > setText ( tr ( " Recalculating Summaries " ) ) ;
2012-01-10 10:26:34 +00:00
}
2014-04-17 05:52:25 +00:00
2012-01-10 10:26:34 +00:00
if ( qprogress ) {
2012-01-10 06:19:49 +00:00
qprogress - > setValue ( 0 ) ;
qprogress - > setVisible ( true ) ;
}
2014-04-17 05:52:25 +00:00
2012-01-10 10:26:34 +00:00
bool isopen ;
2014-04-17 05:52:25 +00:00
2012-01-10 06:19:49 +00:00
do {
2014-04-17 05:52:25 +00:00
day = PROFILE . GetDay ( date , MT_CPAP ) ;
2012-01-10 06:19:49 +00:00
if ( day ) {
2014-04-17 05:52:25 +00:00
for ( int i = 0 ; i < day - > size ( ) ; i + + ) {
sess = ( * day ) [ i ] ;
isopen = sess - > eventsLoaded ( ) ;
2012-01-10 10:26:34 +00:00
// Load the events if they aren't loaded already
2012-01-10 06:19:49 +00:00
sess - > OpenEvents ( ) ;
//if (!sess->channelDataExists(CPAP_FlowRate)) continue;
//QVector<EventList *> & flowlist=sess->eventlist[CPAP_FlowRate];
// Destroy any current user flags..
sess - > destroyEvent ( CPAP_UserFlag1 ) ;
sess - > destroyEvent ( CPAP_UserFlag2 ) ;
sess - > destroyEvent ( CPAP_UserFlag3 ) ;
// AHI flags
sess - > destroyEvent ( CPAP_AHI ) ;
2012-01-10 10:00:08 +00:00
sess - > destroyEvent ( CPAP_RDI ) ;
2012-01-10 06:19:49 +00:00
sess - > SetChanged ( true ) ;
2014-04-17 05:52:25 +00:00
2012-01-10 10:26:34 +00:00
if ( ! cache_sessions ) {
sess - > UpdateSummaries ( ) ;
sess - > machine ( ) - > SaveSession ( sess ) ;
2014-04-17 05:52:25 +00:00
if ( ! isopen ) {
2012-01-10 10:26:34 +00:00
sess - > TrashEvents ( ) ;
2014-04-17 05:52:25 +00:00
}
2012-01-10 10:26:34 +00:00
}
2012-01-10 06:19:49 +00:00
}
}
2014-04-17 05:52:25 +00:00
date = date . addDays ( - 1 ) ;
// if (qprogress && (++idx % 10) ==0) {
qprogress - > setValue ( 0 + ( float ( + + idx ) / float ( daycount ) * 100.0 ) ) ;
QApplication : : processEvents ( ) ;
// }
} while ( date > = first ) ;
2012-01-10 10:00:08 +00:00
2012-01-10 10:26:34 +00:00
if ( cache_sessions ) {
qstatus - > setText ( tr ( " Recalculating Summaries " ) ) ;
2014-04-17 05:52:25 +00:00
for ( int i = 0 ; i < machines . size ( ) ; i + + ) {
2012-01-10 10:26:34 +00:00
machines . at ( i ) - > Save ( ) ;
}
}
2012-01-10 07:37:15 +00:00
2012-01-10 06:19:49 +00:00
qstatus - > setText ( tr ( " " ) ) ;
qprogress - > setVisible ( false ) ;
2014-04-17 05:52:25 +00:00
m_inRecalculation = false ;
2012-01-10 10:00:08 +00:00
if ( m_restartRequired ) {
2014-04-17 05:52:25 +00:00
QMessageBox : : information ( this , tr ( " Restart Required " ) ,
tr ( " Recalculations are complete, the application now needs to restart to display the changes. " ) ,
QMessageBox : : Ok ) ;
2012-01-10 06:19:49 +00:00
RestartApplication ( ) ;
2012-01-10 10:00:08 +00:00
return ;
} else {
2014-04-17 05:52:25 +00:00
Notify ( tr ( " Recalculations are now complete. " ) , tr ( " Task Completed " ) ) ;
2012-01-10 10:00:08 +00:00
2012-01-10 10:16:52 +00:00
FreeSessions ( ) ;
2014-04-17 05:52:25 +00:00
QDate current = daily - > getDate ( ) ;
2012-01-10 10:00:08 +00:00
daily - > LoadDate ( current ) ;
2014-04-17 05:52:25 +00:00
if ( overview ) { overview - > ReloadGraphs ( ) ; }
2012-01-10 06:19:49 +00:00
}
}
2012-01-11 13:55:46 +00:00
void MainWindow : : on_actionImport_ZEO_Data_triggered ( )
{
QFileDialog w ;
w . setFileMode ( QFileDialog : : ExistingFiles ) ;
w . setOption ( QFileDialog : : ShowDirsOnly , false ) ;
2014-04-17 05:52:25 +00:00
w . setOption ( QFileDialog : : DontUseNativeDialog , true ) ;
2013-01-20 16:31:51 +00:00
w . setNameFilters ( QStringList ( " Zeo CSV File (*.csv) " ) ) ;
2012-01-11 13:55:46 +00:00
ZEOLoader zeo ;
2014-04-17 05:52:25 +00:00
if ( w . exec ( ) = = QFileDialog : : Accepted ) {
QString filename = w . selectedFiles ( ) [ 0 ] ;
2012-01-11 13:55:46 +00:00
if ( ! zeo . OpenFile ( filename ) ) {
2014-04-17 05:52:25 +00:00
Notify ( tr ( " There was a problem opening ZEO File: " ) + filename ) ;
2012-01-11 13:55:46 +00:00
return ;
}
2014-04-17 05:52:25 +00:00
2013-09-09 15:56:02 +00:00
Notify ( tr ( " Zeo CSV Import complete " ) ) ;
2012-01-11 13:55:46 +00:00
daily - > LoadDate ( daily - > getDate ( ) ) ;
}
}
2012-01-24 15:51:11 +00:00
void MainWindow : : on_actionImport_RemStar_MSeries_Data_triggered ( )
{
2013-09-09 15:56:02 +00:00
# ifdef REMSTAR_M_SUPPORT
2012-01-24 15:51:11 +00:00
QFileDialog w ;
w . setFileMode ( QFileDialog : : ExistingFiles ) ;
w . setOption ( QFileDialog : : ShowDirsOnly , false ) ;
2014-04-17 05:52:25 +00:00
w . setOption ( QFileDialog : : DontUseNativeDialog , true ) ;
2013-01-20 16:31:51 +00:00
w . setNameFilters ( QStringList ( " M-Series data file (*.bin) " ) ) ;
2012-01-24 15:51:11 +00:00
MSeriesLoader mseries ;
2014-04-17 05:52:25 +00:00
if ( w . exec ( ) = = QFileDialog : : Accepted ) {
QString filename = w . selectedFiles ( ) [ 0 ] ;
if ( ! mseries . Open ( filename , p_profile ) ) {
Notify ( tr ( " There was a problem opening MSeries block File: " ) + filename ) ;
2012-01-24 15:51:11 +00:00
return ;
}
2014-04-17 05:52:25 +00:00
2013-09-09 15:56:02 +00:00
Notify ( tr ( " MSeries Import complete " ) ) ;
2012-01-24 15:51:11 +00:00
daily - > LoadDate ( daily - > getDate ( ) ) ;
}
2014-04-17 05:52:25 +00:00
2013-09-09 15:56:02 +00:00
# endif
2012-01-24 15:51:11 +00:00
}
2012-01-29 04:17:02 +00:00
void MainWindow : : on_actionSleep_Disorder_Terms_Glossary_triggered ( )
{
2014-04-17 05:52:25 +00:00
ui - > webView - > load (
QUrl ( " http://sourceforge.net/apps/mediawiki/sleepyhead/index.php?title=Glossary " ) ) ;
2012-01-29 04:17:02 +00:00
ui - > tabWidget - > setCurrentWidget ( ui - > helpTab ) ;
}
2014-04-09 05:00:34 +00:00
void MainWindow : : on_actionHelp_Support_SleepyHead_Development_triggered ( )
2012-01-29 04:17:02 +00:00
{
2014-04-17 05:52:25 +00:00
QUrl url =
QUrl ( " http://sourceforge.net/apps/mediawiki/sleepyhead/index.php?title=Support_SleepyHead_Development " ) ;
2012-01-29 04:17:02 +00:00
QDesktopServices ( ) . openUrl ( url ) ;
2014-04-17 05:52:25 +00:00
// ui->webView->load(url);
// ui->tabWidget->setCurrentWidget(ui->helpTab);
2012-01-29 04:17:02 +00:00
}
2013-09-15 04:20:26 +00:00
void MainWindow : : on_actionChange_Language_triggered ( )
{
2014-04-17 05:52:25 +00:00
QSettings * settings = new QSettings ( getDeveloperName ( ) , getAppName ( ) ) ;
2013-10-19 02:59:52 +00:00
settings - > remove ( " Settings/Language " ) ;
delete settings ;
2013-09-15 04:20:26 +00:00
PROFILE . Save ( ) ;
PREF . Save ( ) ;
RestartApplication ( true ) ;
}
2013-10-19 02:59:52 +00:00
void MainWindow : : on_actionChange_Data_Folder_triggered ( )
{
PROFILE . Save ( ) ;
PREF . Save ( ) ;
2014-04-17 05:52:25 +00:00
RestartApplication ( false , true ) ;
2013-10-19 02:59:52 +00:00
}
2014-04-15 13:59:24 +00:00
void MainWindow : : on_actionImport_Somnopose_Data_triggered ( )
{
QFileDialog w ;
w . setFileMode ( QFileDialog : : ExistingFiles ) ;
w . setOption ( QFileDialog : : ShowDirsOnly , false ) ;
2014-04-17 05:52:25 +00:00
w . setOption ( QFileDialog : : DontUseNativeDialog , true ) ;
2014-04-15 13:59:24 +00:00
w . setNameFilters ( QStringList ( " Somnopause CSV File (*.csv) " ) ) ;
SomnoposeLoader somno ;
2014-04-17 05:52:25 +00:00
if ( w . exec ( ) = = QFileDialog : : Accepted ) {
QString filename = w . selectedFiles ( ) [ 0 ] ;
2014-04-15 13:59:24 +00:00
if ( ! somno . OpenFile ( filename ) ) {
2014-04-17 05:52:25 +00:00
Notify ( tr ( " There was a problem opening Somnopose Data File: " ) + filename ) ;
2014-04-15 13:59:24 +00:00
return ;
}
Notify ( tr ( " Somnopause Data Import complete " ) ) ;
daily - > LoadDate ( daily - > getDate ( ) ) ;
}
}
2014-04-25 05:28:10 +00:00
void MainWindow : : GenerateStatistics ( )
{
QString html = Statistics : : GenerateHTML ( ) ;
updateFavourites ( ) ;
//QWebFrame *frame=ui->statisticsView->page()->currentFrame();
//frame->addToJavaScriptWindowObject("mainwin",this);
//ui->statisticsView->setHtml(html);
MyStatsPage * page = new MyStatsPage ( this ) ;
page - > currentFrame ( ) - > setHtml ( html ) ;
ui - > statisticsView - > setPage ( page ) ;
// connect(ui->statisticsView->page()->currentFrame(),SIGNAL(javaScriptWindowObjectCleared())
// QString file="qrc:/docs/index.html";
// QUrl url(file);
// ui->webView->setUrl(url);
}
void MainWindow : : on_statisticsButton_clicked ( )
{
ui - > tabWidget - > setCurrentWidget ( ui - > statisticsTab ) ;
}
void MainWindow : : on_statisticsView_linkClicked ( const QUrl & arg1 )
{
//qDebug() << arg1;
on_recordsBox_linkClicked ( arg1 ) ;
}