2018-04-22 12:06:48 +00:00
|
|
|
|
/* SleepyHead MainWindow Headers
|
2014-04-09 21:01:57 +00:00
|
|
|
|
*
|
2018-03-28 07:10:52 +00:00
|
|
|
|
* Copyright (C) 2011-2018 Mark Watkins <mark@jedimark.net>
|
2014-04-09 21:01:57 +00:00
|
|
|
|
*
|
|
|
|
|
* This file is subject to the terms and conditions of the GNU General Public
|
2018-06-04 20:48:38 +00:00
|
|
|
|
* License. See the file COPYING in the main directory of the source code
|
|
|
|
|
* for more details. */
|
2011-06-26 08:30:44 +00:00
|
|
|
|
|
|
|
|
|
#ifndef MAINWINDOW_H
|
|
|
|
|
#define MAINWINDOW_H
|
|
|
|
|
|
|
|
|
|
#include <QMainWindow>
|
2018-06-14 09:12:49 +00:00
|
|
|
|
#ifndef BROKEN_OPENGL_BUILD
|
2011-06-26 08:30:44 +00:00
|
|
|
|
#include <QGLContext>
|
2018-06-14 09:12:49 +00:00
|
|
|
|
#endif
|
2011-10-21 07:06:06 +00:00
|
|
|
|
#include <QSystemTrayIcon>
|
2014-07-12 10:52:14 +00:00
|
|
|
|
#include <QTimer>
|
2011-10-21 07:06:06 +00:00
|
|
|
|
|
2011-06-26 08:30:44 +00:00
|
|
|
|
#include "daily.h"
|
|
|
|
|
#include "overview.h"
|
2018-05-07 15:11:02 +00:00
|
|
|
|
#include "welcome.h"
|
2019-02-12 21:57:03 +00:00
|
|
|
|
#ifndef helpless
|
2018-06-06 16:03:51 +00:00
|
|
|
|
#include "help.h"
|
2019-02-12 21:57:03 +00:00
|
|
|
|
#endif
|
2018-06-06 16:03:51 +00:00
|
|
|
|
|
2018-04-22 12:06:48 +00:00
|
|
|
|
#include "profileselector.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;
|
2014-08-17 12:56:05 +00:00
|
|
|
|
QString getCPAPPixmap(QString mach_class);
|
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
|
|
|
|
}
|
|
|
|
|
|
2014-07-28 13:56:29 +00:00
|
|
|
|
|
2011-12-19 08:17:19 +00:00
|
|
|
|
/*! \mainpage SleepyHead
|
|
|
|
|
|
|
|
|
|
\section intro_sec Introduction
|
|
|
|
|
|
2019-02-12 21:57:03 +00:00
|
|
|
|
OpenSource CPAP Reviewer (OSCR) is a program derived from the SleepyHead program written by Mark Watkins.
|
|
|
|
|
|
2011-12-19 08:17:19 +00:00
|
|
|
|
SleepyHead is Cross-Platform Open-Source software for reviewing data from %CPAP machines, which are used in the treatment of Sleep Disorders.
|
|
|
|
|
|
2019-02-12 21:57:03 +00:00
|
|
|
|
SleepyHead was created by <a href="http://jedimark64.blogspot.com">Mark Watkins</a> (JediMark), an Australian software developer.
|
2011-12-19 08:17:19 +00:00
|
|
|
|
|
|
|
|
|
This document is an attempt to provide a little technical insight into SleepyHead's program internals.
|
|
|
|
|
|
|
|
|
|
\section project_info Further Information
|
2019-02-12 21:57:03 +00:00
|
|
|
|
The project was hosted on sourceforge, and it's original project page can be reached at <a href="http://sourceforge.net/projects/sleepyhead">http://sourceforge.net/projects/sleepyhead</a>.
|
2011-12-19 08:17:19 +00:00
|
|
|
|
|
2019-02-12 21:57:03 +00:00
|
|
|
|
There was also a <a href="http://sourceforge.net/apps/mediawiki/sleepyhead/index.php?title=Main_Page">SleepyHead Wiki</a> containing further information
|
2011-12-19 08:17:19 +00:00
|
|
|
|
|
|
|
|
|
\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;
|
|
|
|
|
|
2014-09-17 17:20:01 +00:00
|
|
|
|
//QString getCPAPPixmap(QString mach_class);
|
2014-07-28 17:10:26 +00:00
|
|
|
|
|
|
|
|
|
|
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
|
|
|
|
|
2014-06-20 05:25:50 +00:00
|
|
|
|
|
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
|
|
|
|
|
2018-06-07 01:53:20 +00:00
|
|
|
|
//! \brief Setup the rest of the GUI stuff
|
|
|
|
|
void SetupGUI();
|
|
|
|
|
|
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
|
|
|
|
|
2018-04-22 12:06:48 +00:00
|
|
|
|
void CloseProfile();
|
2018-06-05 22:08:12 +00:00
|
|
|
|
bool OpenProfile(QString name, bool skippassword = false);
|
2014-09-29 14:41:31 +00:00
|
|
|
|
|
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-07-09 03:49:20 +00:00
|
|
|
|
void Notify(QString s, QString title = "", int ms = 5000);
|
2011-12-18 10:53:51 +00:00
|
|
|
|
|
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; }
|
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
|
|
|
|
|
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
|
|
|
|
|
*/
|
2018-06-12 12:55:44 +00:00
|
|
|
|
void RestartApplication(bool force_login = false, QString cmdline = QString());
|
2011-12-06 14:39:14 +00:00
|
|
|
|
|
2011-10-28 03:45:31 +00:00
|
|
|
|
void JumpDaily();
|
2018-05-07 15:11:02 +00:00
|
|
|
|
void JumpOverview();
|
|
|
|
|
void JumpStatistics();
|
|
|
|
|
void JumpImport();
|
|
|
|
|
void JumpOxiWizard();
|
2011-12-18 10:53:51 +00:00
|
|
|
|
|
2018-05-07 19:32:16 +00:00
|
|
|
|
void sendStatsUrl(QString msg) { on_recordsBox_anchorClicked(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);
|
2018-05-03 10:53:42 +00:00
|
|
|
|
void recompressEvents();
|
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-07-28 13:56:29 +00:00
|
|
|
|
int importCPAP(ImportPath import, const QString &message);
|
2013-09-14 23:32:14 +00:00
|
|
|
|
|
2014-07-02 03:22:09 +00:00
|
|
|
|
void startImportDialog() { on_action_Import_Data_triggered(); }
|
2014-04-28 03:40:50 +00:00
|
|
|
|
|
2014-07-21 16:14:07 +00:00
|
|
|
|
void log(QString text);
|
|
|
|
|
|
2016-03-08 02:17:00 +00:00
|
|
|
|
bool importScanCancelled;
|
2018-05-07 12:13:07 +00:00
|
|
|
|
void firstRunMessage();
|
|
|
|
|
|
2016-03-08 02:17:00 +00:00
|
|
|
|
|
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();
|
2018-05-03 10:53:42 +00:00
|
|
|
|
void doRecompressEvents();
|
2012-01-10 06:19:49 +00:00
|
|
|
|
|
2014-09-29 14:41:31 +00:00
|
|
|
|
void MachineUnsupported(Machine * m);
|
|
|
|
|
|
|
|
|
|
|
2014-04-17 05:52:25 +00:00
|
|
|
|
protected:
|
2018-05-05 09:13:39 +00:00
|
|
|
|
void closeEvent(QCloseEvent *) override;
|
|
|
|
|
void keyPressEvent(QKeyEvent *event) override;
|
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 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 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 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 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 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 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);
|
|
|
|
|
|
2018-05-07 19:32:16 +00:00
|
|
|
|
void on_helpButton_clicked();
|
2011-12-25 16:19:08 +00:00
|
|
|
|
|
2014-04-15 11:02:51 +00:00
|
|
|
|
void on_actionView_Statistics_triggered();
|
2011-12-25 16:19:08 +00:00
|
|
|
|
|
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 19:25:17 +00:00
|
|
|
|
void on_tabWidget_currentChanged(int index);
|
|
|
|
|
|
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();
|
|
|
|
|
|
2019-02-15 01:37:29 +00:00
|
|
|
|
void on_actionHelp_Support_OSCR_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();
|
|
|
|
|
|
2014-05-06 11:54:41 +00:00
|
|
|
|
void on_reportModeMonthly_clicked();
|
|
|
|
|
|
|
|
|
|
void on_reportModeStandard_clicked();
|
2014-08-04 19:57:48 +00:00
|
|
|
|
|
|
|
|
|
void on_actionRebuildCPAP(QAction *action);
|
2014-05-06 11:54:41 +00:00
|
|
|
|
|
2014-05-18 17:06:58 +00:00
|
|
|
|
void on_actionPurgeMachine(QAction *action);
|
|
|
|
|
|
2014-05-25 07:07:08 +00:00
|
|
|
|
void on_reportModeRange_clicked();
|
2014-05-18 17:06:58 +00:00
|
|
|
|
|
2014-05-28 17:45:42 +00:00
|
|
|
|
void on_actionPurgeCurrentDaysOximetry_triggered();
|
|
|
|
|
|
2014-06-20 05:25:50 +00:00
|
|
|
|
void logMessage(QString msg);
|
|
|
|
|
|
2014-07-02 16:16:12 +00:00
|
|
|
|
void on_importButton_clicked();
|
|
|
|
|
|
2014-07-21 08:45:35 +00:00
|
|
|
|
void on_actionToggle_Line_Cursor_toggled(bool arg1);
|
|
|
|
|
|
2014-08-04 21:28:27 +00:00
|
|
|
|
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();
|
|
|
|
|
|
2014-09-13 11:34:18 +00:00
|
|
|
|
void on_actionShow_Performance_Counters_toggled(bool arg1);
|
|
|
|
|
|
2014-10-02 03:39:37 +00:00
|
|
|
|
void on_actionExport_CSV_triggered();
|
|
|
|
|
|
|
|
|
|
void on_actionExport_Review_triggered();
|
|
|
|
|
|
2014-10-03 02:31:51 +00:00
|
|
|
|
void on_mainsplitter_splitterMoved(int pos, int index);
|
2014-10-02 11:22:30 +00:00
|
|
|
|
|
2016-04-03 12:48:24 +00:00
|
|
|
|
void on_actionReport_a_Bug_triggered();
|
|
|
|
|
|
2018-04-22 12:06:48 +00:00
|
|
|
|
void on_profilesButton_clicked();
|
|
|
|
|
|
2018-05-05 10:07:40 +00:00
|
|
|
|
void reloadProfile();
|
|
|
|
|
|
2018-05-07 19:32:16 +00:00
|
|
|
|
void on_bookmarkView_anchorClicked(const QUrl &arg1);
|
|
|
|
|
|
|
|
|
|
void on_recordsBox_anchorClicked(const QUrl &linkurl);
|
|
|
|
|
|
2018-05-29 01:30:52 +00:00
|
|
|
|
void on_statisticsView_anchorClicked(const QUrl &url);
|
|
|
|
|
|
|
|
|
|
|
2014-04-25 05:28:10 +00:00
|
|
|
|
private:
|
2014-05-13 01:28:41 +00:00
|
|
|
|
void importCPAPBackups();
|
|
|
|
|
void finishCPAPImport();
|
2014-07-28 13:56:29 +00:00
|
|
|
|
QList<ImportPath> detectCPAPCards();
|
2014-05-13 01:28:41 +00:00
|
|
|
|
|
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;
|
2018-04-22 12:06:48 +00:00
|
|
|
|
ProfileSelector *profileSelector;
|
2018-05-07 15:11:02 +00:00
|
|
|
|
Welcome * welcome;
|
2019-02-12 21:57:03 +00:00
|
|
|
|
#ifndef helpless
|
2018-06-06 16:03:51 +00:00
|
|
|
|
Help * help;
|
2019-02-12 21:57:03 +00:00
|
|
|
|
#endif
|
2011-06-27 06:26:29 +00:00
|
|
|
|
bool first_load;
|
2011-10-21 05:50:31 +00:00
|
|
|
|
PreferencesDialog *prefdialog;
|
2011-09-18 14:43:15 +00:00
|
|
|
|
QTime logtime;
|
2011-10-21 07:06:06 +00:00
|
|
|
|
QSystemTrayIcon *systray;
|
|
|
|
|
QMenu *systraymenu;
|
2014-08-17 12:56:05 +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 *);
|
2014-07-12 10:52:14 +00:00
|
|
|
|
|
|
|
|
|
int warnidx;
|
|
|
|
|
QStringList warnmsg;
|
|
|
|
|
QTimer wtimer;
|
2011-06-26 08:30:44 +00:00
|
|
|
|
};
|
|
|
|
|
|
2016-03-08 02:17:00 +00:00
|
|
|
|
class ImportDialogScan:public QDialog
|
|
|
|
|
{
|
|
|
|
|
Q_OBJECT
|
|
|
|
|
public:
|
|
|
|
|
ImportDialogScan(QWidget * parent) :QDialog(parent, Qt::SplashScreen)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
virtual ~ImportDialogScan()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
public slots:
|
|
|
|
|
virtual void cancelbutton();
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
2011-06-26 08:30:44 +00:00
|
|
|
|
#endif // MAINWINDOW_H
|