/* MainWindow Implementation Copyright (c)2011 Mark Watkins License: GPL */ #include #include #include #include #include #include #include #include #include #include #include #include #include "mainwindow.h" #include "ui_mainwindow.h" #include "newprofile.h" #include "exportcsv.h" #include "SleepLib/schema.h" #include "Graphs/glcommon.h" QProgressBar *qprogress; QLabel *qstatus; QLabel *qstatus2; QStatusBar *qstatusbar; extern Profile * profile; void MainWindow::Log(QString s) { if (!strlock.tryLock()) return; // strlock.lock(); QString tmp=QString("%1: %2").arg(logtime.elapsed(),5,10,QChar('0')).arg(s); logbuffer.append(tmp); //QStringList appears not to be threadsafe strlock.unlock(); strlock.lock(); // only do this in the main thread? for (int i=0;ilogText->appendPlainText(logbuffer[i]); logbuffer.clear(); strlock.unlock(); //loglock.unlock(); } MainWindow::MainWindow(QWidget *parent) : QMainWindow(parent), ui(new Ui::MainWindow) { Q_ASSERT(p_profile!=NULL); logtime.start(); ui->setupUi(this); QString version=PREF["VersionString"].toString(); if (QString(GIT_BRANCH)!="master") version+=QString(" ")+QString(GIT_BRANCH); this->setWindowTitle(tr("SleepyHead")+QString(" v%1 (Profile: %2)").arg(version).arg(PREF["Profile"].toString())); ui->tabWidget->setCurrentIndex(0); overview=NULL; daily=NULL; oximetry=NULL; prefdialog=NULL; qstatusbar=ui->statusbar; qprogress=new QProgressBar(this); qprogress->setMaximum(100); qstatus2=new QLabel("Welcome",this); qstatus2->setFrameStyle(QFrame::Raised); qstatus2->setFrameShadow(QFrame::Sunken); qstatus2->setFrameShape(QFrame::Box); //qstatus2->setMinimumWidth(100); qstatus2->setMaximumWidth(100); qstatus2->setAlignment(Qt::AlignRight |Qt::AlignVCenter); qstatus=new QLabel("",this); qprogress->hide(); ui->statusbar->setMinimumWidth(200); ui->statusbar->addPermanentWidget(qstatus,0); ui->statusbar->addPermanentWidget(qprogress,1); ui->statusbar->addPermanentWidget(qstatus2,0); if (!PROFILE.Exists("ShowDebug")) PROFILE["ShowDebug"]=false; ui->actionDebug->setChecked(PROFILE["ShowDebug"].toBool()); if (!PROFILE["ShowDebug"].toBool()) { ui->logText->hide(); } // TODO: Move all this to profile creation. // This speeds up the second part of importing craploads.. later it will speed up the first part too. if (!PROFILE.Exists("EnableMultithreading")) PROFILE["EnableMultithreading"]=QThread::idealThreadCount()>1; if (!PROFILE.Exists("MemoryHog")) PROFILE["MemoryHog"]=false; if (!PROFILE.Exists("EnableGraphSnapshots")) PROFILE["EnableGraphSnapshots"]=false; if (!PROFILE.Exists("SquareWavePlots")) PROFILE["SquareWavePlots"]=true; if (!PROFILE.Exists("EnableOximetry")) PROFILE["EnableOximetry"]=false; if (!PROFILE.Exists("LinkGroups")) PROFILE["LinkGroups"]=false; if (!PROFILE.Exists("AlwaysShowOverlayBars")) PROFILE["AlwaysShowOverlayBars"]=0; if (!PROFILE.Exists("UseAntiAliasing")) PROFILE["UseAntiAliasing"]=false; if (!PROFILE.Exists("IntentionalLeak")) PROFILE["IntentionalLeak"]=(double)0.0; if (!PROFILE.Exists("IgnoreShorterSessions")) PROFILE["IgnoreShorterSessions"]=0; if (!PROFILE.Exists("CombineCloserSessions")) PROFILE["CombineCloserSessions"]=0; if (!PROFILE.Exists("DaySplitTime")) PROFILE["DaySplitTime"]=QTime(12,0,0,0); if (!PROFILE.Exists("EventWindowSize")) PROFILE["EventWindowSize"]=4; //ui->actionUse_AntiAliasing->setChecked(PROFILE["UseAntiAliasing"].toBool()); ui->action_Link_Graph_Groups->setChecked(PROFILE["LinkGroups"].toBool()); first_load=true; // Using the dirty registry here. :( QSettings settings("Jedimark", "SleepyHead"); this->restoreGeometry(settings.value("MainWindow/geometry").toByteArray()); ui->tabWidget->setCurrentWidget(ui->welcome); netmanager = new QNetworkAccessManager(this); connect(netmanager, SIGNAL(finished(QNetworkReply*)), this, SLOT(replyFinished(QNetworkReply*))); connect(ui->webView, SIGNAL(statusBarMessage(QString)), this, SLOT(updatestatusBarMessage(QString))); if (QSystemTrayIcon::isSystemTrayAvailable() && QSystemTrayIcon::supportsMessages()) { systray=new QSystemTrayIcon(QIcon(":/docs/sheep.png"),this); systray->show(); systraymenu=new QMenu(this); systray->setContextMenu(systraymenu); QAction *a=systraymenu->addAction("SleepyHead v"+PREF["VersionString"].toString()); a->setEnabled(false); systraymenu->addSeparator(); systraymenu->addAction("About",this,SLOT(on_action_About_triggered())); systraymenu->addAction("Check for Updates",this,SLOT(on_actionCheck_for_Updates_triggered())); systraymenu->addSeparator(); systraymenu->addAction("Exit",this,SLOT(close())); } else { systray=NULL; systraymenu=NULL; } } extern MainWindow *mainwin; MainWindow::~MainWindow() { if (systray) delete systray; if (systraymenu) delete systraymenu; //if (!isMaximized()) { QSettings settings("Jedimark", "SleepyHead"); settings.setValue("MainWindow/geometry", saveGeometry()); //} if (daily) { daily->close(); delete daily; } if (overview) { overview->close(); delete overview; } if (oximetry) { oximetry->close(); delete oximetry; } DoneGraphs(); Profiles::Done(); mainwin=NULL; delete ui; } void MainWindow::Notify(QString s) { if (systray) { systray->showMessage("SleepyHead v"+PREF["VersionString"].toString(),s,QSystemTrayIcon::Information,5000); } else { ui->statusbar->showMessage(s,5000); } } void MainWindow::Startup() { qDebug() << PREF["AppName"].toString().toAscii()+" v"+PREF["VersionString"].toString().toAscii() << "built with Qt"<< QT_VERSION_STR << "on" << __DATE__ << __TIME__; qstatus->setText(tr("Loading Data")); qprogress->show(); //qstatusbar->showMessage(tr("Loading Data"),0); // profile is a global variable set in main after login PROFILE.LoadMachineData(); daily=new Daily(ui->tabWidget,NULL,this); ui->tabWidget->insertTab(1,daily,tr("Daily")); overview=new Overview(ui->tabWidget,daily->SharedWidget()); ui->tabWidget->insertTab(2,overview,tr("Overview")); if (PROFILE["EnableOximetry"].toBool()) { oximetry=new Oximetry(ui->tabWidget,daily->SharedWidget()); ui->tabWidget->insertTab(3,oximetry,tr("Oximetry")); } if (daily) daily->ReloadGraphs(); if (overview) overview->ReloadGraphs(); qprogress->hide(); qstatus->setText(""); } void MainWindow::on_action_Import_Data_triggered() { //QStringList dirNames; //QFileDialog qfd(this); //qfd.setFileMode(QFileDialog::Directory); //qfd.setOption(QFileDialog::ShowDirsOnly,true); QString dir=QFileDialog::getExistingDirectory(this,"Select a folder to import","",QFileDialog::ShowDirsOnly); if (!dir.isEmpty()) { //if (qfd.exec()) { qprogress->setValue(0); qprogress->show(); qstatus->setText(tr("Importing Data")); int c=PROFILE.Import(dir); if (!c) { QMessageBox::warning(this,"Import Problem","Couldn't Find any Machine Data at this location:\n"+dir,QMessageBox::Ok); } /*dirNames=qfd.selectedFiles(); int c=0,d; for (int i=0;iImport(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; }*/ qDebug() << "Finished Importing data" << c; if (c) { PROFILE.Save(); if (daily) daily->ReloadGraphs(); if (overview) overview->ReloadGraphs(); } qstatus->setText(""); qprogress->hide(); } } QMenu * MainWindow::CreateMenu(QString title) { QMenu *menu=new QMenu(title,ui->menubar); ui->menubar->insertMenu(ui->menu_Help->menuAction(),menu); return menu; } void MainWindow::on_actionView_Welcome_triggered() { ui->tabWidget->setCurrentWidget(ui->welcome); } void MainWindow::on_action_Fullscreen_triggered() { if (ui->action_Fullscreen->isChecked()) this->showFullScreen(); else this->showNormal(); } void MainWindow::on_homeButton_clicked() { QString file="qrc:/docs/index.html"; QUrl url(file); ui->webView->setUrl(url); } void MainWindow::on_backButton_clicked() { ui->webView->back(); } void MainWindow::on_forwardButton_clicked() { ui->webView->forward(); } void MainWindow::on_webView_urlChanged(const QUrl &arg1) { ui->urlBar->setEditText(arg1.toString()); } void MainWindow::on_urlBar_activated(const QString &arg1) { QUrl url(arg1); ui->webView->setUrl(url); } void MainWindow::on_dailyButton_clicked() { ui->tabWidget->setCurrentWidget(daily); daily->RedrawGraphs(); qstatus2->setText("Daily"); } void MainWindow::JumpDaily() { on_dailyButton_clicked(); } void MainWindow::on_overviewButton_clicked() { ui->tabWidget->setCurrentWidget(overview); qstatus2->setText("Overview"); } void MainWindow::on_webView_loadFinished(bool arg1) { arg1=arg1; qprogress->hide(); if (first_load) { QTimer::singleShot(0,this,SLOT(Startup())); first_load=false; } else { qstatus->setText(""); } ui->backButton->setEnabled(ui->webView->history()->canGoBack()); ui->forwardButton->setEnabled(ui->webView->history()->canGoForward()); } void MainWindow::on_webView_loadStarted() { if (!first_load) { qstatus->setText(tr("Loading")); qprogress->reset(); qprogress->show(); } } void MainWindow::on_webView_loadProgress(int progress) { qprogress->setValue(progress); } void MainWindow::on_action_About_triggered() { QString gitrev=QString(GIT_REVISION); if (!gitrev.isEmpty()) gitrev="Revision: "+gitrev; QString msg=tr("

SleepyHead v%1.%2.%3

Build Date: %4 %5
%6
" "Copyright ©2011 Mark Watkins (jedimark)
\n" "http://sleepyhead.sourceforge.net
" "This software is released under the GNU Public License
" "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." "
").arg(major_version).arg(minor_version).arg(revision_number).arg(__DATE__).arg(__TIME__).arg(gitrev); QMessageBox msgbox(QMessageBox::Information,tr("About SleepyHead"),"",QMessageBox::Ok,this); msgbox.setTextFormat(Qt::RichText); msgbox.setText(msg); msgbox.exec(); } void MainWindow::on_actionDebug_toggled(bool checked) { PROFILE["ShowDebug"]=checked; if (checked) { ui->logText->show(); } else { ui->logText->hide(); } } void MainWindow::on_action_Reset_Graph_Layout_triggered() { if (daily && (ui->tabWidget->currentWidget()==daily)) daily->ResetGraphLayout(); if (overview && (ui->tabWidget->currentWidget()==overview)) overview->ResetGraphLayout(); } void MainWindow::on_action_Preferences_triggered() { PreferencesDialog pd(this,p_profile); prefdialog=&pd; if (pd.exec()==PreferencesDialog::Accepted) { qDebug() << "Preferences Accepted"; pd.Save(); if (daily) { //daily->ReloadGraphs(); daily->RedrawGraphs(); } if (overview) { overview->ReloadGraphs(); overview->RedrawGraphs(); } } prefdialog=NULL; } void MainWindow::on_oximetryButton_clicked() { bool first=false; if (!oximetry) { if (!PROFILE.Exists("EnableOximetry") || !PROFILE["EnableOximetry"].toBool()) { if (QMessageBox::question(this,"Question","Do you have a CMS50[x] Oximeter?\nOne is required to use this section.\nNote: This section is not fully completed yet.",QMessageBox::Yes,QMessageBox::No)==QMessageBox::No) return; PROFILE["EnableOximetry"]=true; } oximetry=new Oximetry(ui->tabWidget,daily->SharedWidget()); ui->tabWidget->insertTab(3,oximetry,tr("Oximetry")); first=true; } ui->tabWidget->setCurrentWidget(oximetry); if (!first) oximetry->RedrawGraphs(); qstatus2->setText("Oximetry"); } void MainWindow::CheckForUpdates() { mainwin->Notify("Checking for Updates"); on_actionCheck_for_Updates_triggered(); } void MainWindow::on_actionCheck_for_Updates_triggered() { if (PREF.Exists("Updates_LastChecked")) { if (PREF["Updates_LastChecked"].toDateTime().secsTo(QDateTime::currentDateTime())<3600) { // Instead of doing this, just use the cached crud if (prefdialog) prefdialog->RefreshLastChecked(); mainwin->Notify("No New Updates - You already checked in the last hour..."); return; } } netmanager->get(QNetworkRequest(QUrl("http://sleepyhead.sourceforge.net/current_version.txt"))); } void MainWindow::replyFinished(QNetworkReply * reply) { if (reply->error()==QNetworkReply::NoError) { // Wrap this crap in XML/JSON so can do other stuff. if (reply->size()>20) { qDebug() << "Doesn't look like a version file... :("; } else { // check in size QByteArray data=reply->readAll(); QString a=data; a=a.trimmed(); PREF["Updates_LastChecked"]=QDateTime::currentDateTime(); if (prefdialog) prefdialog->RefreshLastChecked(); if (a>PREF["VersionString"].toString()) { if (QMessageBox::question(this,"New Version","A newer version of SleepyHead is available, v"+a+".\nWould you like to update?",QMessageBox::Yes,QMessageBox::No)==QMessageBox::Yes) { QMessageBox::information(this,"Laziness Warning","I'd love to do it for you automatically, but it's not implemented yet.. :)",QMessageBox::Ok); } } else { mainwin->Notify("Checked for Updates: SleepyHead is already up to date!"); } } } else { qDebug() << "Network Error:" << reply->errorString(); } reply->deleteLater(); } void MainWindow::on_action_Screenshot_triggered() { QTimer::singleShot(250,this,SLOT(DelayedScreenshot())); } void MainWindow::DelayedScreenshot() { QPixmap pixmap = QPixmap::grabWindow(this->winId()); QString a=PREF.Get("{home}")+"/Screenshots"; QDir dir(a); if (!dir.exists()){ dir.mkdir(a); } a+="/screenshot-"+QDateTime::currentDateTime().toString(Qt::ISODate)+".png"; pixmap.save(a); } void MainWindow::on_actionView_O_ximetry_triggered() { on_oximetryButton_clicked(); } void MainWindow::updatestatusBarMessage (const QString & text) { ui->statusbar->showMessage(text,1000); } void MainWindow::on_actionPrint_Report_triggered() { if (ui->tabWidget->currentWidget()==overview) { overview->on_printButton_clicked(); //} else if (ui->tabWidget->currentWidget()==daily) { } else { QMessageBox::information(this,"Not supported Yet","Sorry, printing from this page is not supported yet",QMessageBox::Ok); } } void MainWindow::on_action_Edit_Profile_triggered() { NewProfile newprof(this); newprof.edit(PREF["Profile"].toString()); newprof.exec(); } void MainWindow::on_action_Link_Graph_Groups_toggled(bool arg1) { PROFILE["LinkGroups"]=arg1; if (daily) daily->RedrawGraphs(); } void MainWindow::on_action_CycleTabs_triggered() { int i; qDebug() << "Switching Tabs"; i=ui->tabWidget->currentIndex()+1; if (i >= ui->tabWidget->count()) i=0; ui->tabWidget->setCurrentIndex(i); } void MainWindow::on_actionExp_ort_triggered() { ExportCSV ex(this); if (ex.exec()==ExportCSV::Accepted) { } }