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 Headers
|
|
|
|
*
|
|
|
|
* 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
|
|
|
|
|
|
|
#ifndef MAINWINDOW_H
|
|
|
|
#define MAINWINDOW_H
|
|
|
|
|
|
|
|
#include <QMainWindow>
|
|
|
|
#include <QGLContext>
|
2011-09-06 07:33:34 +00:00
|
|
|
#include <QNetworkAccessManager>
|
|
|
|
#include <QNetworkReply>
|
2011-10-21 07:06:06 +00:00
|
|
|
#include <QSystemTrayIcon>
|
|
|
|
|
2011-12-16 12:11:33 +00:00
|
|
|
#include "version.h"
|
2011-06-26 08:30:44 +00:00
|
|
|
#include "daily.h"
|
|
|
|
#include "overview.h"
|
2011-07-13 05:27:27 +00:00
|
|
|
#include "oximetry.h"
|
2011-10-21 05:50:31 +00:00
|
|
|
#include "preferencesdialog.h"
|
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-06-26 08:30:44 +00:00
|
|
|
namespace Ui {
|
2014-04-17 05:52:25 +00:00
|
|
|
class MainWindow;
|
2011-06-26 08:30:44 +00:00
|
|
|
}
|
|
|
|
|
2011-12-19 08:17:19 +00:00
|
|
|
/*! \mainpage SleepyHead
|
|
|
|
|
|
|
|
\section intro_sec Introduction
|
|
|
|
|
|
|
|
SleepyHead is Cross-Platform Open-Source software for reviewing data from %CPAP machines, which are used in the treatment of Sleep Disorders.
|
|
|
|
|
|
|
|
SleepyHead has been created by <a href="http://jedimark64.blogspot.com">Mark Watkins</a> (JediMark), an Australian software developer.
|
|
|
|
|
|
|
|
This document is an attempt to provide a little technical insight into SleepyHead's program internals.
|
|
|
|
|
|
|
|
\section project_info Further Information
|
|
|
|
The project is hosted on sourceforge, and it's project page can be reached at <a href="http://sourceforge.net/projects/sleepyhead">http://sourceforge.net/projects/sleepyhead</a>.
|
|
|
|
|
|
|
|
There is also the <a href="http://sleepyhead.sourceforge.net">SleepyHead Wiki</a> containing further information
|
|
|
|
|
|
|
|
\section structure Program Structure
|
|
|
|
SleepyHead is written in C++ using Qt Toolkit library, and comprises of 3 main components
|
|
|
|
\list
|
|
|
|
\li The SleepLib Database, a specialized database for working with multiple sources of Sleep machine data.
|
|
|
|
\li A custom designed, high performance and interactive OpenGL Graphing Library.
|
|
|
|
\li and the main Application user interface.
|
|
|
|
\endlist
|
|
|
|
|
|
|
|
This document is still a work in progress, right now all the classes and sections are jumbled together.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
// * \section install_sec Installation
|
|
|
|
|
2011-07-19 02:52:03 +00:00
|
|
|
extern QStatusBar *qstatusbar;
|
|
|
|
|
2011-07-30 04:54:22 +00:00
|
|
|
class Daily;
|
2011-09-10 14:17:45 +00:00
|
|
|
class Report;
|
2011-09-11 06:16:45 +00:00
|
|
|
class Overview;
|
2011-12-18 10:53:51 +00:00
|
|
|
|
|
|
|
/*! \class MainWindow
|
2011-12-18 16:39:36 +00:00
|
|
|
\author Mark Watkins
|
2011-12-18 10:53:51 +00:00
|
|
|
\brief The Main Application window for SleepyHead
|
|
|
|
*/
|
|
|
|
|
2011-06-26 08:30:44 +00:00
|
|
|
class MainWindow : public QMainWindow
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
2014-04-17 05:52:25 +00:00
|
|
|
public:
|
2011-06-26 08:30:44 +00:00
|
|
|
explicit MainWindow(QWidget *parent = 0);
|
|
|
|
~MainWindow();
|
2011-12-18 10:53:51 +00:00
|
|
|
|
|
|
|
//! \brief Log message s to Application Debug log
|
2011-07-17 15:57:45 +00:00
|
|
|
void Log(QString s);
|
2011-12-18 10:53:51 +00:00
|
|
|
|
2011-12-26 04:41:28 +00:00
|
|
|
//! \brief Update the list of Favourites (Bookmarks) in the right sidebar.
|
|
|
|
void updateFavourites();
|
2011-12-18 10:53:51 +00:00
|
|
|
|
2014-04-28 03:27:33 +00:00
|
|
|
//! \brief Update statistics report
|
|
|
|
void GenerateStatistics();
|
|
|
|
|
2011-12-18 10:53:51 +00:00
|
|
|
//! \brief Create a new menu object in the main menubar.
|
2014-04-17 05:52:25 +00:00
|
|
|
QMenu *CreateMenu(QString title);
|
2011-12-18 10:53:51 +00:00
|
|
|
|
|
|
|
//! \brief Start the automatic update checker process
|
2011-10-21 05:50:31 +00:00
|
|
|
void CheckForUpdates();
|
2011-12-18 10:53:51 +00:00
|
|
|
|
|
|
|
/*! \fn Notify(QString s,int ms=5000, QString title="SleepyHead v"+VersionString());
|
|
|
|
\brief Pops up a message box near the system tray
|
|
|
|
\param QString string
|
|
|
|
\param title
|
2011-12-18 16:39:36 +00:00
|
|
|
\param int ms
|
2011-12-18 10:53:51 +00:00
|
|
|
|
|
|
|
Title is shown in bold
|
|
|
|
string is the main message content to show
|
|
|
|
ms = millisecond delay of how long to show popup
|
|
|
|
|
|
|
|
Mac needs Growl notification system for this to work
|
|
|
|
*/
|
2014-04-17 05:52:25 +00:00
|
|
|
void Notify(QString s, QString title = "SleepyHead v" + VersionString, int ms = 5000);
|
2011-12-18 10:53:51 +00:00
|
|
|
|
|
|
|
/*! \fn gGraphView *snapshotGraph()
|
|
|
|
\brief Returns the current snapshotGraph object used by the report printing system */
|
2011-12-01 15:40:32 +00:00
|
|
|
gGraphView *snapshotGraph() { return SnapshotGraph; }
|
2011-12-18 10:53:51 +00:00
|
|
|
|
2011-12-26 18:26:06 +00:00
|
|
|
//! \brief Returns the Daily Tab object
|
2011-10-28 03:45:31 +00:00
|
|
|
Daily *getDaily() { return daily; }
|
2011-12-26 18:26:06 +00:00
|
|
|
|
|
|
|
//! \brief Returns the Overview Tab object
|
2011-10-28 03:45:31 +00:00
|
|
|
Overview *getOverview() { return overview; }
|
2011-12-26 18:26:06 +00:00
|
|
|
|
|
|
|
//! \brief Returns the Oximetry Tab object
|
2011-10-28 03:45:31 +00:00
|
|
|
Oximetry *getOximetry() { return oximetry; }
|
2011-12-18 10:53:51 +00:00
|
|
|
|
|
|
|
/*! \fn void RestartApplication(bool force_login=false);
|
|
|
|
\brief Closes down SleepyHead and restarts it
|
|
|
|
\param bool force_login
|
|
|
|
|
|
|
|
If force_login is set, it will return to the login menu even if it's set to skip
|
|
|
|
*/
|
2014-04-17 05:52:25 +00:00
|
|
|
static void RestartApplication(bool force_login = false, bool change_datafolder = false);
|
2011-12-06 14:39:14 +00:00
|
|
|
|
2011-12-18 10:53:51 +00:00
|
|
|
//! \brief Self explainitory, selects the Oximetry Tab
|
2011-12-06 14:39:14 +00:00
|
|
|
void selectOximetryTab();
|
|
|
|
|
2011-10-28 03:45:31 +00:00
|
|
|
void JumpDaily();
|
2011-12-18 10:53:51 +00:00
|
|
|
|
2012-01-03 03:50:54 +00:00
|
|
|
void sendStatsUrl(QString msg) { on_recordsBox_linkClicked(QUrl(msg)); }
|
2012-01-10 06:19:49 +00:00
|
|
|
|
|
|
|
//! \brief Sets up recalculation of all event summaries and flags
|
2014-04-17 05:52:25 +00:00
|
|
|
void reprocessEvents(bool restart = false);
|
2012-01-10 06:19:49 +00:00
|
|
|
|
2013-09-14 23:32:14 +00:00
|
|
|
|
2014-04-25 05:28:10 +00:00
|
|
|
//! \brief Internal function to set Records Box html from statistics module
|
2013-09-14 23:32:14 +00:00
|
|
|
void setRecBoxHTML(QString html);
|
|
|
|
|
2014-04-28 03:40:50 +00:00
|
|
|
void closeEvent(QCloseEvent *);
|
|
|
|
|
2014-04-17 05:52:25 +00:00
|
|
|
public slots:
|
2012-01-10 06:19:49 +00:00
|
|
|
//! \brief Recalculate all event summaries and flags
|
|
|
|
void doReprocessEvents();
|
|
|
|
|
2014-04-17 05:52:25 +00:00
|
|
|
protected:
|
|
|
|
virtual void keyPressEvent(QKeyEvent *event);
|
2011-12-18 10:53:51 +00:00
|
|
|
|
2014-04-17 05:52:25 +00:00
|
|
|
private slots:
|
2011-12-18 10:53:51 +00:00
|
|
|
/*! \fn void on_action_Import_Data_triggered();
|
|
|
|
\brief Provide the file dialog for selecting import location, and start the import process
|
|
|
|
This is called when the Import button is clicked
|
|
|
|
*/
|
2011-06-26 08:30:44 +00:00
|
|
|
void on_action_Import_Data_triggered();
|
|
|
|
|
2011-12-18 10:53:51 +00:00
|
|
|
//! \brief Toggle Fullscreen (currently F11)
|
2011-06-26 08:30:44 +00:00
|
|
|
void on_action_Fullscreen_triggered();
|
|
|
|
|
2011-12-18 10:53:51 +00:00
|
|
|
//! \brief Loads the default page in the Welcome screens web browser
|
2011-06-26 08:30:44 +00:00
|
|
|
void on_homeButton_clicked();
|
|
|
|
|
2011-12-18 10:53:51 +00:00
|
|
|
//! \brief Go back in the welcome browsers history
|
2011-06-26 08:30:44 +00:00
|
|
|
void on_backButton_clicked();
|
|
|
|
|
2011-12-18 10:53:51 +00:00
|
|
|
//! \brief Go forward in the welcome browsers history
|
2011-06-26 08:30:44 +00:00
|
|
|
void on_forwardButton_clicked();
|
|
|
|
|
2011-12-18 10:53:51 +00:00
|
|
|
//! \brief Updates the URL bar to show changes to the URL
|
2011-06-26 08:30:44 +00:00
|
|
|
void on_webView_urlChanged(const QUrl &arg1);
|
|
|
|
|
2011-12-18 10:53:51 +00:00
|
|
|
//! \brief Loads a web page when enter is pressed in the URL bar
|
2011-06-26 08:30:44 +00:00
|
|
|
void on_urlBar_activated(const QString &arg1);
|
|
|
|
|
2011-12-18 10:53:51 +00:00
|
|
|
//! \brief Selects the Daily page and redraws the graphs
|
2011-06-26 08:30:44 +00:00
|
|
|
void on_dailyButton_clicked();
|
|
|
|
|
2011-12-18 10:53:51 +00:00
|
|
|
//! \brief Selects the Overview page and redraws the graphs
|
2011-06-26 08:30:44 +00:00
|
|
|
void on_overviewButton_clicked();
|
|
|
|
|
2011-12-18 10:53:51 +00:00
|
|
|
//! \brief called when webpage has finished loading in welcome browser
|
2011-06-26 08:30:44 +00:00
|
|
|
void on_webView_loadFinished(bool arg1);
|
|
|
|
|
2011-12-18 10:53:51 +00:00
|
|
|
//! \brief called when webpage has starts loading in welcome browser
|
2011-06-26 08:30:44 +00:00
|
|
|
void on_webView_loadStarted();
|
|
|
|
|
2011-12-18 10:53:51 +00:00
|
|
|
//! \brief Updates the progress bar in the statusbar while a page is loading
|
2011-06-26 08:30:44 +00:00
|
|
|
void on_webView_loadProgress(int progress);
|
|
|
|
|
2011-12-18 10:53:51 +00:00
|
|
|
//! \brief Display About Dialog
|
2011-06-26 16:35:54 +00:00
|
|
|
void on_action_About_triggered();
|
|
|
|
|
2011-12-18 10:53:51 +00:00
|
|
|
//! \brief Called after a timeout to initiate loading of all summary data for this profile
|
2011-06-27 06:26:29 +00:00
|
|
|
void Startup();
|
|
|
|
|
2011-12-18 10:53:51 +00:00
|
|
|
//! \brief Toggle the Debug pane on and off
|
2011-07-17 15:57:45 +00:00
|
|
|
void on_actionDebug_toggled(bool arg1);
|
|
|
|
|
2011-12-18 10:53:51 +00:00
|
|
|
//! \brief passes the ResetGraphLayout menu click to the Daily & Overview views
|
2011-07-28 14:20:59 +00:00
|
|
|
void on_action_Reset_Graph_Layout_triggered();
|
|
|
|
|
2011-12-18 10:53:51 +00:00
|
|
|
//! \brief Opens the Preferences Dialog, and saving changes if OK is pressed
|
2011-08-02 22:37:15 +00:00
|
|
|
void on_action_Preferences_triggered();
|
|
|
|
|
2011-12-18 10:53:51 +00:00
|
|
|
//! \brief Opens and/or shows the Oximetry page
|
2011-08-05 08:20:28 +00:00
|
|
|
void on_oximetryButton_clicked();
|
|
|
|
|
2011-12-18 10:53:51 +00:00
|
|
|
//! \brief Creates the UpdaterWindow object that actually does the real check for updates
|
2011-09-06 07:33:34 +00:00
|
|
|
void on_actionCheck_for_Updates_triggered();
|
|
|
|
|
2011-12-18 10:53:51 +00:00
|
|
|
//! \brief Attempts to do a screenshot of the application window
|
|
|
|
//! \note This is currently broken on Macs
|
2011-09-07 08:08:27 +00:00
|
|
|
void on_action_Screenshot_triggered();
|
2011-12-18 10:53:51 +00:00
|
|
|
|
|
|
|
//! \brief This is the actual screenshot code.. It's delayed with a QTimer to give the menu time to close.
|
2011-09-07 08:08:27 +00:00
|
|
|
void DelayedScreenshot();
|
|
|
|
|
2011-12-18 10:53:51 +00:00
|
|
|
//! \brief a slot that calls the real Oximetry tab selector
|
2014-04-15 11:02:51 +00:00
|
|
|
void on_actionView_Oximetry_triggered();
|
2011-12-18 10:53:51 +00:00
|
|
|
|
|
|
|
//! \brief Updates the Statusbar message with the QString message contained in Text
|
2014-04-17 05:52:25 +00:00
|
|
|
void updatestatusBarMessage(const QString &text);
|
2011-12-18 10:53:51 +00:00
|
|
|
|
|
|
|
//! \brief Passes the Daily, Overview & Oximetry object to Print Report, based on current tab
|
2011-09-11 06:16:45 +00:00
|
|
|
void on_actionPrint_Report_triggered();
|
2011-09-07 09:15:33 +00:00
|
|
|
|
2011-12-18 10:53:51 +00:00
|
|
|
//! \brief Opens the Profile Editor
|
2011-10-01 12:59:05 +00:00
|
|
|
void on_action_Edit_Profile_triggered();
|
|
|
|
|
2011-12-18 10:53:51 +00:00
|
|
|
//! \brief Toggled the LinkGraphGroups preference, which forces the link between Oximetry & CPAP days
|
2011-10-07 05:28:35 +00:00
|
|
|
void on_action_Link_Graph_Groups_toggled(bool arg1);
|
|
|
|
|
2011-12-18 10:53:51 +00:00
|
|
|
//! \brief Selects the next view tab
|
2011-10-28 11:31:31 +00:00
|
|
|
void on_action_CycleTabs_triggered();
|
|
|
|
|
2011-12-18 10:53:51 +00:00
|
|
|
//! \brief Opens the CSV Export window
|
2011-11-14 14:10:46 +00:00
|
|
|
void on_actionExp_ort_triggered();
|
|
|
|
|
2011-12-18 10:53:51 +00:00
|
|
|
//! \brief Opens the User Guide at the wiki in the welcome browser.
|
2011-11-21 10:20:11 +00:00
|
|
|
void on_actionOnline_Users_Guide_triggered();
|
|
|
|
|
2011-12-18 10:53:51 +00:00
|
|
|
//! \brief Opens the Frequently Asked Questions at the wiki in the welcome browser.
|
2011-11-21 10:20:11 +00:00
|
|
|
void on_action_Frequently_Asked_Questions_triggered();
|
|
|
|
|
2011-12-18 10:53:51 +00:00
|
|
|
/*! \fn void on_action_Rebuild_Oximetry_Index_triggered();
|
|
|
|
\brief This function scans over all oximetry data and reindexes and tries to fix any inconsistencies.
|
|
|
|
*/
|
2011-12-01 01:47:09 +00:00
|
|
|
void on_action_Rebuild_Oximetry_Index_triggered();
|
|
|
|
|
2011-12-18 10:53:51 +00:00
|
|
|
//! \brief Log out, by effectively forcing a restart
|
2011-12-03 05:27:57 +00:00
|
|
|
void on_actionChange_User_triggered();
|
|
|
|
|
2011-12-18 10:53:51 +00:00
|
|
|
//! \brief Destroy the CPAP data for the currently selected day, so it can be freshly imported again
|
2011-12-08 04:10:35 +00:00
|
|
|
void on_actionPurge_Current_Day_triggered();
|
|
|
|
|
2011-12-25 11:27:10 +00:00
|
|
|
void on_action_Sidebar_Toggle_toggled(bool arg1);
|
|
|
|
|
2011-12-25 13:27:47 +00:00
|
|
|
void on_recordsBox_linkClicked(const QUrl &arg1);
|
|
|
|
|
2011-12-25 16:19:08 +00:00
|
|
|
void on_helpButton_clicked();
|
|
|
|
|
2014-04-15 11:02:51 +00:00
|
|
|
void on_actionView_Statistics_triggered();
|
2011-12-25 16:19:08 +00:00
|
|
|
|
2011-12-26 03:06:39 +00:00
|
|
|
void on_webView_linkClicked(const QUrl &arg1);
|
|
|
|
|
2012-01-06 16:07:54 +00:00
|
|
|
//void on_favouritesList_itemSelectionChanged();
|
2011-12-26 04:41:28 +00:00
|
|
|
|
2011-12-28 14:03:09 +00:00
|
|
|
//void on_favouritesList_itemClicked(QListWidgetItem *item);
|
2011-12-26 04:58:02 +00:00
|
|
|
|
2011-12-26 05:51:53 +00:00
|
|
|
void on_webView_statusBarMessage(const QString &text);
|
|
|
|
|
2011-12-26 18:26:06 +00:00
|
|
|
//! \brief Display Help WebView Link in statusbar.
|
2014-04-17 05:52:25 +00:00
|
|
|
void LinkHovered(const QString &link, const QString &title, const QString &textContent);
|
2011-12-26 19:25:17 +00:00
|
|
|
void on_tabWidget_currentChanged(int index);
|
|
|
|
|
2012-01-06 16:07:54 +00:00
|
|
|
void on_bookmarkView_linkClicked(const QUrl &arg1);
|
|
|
|
|
2012-01-06 18:15:21 +00:00
|
|
|
void on_filterBookmarks_editingFinished();
|
|
|
|
|
|
|
|
void on_filterBookmarksButton_clicked();
|
|
|
|
|
2012-01-11 13:55:46 +00:00
|
|
|
void on_actionImport_ZEO_Data_triggered();
|
|
|
|
|
2012-01-24 15:51:11 +00:00
|
|
|
void on_actionImport_RemStar_MSeries_Data_triggered();
|
|
|
|
|
2012-01-29 04:17:02 +00:00
|
|
|
void on_actionSleep_Disorder_Terms_Glossary_triggered();
|
|
|
|
|
2014-04-09 05:00:34 +00:00
|
|
|
void on_actionHelp_Support_SleepyHead_Development_triggered();
|
2012-01-29 04:17:02 +00:00
|
|
|
|
2014-04-17 05:52:25 +00:00
|
|
|
void aboutBoxLinkClicked(const QUrl &url);
|
2013-01-20 19:39:01 +00:00
|
|
|
|
2013-09-15 04:20:26 +00:00
|
|
|
void on_actionChange_Language_triggered();
|
|
|
|
|
2013-10-19 02:59:52 +00:00
|
|
|
void on_actionChange_Data_Folder_triggered();
|
|
|
|
|
2014-04-15 13:59:24 +00:00
|
|
|
void on_actionImport_Somnopose_Data_triggered();
|
|
|
|
|
2014-04-25 05:28:10 +00:00
|
|
|
//! \brief Populates the statistics with information.
|
|
|
|
void on_statisticsButton_clicked();
|
|
|
|
|
|
|
|
void on_statisticsView_linkClicked(const QUrl &arg1);
|
|
|
|
|
2014-05-06 11:54:41 +00:00
|
|
|
void on_reportModeMonthly_clicked();
|
|
|
|
|
|
|
|
void on_reportModeStandard_clicked();
|
|
|
|
|
2014-05-18 17:06:58 +00:00
|
|
|
void on_actionPurgeMachine(QAction *action);
|
|
|
|
|
|
|
|
|
2014-04-25 05:28:10 +00:00
|
|
|
private:
|
2014-05-13 01:28:41 +00:00
|
|
|
int importCPAP(const QString &path, const QString &message);
|
|
|
|
void importCPAPBackups();
|
|
|
|
void finishCPAPImport();
|
|
|
|
QStringList detectCPAPCards();
|
|
|
|
|
2014-04-15 04:47:23 +00:00
|
|
|
QString getWelcomeHTML();
|
2012-01-10 10:16:52 +00:00
|
|
|
void FreeSessions();
|
2011-12-01 15:40:32 +00:00
|
|
|
|
2011-06-26 08:30:44 +00:00
|
|
|
Ui::MainWindow *ui;
|
2014-04-17 05:52:25 +00:00
|
|
|
Daily *daily;
|
|
|
|
Overview *overview;
|
|
|
|
Oximetry *oximetry;
|
2011-06-27 06:26:29 +00:00
|
|
|
bool first_load;
|
2011-10-21 05:50:31 +00:00
|
|
|
PreferencesDialog *prefdialog;
|
2014-04-17 05:52:25 +00:00
|
|
|
QMutex loglock, strlock;
|
2011-09-18 14:43:15 +00:00
|
|
|
QStringList logbuffer;
|
|
|
|
QTime logtime;
|
2011-10-21 07:06:06 +00:00
|
|
|
QSystemTrayIcon *systray;
|
|
|
|
QMenu *systraymenu;
|
2011-12-01 15:40:32 +00:00
|
|
|
gGraphView *SnapshotGraph;
|
2012-01-06 18:15:21 +00:00
|
|
|
QString bookmarkFilter;
|
2012-01-10 06:19:49 +00:00
|
|
|
bool m_restartRequired;
|
|
|
|
volatile bool m_inRecalculation;
|
2014-05-18 17:06:58 +00:00
|
|
|
|
|
|
|
void PopulatePurgeMenu();
|
|
|
|
|
|
|
|
//! \brief Destroy ALL the CPAP data for the selected machine
|
|
|
|
void purgeMachine(Machine *);
|
|
|
|
|
|
|
|
|
2011-06-26 08:30:44 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // MAINWINDOW_H
|