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-06-26 08:30:44 +00:00
# include "mainwindow.h"
# include "ui_mainwindow.h"
2011-08-02 22:37:15 +00:00
# include "preferencesdialog.h"
2011-10-02 03:38:51 +00:00
# include "newprofile.h"
2011-09-17 12:39:00 +00:00
# include "SleepLib/schema.h"
2011-07-22 13:46:17 +00:00
2011-06-26 08:30:44 +00:00
# include "Graphs/glcommon.h"
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-10-05 07:41:56 +00:00
this - > setWindowTitle ( tr ( " SleepyHead " ) + QString ( " v%1.%2.%3 (%4) " ) . arg ( major_version ) . arg ( minor_version ) . arg ( revision_number ) . arg ( PREF [ " Profile " ] . toString ( ) ) ) ;
2011-07-17 15:57:45 +00:00
ui - > tabWidget - > setCurrentIndex ( 0 ) ;
2011-10-05 03:05:35 +00:00
//move(0,0);
overview = NULL ;
daily = NULL ;
oximetry = NULL ;
2011-07-22 13:46:17 +00:00
/* QGLFormat fmt;
2011-06-26 08:30:44 +00:00
fmt . setDepth ( false ) ;
fmt . setDirectRendering ( true ) ;
fmt . setAlpha ( true ) ;
fmt . setDoubleBuffer ( true ) ;
fmt . setRgba ( true ) ;
fmt . setDefaultFormat ( fmt ) ;
2011-07-22 13:46:17 +00:00
QGLContext smeg ( fmt ) ; */
2011-07-24 07:58:20 +00:00
//new QGLContext(fmt);
2011-07-22 13:46:17 +00:00
//shared_context->create(shared_context);
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 ;
if ( ! PROFILE . Exists ( " EnableGraphSnapshots " ) ) PROFILE [ " EnableGraphSnapshots " ] = 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-09-23 03:54:48 +00:00
//DateTime(QDate::currentDate(),QTime(12,0,0,0),Qt::UTC).time();
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-07-24 07:58:20 +00:00
}
extern MainWindow * mainwin ;
2011-06-26 08:30:44 +00:00
MainWindow : : ~ MainWindow ( )
{
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-10-05 03:05:35 +00:00
//QWidget::closeEvent(event);
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-06-27 06:26:29 +00:00
void MainWindow : : Startup ( )
{
2011-10-05 07:41:56 +00:00
qDebug ( ) < < PREF [ " AppName " ] . toString ( ) . toAscii ( ) + " v " + PREF [ " VersionString " ] . toString ( ) . 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
2011-09-11 07:22:31 +00:00
2011-10-05 07:41:56 +00:00
PROFILE . LoadMachineData ( ) ;
2011-06-27 06:26:29 +00:00
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-10-05 07:41:56 +00:00
overview = new Overview ( ui - > tabWidget , daily - > SharedWidget ( ) ) ;
2011-10-05 03:11:18 +00:00
ui - > tabWidget - > insertTab ( 2 , overview , tr ( " Overview " ) ) ;
2011-09-07 09:15:33 +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-09-17 13:21:18 +00:00
/*schema::Channel & item=schema::channel["SysOneResistSet"];
2011-09-17 12:39:00 +00:00
if ( ! item . isNull ( ) ) {
for ( QHash < int , QString > : : iterator i = item . m_options . begin ( ) ; i ! = item . m_options . end ( ) ; i + + ) {
qDebug ( ) < < i . key ( ) < < i . value ( ) ;
}
2011-09-17 13:21:18 +00:00
} */
2011-07-24 07:58:20 +00:00
//qstatusbar->clearMessage();
2011-07-19 05:22:47 +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 ( )
{
2011-08-07 12:14:30 +00:00
//QStringList dirNames;
2011-08-07 11:57:25 +00:00
2011-08-07 12:14:30 +00:00
//QFileDialog qfd(this);
//qfd.setFileMode(QFileDialog::Directory);
//qfd.setOption(QFileDialog::ShowDirsOnly,true);
QString dir = QFileDialog : : getExistingDirectory ( this , " Select a folder to import " , " " , QFileDialog : : ShowDirsOnly ) ;
2011-06-26 08:30:44 +00:00
2011-08-07 12:14:30 +00:00
if ( ! dir . isEmpty ( ) ) {
//if (qfd.exec()) {
2011-06-26 08:30:44 +00:00
qprogress - > setValue ( 0 ) ;
qprogress - > show ( ) ;
2011-07-30 02:08:19 +00:00
qstatus - > setText ( tr ( " Importing Data " ) ) ;
2011-10-05 07:41:56 +00:00
int c = PROFILE . Import ( dir ) ;
2011-08-07 12:14:30 +00:00
if ( ! c ) {
QMessageBox : : warning ( this , " Import Problem " , " Couldn't Find any Machine Data at this location: \n " + dir , QMessageBox : : Ok ) ;
}
/*dirNames=qfd.selectedFiles();
2011-07-15 13:30:41 +00:00
int c = 0 , d ;
2011-06-26 08:30:44 +00:00
for ( int i = 0 ; i < dirNames . size ( ) ; i + + ) {
2011-07-15 13:30:41 +00:00
d = profile - > Import ( dirNames [ i ] ) ;
if ( ! d ) {
QMessageBox : : warning ( this , " Import Problem " , " Couldn't Find any Machine Data at this location: \n " + dirNames [ i ] , QMessageBox : : Ok ) ;
}
c + = d ;
2011-08-07 12:14:30 +00:00
} */
2011-07-21 12:03:06 +00:00
qDebug ( ) < < " Finished Importing data " < < c ;
2011-07-15 13:30:41 +00:00
if ( c ) {
2011-10-05 07:41:56 +00:00
PROFILE . Save ( ) ;
2011-07-15 13:30:41 +00:00
if ( daily ) daily - > ReloadGraphs ( ) ;
2011-09-10 15:43:40 +00:00
if ( overview ) overview - > ReloadGraphs ( ) ;
2011-07-22 13:46:17 +00:00
//qDebug() << "overview->ReloadGraphs();";
2011-06-30 04:55:20 +00:00
}
2011-07-30 01:51:52 +00:00
qstatus - > setText ( " " ) ;
2011-06-26 08:30:44 +00:00
qprogress - > hide ( ) ;
}
}
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 ) ;
2011-07-05 05:33:06 +00:00
//ui->webView->load(url);
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-09-13 04:36:49 +00:00
qstatus2 - > setText ( " Daily " ) ;
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-27 06:26:29 +00:00
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-07-23 07:56:13 +00:00
QString msg = tr ( " <html><body><div align='center'><h2>SleepyHead v%1.%2.%3</h2>Build Date: %4 %5<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-07-23 07:56:13 +00:00
" </div></body></html> " ) . arg ( major_version ) . arg ( minor_version ) . arg ( revision_number ) . arg ( __DATE__ ) . arg ( __TIME__ ) ;
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-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 ) {
daily - > ReloadGraphs ( ) ;
daily - > RedrawGraphs ( ) ;
}
if ( overview ) {
overview - > ReloadGraphs ( ) ;
overview - > RedrawGraphs ( ) ;
}
2011-08-02 22:37:15 +00:00
}
}
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-05 07:41:56 +00:00
if ( ! PROFILE . Exists ( " HaveCMS50 " ) | | ! PROFILE [ " HaveCMS50 " ] . toBool ( ) ) {
2011-10-05 06:49:12 +00:00
if ( QMessageBox : : question ( this , " Question " , " Do you have a CMS50[x] Oximeter? \n One is required to use this section. \n Note: This section is not fully completed yet. " , QMessageBox : : Yes , QMessageBox : : No ) = = QMessageBox : : No ) return ;
2011-10-05 07:41:56 +00:00
PROFILE [ " HaveCMS50 " ] = true ;
2011-10-05 06:49:12 +00:00
}
2011-10-05 07:41:56 +00:00
oximetry = new Oximetry ( ui - > tabWidget , daily - > SharedWidget ( ) ) ;
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-09-06 07:33:34 +00:00
void MainWindow : : on_actionCheck_for_Updates_triggered ( )
{
netmanager - > get ( QNetworkRequest ( QUrl ( " http://sleepyhead.sourceforge.net/current_version.txt " ) ) ) ;
}
void MainWindow : : replyFinished ( QNetworkReply * reply )
{
if ( reply - > error ( ) = = QNetworkReply : : NoError ) {
// Wrap this crap in XML/JSON so can do other stuff.
if ( reply - > size ( ) > 20 ) {
qDebug ( ) < < " Doesn't look like a version file... :( " ;
} else {
// check in size
QByteArray data = reply - > readAll ( ) ;
QString a = data ;
a = a . trimmed ( ) ;
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 ) {
QMessageBox : : information ( this , " Laziness Warning " , " I'd love to do it for you automatically, but it's not implemented yet.. :) " , QMessageBox : : Ok ) ;
}
} else {
2011-10-05 07:41:56 +00:00
QMessageBox : : information ( this , " SleepyHead v " + PREF [ " VersionString " ] . toString ( ) , " You're already up to date! \n Latest version on sourceforge is v " + a , QMessageBox : : Ok ) ;
2011-09-06 07:33:34 +00:00
}
}
} else {
qDebug ( ) < < " Network Error: " < < reply - > errorString ( ) ;
}
reply - > deleteLater ( ) ;
}
2011-09-07 08:08:27 +00:00
# include <QPixmap>
# include <QDesktopWidget>
void MainWindow : : on_action_Screenshot_triggered ( )
{
QTimer : : singleShot ( 250 , this , SLOT ( DelayedScreenshot ( ) ) ) ;
}
void MainWindow : : DelayedScreenshot ( )
{
QPixmap pixmap = QPixmap : : grabWindow ( this - > winId ( ) ) ;
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 ) {
overview - > on_printButton_clicked ( ) ;
//} else if (ui->tabWidget->currentWidget()==daily) {
} else {
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 ;
if ( daily ) daily - > ReloadGraphs ( ) ;
}