OSCAR-code/mainwindow.cpp

459 lines
14 KiB
C++
Raw Normal View History

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-06-26 08:30:44 +00:00
#include "mainwindow.h"
#include "ui_mainwindow.h"
#include "SleepLib/loader_plugins/prs1_loader.h"
#include "SleepLib/loader_plugins/cms50_loader.h"
#include "SleepLib/loader_plugins/zeo_loader.h"
#include "SleepLib/loader_plugins/resmed_loader.h"
2011-08-02 22:37:15 +00:00
#include "preferencesdialog.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"
QProgressBar *qprogress;
QLabel *qstatus;
QLabel *qstatus2;
QStatusBar *qstatusbar;
2011-06-26 08:30:44 +00:00
void MainWindow::Log(QString s)
{
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-18 14:43:15 +00:00
logbuffer.append(tmp); //QStringList appears not to be threadsafe
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();
strlock.unlock();
2011-09-18 14:43:15 +00:00
//loglock.unlock();
}
2011-06-26 08:30:44 +00:00
MainWindow::MainWindow(QWidget *parent) :
QMainWindow(parent),
ui(new Ui::MainWindow)
{
2011-09-18 14:43:15 +00:00
logtime.start();
2011-06-26 08:30:44 +00:00
ui->setupUi(this);
this->setWindowTitle(tr("SleepyHead")+QString(" v%1.%2.%3").arg(major_version).arg(minor_version).arg(revision_number));
ui->tabWidget->setCurrentIndex(0);
2011-06-27 06:26:29 +00:00
PRS1Loader::Register();
CMS50Loader::Register();
ZEOLoader::Register();
ResmedLoader::Register();
/* 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);
QGLContext smeg(fmt); */
2011-07-24 07:58:20 +00:00
//new QGLContext(fmt);
//shared_context->create(shared_context);
daily=NULL;
2011-07-27 09:21:53 +00:00
//overview=NULL;
//oximetry=NULL;
qstatusbar=ui->statusbar;
2011-06-26 08:30:44 +00:00
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);
2011-06-27 06:26:29 +00:00
qstatus=new QLabel("",this);
qprogress->hide();
ui->statusbar->setMinimumWidth(200);
ui->statusbar->addPermanentWidget(qstatus,0);
ui->statusbar->addPermanentWidget(qprogress,1);
2011-07-30 01:51:52 +00:00
ui->statusbar->addPermanentWidget(qstatus2,0);
2011-06-27 06:26:29 +00:00
Profiles::Scan();
2011-07-24 07:58:20 +00:00
pref["AppName"]="SleepyHead";
QString Version=QString("%1.%2.%3").arg(major_version).arg(minor_version).arg(revision_number);
if (pref.Exists("VersionString")) {
QString V=pref["VersionString"].toString();
if (V!=Version) {
QMessageBox::warning(this,"New Version Warning","This is a new version of SleepyHead. If you experience a crash right after clicking Ok, you will need to manually delete the SleepApp folder (it's located in your Documents folder) and reimport your data. After this things should work normally.",QMessageBox::Ok);
}
2011-08-25 06:29:47 +00:00
}
pref["VersionString"]=Version;
2011-06-26 08:30:44 +00:00
2011-06-27 15:00:00 +00:00
if (!pref.Exists("Profile")) pref["Profile"]=getUserName();
2011-07-21 11:02:23 +00:00
if (!pref.Exists("ShowDebug")) pref["ShowDebug"]=true;
2011-07-24 17:50:27 +00:00
ui->actionDebug->setChecked(pref["ShowDebug"].toBool());
if (!pref["ShowDebug"].toBool()) {
ui->logText->hide();
}
// This speeds up the second part of importing craploads.. later it will speed up the first part too.
if (!pref.Exists("EnableMultithreading")) pref["EnableMultithreading"]=QThread::idealThreadCount()>1;
if (!pref.Exists("MemoryHog")) pref["MemoryHog"]=false;
if (!pref.Exists("EnableGraphSnapshots")) pref["EnableGraphSnapshots"]=false;
if (!pref.Exists("AlwaysShowOverlayBars")) pref["AlwaysShowOverlayBars"]=0;
2011-06-27 15:00:00 +00:00
if (!pref.Exists("UseAntiAliasing")) pref["UseAntiAliasing"]=false;
if (!pref.Exists("IntentionalLeak")) pref["IntentionalLeak"]=(double)0.0;
if (!pref.Exists("IgnoreShorterSessions")) pref["IgnoreShorterSessions"]=0;
if (!pref.Exists("CombineCloserSessions")) pref["CombineCloserSessions"]=0;
if (!pref.Exists("DaySplitTime")) pref["DaySplitTime"]=QTime(12,0,0,0);
//DateTime(QDate::currentDate(),QTime(12,0,0,0),Qt::UTC).time();
//ui->actionUse_AntiAliasing->setChecked(pref["UseAntiAliasing"].toBool());
2011-07-18 03:36:26 +00:00
first_load=true;
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*)));
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()
{
if (daily) {
daily->close();
delete daily;
}
if (overview) {
2011-06-26 08:30:44 +00:00
overview->close();
delete overview;
}
2011-07-13 05:27:27 +00:00
if (oximetry) {
oximetry->close();
delete oximetry;
2011-07-29 14:58:44 +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()
{
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-09-11 07:22:31 +00:00
profile=Profiles::Get(pref["Profile"].toString());
Q_ASSERT(profile!=NULL);
2011-06-27 06:26:29 +00:00
profile->LoadMachineData();
daily=new Daily(ui->tabWidget,profile,NULL,this);
2011-09-02 05:13:07 +00:00
ui->tabWidget->insertTab(1,daily,tr("Daily"));
overview=new Overview(ui->tabWidget,profile,daily->SharedWidget());
ui->tabWidget->insertTab(2,overview,tr("Overview"));
2011-09-07 09:15:33 +00:00
oximetry=new Oximetry(ui->tabWidget,profile,daily->SharedWidget());
2011-09-02 05:13:07 +00:00
ui->tabWidget->insertTab(3,oximetry,tr("Oximetry"));
2011-07-24 07:58:20 +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-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-06-27 06:26:29 +00:00
}
2011-06-26 08:30:44 +00:00
void MainWindow::on_action_Import_Data_triggered()
{
//QStringList dirNames;
2011-08-07 11:57:25 +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
if (!dir.isEmpty()) {
//if (qfd.exec()) {
2011-06-26 08:30:44 +00:00
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();
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;
}*/
qDebug() << "Finished Importing data" << c;
2011-07-15 13:30:41 +00:00
if (c) {
profile->Save();
if (daily) daily->ReloadGraphs();
if (overview) overview->ReloadGraphs();
//qDebug() << "overview->ReloadGraphs();";
}
2011-07-30 01:51:52 +00:00
qstatus->setText("");
2011-06-26 08:30:44 +00:00
qprogress->hide();
}
}
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();
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);
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()
{
QString msg=tr("<html><body><div align='center'><h2>SleepyHead v%1.%2.%3</h2>Build Date: %4 %5<hr>"
"Copyright &copy;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."
"</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
void MainWindow::on_actionDebug_toggled(bool checked)
{
pref["ShowDebug"]=checked;
if (checked) {
2011-07-17 16:05:16 +00:00
ui->logText->show();
} else {
2011-07-17 16:05:16 +00:00
ui->logText->hide();
}
}
2011-07-18 03:36:26 +00:00
2011-07-28 14:20:59 +00:00
void MainWindow::on_action_Reset_Graph_Layout_triggered()
{
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()
{
PreferencesDialog pd(this,profile);
2011-08-02 22:37:15 +00:00
if (pd.exec()==PreferencesDialog::Accepted) {
qDebug() << "Preferences Accepted";
pd.Save();
if (daily) {
daily->ReloadGraphs();
daily->RedrawGraphs();
}
if (overview) {
overview->ReloadGraphs();
overview->RedrawGraphs();
}
2011-08-02 22:37:15 +00:00
}
}
void MainWindow::on_oximetryButton_clicked()
{
if (oximetry) {
ui->tabWidget->setCurrentWidget(oximetry);
qstatus2->setText("Oximetry");
2011-09-02 02:00:04 +00:00
oximetry->RedrawGraphs();
}
}
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();
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 {
QMessageBox::information(this,"SleepyHead v"+a,"Your already up to date!",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());
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);
}
2011-09-07 09:15:33 +00:00
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 {
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);
}
}