2020-01-16 00:45:46 +00:00
|
|
|
/* OSCAR MainWindow Headers
|
2014-04-09 21:01:57 +00:00
|
|
|
*
|
2024-01-13 20:27:48 +00:00
|
|
|
* Copyright (c) 2019-2024 The OSCAR Team
|
2024-03-25 19:48:41 +00:00
|
|
|
* Copyright (C) 2011-2018 Mark Watkins
|
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
|
|
|
|
2019-03-10 16:03:19 +00:00
|
|
|
/*! \mainpage OSCAR
|
2011-12-19 08:17:19 +00:00
|
|
|
|
|
|
|
\section intro_sec Introduction
|
|
|
|
|
2019-03-10 16:03:19 +00:00
|
|
|
Open Source CPAP Analysis Reporter (OSCAR) is a program derived from the SleepyHead program written by Mark Watkins.
|
2019-02-12 21:57:03 +00:00
|
|
|
|
2022-02-27 14:18:39 +00:00
|
|
|
SleepyHead was a Cross-Platform Open-Source software for reviewing data from %CPAP devices, which are used in the treatment of Sleep Disorders.
|
2011-12-19 08:17:19 +00:00
|
|
|
|
2024-02-01 00:14:19 +00:00
|
|
|
SleepyHead was created by Mark Watkins, an Australian software developer.
|
2011-12-19 08:17:19 +00:00
|
|
|
|
2019-03-10 16:03:19 +00:00
|
|
|
This document is an attempt to provide a little technical insight into OSCAR's program internals.
|
2011-12-19 08:17:19 +00:00
|
|
|
|
|
|
|
\section project_info Further Information
|
2024-10-04 21:44:06 +00:00
|
|
|
OSCAR is hosted on <a href="https://gitlab.com/CrimsonNape/OSCAR-code">Gitlab</a> with full source code available there.
|
2011-12-19 08:17:19 +00:00
|
|
|
|
2019-05-20 08:27:50 +00:00
|
|
|
Help for users can be found in the <a href="http://www.apneaboard.com/wiki/index.php?title=OSCAR_Help">OSCAR Help Wiki</a>.
|
|
|
|
|
|
|
|
Data structures are described in a <a href="http://www.apneaboard.com/wiki/index.php?title=OSCAR_Data_Information">OSCAR Data Information Wiki</a>.
|
|
|
|
|
2011-12-19 08:17:19 +00:00
|
|
|
|
|
|
|
\section structure Program Structure
|
2019-03-10 16:03:19 +00:00
|
|
|
OSCAR is written in C++ using Qt Toolkit library, and comprises of 3 main components
|
2011-12-19 08:17:19 +00:00
|
|
|
\list
|
2022-02-27 14:18:39 +00:00
|
|
|
\li The SleepLib Database, a specialized database for working with multiple sources of Sleep device data.
|
2011-12-19 08:17:19 +00:00
|
|
|
\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
|
2019-03-10 16:03:19 +00:00
|
|
|
\brief The Main Application window for OSCAR
|
2011-12-18 10:53:51 +00:00
|
|
|
*/
|
|
|
|
|
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
|
2020-07-05 01:17:25 +00:00
|
|
|
void CheckForUpdates(bool showWhenCurrent);
|
2011-12-18 10:53:51 +00:00
|
|
|
|
2019-03-26 01:10:03 +00:00
|
|
|
void EnableTabs(bool b);
|
|
|
|
|
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
|
|
|
|
Update version display throughout to use the new information and be consistent.
The full version now includes the build/git information embedded within
it as build metadata according to the Semantic Versioning 2.0.0 spec,
for example: "1.1.0-beta-1+branch-name-a1b2c3d".
Now the full version string, with all detail is always displayed
EXCEPT for release versions, in which case just the simple version
number ("1.1.0") is displayed in the primary UI.
- Main window title: simple version for release versions, full version
string otherwise
- Notifications: same as main window title
- System tray: same as main window title
- About window title: same as main window title
- About window release notes: always include full version string
- Reports: always include full version string
- Under the logo (about dialog, profile selector, new profile
window): removed, as it is largely redundant and can
interfere with the window geometry.
- Database upgrade alert: same as main window title
- Database newer alert: same as main window title
The full version string is also included within the preference and
profile .xml files, but because build metadata is ignored in version
comparisons, differences in builds will not cause any spurious
alerts. However, changes in prerelease versions will continue to
be significant, as they should be.
2020-01-16 18:05:55 +00:00
|
|
|
/*! \fn Notify(QString s, QString title="OSCAR (version)", int ms=5000);
|
2011-12-18 10:53:51 +00:00
|
|
|
\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
|
|
|
|
2021-09-20 15:03:34 +00:00
|
|
|
void updateOverview();
|
|
|
|
|
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);
|
2019-06-12 20:32:22 +00:00
|
|
|
//! \brief Internal function to set Statistics page html from statistics module
|
|
|
|
void setStatsHTML(QString html);
|
|
|
|
|
2014-07-28 13:56:29 +00:00
|
|
|
int importCPAP(ImportPath import, const QString &message);
|
2020-05-06 17:40:59 +00:00
|
|
|
void finishCPAPImport();
|
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();
|
2024-07-10 17:00:21 +00:00
|
|
|
/*! \fn void RestartApplication(bool force_login=false);
|
|
|
|
\brief Closes down OSCAR 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
|
|
|
|
allow timer to restart application.
|
|
|
|
*/
|
|
|
|
void RestartApplication(bool force_login = false, QString cmdline = QString());
|
2012-01-10 06:19:49 +00:00
|
|
|
|
2014-09-29 14:41:31 +00:00
|
|
|
|
2024-08-07 23:44:34 +00:00
|
|
|
QString profilePath(QString folderProfileName );
|
|
|
|
void saveProfilePath(QString folderProfileName , QString pathName);
|
|
|
|
|
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();
|
|
|
|
|
2020-04-25 20:30:35 +00:00
|
|
|
#ifdef Q_OS_WIN
|
|
|
|
//! \brief Called on Windows to see whether the current OpenGL driver will cause the application to crash
|
|
|
|
void TestWindowsOpenGL();
|
|
|
|
#endif
|
|
|
|
|
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();
|
|
|
|
|
2019-07-31 02:59:01 +00:00
|
|
|
//! \brief passes the ResetGraphOrder menu click to the Daily & Overview views
|
2020-02-17 14:39:38 +00:00
|
|
|
//void on_action_Reset_Graph_Order_triggered();
|
2019-07-31 02:59:01 +00:00
|
|
|
|
2019-09-29 03:15:16 +00:00
|
|
|
//! \brief passes the ResetGraphOrder menu click to the Daily & Overview views
|
|
|
|
void on_action_Standard_Graph_Order_triggered();
|
|
|
|
|
|
|
|
//! \brief passes the ResetGraphOrder menu click to the Daily & Overview views
|
|
|
|
void on_action_Advanced_Graph_Order_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();
|
|
|
|
|
2020-07-05 01:17:25 +00:00
|
|
|
//! \brief Creates the CheckUpdates object that actually does the real check for updates
|
|
|
|
void on_action_Check_for_Updates_triggered();
|
2011-09-06 07:33:34 +00:00
|
|
|
|
2011-12-18 10:53:51 +00:00
|
|
|
//! \brief Attempts to do a screenshot of the application window
|
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();
|
2021-04-05 02:05:05 +00:00
|
|
|
void on_actionPurgeCurrentDayOximetry_triggered();
|
|
|
|
void on_actionPurgeCurrentDaySleepStage_triggered();
|
|
|
|
void on_actionPurgeCurrentDayPosition_triggered();
|
|
|
|
void on_actionPurgeCurrentDayAllExceptNotes_triggered();
|
|
|
|
void on_actionPurgeCurrentDayAll_triggered();
|
2011-12-08 04:10:35 +00:00
|
|
|
|
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();
|
|
|
|
|
2020-01-30 00:59:05 +00:00
|
|
|
void on_actionImport_Dreem_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();
|
|
|
|
|
2020-02-17 14:39:38 +00:00
|
|
|
//void on_actionHelp_Support_OSCAR_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();
|
|
|
|
|
2020-01-23 17:51:58 +00:00
|
|
|
void on_actionImport_Viatom_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
|
|
|
|
2023-06-20 12:37:00 +00:00
|
|
|
void init_reportModeUi();
|
|
|
|
void reset_reportModeUi();
|
2023-06-13 16:32:51 +00:00
|
|
|
|
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
|
|
|
|
2021-12-10 07:54:14 +00:00
|
|
|
void on_statEndDate_dateChanged(const QDate &date);
|
|
|
|
|
|
|
|
void on_statStartDate_dateChanged(const QDate &date);
|
|
|
|
|
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();
|
|
|
|
|
2019-07-13 21:53:57 +00:00
|
|
|
void on_actionLine_Cursor_toggled(bool arg1);
|
2014-07-21 08:45:35 +00:00
|
|
|
|
2014-08-04 21:28:27 +00:00
|
|
|
void on_actionLeft_Daily_Sidebar_toggled(bool arg1);
|
|
|
|
|
|
|
|
void on_actionDaily_Calendar_toggled(bool arg1);
|
|
|
|
|
2019-07-13 21:53:57 +00:00
|
|
|
void on_actionPie_Chart_toggled(bool arg1);
|
|
|
|
|
2014-08-17 12:56:05 +00:00
|
|
|
void on_actionExport_Journal_triggered();
|
|
|
|
|
2024-03-25 19:48:41 +00:00
|
|
|
void on_actionImport_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
|
|
|
|
2020-01-21 16:22:49 +00:00
|
|
|
void on_actionCreate_Card_zip_triggered();
|
|
|
|
|
2020-07-21 17:21:29 +00:00
|
|
|
void on_actionCreate_Log_zip_triggered();
|
|
|
|
|
2020-01-21 16:22:49 +00:00
|
|
|
void on_actionCreate_OSCAR_Data_zip_triggered();
|
|
|
|
|
2016-04-03 12:48:24 +00:00
|
|
|
void on_actionReport_a_Bug_triggered();
|
|
|
|
|
2019-06-02 02:51:18 +00:00
|
|
|
void on_actionSystem_Information_triggered();
|
|
|
|
|
2018-04-22 12:06:48 +00:00
|
|
|
void on_profilesButton_clicked();
|
|
|
|
|
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);
|
|
|
|
|
2020-06-05 04:25:23 +00:00
|
|
|
void on_actionShowPersonalData_toggled(bool visible);
|
|
|
|
|
2023-12-05 17:28:34 +00:00
|
|
|
public slots:
|
|
|
|
void reloadProfile();
|
2018-05-29 01:30:52 +00:00
|
|
|
|
2014-04-25 05:28:10 +00:00
|
|
|
private:
|
Update version display throughout to use the new information and be consistent.
The full version now includes the build/git information embedded within
it as build metadata according to the Semantic Versioning 2.0.0 spec,
for example: "1.1.0-beta-1+branch-name-a1b2c3d".
Now the full version string, with all detail is always displayed
EXCEPT for release versions, in which case just the simple version
number ("1.1.0") is displayed in the primary UI.
- Main window title: simple version for release versions, full version
string otherwise
- Notifications: same as main window title
- System tray: same as main window title
- About window title: same as main window title
- About window release notes: always include full version string
- Reports: always include full version string
- Under the logo (about dialog, profile selector, new profile
window): removed, as it is largely redundant and can
interfere with the window geometry.
- Database upgrade alert: same as main window title
- Database newer alert: same as main window title
The full version string is also included within the preference and
profile .xml files, but because build metadata is ignored in version
comparisons, differences in builds will not cause any spurious
alerts. However, changes in prerelease versions will continue to
be significant, as they should be.
2020-01-16 18:05:55 +00:00
|
|
|
QString getMainWindowTitle();
|
2014-05-13 01:28:41 +00:00
|
|
|
void importCPAPBackups();
|
2014-07-28 13:56:29 +00:00
|
|
|
QList<ImportPath> detectCPAPCards();
|
2021-09-02 19:49:34 +00:00
|
|
|
QList<ImportPath> selectCPAPDataCards(const QString & prompt, bool alwaysPrompt = false);
|
2020-01-21 16:56:22 +00:00
|
|
|
void importCPAPDataCards(const QList<ImportPath> & datacards);
|
2020-01-31 19:35:15 +00:00
|
|
|
void addMachineToMenu(Machine* mach, QMenu* menu);
|
2021-04-05 02:05:05 +00:00
|
|
|
void purgeDay(MachineType type);
|
2021-04-24 07:44:27 +00:00
|
|
|
void importNonCPAP(MachineLoader &loader);
|
2014-05-13 01:28:41 +00:00
|
|
|
|
2019-05-07 01:08:49 +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;
|
2023-05-28 00:09:15 +00:00
|
|
|
bool m_clinicalMode = false;
|
2012-01-10 06:19:49 +00:00
|
|
|
volatile bool m_inRecalculation;
|
2014-05-18 17:06:58 +00:00
|
|
|
|
|
|
|
void PopulatePurgeMenu();
|
|
|
|
|
2022-02-27 14:18:39 +00:00
|
|
|
//! \brief Destroy ALL the CPAP data for the selected device
|
2014-05-18 17:06:58 +00:00
|
|
|
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
|