OSCAR-code/sleepyhead/mainwindow.h

366 lines
11 KiB
C
Raw Normal View History

2014-08-17 12:56:05 +00:00
/* SleepyHead 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>
#include <QSystemTrayIcon>
#include <QTimer>
2011-06-26 08:30:44 +00:00
#include "daily.h"
#include "overview.h"
#include "preferencesdialog.h"
2011-06-26 08:30:44 +00:00
extern Profile *profile;
2014-08-17 12:56:05 +00:00
QString getCPAPPixmap(QString mach_class);
2011-06-26 08:30:44 +00:00
namespace Ui {
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
extern QStatusBar *qstatusbar;
//QString getCPAPPixmap(QString mach_class);
class Daily;
class Report;
class Overview;
/*! \class MainWindow
\author Mark Watkins
\brief The Main Application window for SleepyHead
*/
2011-06-26 08:30:44 +00:00
class MainWindow : public QMainWindow
{
Q_OBJECT
public:
2011-06-26 08:30:44 +00:00
explicit MainWindow(QWidget *parent = 0);
~MainWindow();
//! \brief Update the list of Favourites (Bookmarks) in the right sidebar.
void updateFavourites();
//! \brief Update statistics report
void GenerateStatistics();
//! \brief Create a new menu object in the main menubar.
QMenu *CreateMenu(QString title);
//! \brief Start the automatic update checker process
void CheckForUpdates();
/*! \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
\param int ms
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
*/
void Notify(QString s, QString title = "", int ms = 5000);
2014-08-17 12:56:05 +00:00
// /*! \fn gGraphView *snapshotGraph()
// \brief Returns the current snapshotGraph object used by the report printing system */
// gGraphView *snapshotGraph() { return SnapshotGraph; }
//! \brief Returns the Daily Tab object
Daily *getDaily() { return daily; }
//! \brief Returns the Overview Tab object
Overview *getOverview() { return overview; }
/*! \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
*/
static void RestartApplication(bool force_login = false, bool change_datafolder = false);
void JumpDaily();
void sendStatsUrl(QString msg) { on_recordsBox_linkClicked(QUrl(msg)); }
//! \brief Sets up recalculation of all event summaries and flags
void reprocessEvents(bool restart = false);
//! \brief Internal function to set Records Box html from statistics module
void setRecBoxHTML(QString html);
int importCPAP(ImportPath import, const QString &message);
void startImportDialog() { on_action_Import_Data_triggered(); }
2014-04-28 03:40:50 +00:00
void log(QString text);
public slots:
//! \brief Recalculate all event summaries and flags
void doReprocessEvents();
void MachineUnsupported(Machine * m);
protected:
virtual void closeEvent(QCloseEvent *);
virtual void keyPressEvent(QKeyEvent *event);
private slots:
/*! \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();
//! \brief Toggle Fullscreen (currently F11)
2011-06-26 08:30:44 +00:00
void on_action_Fullscreen_triggered();
//! \brief Loads the default page in the Welcome screens web browser
2011-06-26 08:30:44 +00:00
void on_homeButton_clicked();
//! \brief Go back in the welcome browsers history
2011-06-26 08:30:44 +00:00
void on_backButton_clicked();
//! \brief Go forward in the welcome browsers history
2011-06-26 08:30:44 +00:00
void on_forwardButton_clicked();
//! \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);
//! \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);
//! \brief Selects the Daily page and redraws the graphs
2011-06-26 08:30:44 +00:00
void on_dailyButton_clicked();
//! \brief Selects the Overview page and redraws the graphs
2011-06-26 08:30:44 +00:00
void on_overviewButton_clicked();
//! \brief called when webpage has finished loading in welcome browser
2011-06-26 08:30:44 +00:00
void on_webView_loadFinished(bool arg1);
//! \brief called when webpage has starts loading in welcome browser
2011-06-26 08:30:44 +00:00
void on_webView_loadStarted();
//! \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);
//! \brief Display About Dialog
2011-06-26 16:35:54 +00:00
void on_action_About_triggered();
//! \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();
//! \brief Toggle the Debug pane on and off
void on_actionDebug_toggled(bool arg1);
//! \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();
//! \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();
//! \brief Opens and/or shows the Oximetry page
void on_oximetryButton_clicked();
//! \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();
//! \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();
//! \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();
//! \brief a slot that calls the real Oximetry tab selector
2014-04-15 11:02:51 +00:00
void on_actionView_Oximetry_triggered();
//! \brief Updates the Statusbar message with the QString message contained in Text
void updatestatusBarMessage(const QString &text);
//! \brief Passes the Daily, Overview & Oximetry object to Print Report, based on current tab
void on_actionPrint_Report_triggered();
2011-09-07 09:15:33 +00:00
//! \brief Opens the Profile Editor
2011-10-01 12:59:05 +00:00
void on_action_Edit_Profile_triggered();
//! \brief Selects the next view tab
void on_action_CycleTabs_triggered();
//! \brief Opens the CSV Export window
2011-11-14 14:10:46 +00:00
void on_actionExp_ort_triggered();
//! \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();
//! \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();
/*! \fn void on_action_Rebuild_Oximetry_Index_triggered();
\brief This function scans over all oximetry data and reindexes and tries to fix any inconsistencies.
*/
void on_action_Rebuild_Oximetry_Index_triggered();
//! \brief Log out, by effectively forcing a restart
void on_actionChange_User_triggered();
//! \brief Destroy the CPAP data for the currently selected day, so it can be freshly imported again
void on_actionPurge_Current_Day_triggered();
void on_action_Sidebar_Toggle_toggled(bool arg1);
void on_recordsBox_linkClicked(const QUrl &arg1);
void on_helpButton_clicked();
2014-04-15 11:02:51 +00:00
void on_actionView_Statistics_triggered();
void on_webView_linkClicked(const QUrl &arg1);
//void on_favouritesList_itemSelectionChanged();
//void on_favouritesList_itemClicked(QListWidgetItem *item);
void on_webView_statusBarMessage(const QString &text);
//! \brief Display Help WebView Link in statusbar.
void LinkHovered(const QString &link, const QString &title, const QString &textContent);
void on_tabWidget_currentChanged(int index);
void on_bookmarkView_linkClicked(const QUrl &arg1);
void on_filterBookmarks_editingFinished();
void on_filterBookmarksButton_clicked();
void on_actionImport_ZEO_Data_triggered();
void on_actionImport_RemStar_MSeries_Data_triggered();
2012-01-29 04:17:02 +00:00
void on_actionSleep_Disorder_Terms_Glossary_triggered();
void on_actionHelp_Support_SleepyHead_Development_triggered();
2012-01-29 04:17:02 +00:00
void aboutBoxLinkClicked(const QUrl &url);
void on_actionChange_Language_triggered();
void on_actionChange_Data_Folder_triggered();
void on_actionImport_Somnopose_Data_triggered();
//! \brief Populates the statistics with information.
void on_statisticsButton_clicked();
void on_statisticsView_linkClicked(const QUrl &arg1);
void on_reportModeMonthly_clicked();
void on_reportModeStandard_clicked();
void on_actionRebuildCPAP(QAction *action);
void on_actionPurgeMachine(QAction *action);
2014-05-25 07:07:08 +00:00
void on_reportModeRange_clicked();
void on_actionPurgeCurrentDaysOximetry_triggered();
void logMessage(QString msg);
2014-07-02 16:16:12 +00:00
void on_importButton_clicked();
void on_changeWarningMessage();
void on_actionToggle_Line_Cursor_toggled(bool arg1);
void on_actionLeft_Daily_Sidebar_toggled(bool arg1);
void on_actionDaily_Calendar_toggled(bool arg1);
2014-08-17 12:56:05 +00:00
void on_actionExport_Journal_triggered();
void on_actionShow_Performance_Counters_toggled(bool arg1);
void on_aboutToQuit();
private:
2014-05-13 01:28:41 +00:00
void importCPAPBackups();
void finishCPAPImport();
QList<ImportPath> detectCPAPCards();
2014-05-13 01:28:41 +00:00
QString getWelcomeHTML();
void FreeSessions();
2011-06-26 08:30:44 +00:00
Ui::MainWindow *ui;
Daily *daily;
Overview *overview;
2011-06-27 06:26:29 +00:00
bool first_load;
PreferencesDialog *prefdialog;
2011-09-18 14:43:15 +00:00
QTime logtime;
QSystemTrayIcon *systray;
QMenu *systraymenu;
2014-08-17 12:56:05 +00:00
// gGraphView *SnapshotGraph;
QString bookmarkFilter;
bool m_restartRequired;
volatile bool m_inRecalculation;
void PopulatePurgeMenu();
//! \brief Destroy ALL the CPAP data for the selected machine
void purgeMachine(Machine *);
int warnidx;
QStringList warnmsg;
QTimer wtimer;
2011-06-26 08:30:44 +00:00
};
#endif // MAINWINDOW_H