mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 18:50:44 +00:00
456 lines
13 KiB
C++
456 lines
13 KiB
C++
/*
|
|
MainWindow Implementation
|
|
Copyright (c)2011 Mark Watkins <jedimark@users.sourceforge.net>
|
|
License: GPL
|
|
*/
|
|
|
|
#include <QGLFormat>
|
|
#include <QFileDialog>
|
|
#include <QMessageBox>
|
|
#include <QResource>
|
|
#include <QProgressBar>
|
|
#include <QWebHistory>
|
|
#include <QNetworkRequest>
|
|
#include <QNetworkReply>
|
|
#include <QTimer>
|
|
#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"
|
|
#include "preferencesdialog.h"
|
|
|
|
|
|
#include "Graphs/glcommon.h"
|
|
|
|
QProgressBar *qprogress;
|
|
QLabel *qstatus;
|
|
QLabel *qstatus2;
|
|
QStatusBar *qstatusbar;
|
|
|
|
void MainWindow::Log(QString s)
|
|
{
|
|
static QMutex loglock,strlock;
|
|
static int start=QDateTime::currentDateTime().toTime_t();
|
|
static QStringList slist;
|
|
if (!loglock.tryLock()) {
|
|
return;
|
|
}
|
|
|
|
strlock.lock();
|
|
QString tmp=QString("%1: %2").arg(QDateTime::currentDateTime().toTime_t()-start,5,10,QChar('0')).arg(s);
|
|
|
|
slist.append(tmp); //QStringList appears not to be threadsafe
|
|
strlock.unlock();
|
|
|
|
strlock.lock();
|
|
for (int i=0;i<slist.size();i++)
|
|
ui->logText->appendPlainText(slist[i]);
|
|
slist.clear();
|
|
strlock.unlock();
|
|
|
|
loglock.unlock();
|
|
|
|
}
|
|
|
|
|
|
MainWindow::MainWindow(QWidget *parent) :
|
|
QMainWindow(parent),
|
|
ui(new Ui::MainWindow)
|
|
{
|
|
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);
|
|
|
|
PRS1Loader::Register();
|
|
CMS50Loader::Register();
|
|
ZEOLoader::Register();
|
|
ResmedLoader::Register();
|
|
|
|
/* QGLFormat fmt;
|
|
fmt.setDepth(false);
|
|
fmt.setDirectRendering(true);
|
|
fmt.setAlpha(true);
|
|
fmt.setDoubleBuffer(true);
|
|
fmt.setRgba(true);
|
|
fmt.setDefaultFormat(fmt);
|
|
QGLContext smeg(fmt); */
|
|
|
|
//new QGLContext(fmt);
|
|
//shared_context->create(shared_context);
|
|
|
|
daily=NULL;
|
|
//overview=NULL;
|
|
//oximetry=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);
|
|
Profiles::Scan();
|
|
|
|
pref["AppName"]="SleepyHead";
|
|
QString Version=QString("%1.%2.%3").arg(major_version).arg(minor_version).arg(revision_number);
|
|
if (pref.Exists("VersionString") && pref["VersionString"]!=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);
|
|
}
|
|
pref["VersionString"]=Version;
|
|
|
|
if (!pref.Exists("Profile")) pref["Profile"]=getUserName();
|
|
|
|
if (!pref.Exists("LinkGraphMovement")) pref["LinkGraphMovement"]=true;
|
|
ui->action_Link_Graphs->setChecked(pref["LinkGraphMovement"].toBool());
|
|
|
|
if (!pref.Exists("ShowDebug")) pref["ShowDebug"]=true;
|
|
ui->actionDebug->setChecked(pref["ShowDebug"].toBool());
|
|
|
|
if (!pref["ShowDebug"].toBool()) {
|
|
ui->logText->hide();
|
|
}
|
|
|
|
if (!pref.Exists("EnableMultithreading")) pref["EnableMultithreading"]=false;
|
|
ui->actionEnable_Multithreading->setChecked(pref["EnableMultithreading"].toBool());
|
|
|
|
|
|
if (!pref.Exists("MemoryHog")) pref["MemoryHog"]=true;
|
|
|
|
if (!pref.Exists("fruitsalad")) pref["fruitsalad"]=true;
|
|
|
|
if (!pref.Exists("UseAntiAliasing")) pref["UseAntiAliasing"]=false;
|
|
ui->actionUse_AntiAliasing->setChecked(pref["UseAntiAliasing"].toBool());
|
|
|
|
|
|
first_load=true;
|
|
|
|
if (!pref.Exists("AlwaysShowOverlayBars")) pref["AlwaysShowOverlayBars"]=true;
|
|
ui->actionOverlay_Bars->setChecked(pref["AlwaysShowOverlayBars"].toBool());
|
|
|
|
ui->tabWidget->setCurrentWidget(ui->welcome);
|
|
|
|
netmanager = new QNetworkAccessManager(this);
|
|
connect(netmanager, SIGNAL(finished(QNetworkReply*)), this, SLOT(replyFinished(QNetworkReply*)));
|
|
}
|
|
extern MainWindow *mainwin;
|
|
MainWindow::~MainWindow()
|
|
{
|
|
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::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=Profiles::Get(pref["Profile"].toString());
|
|
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"));
|
|
|
|
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("");
|
|
//qstatusbar->clearMessage();
|
|
|
|
}
|
|
|
|
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;i<dirNames.size();i++) {
|
|
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;
|
|
if (c) {
|
|
profile->Save();
|
|
if (daily) daily->ReloadGraphs();
|
|
|
|
if (overview) {
|
|
overview->ReloadGraphs();
|
|
}
|
|
//qDebug() << "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);
|
|
//ui->webView->load(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();
|
|
}
|
|
|
|
void MainWindow::on_overviewButton_clicked()
|
|
{
|
|
ui->tabWidget->setCurrentWidget(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 msg=tr("<html><body><div align='center'><h2>SleepyHead v%1.%2.%3</h2>Build Date: %4 %5<hr>"
|
|
"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."
|
|
"</div></body></html>").arg(major_version).arg(minor_version).arg(revision_number).arg(__DATE__).arg(__TIME__);
|
|
QMessageBox msgbox(QMessageBox::Information,tr("About SleepyHead"),"",QMessageBox::Ok,this);
|
|
msgbox.setTextFormat(Qt::RichText);
|
|
msgbox.setText(msg);
|
|
msgbox.exec();
|
|
}
|
|
|
|
void MainWindow::on_action_Link_Graphs_triggered(bool checked)
|
|
{
|
|
pref["LinkGraphMovement"]=checked;
|
|
}
|
|
|
|
void MainWindow::on_actionUse_AntiAliasing_triggered(bool checked)
|
|
{
|
|
pref["UseAntiAliasing"]=checked;
|
|
if (daily)
|
|
daily->RedrawGraphs();
|
|
|
|
}
|
|
|
|
void MainWindow::on_actionDebug_toggled(bool checked)
|
|
{
|
|
pref["ShowDebug"]=checked;
|
|
if (checked) {
|
|
ui->logText->show();
|
|
} else {
|
|
ui->logText->hide();
|
|
}
|
|
}
|
|
|
|
void MainWindow::on_actionOverlay_Bars_toggled(bool checked)
|
|
{
|
|
pref["AlwaysShowOverlayBars"]=checked;
|
|
if (daily)
|
|
daily->RedrawGraphs();
|
|
}
|
|
|
|
void MainWindow::on_action_Reset_Graph_Layout_triggered()
|
|
{
|
|
if (daily) daily->ResetGraphLayout();
|
|
}
|
|
|
|
void MainWindow::on_action_Preferences_triggered()
|
|
{
|
|
PreferencesDialog pd(this);
|
|
if (pd.exec()==PreferencesDialog::Accepted) {
|
|
qDebug() << "Preferences Accepted";
|
|
pd.Save();
|
|
}
|
|
}
|
|
|
|
void MainWindow::on_oximetryButton_clicked()
|
|
{
|
|
if (oximetry) {
|
|
ui->tabWidget->setCurrentWidget(oximetry);
|
|
oximetry->RedrawGraphs();
|
|
}
|
|
}
|
|
|
|
void MainWindow::on_actionEnable_Multithreading_toggled(bool checked)
|
|
{
|
|
pref["EnableMultithreading"]=checked;
|
|
if (checked) {
|
|
//qDebug() << "Multithreading feature is disabled due to it currently being useless.";
|
|
}
|
|
}
|
|
|
|
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);
|
|
}
|
|
}
|
|
} else {
|
|
qDebug() << "Network Error:" << reply->errorString();
|
|
}
|
|
reply->deleteLater();
|
|
}
|
|
|
|
#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);
|
|
}
|
|
|
|
void MainWindow::on_actionView_O_ximetry_triggered()
|
|
{
|
|
on_oximetryButton_clicked();
|
|
}
|